import * as pulumi from "@pulumi/pulumi"; /** * Use this data source to access information about an existing NetApp Account Encryption Resource. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.netapp.getAccountEncryption({ * netappAccountId: "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.NetApp/netAppAccounts/account1", * }); * export const id = example.then(example => example.id); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Microsoft.NetApp` - 2025-12-01 */ export declare function getAccountEncryption(args: GetAccountEncryptionArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getAccountEncryption. */ export interface GetAccountEncryptionArgs { /** * The ID of the NetApp account where customer managed keys-based encryption is enabled. */ netappAccountId: string; } /** * A collection of values returned by getAccountEncryption. */ export interface GetAccountEncryptionResult { readonly crossTenantKeyVaultResourceId: string; readonly encryptionKey: string; readonly federatedClientId: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly netappAccountId: string; readonly systemAssignedIdentityPrincipalId: string; readonly userAssignedIdentityId: string; } /** * Use this data source to access information about an existing NetApp Account Encryption Resource. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.netapp.getAccountEncryption({ * netappAccountId: "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.NetApp/netAppAccounts/account1", * }); * export const id = example.then(example => example.id); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Microsoft.NetApp` - 2025-12-01 */ export declare function getAccountEncryptionOutput(args: GetAccountEncryptionOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getAccountEncryption. */ export interface GetAccountEncryptionOutputArgs { /** * The ID of the NetApp account where customer managed keys-based encryption is enabled. */ netappAccountId: pulumi.Input; }