import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Data Source schema for Volcengine::CloudIdentity::Group */ export declare function getGroup(args: GetGroupArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getGroup. */ export interface GetGroupArgs { /** * Uniquely identifies the resource. */ id: string; } /** * A collection of values returned by getGroup. */ export interface GetGroupResult { /** * Creation Time */ readonly createdTime: string; /** * Description */ readonly description: string; /** * Display Name */ readonly displayName: string; /** * User Group ID */ readonly groupId: string; /** * User Group Name */ readonly groupName: string; /** * Uniquely identifies the resource. */ readonly id: string; /** * User Group Type */ readonly joinType: string; /** * User Group Member List */ readonly members: outputs.cloudidentity.GetGroupMember[]; /** * User Group Source */ readonly source: string; /** * Update Time */ readonly updatedTime: string; } /** * Data Source schema for Volcengine::CloudIdentity::Group */ export declare function getGroupOutput(args: GetGroupOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getGroup. */ export interface GetGroupOutputArgs { /** * Uniquely identifies the resource. */ id: pulumi.Input; }