import * as pulumi from "@pulumi/pulumi"; /** * Use this data source to access information about an existing Stack HCI Storage Path. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.stack.getHciStoragePath({ * name: "example-hci-storage-path-name", * resourceGroupName: "example-rg", * }); * export const id = example.then(example => example.id); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Microsoft.AzureStackHCI` - 2024-01-01 */ export declare function getHciStoragePath(args: GetHciStoragePathArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getHciStoragePath. */ export interface GetHciStoragePathArgs { /** * The name of this Stack HCI Storage Path. */ name: string; /** * The name of the Resource Group where the Stack HCI Storage Path exists. */ resourceGroupName: string; } /** * A collection of values returned by getHciStoragePath. */ export interface GetHciStoragePathResult { /** * The ID of the Custom Location where the Stack HCI Storage Path exists. */ readonly customLocationId: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The Azure Region where the Stack HCI Storage Path exists. */ readonly location: string; readonly name: string; /** * The file path on the disk where the Stack HCI Storage Path was created. */ readonly path: string; readonly resourceGroupName: string; /** * A mapping of tags assigned to the Stack HCI Storage Path. */ readonly tags: { [key: string]: string; }; } /** * Use this data source to access information about an existing Stack HCI Storage Path. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.stack.getHciStoragePath({ * name: "example-hci-storage-path-name", * resourceGroupName: "example-rg", * }); * export const id = example.then(example => example.id); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Microsoft.AzureStackHCI` - 2024-01-01 */ export declare function getHciStoragePathOutput(args: GetHciStoragePathOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getHciStoragePath. */ export interface GetHciStoragePathOutputArgs { /** * The name of this Stack HCI Storage Path. */ name: pulumi.Input; /** * The name of the Resource Group where the Stack HCI Storage Path exists. */ resourceGroupName: pulumi.Input; }