import * as pulumi from "@pulumi/pulumi"; /** * Use this data source to retrieve information about an identity group. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ovh from "@ovhcloud/pulumi-ovh"; * * const myGroup = ovh.Me.getIdentityGroup({ * name: "my_group_name", * }); * ``` */ export declare function getIdentityGroup(args: GetIdentityGroupArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getIdentityGroup. */ export interface GetIdentityGroupArgs { /** * Group name. */ name: string; } /** * A collection of values returned by getIdentityGroup. */ export interface GetIdentityGroupResult { /** * Identity URN of the group. */ readonly GroupURN: string; /** * Creation date of this group. */ readonly creation: string; /** * Is the group a default and immutable one. */ readonly defaultGroup: boolean; /** * Group description. */ readonly description: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Date of the last update of this group. */ readonly lastUpdate: string; readonly name: string; /** * Role associated with the group. Valid roles are ADMIN, REGULAR, UNPRIVILEGED, and NONE. */ readonly role: string; } /** * Use this data source to retrieve information about an identity group. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ovh from "@ovhcloud/pulumi-ovh"; * * const myGroup = ovh.Me.getIdentityGroup({ * name: "my_group_name", * }); * ``` */ export declare function getIdentityGroupOutput(args: GetIdentityGroupOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getIdentityGroup. */ export interface GetIdentityGroupOutputArgs { /** * Group name. */ name: pulumi.Input; }