import * as pulumi from "@pulumi/pulumi"; /** * Use this data source to list the existing IAM policies of an account. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ovh from "@ovhcloud/pulumi-ovh"; * * const myPolicies = ovh.Iam.getPolicies({}); * ``` */ export declare function getPolicies(opts?: pulumi.InvokeOptions): Promise; /** * A collection of values returned by getPolicies. */ export interface GetPoliciesResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * List of the policies IDs. */ readonly policies: string[]; } /** * Use this data source to list the existing IAM policies of an account. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ovh from "@ovhcloud/pulumi-ovh"; * * const myPolicies = ovh.Iam.getPolicies({}); * ``` */ export declare function getPoliciesOutput(opts?: pulumi.InvokeOutputOptions): pulumi.Output;