UNPKG

@pulumi/juniper-mist

Version:

A Pulumi package for creating and managing Juniper Mist resources.

66 lines 2.66 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.getAvprofilesOutput = exports.getAvprofiles = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); /** * This data source provides the list of WAN Assurance Antivirus Profiles. * * An Antivirus Profile is used to configure the Antivirus feature on SRX devices. It specifies which content the Antivirus should analyse and which content should be ignored. * * The Antivirus profiles can be used within the following resources: * * `mist_org_servicepolicy.antivirus` * * `mist_org_gatewaytemplate.service_policies.antivirus` * * `mist_org_deviceprofile_gateway.service_policies.antivirus` * * `mist_device_gateway.service_policies.antivirus` * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as junipermist from "@pulumi/juniper-mist"; * * const avprofiles = junipermist.org.getAvprofiles({ * orgId: "15fca2ac-b1a6-47cc-9953-cc6906281550", * }); * ``` */ function getAvprofiles(args, opts) { opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invoke("junipermist:org/getAvprofiles:getAvprofiles", { "orgId": args.orgId, }, opts); } exports.getAvprofiles = getAvprofiles; /** * This data source provides the list of WAN Assurance Antivirus Profiles. * * An Antivirus Profile is used to configure the Antivirus feature on SRX devices. It specifies which content the Antivirus should analyse and which content should be ignored. * * The Antivirus profiles can be used within the following resources: * * `mist_org_servicepolicy.antivirus` * * `mist_org_gatewaytemplate.service_policies.antivirus` * * `mist_org_deviceprofile_gateway.service_policies.antivirus` * * `mist_device_gateway.service_policies.antivirus` * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as junipermist from "@pulumi/juniper-mist"; * * const avprofiles = junipermist.org.getAvprofiles({ * orgId: "15fca2ac-b1a6-47cc-9953-cc6906281550", * }); * ``` */ function getAvprofilesOutput(args, opts) { opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invokeOutput("junipermist:org/getAvprofiles:getAvprofiles", { "orgId": args.orgId, }, opts); } exports.getAvprofilesOutput = getAvprofilesOutput; //# sourceMappingURL=getAvprofiles.js.map