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