import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * Uses this data source to access information about an existing NetApp Account. * * ## NetApp Account Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.netapp.getAccount({ * resourceGroupName: "acctestRG", * name: "acctestnetappaccount", * }); * export const netappAccountId = example.then(example => example.id); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Microsoft.NetApp` - 2025-12-01 */ export declare function getAccount(args: GetAccountArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getAccount. */ export interface GetAccountArgs { identity?: inputs.netapp.GetAccountIdentity; /** * The name of the NetApp Account. */ name: string; /** * The Name of the Resource Group where the NetApp Account exists. */ resourceGroupName: string; } /** * A collection of values returned by getAccount. */ export interface GetAccountResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly identity?: outputs.netapp.GetAccountIdentity; /** * The Azure Region where the NetApp Account exists. */ readonly location: string; readonly name: string; readonly resourceGroupName: string; readonly tags: { [key: string]: string; }; } /** * Uses this data source to access information about an existing NetApp Account. * * ## NetApp Account Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.netapp.getAccount({ * resourceGroupName: "acctestRG", * name: "acctestnetappaccount", * }); * export const netappAccountId = example.then(example => example.id); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Microsoft.NetApp` - 2025-12-01 */ export declare function getAccountOutput(args: GetAccountOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getAccount. */ export interface GetAccountOutputArgs { identity?: pulumi.Input; /** * The name of the NetApp Account. */ name: pulumi.Input; /** * The Name of the Resource Group where the NetApp Account exists. */ resourceGroupName: pulumi.Input; }