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

54 lines 2.1 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.getCertificateAuthenticationProfileOutput = exports.getCertificateAuthenticationProfile = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); /** * This data source can read the Certificate Authentication Profile. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ise from "@pulumi/ise"; * * const example = ise.identitymanagement.getCertificateAuthenticationProfile({ * id: "76d24097-41c4-4558-a4d0-a8c07ac08470", * }); * ``` */ function getCertificateAuthenticationProfile(args, opts) { args = args || {}; opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invoke("ise:identitymanagement/getCertificateAuthenticationProfile:getCertificateAuthenticationProfile", { "id": args.id, "name": args.name, }, opts); } exports.getCertificateAuthenticationProfile = getCertificateAuthenticationProfile; /** * This data source can read the Certificate Authentication Profile. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ise from "@pulumi/ise"; * * const example = ise.identitymanagement.getCertificateAuthenticationProfile({ * id: "76d24097-41c4-4558-a4d0-a8c07ac08470", * }); * ``` */ function getCertificateAuthenticationProfileOutput(args, opts) { args = args || {}; opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invokeOutput("ise:identitymanagement/getCertificateAuthenticationProfile:getCertificateAuthenticationProfile", { "id": args.id, "name": args.name, }, opts); } exports.getCertificateAuthenticationProfileOutput = getCertificateAuthenticationProfileOutput; //# sourceMappingURL=getCertificateAuthenticationProfile.js.map