import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Use this data source to access information about an existing Elastic SAN. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.elasticsan.get({ * name: "existing", * resourceGroupName: "existing", * }); * export const id = example.then(example => example.id); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Microsoft.ElasticSan` - 2023-01-01 */ export declare function get(args: GetArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking get. */ export interface GetArgs { /** * The name of this Elastic SAN. */ name: string; /** * The name of the Resource Group where the Elastic SAN exists. */ resourceGroupName: string; } /** * A collection of values returned by get. */ export interface GetResult { /** * The base size of the Elastic SAN resource in TiB. */ readonly baseSizeInTib: number; /** * The base size of the Elastic SAN resource in TiB. */ readonly extendedSizeInTib: number; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The Azure Region where the Elastic SAN exists. */ readonly location: string; /** * The SKU name. */ readonly name: string; readonly resourceGroupName: string; /** * A `sku` block as defined below. */ readonly skus: outputs.elasticsan.GetSkus[]; /** * A mapping of tags assigned to the Elastic SAN. */ readonly tags: { [key: string]: string; }; /** * Total Provisioned IOps of the Elastic SAN resource. */ readonly totalIops: number; /** * Total Provisioned MBps Elastic SAN resource. */ readonly totalMbps: number; /** * Total size of the Elastic SAN resource in TB. */ readonly totalSizeInTib: number; /** * Total size of the provisioned Volumes in GiB. */ readonly totalVolumeSizeInGib: number; /** * Total number of volume groups in this Elastic SAN resource. */ readonly volumeGroupCount: number; /** * Logical zone for the Elastic SAN resource. */ readonly zones: string[]; } /** * Use this data source to access information about an existing Elastic SAN. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.elasticsan.get({ * name: "existing", * resourceGroupName: "existing", * }); * export const id = example.then(example => example.id); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Microsoft.ElasticSan` - 2023-01-01 */ export declare function getOutput(args: GetOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking get. */ export interface GetOutputArgs { /** * The name of this Elastic SAN. */ name: pulumi.Input; /** * The name of the Resource Group where the Elastic SAN exists. */ resourceGroupName: pulumi.Input; }