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

50 lines 1.79 kB
"use strict"; // *** 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.getEndpointCustomAttributeOutput = exports.getEndpointCustomAttribute = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); /** * This data source can read the Endpoint Custom Attribute. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ise from "@pulumi/ise"; * * const example = ise.identitymanagement.getEndpointCustomAttribute({ * id: "isMobile", * }); * ``` */ function getEndpointCustomAttribute(args, opts) { opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invoke("ise:identitymanagement/getEndpointCustomAttribute:getEndpointCustomAttribute", { "id": args.id, }, opts); } exports.getEndpointCustomAttribute = getEndpointCustomAttribute; /** * This data source can read the Endpoint Custom Attribute. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ise from "@pulumi/ise"; * * const example = ise.identitymanagement.getEndpointCustomAttribute({ * id: "isMobile", * }); * ``` */ function getEndpointCustomAttributeOutput(args, opts) { opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invokeOutput("ise:identitymanagement/getEndpointCustomAttribute:getEndpointCustomAttribute", { "id": args.id, }, opts); } exports.getEndpointCustomAttributeOutput = getEndpointCustomAttributeOutput; //# sourceMappingURL=getEndpointCustomAttribute.js.map