@pulumi/sdwan
Version:
A Pulumi package for managing resources on Cisco Catalyst SD-WAN.. Based on terraform-provider-sdwan: version v0.4.1
58 lines • 2.45 kB
JavaScript
;
// *** 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.getServiceLanVpnInterfaceGreFeatureOutput = exports.getServiceLanVpnInterfaceGreFeature = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("./utilities");
/**
* This data source can read the Service LAN VPN Interface GRE Feature.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as sdwan from "@pulumi/sdwan";
*
* const example = sdwan.getServiceLanVpnInterfaceGreFeature({
* id: "f6b2c44c-693c-4763-b010-895aa3d236bd",
* featureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
* serviceLanVpnFeatureId: "140331f6-5418-4755-a059-13c77eb96037",
* });
* ```
*/
function getServiceLanVpnInterfaceGreFeature(args, opts) {
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invoke("sdwan:index/getServiceLanVpnInterfaceGreFeature:getServiceLanVpnInterfaceGreFeature", {
"featureProfileId": args.featureProfileId,
"id": args.id,
"serviceLanVpnFeatureId": args.serviceLanVpnFeatureId,
}, opts);
}
exports.getServiceLanVpnInterfaceGreFeature = getServiceLanVpnInterfaceGreFeature;
/**
* This data source can read the Service LAN VPN Interface GRE Feature.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as sdwan from "@pulumi/sdwan";
*
* const example = sdwan.getServiceLanVpnInterfaceGreFeature({
* id: "f6b2c44c-693c-4763-b010-895aa3d236bd",
* featureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
* serviceLanVpnFeatureId: "140331f6-5418-4755-a059-13c77eb96037",
* });
* ```
*/
function getServiceLanVpnInterfaceGreFeatureOutput(args, opts) {
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invokeOutput("sdwan:index/getServiceLanVpnInterfaceGreFeature:getServiceLanVpnInterfaceGreFeature", {
"featureProfileId": args.featureProfileId,
"id": args.id,
"serviceLanVpnFeatureId": args.serviceLanVpnFeatureId,
}, opts);
}
exports.getServiceLanVpnInterfaceGreFeatureOutput = getServiceLanVpnInterfaceGreFeatureOutput;
//# sourceMappingURL=getServiceLanVpnInterfaceGreFeature.js.map