import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Use this data source to access information about an existing Storage Management Policy. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.storage.getAccount({ * name: "storageaccountname", * resourceGroupName: "resourcegroupname", * }); * const exampleGetPolicy = example.then(example => azure.storage.getPolicy({ * storageAccountId: example.id, * })); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Microsoft.Storage` - 2025-06-01 */ export declare function getPolicy(args: GetPolicyArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getPolicy. */ export interface GetPolicyArgs { /** * Specifies the id of the storage account to retrieve the management policy for. */ storageAccountId: string; } /** * A collection of values returned by getPolicy. */ export interface GetPolicyResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * supports the following: */ readonly rules: outputs.storage.GetPolicyRule[]; readonly storageAccountId: string; } /** * Use this data source to access information about an existing Storage Management Policy. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.storage.getAccount({ * name: "storageaccountname", * resourceGroupName: "resourcegroupname", * }); * const exampleGetPolicy = example.then(example => azure.storage.getPolicy({ * storageAccountId: example.id, * })); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Microsoft.Storage` - 2025-06-01 */ export declare function getPolicyOutput(args: GetPolicyOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getPolicy. */ export interface GetPolicyOutputArgs { /** * Specifies the id of the storage account to retrieve the management policy for. */ storageAccountId: pulumi.Input; }