UNPKG

@pulumi/juniper-mist

Version:

A Pulumi package for creating and managing Juniper Mist resources.

54 lines 2.02 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.getNacrulesOutput = exports.getNacrules = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); /** * This data source provides the list of NAC Rules (Auth Policies). * * A NAC Rule defines a list of criteria (NAC Tag) the network client must match to execute the Rule, an action (Allow/Deny)and a list of RADIUS Attributes (NAC Tags) to return * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as junipermist from "@pulumi/juniper-mist"; * * const nacrules = junipermist.org.getNacrules({ * orgId: "15fca2ac-b1a6-47cc-9953-cc6906281550", * }); * ``` */ function getNacrules(args, opts) { opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invoke("junipermist:org/getNacrules:getNacrules", { "orgId": args.orgId, }, opts); } exports.getNacrules = getNacrules; /** * This data source provides the list of NAC Rules (Auth Policies). * * A NAC Rule defines a list of criteria (NAC Tag) the network client must match to execute the Rule, an action (Allow/Deny)and a list of RADIUS Attributes (NAC Tags) to return * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as junipermist from "@pulumi/juniper-mist"; * * const nacrules = junipermist.org.getNacrules({ * orgId: "15fca2ac-b1a6-47cc-9953-cc6906281550", * }); * ``` */ function getNacrulesOutput(args, opts) { opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invokeOutput("junipermist:org/getNacrules:getNacrules", { "orgId": args.orgId, }, opts); } exports.getNacrulesOutput = getNacrulesOutput; //# sourceMappingURL=getNacrules.js.map