UNPKG

@pulumi/juniper-mist

Version:

A Pulumi package for creating and managing Juniper Mist resources.

58 lines 2.76 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.getDeviceprofilesGatewayOutput = exports.getDeviceprofilesGateway = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); /** * This provides the list of Gateway Device Profiles (Hub Profile). * * A HUB profile is a configuration profile that automates the creation of overlay networks and defines the attributes of a hub device in a network. It includes settings for wan interfaces, lan interfaces, dns servers, traffic steering preferences, application policies, and routing options. * * HUB profiles are used to create consistent configurations for hub devices and ensure efficient connectivity between hubs and spokes in a network. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as junipermist from "@pulumi/juniper-mist"; * * const deviceprofile = junipermist.org.getDeviceprofilesGateway({ * orgId: "15fca2ac-b1a6-47cc-9953-cc6906281550", * }); * ``` */ function getDeviceprofilesGateway(args, opts) { opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invoke("junipermist:org/getDeviceprofilesGateway:getDeviceprofilesGateway", { "orgId": args.orgId, }, opts); } exports.getDeviceprofilesGateway = getDeviceprofilesGateway; /** * This provides the list of Gateway Device Profiles (Hub Profile). * * A HUB profile is a configuration profile that automates the creation of overlay networks and defines the attributes of a hub device in a network. It includes settings for wan interfaces, lan interfaces, dns servers, traffic steering preferences, application policies, and routing options. * * HUB profiles are used to create consistent configurations for hub devices and ensure efficient connectivity between hubs and spokes in a network. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as junipermist from "@pulumi/juniper-mist"; * * const deviceprofile = junipermist.org.getDeviceprofilesGateway({ * orgId: "15fca2ac-b1a6-47cc-9953-cc6906281550", * }); * ``` */ function getDeviceprofilesGatewayOutput(args, opts) { opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invokeOutput("junipermist:org/getDeviceprofilesGateway:getDeviceprofilesGateway", { "orgId": args.orgId, }, opts); } exports.getDeviceprofilesGatewayOutput = getDeviceprofilesGatewayOutput; //# sourceMappingURL=getDeviceprofilesGateway.js.map