UNPKG

@pulumi/juniper-mist

Version:

A Pulumi package for creating and managing Juniper Mist resources.

62 lines 2.6 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.getServicesOutput = exports.getServices = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); /** * This data source provides the list of WAN Assurance Services (Applications). * * A Service is used to define a Custom Application that can be used in the `servicePolicies`. These Services can be referenced by their name in * * the Service Policies (`mist_org_servicepolicy.services`) * * the Gateway configuration (`mist_device_gateway.service_policies.services`) * * the Gateway Templates (`mist_org_gatewaytemplate.service_policies.services`) * * the HUB Profiles (`mist_org_deviceprofile_gateway.service_policies.services`) * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as junipermist from "@pulumi/juniper-mist"; * * const services = junipermist.org.getServices({ * orgId: "15fca2ac-b1a6-47cc-9953-cc6906281550", * }); * ``` */ function getServices(args, opts) { opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invoke("junipermist:org/getServices:getServices", { "orgId": args.orgId, }, opts); } exports.getServices = getServices; /** * This data source provides the list of WAN Assurance Services (Applications). * * A Service is used to define a Custom Application that can be used in the `servicePolicies`. These Services can be referenced by their name in * * the Service Policies (`mist_org_servicepolicy.services`) * * the Gateway configuration (`mist_device_gateway.service_policies.services`) * * the Gateway Templates (`mist_org_gatewaytemplate.service_policies.services`) * * the HUB Profiles (`mist_org_deviceprofile_gateway.service_policies.services`) * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as junipermist from "@pulumi/juniper-mist"; * * const services = junipermist.org.getServices({ * orgId: "15fca2ac-b1a6-47cc-9953-cc6906281550", * }); * ``` */ function getServicesOutput(args, opts) { opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invokeOutput("junipermist:org/getServices:getServices", { "orgId": args.orgId, }, opts); } exports.getServicesOutput = getServicesOutput; //# sourceMappingURL=getServices.js.map