import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * Manages an Azure Stack HCI Cluster. * * ## Import * * Azure Stack HCI Clusters can be imported using the `resource id`, e.g. * * ```sh * $ pulumi import azure:stack/hciCluster:HciCluster example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.AzureStackHCI/clusters/cluster1 * ``` */ export declare class HciCluster extends pulumi.CustomResource { /** * Get an existing HciCluster resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: HciClusterState, opts?: pulumi.CustomResourceOptions): HciCluster; /** * Returns true if the given object is an instance of HciCluster. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is HciCluster; /** * The ID of the Automanage Configuration assigned to the Azure Stack HCI Cluster. */ readonly automanageConfigurationId: pulumi.Output; /** * The Client ID of the Azure Active Directory Application which is used by the Azure Stack HCI Cluster. Changing this forces a new resource to be created. */ readonly clientId: pulumi.Output; /** * An immutable UUID for the Azure Stack HCI Cluster. */ readonly cloudId: pulumi.Output; /** * An `identity` block as defined below. */ readonly identity: pulumi.Output; /** * The Azure Region where the Azure Stack HCI Cluster should exist. Changing this forces a new resource to be created. */ readonly location: pulumi.Output; /** * The name which should be used for this Azure Stack HCI Cluster. Changing this forces a new resource to be created. */ readonly name: pulumi.Output; /** * The name of the Resource Group where the Azure Stack HCI Cluster should exist. Changing this forces a new resource to be created. */ readonly resourceGroupName: pulumi.Output; /** * The object ID of the Resource Provider Service Principal. */ readonly resourceProviderObjectId: pulumi.Output; /** * The region specific Data Path Endpoint of the Azure Stack HCI Cluster. */ readonly serviceEndpoint: pulumi.Output; /** * A mapping of tags which should be assigned to the Azure Stack HCI Cluster. */ readonly tags: pulumi.Output<{ [key: string]: string; } | undefined>; /** * The Tenant ID of the Azure Active Directory which is used by the Azure Stack HCI Cluster. Changing this forces a new resource to be created. * * > **Note:** If unspecified the Tenant ID of the Provider will be used. */ readonly tenantId: pulumi.Output; /** * Create a HciCluster resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: HciClusterArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering HciCluster resources. */ export interface HciClusterState { /** * The ID of the Automanage Configuration assigned to the Azure Stack HCI Cluster. */ automanageConfigurationId?: pulumi.Input; /** * The Client ID of the Azure Active Directory Application which is used by the Azure Stack HCI Cluster. Changing this forces a new resource to be created. */ clientId?: pulumi.Input; /** * An immutable UUID for the Azure Stack HCI Cluster. */ cloudId?: pulumi.Input; /** * An `identity` block as defined below. */ identity?: pulumi.Input; /** * The Azure Region where the Azure Stack HCI Cluster should exist. Changing this forces a new resource to be created. */ location?: pulumi.Input; /** * The name which should be used for this Azure Stack HCI Cluster. Changing this forces a new resource to be created. */ name?: pulumi.Input; /** * The name of the Resource Group where the Azure Stack HCI Cluster should exist. Changing this forces a new resource to be created. */ resourceGroupName?: pulumi.Input; /** * The object ID of the Resource Provider Service Principal. */ resourceProviderObjectId?: pulumi.Input; /** * The region specific Data Path Endpoint of the Azure Stack HCI Cluster. */ serviceEndpoint?: pulumi.Input; /** * A mapping of tags which should be assigned to the Azure Stack HCI Cluster. */ tags?: pulumi.Input<{ [key: string]: pulumi.Input; }>; /** * The Tenant ID of the Azure Active Directory which is used by the Azure Stack HCI Cluster. Changing this forces a new resource to be created. * * > **Note:** If unspecified the Tenant ID of the Provider will be used. */ tenantId?: pulumi.Input; } /** * The set of arguments for constructing a HciCluster resource. */ export interface HciClusterArgs { /** * The ID of the Automanage Configuration assigned to the Azure Stack HCI Cluster. */ automanageConfigurationId?: pulumi.Input; /** * The Client ID of the Azure Active Directory Application which is used by the Azure Stack HCI Cluster. Changing this forces a new resource to be created. */ clientId?: pulumi.Input; /** * An `identity` block as defined below. */ identity?: pulumi.Input; /** * The Azure Region where the Azure Stack HCI Cluster should exist. Changing this forces a new resource to be created. */ location?: pulumi.Input; /** * The name which should be used for this Azure Stack HCI Cluster. Changing this forces a new resource to be created. */ name?: pulumi.Input; /** * The name of the Resource Group where the Azure Stack HCI Cluster should exist. Changing this forces a new resource to be created. */ resourceGroupName: pulumi.Input; /** * A mapping of tags which should be assigned to the Azure Stack HCI Cluster. */ tags?: pulumi.Input<{ [key: string]: pulumi.Input; }>; /** * The Tenant ID of the Azure Active Directory which is used by the Azure Stack HCI Cluster. Changing this forces a new resource to be created. * * > **Note:** If unspecified the Tenant ID of the Provider will be used. */ tenantId?: pulumi.Input; }