import * as pulumi from "@pulumi/pulumi"; /** * Uses this data source to access information about an existing NetApp Pool. * * ## NetApp Pool Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.netapp.getPool({ * resourceGroupName: "acctestRG", * accountName: "acctestnetappaccount", * name: "acctestnetapppool", * }); * export const netappPoolId = example.then(example => example.id); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Microsoft.NetApp` - 2025-12-01 */ export declare function getPool(args: GetPoolArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getPool. */ export interface GetPoolArgs { /** * The name of the NetApp account where the NetApp pool exists. */ accountName: string; /** * The name of the NetApp Pool. */ name: string; /** * The Name of the Resource Group where the NetApp Pool exists. */ resourceGroupName: string; } /** * A collection of values returned by getPool. */ export interface GetPoolResult { readonly accountName: string; /** * Whether the NetApp Pool can hold cool access enabled volumes. */ readonly coolAccessEnabled: boolean; /** * The custom throughput for the pool in MiB/s. */ readonly customThroughputMibps: number; /** * The encryption type of the pool. */ readonly encryptionType: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The Azure Region where the NetApp Pool exists. */ readonly location: string; readonly name: string; readonly resourceGroupName: string; /** * The service level of the file system. */ readonly serviceLevel: string; /** * Provisioned size of the pool in TB. */ readonly sizeInTb: number; } /** * Uses this data source to access information about an existing NetApp Pool. * * ## NetApp Pool Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.netapp.getPool({ * resourceGroupName: "acctestRG", * accountName: "acctestnetappaccount", * name: "acctestnetapppool", * }); * export const netappPoolId = example.then(example => example.id); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Microsoft.NetApp` - 2025-12-01 */ export declare function getPoolOutput(args: GetPoolOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getPool. */ export interface GetPoolOutputArgs { /** * The name of the NetApp account where the NetApp pool exists. */ accountName: pulumi.Input; /** * The name of the NetApp Pool. */ name: pulumi.Input; /** * The Name of the Resource Group where the NetApp Pool exists. */ resourceGroupName: pulumi.Input; }