import * as pulumi from "@pulumi/pulumi"; /** * Use this data source to retrieve the list of the account's identity groups * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ovh from "@ovhcloud/pulumi-ovh"; * * const groups = ovh.Me.getIdentityGroups({}); * ``` */ export declare function getIdentityGroups(opts?: pulumi.InvokeOptions): Promise; /** * A collection of values returned by getIdentityGroups. */ export interface GetIdentityGroupsResult { /** * The list of the group names of all the identity groups. */ readonly groups: string[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; } /** * Use this data source to retrieve the list of the account's identity groups * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ovh from "@ovhcloud/pulumi-ovh"; * * const groups = ovh.Me.getIdentityGroups({}); * ``` */ export declare function getIdentityGroupsOutput(opts?: pulumi.InvokeOutputOptions): pulumi.Output;