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 1.67 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.getDictionaryOutput = exports.getDictionary = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); /** * This data source can read the Network Access Dictionary. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ise from "@pulumi/ise"; * * const example = ise.networkaccess.getDictionary({ * id: "Dict1", * }); * ``` */ function getDictionary(args, opts) { args = args || {}; opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invoke("ise:networkaccess/getDictionary:getDictionary", { "id": args.id, "name": args.name, }, opts); } exports.getDictionary = getDictionary; /** * This data source can read the Network Access Dictionary. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ise from "@pulumi/ise"; * * const example = ise.networkaccess.getDictionary({ * id: "Dict1", * }); * ``` */ function getDictionaryOutput(args, opts) { args = args || {}; opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invokeOutput("ise:networkaccess/getDictionary:getDictionary", { "id": args.id, "name": args.name, }, opts); } exports.getDictionaryOutput = getDictionaryOutput; //# sourceMappingURL=getDictionary.js.map