UNPKG

@pulumi/sdwan

Version:

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

54 lines 2.21 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.getSystemPerformanceMonitoringFeatureOutput = exports.getSystemPerformanceMonitoringFeature = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("./utilities"); /** * This data source can read the System Performance Monitoring Feature. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as sdwan from "@pulumi/sdwan"; * * const example = sdwan.getSystemPerformanceMonitoringFeature({ * id: "f6b2c44c-693c-4763-b010-895aa3d236bd", * featureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac", * }); * ``` */ function getSystemPerformanceMonitoringFeature(args, opts) { opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invoke("sdwan:index/getSystemPerformanceMonitoringFeature:getSystemPerformanceMonitoringFeature", { "featureProfileId": args.featureProfileId, "id": args.id, }, opts); } exports.getSystemPerformanceMonitoringFeature = getSystemPerformanceMonitoringFeature; /** * This data source can read the System Performance Monitoring Feature. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as sdwan from "@pulumi/sdwan"; * * const example = sdwan.getSystemPerformanceMonitoringFeature({ * id: "f6b2c44c-693c-4763-b010-895aa3d236bd", * featureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac", * }); * ``` */ function getSystemPerformanceMonitoringFeatureOutput(args, opts) { opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invokeOutput("sdwan:index/getSystemPerformanceMonitoringFeature:getSystemPerformanceMonitoringFeature", { "featureProfileId": args.featureProfileId, "id": args.id, }, opts); } exports.getSystemPerformanceMonitoringFeatureOutput = getSystemPerformanceMonitoringFeatureOutput; //# sourceMappingURL=getSystemPerformanceMonitoringFeature.js.map