import * as pulumi from "@pulumi/pulumi"; /** * This data source can read the Endpoint Identity Group. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ise from "@pulumi/ise"; * * const example = ise.identitymanagement.getEndpointIdentityGroup({ * id: "76d24097-41c4-4558-a4d0-a8c07ac08470", * }); * ``` */ export declare function getEndpointIdentityGroup(args?: GetEndpointIdentityGroupArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getEndpointIdentityGroup. */ export interface GetEndpointIdentityGroupArgs { /** * The id of the object */ id?: string; /** * The name of the endpoint identity group */ name?: string; } /** * A collection of values returned by getEndpointIdentityGroup. */ export interface GetEndpointIdentityGroupResult { /** * Description */ readonly description: string; /** * The id of the object */ readonly id: string; /** * The name of the endpoint identity group */ readonly name: string; /** * Parent endpoint identity group ID */ readonly parentEndpointIdentityGroupId: string; /** * System defined endpoint identity group */ readonly systemDefined: boolean; } /** * This data source can read the Endpoint Identity Group. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ise from "@pulumi/ise"; * * const example = ise.identitymanagement.getEndpointIdentityGroup({ * id: "76d24097-41c4-4558-a4d0-a8c07ac08470", * }); * ``` */ export declare function getEndpointIdentityGroupOutput(args?: GetEndpointIdentityGroupOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getEndpointIdentityGroup. */ export interface GetEndpointIdentityGroupOutputArgs { /** * The id of the object */ id?: pulumi.Input; /** * The name of the endpoint identity group */ name?: pulumi.Input; } //# sourceMappingURL=getEndpointIdentityGroup.d.ts.map