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

79 lines (78 loc) 2.02 kB
import * as pulumi from "@pulumi/pulumi"; /** * This data source can read the User Identity Group. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ise from "@pulumi/ise"; * * const example = ise.identitymanagement.getUserIdentityGroup({ * id: "76d24097-41c4-4558-a4d0-a8c07ac08470", * }); * ``` */ export declare function getUserIdentityGroup(args?: GetUserIdentityGroupArgs, opts?: pulumi.InvokeOptions): Promise<GetUserIdentityGroupResult>; /** * A collection of arguments for invoking getUserIdentityGroup. */ export interface GetUserIdentityGroupArgs { /** * The id of the object */ id?: string; /** * The name of the user identity group */ name?: string; } /** * A collection of values returned by getUserIdentityGroup. */ export interface GetUserIdentityGroupResult { /** * Description */ readonly description: string; /** * The id of the object */ readonly id: string; /** * The name of the user identity group */ readonly name: string; /** * Parent user identity group, e.g. `NAC Group:NAC:IdentityGroups:User Identity Groups` */ readonly parent: string; } /** * This data source can read the User Identity Group. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ise from "@pulumi/ise"; * * const example = ise.identitymanagement.getUserIdentityGroup({ * id: "76d24097-41c4-4558-a4d0-a8c07ac08470", * }); * ``` */ export declare function getUserIdentityGroupOutput(args?: GetUserIdentityGroupOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetUserIdentityGroupResult>; /** * A collection of arguments for invoking getUserIdentityGroup. */ export interface GetUserIdentityGroupOutputArgs { /** * The id of the object */ id?: pulumi.Input<string>; /** * The name of the user identity group */ name?: pulumi.Input<string>; }