@pulumi/juniper-mist
Version:
A Pulumi package for creating and managing Juniper Mist resources.
64 lines • 2.15 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.getNactagsOutput = exports.getNactags = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
/**
* This data source provides the list of NAC Tags (Auth Policy Labels).
*
* The NAC Tags can be used in the NAC Rules to define the matching criteria or the returned RADIUS Attributes
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as junipermist from "@pulumi/juniper-mist";
*
* const nactags = junipermist.org.getNactags({
* orgId: "15fca2ac-b1a6-47cc-9953-cc6906281550",
* type: "match",
* match: "cert_issuer",
* });
* ```
*/
function getNactags(args, opts) {
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invoke("junipermist:org/getNactags:getNactags", {
"match": args.match,
"name": args.name,
"orgId": args.orgId,
"type": args.type,
}, opts);
}
exports.getNactags = getNactags;
/**
* This data source provides the list of NAC Tags (Auth Policy Labels).
*
* The NAC Tags can be used in the NAC Rules to define the matching criteria or the returned RADIUS Attributes
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as junipermist from "@pulumi/juniper-mist";
*
* const nactags = junipermist.org.getNactags({
* orgId: "15fca2ac-b1a6-47cc-9953-cc6906281550",
* type: "match",
* match: "cert_issuer",
* });
* ```
*/
function getNactagsOutput(args, opts) {
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invokeOutput("junipermist:org/getNactags:getNactags", {
"match": args.match,
"name": args.name,
"orgId": args.orgId,
"type": args.type,
}, opts);
}
exports.getNactagsOutput = getNactagsOutput;
//# sourceMappingURL=getNactags.js.map