import * as pulumi from "@pulumi/pulumi"; /** * Use this data source to look up a user management group by ID or name. */ export declare function getUserManagementGroup(args?: GetUserManagementGroupArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetUserManagementGroupArgs { /** * The name of the group to look up. */ name?: string; /** * The ID of the group to look up. */ resourceId?: number; } export interface GetUserManagementGroupResult { /** * Comments or notes about the group. */ readonly comments: string; /** * The IDP ID associated with the group. */ readonly idpId: number; /** * The name of the group. */ readonly name: string; /** * The ID of the group. */ readonly resourceId: number; } /** * Use this data source to look up a user management group by ID or name. */ export declare function getUserManagementGroupOutput(args?: GetUserManagementGroupOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface GetUserManagementGroupOutputArgs { /** * The name of the group to look up. */ name?: pulumi.Input; /** * The ID of the group to look up. */ resourceId?: pulumi.Input; } //# sourceMappingURL=getUserManagementGroup.d.ts.map