@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
54 lines • 1.84 kB
JavaScript
;
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
Object.defineProperty(exports, "__esModule", { value: true });
exports.getUserIdentityGroupOutput = exports.getUserIdentityGroup = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
/**
* 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",
* });
* ```
*/
function getUserIdentityGroup(args, opts) {
args = args || {};
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invoke("ise:identitymanagement/getUserIdentityGroup:getUserIdentityGroup", {
"id": args.id,
"name": args.name,
}, opts);
}
exports.getUserIdentityGroup = getUserIdentityGroup;
/**
* 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",
* });
* ```
*/
function getUserIdentityGroupOutput(args, opts) {
args = args || {};
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invokeOutput("ise:identitymanagement/getUserIdentityGroup:getUserIdentityGroup", {
"id": args.id,
"name": args.name,
}, opts);
}
exports.getUserIdentityGroupOutput = getUserIdentityGroupOutput;
//# sourceMappingURL=getUserIdentityGroup.js.map