UNPKG

@pulumi/ise

Version:

A Pulumi package for managing resources on a Cisco ISE (Identity Service Engine) instance.. Based on terraform-provider-ise: version v0.2.1

83 lines (82 loc) 2.17 kB
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<GetEndpointIdentityGroupResult>; /** * 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<GetEndpointIdentityGroupResult>; /** * A collection of arguments for invoking getEndpointIdentityGroup. */ export interface GetEndpointIdentityGroupOutputArgs { /** * The id of the object */ id?: pulumi.Input<string>; /** * The name of the endpoint identity group */ name?: pulumi.Input<string>; }