import * as pulumi from "@pulumi/pulumi"; /** * Manages an Azure Stack HCI Storage Path. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = new azure.core.ResourceGroup("example", { * name: "example-rg", * location: "West Europe", * }); * const exampleHciStoragePath = new azure.stack.HciStoragePath("example", { * name: "example-sp", * resourceGroupName: example.name, * location: example.location, * customLocationId: "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.ExtendedLocation/customLocations/cl1", * path: "C:\\ClusterStorage\\UserStorage_2\\sp-example", * tags: { * foo: "bar", * }, * }); * ``` * * ## API Providers * * * This resource uses the following Azure API Providers: * * * `Microsoft.AzureStackHCI` - 2024-01-01 * * ## Import * * Azure Stack HCI Storage Paths can be imported using the `resource id`, e.g. * * ```sh * $ pulumi import azure:stack/hciStoragePath:HciStoragePath example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.AzureStackHCI/storageContainers/storage1 * ``` */ export declare class HciStoragePath extends pulumi.CustomResource { /** * Get an existing HciStoragePath 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?: HciStoragePathState, opts?: pulumi.CustomResourceOptions): HciStoragePath; /** * Returns true if the given object is an instance of HciStoragePath. 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 HciStoragePath; /** * The ID of Custom Location where the Azure Stack HCI Storage Path should exist. Changing this forces a new resource to be created. */ readonly customLocationId: pulumi.Output; /** * The Azure Region where the Azure Stack HCI Storage Path 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 Storage Path. Changing this forces a new resource to be created. */ readonly name: pulumi.Output; /** * The file path on the disk to create the Storage Path. Changing this forces a new resource to be created. */ readonly path: pulumi.Output; /** * The name of the Resource Group where the Azure Stack HCI Storage Path should exist. Changing this forces a new resource to be created. */ readonly resourceGroupName: pulumi.Output; /** * A mapping of tags which should be assigned to the Azure Stack HCI Storage Path. */ readonly tags: pulumi.Output<{ [key: string]: string; } | undefined>; /** * Create a HciStoragePath 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: HciStoragePathArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering HciStoragePath resources. */ export interface HciStoragePathState { /** * The ID of Custom Location where the Azure Stack HCI Storage Path should exist. Changing this forces a new resource to be created. */ customLocationId?: pulumi.Input; /** * The Azure Region where the Azure Stack HCI Storage Path 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 Storage Path. Changing this forces a new resource to be created. */ name?: pulumi.Input; /** * The file path on the disk to create the Storage Path. Changing this forces a new resource to be created. */ path?: pulumi.Input; /** * The name of the Resource Group where the Azure Stack HCI Storage Path 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 Storage Path. */ tags?: pulumi.Input<{ [key: string]: pulumi.Input; }>; } /** * The set of arguments for constructing a HciStoragePath resource. */ export interface HciStoragePathArgs { /** * The ID of Custom Location where the Azure Stack HCI Storage Path should exist. Changing this forces a new resource to be created. */ customLocationId: pulumi.Input; /** * The Azure Region where the Azure Stack HCI Storage Path 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 Storage Path. Changing this forces a new resource to be created. */ name?: pulumi.Input; /** * The file path on the disk to create the Storage Path. Changing this forces a new resource to be created. */ path: pulumi.Input; /** * The name of the Resource Group where the Azure Stack HCI Storage Path 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 Storage Path. */ tags?: pulumi.Input<{ [key: string]: pulumi.Input; }>; }