UNPKG

@pulumi/sdwan

Version:

A Pulumi package for managing resources on Cisco Catalyst SD-WAN.. Based on terraform-provider-sdwan: version v0.4.1

50 lines 1.75 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.getSystemFeatureProfileOutput = exports.getSystemFeatureProfile = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("./utilities"); /** * This data source can read the System Feature Profile . * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as sdwan from "@pulumi/sdwan"; * * const example = sdwan.getSystemFeatureProfile({ * id: "f6b2c44c-693c-4763-b010-895aa3d236bd", * }); * ``` */ function getSystemFeatureProfile(args, opts) { opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invoke("sdwan:index/getSystemFeatureProfile:getSystemFeatureProfile", { "id": args.id, }, opts); } exports.getSystemFeatureProfile = getSystemFeatureProfile; /** * This data source can read the System Feature Profile . * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as sdwan from "@pulumi/sdwan"; * * const example = sdwan.getSystemFeatureProfile({ * id: "f6b2c44c-693c-4763-b010-895aa3d236bd", * }); * ``` */ function getSystemFeatureProfileOutput(args, opts) { opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invokeOutput("sdwan:index/getSystemFeatureProfile:getSystemFeatureProfile", { "id": args.id, }, opts); } exports.getSystemFeatureProfileOutput = getSystemFeatureProfileOutput; //# sourceMappingURL=getSystemFeatureProfile.js.map