UNPKG

@pulumi/sdwan

Version:

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

498 lines 34.4 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.VpnInterfaceDslPppoaFeatureTemplate = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("./utilities"); /** * This resource can manage a VPN Interface DSL PPPoA feature template. * - Minimum SD-WAN Manager version: `15.0.0` * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as sdwan from "@pulumi/sdwan"; * * const example = new sdwan.VpnInterfaceDslPppoaFeatureTemplate("example", { * name: "Example", * description: "My Example", * deviceTypes: ["vedge-C8000V"], * atmSubInterfaceName: "ATM1", * shutdown: true, * atmDescription: "My Description", * vdslConfigurations: [{ * controllerVdslSlot: "Example", * sra: true, * modeAdsl1: false, * modeAdsl2: false, * modeAdsl2plus: false, * modeVdsl2: false, * modeAnsi: false, * vdslModemConfiguration: "100", * }], * pvcs: [{ * atmVpiAndVci: "example-vpi", * atmVbrNrtPeakCellRate: 1010, * atmVbrNrtSustainableCellRate: 1000, * atmVbrNrtMaximumBurstSize: 65530, * atmVbrRtPeakCellRate: 1015, * atmVbrRtAverageCellRate: 1000, * atmVbrRtMaximumBurstSize: 65530, * atmEncapsulationAal5mux: false, * atmEncapsulationAal5nlpid: false, * atmEncapsulationAal5snap: true, * atmDialerPoolMember: 100, * }], * pppAuthenticationProtocol: "chap", * pppAuthenticationProtocolPap: false, * chapHostname: "chap-example", * chapPppAuthPassword: "myPassword", * papUsername: "pap-username", * papPassword: true, * papPppAuthPassword: "myPassword", * pppAuthenticationType: "callin", * enableCoreRegion: true, * coreRegion: "core", * secondaryRegion: "off", * tunnelInterfaceEncapsulations: [{ * encapsulation: "gre", * preference: 4294967, * weight: 250, * }], * tunnelInterfaceGroups: [42949672], * tunnelInterfaceBorder: true, * perTunnelQos: true, * perTunnelQosAggregator: false, * tunnelQosMode: "spoke", * tunnelInterfaceColor: "custom1", * tunnelInterfaceLastResortCircuit: false, * tunnelInterfaceLowBandwidthLink: false, * tunnelInterfaceTunnelTcpMss: 1460, * tunnelInterfaceClearDontFragment: false, * tunnelInterfaceNetworkBroadcast: false, * tunnelInterfaceMaxControlConnections: 8, * tunnelInterfaceControlConnections: true, * tunnelInterfaceVbondAsStunServer: false, * tunnelInterfaceExcludeControllerGroupLists: [100], * tunnelInterfaceVmanageConnectionPreference: 5, * tunnelInterfacePortHop: false, * tunnelInterfaceColorRestrict: false, * tunnelInterfaceCarrier: "carrier1", * tunnelInterfaceNatRefreshInterval: 15, * tunnelInterfaceHelloInterval: 1000, * tunnelInterfaceHelloTolerance: 12, * tunnelInterfaceBindLoopbackTunnel: "12", * tunnelInterfaceAllowAll: false, * tunnelInterfaceAllowBgp: false, * tunnelInterfaceAllowDhcp: true, * tunnelInterfaceAllowDns: true, * tunnelInterfaceAllowIcmp: true, * tunnelInterfaceAllowSsh: false, * tunnelInterfaceAllowNtp: false, * tunnelInterfaceAllowNetconf: false, * tunnelInterfaceAllowOspf: false, * tunnelInterfaceAllowStun: false, * tunnelInterfaceAllowSnmp: false, * tunnelInterfaceAllowHttps: true, * nat: true, * natRefreshMode: "outbound", * natUdpTimeout: 1, * natTcpTimeout: 60, * natBlockIcmpError: true, * natResponseToPing: false, * natPortForwards: [{ * portStartRange: 0, * portEndRange: 65530, * protocol: "tcp", * privateVpn: 65530, * privateIpAddress: "1.2.3.4", * }], * qosAdaptivePeriod: 15, * qosAdaptiveBandwidthDownstream: 10000, * qosAdaptiveMinDownstream: 100, * qosAdaptiveMaxDownstream: 100000, * qosAdaptiveBandwidthUpstream: 10000, * qosAdaptiveMinUpstream: 100, * qosAdaptiveMaxUpstream: 100000, * shapingRate: 10000000, * qosMap: "test", * qosMapVpn: "test", * bandwidthUpstream: 214748300, * bandwidthDownstream: 214748300, * writeRule: "RULE1", * accessLists: [{ * direction: "in", * aclName: "ACL1", * }], * policers: [{ * direction: "in", * policerName: "example", * }], * ipMtu: 1500, * tcpMss: 720, * tlocExtension: "tloc", * trackers: ["tracker1"], * ipDirectedBroadcast: true, * }); * ``` * * ## Import * * The `pulumi import` command can be used, for example: * * ```sh * $ pulumi import sdwan:index/vpnInterfaceDslPppoaFeatureTemplate:VpnInterfaceDslPppoaFeatureTemplate example "f6b2c44c-693c-4763-b010-895aa3d236bd" * ``` */ class VpnInterfaceDslPppoaFeatureTemplate extends pulumi.CustomResource { /** * Get an existing VpnInterfaceDslPppoaFeatureTemplate resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name, id, state, opts) { return new VpnInterfaceDslPppoaFeatureTemplate(name, state, { ...opts, id: id }); } /** * Returns true if the given object is an instance of VpnInterfaceDslPppoaFeatureTemplate. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj) { if (obj === undefined || obj === null) { return false; } return obj['__pulumiType'] === VpnInterfaceDslPppoaFeatureTemplate.__pulumiType; } constructor(name, argsOrState, opts) { let resourceInputs = {}; opts = opts || {}; if (opts.id) { const state = argsOrState; resourceInputs["accessLists"] = state?.accessLists; resourceInputs["atmDescription"] = state?.atmDescription; resourceInputs["atmDescriptionVariable"] = state?.atmDescriptionVariable; resourceInputs["atmSubInterfaceName"] = state?.atmSubInterfaceName; resourceInputs["atmSubInterfaceNameVariable"] = state?.atmSubInterfaceNameVariable; resourceInputs["bandwidthDownstream"] = state?.bandwidthDownstream; resourceInputs["bandwidthDownstreamVariable"] = state?.bandwidthDownstreamVariable; resourceInputs["bandwidthUpstream"] = state?.bandwidthUpstream; resourceInputs["bandwidthUpstreamVariable"] = state?.bandwidthUpstreamVariable; resourceInputs["chapHostname"] = state?.chapHostname; resourceInputs["chapHostnameVariable"] = state?.chapHostnameVariable; resourceInputs["chapPppAuthPassword"] = state?.chapPppAuthPassword; resourceInputs["chapPppAuthPasswordVariable"] = state?.chapPppAuthPasswordVariable; resourceInputs["coreRegion"] = state?.coreRegion; resourceInputs["coreRegionVariable"] = state?.coreRegionVariable; resourceInputs["description"] = state?.description; resourceInputs["deviceTypes"] = state?.deviceTypes; resourceInputs["enableCoreRegion"] = state?.enableCoreRegion; resourceInputs["enableCoreRegionVariable"] = state?.enableCoreRegionVariable; resourceInputs["ipDirectedBroadcast"] = state?.ipDirectedBroadcast; resourceInputs["ipDirectedBroadcastVariable"] = state?.ipDirectedBroadcastVariable; resourceInputs["ipMtu"] = state?.ipMtu; resourceInputs["ipMtuVariable"] = state?.ipMtuVariable; resourceInputs["name"] = state?.name; resourceInputs["nat"] = state?.nat; resourceInputs["natBlockIcmpError"] = state?.natBlockIcmpError; resourceInputs["natBlockIcmpErrorVariable"] = state?.natBlockIcmpErrorVariable; resourceInputs["natPortForwards"] = state?.natPortForwards; resourceInputs["natRefreshMode"] = state?.natRefreshMode; resourceInputs["natRefreshModeVariable"] = state?.natRefreshModeVariable; resourceInputs["natResponseToPing"] = state?.natResponseToPing; resourceInputs["natResponseToPingVariable"] = state?.natResponseToPingVariable; resourceInputs["natTcpTimeout"] = state?.natTcpTimeout; resourceInputs["natTcpTimeoutVariable"] = state?.natTcpTimeoutVariable; resourceInputs["natUdpTimeout"] = state?.natUdpTimeout; resourceInputs["natUdpTimeoutVariable"] = state?.natUdpTimeoutVariable; resourceInputs["papPassword"] = state?.papPassword; resourceInputs["papPppAuthPassword"] = state?.papPppAuthPassword; resourceInputs["papPppAuthPasswordVariable"] = state?.papPppAuthPasswordVariable; resourceInputs["papUsername"] = state?.papUsername; resourceInputs["papUsernameVariable"] = state?.papUsernameVariable; resourceInputs["perTunnelQos"] = state?.perTunnelQos; resourceInputs["perTunnelQosAggregator"] = state?.perTunnelQosAggregator; resourceInputs["perTunnelQosAggregatorVariable"] = state?.perTunnelQosAggregatorVariable; resourceInputs["perTunnelQosVariable"] = state?.perTunnelQosVariable; resourceInputs["policers"] = state?.policers; resourceInputs["pppAuthenticationProtocol"] = state?.pppAuthenticationProtocol; resourceInputs["pppAuthenticationProtocolPap"] = state?.pppAuthenticationProtocolPap; resourceInputs["pppAuthenticationProtocolVariable"] = state?.pppAuthenticationProtocolVariable; resourceInputs["pppAuthenticationType"] = state?.pppAuthenticationType; resourceInputs["pvcs"] = state?.pvcs; resourceInputs["qosAdaptiveBandwidthDownstream"] = state?.qosAdaptiveBandwidthDownstream; resourceInputs["qosAdaptiveBandwidthDownstreamVariable"] = state?.qosAdaptiveBandwidthDownstreamVariable; resourceInputs["qosAdaptiveBandwidthUpstream"] = state?.qosAdaptiveBandwidthUpstream; resourceInputs["qosAdaptiveBandwidthUpstreamVariable"] = state?.qosAdaptiveBandwidthUpstreamVariable; resourceInputs["qosAdaptiveMaxDownstream"] = state?.qosAdaptiveMaxDownstream; resourceInputs["qosAdaptiveMaxDownstreamVariable"] = state?.qosAdaptiveMaxDownstreamVariable; resourceInputs["qosAdaptiveMaxUpstream"] = state?.qosAdaptiveMaxUpstream; resourceInputs["qosAdaptiveMaxUpstreamVariable"] = state?.qosAdaptiveMaxUpstreamVariable; resourceInputs["qosAdaptiveMinDownstream"] = state?.qosAdaptiveMinDownstream; resourceInputs["qosAdaptiveMinDownstreamVariable"] = state?.qosAdaptiveMinDownstreamVariable; resourceInputs["qosAdaptiveMinUpstream"] = state?.qosAdaptiveMinUpstream; resourceInputs["qosAdaptiveMinUpstreamVariable"] = state?.qosAdaptiveMinUpstreamVariable; resourceInputs["qosAdaptivePeriod"] = state?.qosAdaptivePeriod; resourceInputs["qosAdaptivePeriodVariable"] = state?.qosAdaptivePeriodVariable; resourceInputs["qosMap"] = state?.qosMap; resourceInputs["qosMapVariable"] = state?.qosMapVariable; resourceInputs["qosMapVpn"] = state?.qosMapVpn; resourceInputs["qosMapVpnVariable"] = state?.qosMapVpnVariable; resourceInputs["secondaryRegion"] = state?.secondaryRegion; resourceInputs["secondaryRegionVariable"] = state?.secondaryRegionVariable; resourceInputs["shapingRate"] = state?.shapingRate; resourceInputs["shapingRateVariable"] = state?.shapingRateVariable; resourceInputs["shutdown"] = state?.shutdown; resourceInputs["shutdownVariable"] = state?.shutdownVariable; resourceInputs["tcpMss"] = state?.tcpMss; resourceInputs["tcpMssVariable"] = state?.tcpMssVariable; resourceInputs["templateType"] = state?.templateType; resourceInputs["tlocExtension"] = state?.tlocExtension; resourceInputs["tlocExtensionVariable"] = state?.tlocExtensionVariable; resourceInputs["trackerVariable"] = state?.trackerVariable; resourceInputs["trackers"] = state?.trackers; resourceInputs["tunnelInterfaceAllowAll"] = state?.tunnelInterfaceAllowAll; resourceInputs["tunnelInterfaceAllowAllVariable"] = state?.tunnelInterfaceAllowAllVariable; resourceInputs["tunnelInterfaceAllowBgp"] = state?.tunnelInterfaceAllowBgp; resourceInputs["tunnelInterfaceAllowBgpVariable"] = state?.tunnelInterfaceAllowBgpVariable; resourceInputs["tunnelInterfaceAllowDhcp"] = state?.tunnelInterfaceAllowDhcp; resourceInputs["tunnelInterfaceAllowDhcpVariable"] = state?.tunnelInterfaceAllowDhcpVariable; resourceInputs["tunnelInterfaceAllowDns"] = state?.tunnelInterfaceAllowDns; resourceInputs["tunnelInterfaceAllowDnsVariable"] = state?.tunnelInterfaceAllowDnsVariable; resourceInputs["tunnelInterfaceAllowHttps"] = state?.tunnelInterfaceAllowHttps; resourceInputs["tunnelInterfaceAllowHttpsVariable"] = state?.tunnelInterfaceAllowHttpsVariable; resourceInputs["tunnelInterfaceAllowIcmp"] = state?.tunnelInterfaceAllowIcmp; resourceInputs["tunnelInterfaceAllowIcmpVariable"] = state?.tunnelInterfaceAllowIcmpVariable; resourceInputs["tunnelInterfaceAllowNetconf"] = state?.tunnelInterfaceAllowNetconf; resourceInputs["tunnelInterfaceAllowNetconfVariable"] = state?.tunnelInterfaceAllowNetconfVariable; resourceInputs["tunnelInterfaceAllowNtp"] = state?.tunnelInterfaceAllowNtp; resourceInputs["tunnelInterfaceAllowNtpVariable"] = state?.tunnelInterfaceAllowNtpVariable; resourceInputs["tunnelInterfaceAllowOspf"] = state?.tunnelInterfaceAllowOspf; resourceInputs["tunnelInterfaceAllowOspfVariable"] = state?.tunnelInterfaceAllowOspfVariable; resourceInputs["tunnelInterfaceAllowSnmp"] = state?.tunnelInterfaceAllowSnmp; resourceInputs["tunnelInterfaceAllowSnmpVariable"] = state?.tunnelInterfaceAllowSnmpVariable; resourceInputs["tunnelInterfaceAllowSsh"] = state?.tunnelInterfaceAllowSsh; resourceInputs["tunnelInterfaceAllowSshVariable"] = state?.tunnelInterfaceAllowSshVariable; resourceInputs["tunnelInterfaceAllowStun"] = state?.tunnelInterfaceAllowStun; resourceInputs["tunnelInterfaceAllowStunVariable"] = state?.tunnelInterfaceAllowStunVariable; resourceInputs["tunnelInterfaceBindLoopbackTunnel"] = state?.tunnelInterfaceBindLoopbackTunnel; resourceInputs["tunnelInterfaceBindLoopbackTunnelVariable"] = state?.tunnelInterfaceBindLoopbackTunnelVariable; resourceInputs["tunnelInterfaceBorder"] = state?.tunnelInterfaceBorder; resourceInputs["tunnelInterfaceBorderVariable"] = state?.tunnelInterfaceBorderVariable; resourceInputs["tunnelInterfaceCarrier"] = state?.tunnelInterfaceCarrier; resourceInputs["tunnelInterfaceCarrierVariable"] = state?.tunnelInterfaceCarrierVariable; resourceInputs["tunnelInterfaceClearDontFragment"] = state?.tunnelInterfaceClearDontFragment; resourceInputs["tunnelInterfaceClearDontFragmentVariable"] = state?.tunnelInterfaceClearDontFragmentVariable; resourceInputs["tunnelInterfaceColor"] = state?.tunnelInterfaceColor; resourceInputs["tunnelInterfaceColorRestrict"] = state?.tunnelInterfaceColorRestrict; resourceInputs["tunnelInterfaceColorVariable"] = state?.tunnelInterfaceColorVariable; resourceInputs["tunnelInterfaceControlConnections"] = state?.tunnelInterfaceControlConnections; resourceInputs["tunnelInterfaceControlConnectionsVariable"] = state?.tunnelInterfaceControlConnectionsVariable; resourceInputs["tunnelInterfaceEncapsulations"] = state?.tunnelInterfaceEncapsulations; resourceInputs["tunnelInterfaceExcludeControllerGroupListVariable"] = state?.tunnelInterfaceExcludeControllerGroupListVariable; resourceInputs["tunnelInterfaceExcludeControllerGroupLists"] = state?.tunnelInterfaceExcludeControllerGroupLists; resourceInputs["tunnelInterfaceGroups"] = state?.tunnelInterfaceGroups; resourceInputs["tunnelInterfaceGroupsVariable"] = state?.tunnelInterfaceGroupsVariable; resourceInputs["tunnelInterfaceHelloInterval"] = state?.tunnelInterfaceHelloInterval; resourceInputs["tunnelInterfaceHelloIntervalVariable"] = state?.tunnelInterfaceHelloIntervalVariable; resourceInputs["tunnelInterfaceHelloTolerance"] = state?.tunnelInterfaceHelloTolerance; resourceInputs["tunnelInterfaceHelloToleranceVariable"] = state?.tunnelInterfaceHelloToleranceVariable; resourceInputs["tunnelInterfaceLastResortCircuit"] = state?.tunnelInterfaceLastResortCircuit; resourceInputs["tunnelInterfaceLastResortCircuitVariable"] = state?.tunnelInterfaceLastResortCircuitVariable; resourceInputs["tunnelInterfaceLowBandwidthLink"] = state?.tunnelInterfaceLowBandwidthLink; resourceInputs["tunnelInterfaceLowBandwidthLinkVariable"] = state?.tunnelInterfaceLowBandwidthLinkVariable; resourceInputs["tunnelInterfaceMaxControlConnections"] = state?.tunnelInterfaceMaxControlConnections; resourceInputs["tunnelInterfaceMaxControlConnectionsVariable"] = state?.tunnelInterfaceMaxControlConnectionsVariable; resourceInputs["tunnelInterfaceNatRefreshInterval"] = state?.tunnelInterfaceNatRefreshInterval; resourceInputs["tunnelInterfaceNatRefreshIntervalVariable"] = state?.tunnelInterfaceNatRefreshIntervalVariable; resourceInputs["tunnelInterfaceNetworkBroadcast"] = state?.tunnelInterfaceNetworkBroadcast; resourceInputs["tunnelInterfaceNetworkBroadcastVariable"] = state?.tunnelInterfaceNetworkBroadcastVariable; resourceInputs["tunnelInterfacePortHop"] = state?.tunnelInterfacePortHop; resourceInputs["tunnelInterfacePortHopVariable"] = state?.tunnelInterfacePortHopVariable; resourceInputs["tunnelInterfaceTunnelTcpMss"] = state?.tunnelInterfaceTunnelTcpMss; resourceInputs["tunnelInterfaceTunnelTcpMssVariable"] = state?.tunnelInterfaceTunnelTcpMssVariable; resourceInputs["tunnelInterfaceVbondAsStunServer"] = state?.tunnelInterfaceVbondAsStunServer; resourceInputs["tunnelInterfaceVbondAsStunServerVariable"] = state?.tunnelInterfaceVbondAsStunServerVariable; resourceInputs["tunnelInterfaceVmanageConnectionPreference"] = state?.tunnelInterfaceVmanageConnectionPreference; resourceInputs["tunnelInterfaceVmanageConnectionPreferenceVariable"] = state?.tunnelInterfaceVmanageConnectionPreferenceVariable; resourceInputs["tunnelQosMode"] = state?.tunnelQosMode; resourceInputs["tunnelQosModeVariable"] = state?.tunnelQosModeVariable; resourceInputs["vdslConfigurations"] = state?.vdslConfigurations; resourceInputs["version"] = state?.version; resourceInputs["writeRule"] = state?.writeRule; resourceInputs["writeRuleVariable"] = state?.writeRuleVariable; } else { const args = argsOrState; if (args?.description === undefined && !opts.urn) { throw new Error("Missing required property 'description'"); } if (args?.deviceTypes === undefined && !opts.urn) { throw new Error("Missing required property 'deviceTypes'"); } resourceInputs["accessLists"] = args?.accessLists; resourceInputs["atmDescription"] = args?.atmDescription; resourceInputs["atmDescriptionVariable"] = args?.atmDescriptionVariable; resourceInputs["atmSubInterfaceName"] = args?.atmSubInterfaceName; resourceInputs["atmSubInterfaceNameVariable"] = args?.atmSubInterfaceNameVariable; resourceInputs["bandwidthDownstream"] = args?.bandwidthDownstream; resourceInputs["bandwidthDownstreamVariable"] = args?.bandwidthDownstreamVariable; resourceInputs["bandwidthUpstream"] = args?.bandwidthUpstream; resourceInputs["bandwidthUpstreamVariable"] = args?.bandwidthUpstreamVariable; resourceInputs["chapHostname"] = args?.chapHostname; resourceInputs["chapHostnameVariable"] = args?.chapHostnameVariable; resourceInputs["chapPppAuthPassword"] = args?.chapPppAuthPassword; resourceInputs["chapPppAuthPasswordVariable"] = args?.chapPppAuthPasswordVariable; resourceInputs["coreRegion"] = args?.coreRegion; resourceInputs["coreRegionVariable"] = args?.coreRegionVariable; resourceInputs["description"] = args?.description; resourceInputs["deviceTypes"] = args?.deviceTypes; resourceInputs["enableCoreRegion"] = args?.enableCoreRegion; resourceInputs["enableCoreRegionVariable"] = args?.enableCoreRegionVariable; resourceInputs["ipDirectedBroadcast"] = args?.ipDirectedBroadcast; resourceInputs["ipDirectedBroadcastVariable"] = args?.ipDirectedBroadcastVariable; resourceInputs["ipMtu"] = args?.ipMtu; resourceInputs["ipMtuVariable"] = args?.ipMtuVariable; resourceInputs["name"] = args?.name; resourceInputs["nat"] = args?.nat; resourceInputs["natBlockIcmpError"] = args?.natBlockIcmpError; resourceInputs["natBlockIcmpErrorVariable"] = args?.natBlockIcmpErrorVariable; resourceInputs["natPortForwards"] = args?.natPortForwards; resourceInputs["natRefreshMode"] = args?.natRefreshMode; resourceInputs["natRefreshModeVariable"] = args?.natRefreshModeVariable; resourceInputs["natResponseToPing"] = args?.natResponseToPing; resourceInputs["natResponseToPingVariable"] = args?.natResponseToPingVariable; resourceInputs["natTcpTimeout"] = args?.natTcpTimeout; resourceInputs["natTcpTimeoutVariable"] = args?.natTcpTimeoutVariable; resourceInputs["natUdpTimeout"] = args?.natUdpTimeout; resourceInputs["natUdpTimeoutVariable"] = args?.natUdpTimeoutVariable; resourceInputs["papPassword"] = args?.papPassword; resourceInputs["papPppAuthPassword"] = args?.papPppAuthPassword; resourceInputs["papPppAuthPasswordVariable"] = args?.papPppAuthPasswordVariable; resourceInputs["papUsername"] = args?.papUsername; resourceInputs["papUsernameVariable"] = args?.papUsernameVariable; resourceInputs["perTunnelQos"] = args?.perTunnelQos; resourceInputs["perTunnelQosAggregator"] = args?.perTunnelQosAggregator; resourceInputs["perTunnelQosAggregatorVariable"] = args?.perTunnelQosAggregatorVariable; resourceInputs["perTunnelQosVariable"] = args?.perTunnelQosVariable; resourceInputs["policers"] = args?.policers; resourceInputs["pppAuthenticationProtocol"] = args?.pppAuthenticationProtocol; resourceInputs["pppAuthenticationProtocolPap"] = args?.pppAuthenticationProtocolPap; resourceInputs["pppAuthenticationProtocolVariable"] = args?.pppAuthenticationProtocolVariable; resourceInputs["pppAuthenticationType"] = args?.pppAuthenticationType; resourceInputs["pvcs"] = args?.pvcs; resourceInputs["qosAdaptiveBandwidthDownstream"] = args?.qosAdaptiveBandwidthDownstream; resourceInputs["qosAdaptiveBandwidthDownstreamVariable"] = args?.qosAdaptiveBandwidthDownstreamVariable; resourceInputs["qosAdaptiveBandwidthUpstream"] = args?.qosAdaptiveBandwidthUpstream; resourceInputs["qosAdaptiveBandwidthUpstreamVariable"] = args?.qosAdaptiveBandwidthUpstreamVariable; resourceInputs["qosAdaptiveMaxDownstream"] = args?.qosAdaptiveMaxDownstream; resourceInputs["qosAdaptiveMaxDownstreamVariable"] = args?.qosAdaptiveMaxDownstreamVariable; resourceInputs["qosAdaptiveMaxUpstream"] = args?.qosAdaptiveMaxUpstream; resourceInputs["qosAdaptiveMaxUpstreamVariable"] = args?.qosAdaptiveMaxUpstreamVariable; resourceInputs["qosAdaptiveMinDownstream"] = args?.qosAdaptiveMinDownstream; resourceInputs["qosAdaptiveMinDownstreamVariable"] = args?.qosAdaptiveMinDownstreamVariable; resourceInputs["qosAdaptiveMinUpstream"] = args?.qosAdaptiveMinUpstream; resourceInputs["qosAdaptiveMinUpstreamVariable"] = args?.qosAdaptiveMinUpstreamVariable; resourceInputs["qosAdaptivePeriod"] = args?.qosAdaptivePeriod; resourceInputs["qosAdaptivePeriodVariable"] = args?.qosAdaptivePeriodVariable; resourceInputs["qosMap"] = args?.qosMap; resourceInputs["qosMapVariable"] = args?.qosMapVariable; resourceInputs["qosMapVpn"] = args?.qosMapVpn; resourceInputs["qosMapVpnVariable"] = args?.qosMapVpnVariable; resourceInputs["secondaryRegion"] = args?.secondaryRegion; resourceInputs["secondaryRegionVariable"] = args?.secondaryRegionVariable; resourceInputs["shapingRate"] = args?.shapingRate; resourceInputs["shapingRateVariable"] = args?.shapingRateVariable; resourceInputs["shutdown"] = args?.shutdown; resourceInputs["shutdownVariable"] = args?.shutdownVariable; resourceInputs["tcpMss"] = args?.tcpMss; resourceInputs["tcpMssVariable"] = args?.tcpMssVariable; resourceInputs["tlocExtension"] = args?.tlocExtension; resourceInputs["tlocExtensionVariable"] = args?.tlocExtensionVariable; resourceInputs["trackerVariable"] = args?.trackerVariable; resourceInputs["trackers"] = args?.trackers; resourceInputs["tunnelInterfaceAllowAll"] = args?.tunnelInterfaceAllowAll; resourceInputs["tunnelInterfaceAllowAllVariable"] = args?.tunnelInterfaceAllowAllVariable; resourceInputs["tunnelInterfaceAllowBgp"] = args?.tunnelInterfaceAllowBgp; resourceInputs["tunnelInterfaceAllowBgpVariable"] = args?.tunnelInterfaceAllowBgpVariable; resourceInputs["tunnelInterfaceAllowDhcp"] = args?.tunnelInterfaceAllowDhcp; resourceInputs["tunnelInterfaceAllowDhcpVariable"] = args?.tunnelInterfaceAllowDhcpVariable; resourceInputs["tunnelInterfaceAllowDns"] = args?.tunnelInterfaceAllowDns; resourceInputs["tunnelInterfaceAllowDnsVariable"] = args?.tunnelInterfaceAllowDnsVariable; resourceInputs["tunnelInterfaceAllowHttps"] = args?.tunnelInterfaceAllowHttps; resourceInputs["tunnelInterfaceAllowHttpsVariable"] = args?.tunnelInterfaceAllowHttpsVariable; resourceInputs["tunnelInterfaceAllowIcmp"] = args?.tunnelInterfaceAllowIcmp; resourceInputs["tunnelInterfaceAllowIcmpVariable"] = args?.tunnelInterfaceAllowIcmpVariable; resourceInputs["tunnelInterfaceAllowNetconf"] = args?.tunnelInterfaceAllowNetconf; resourceInputs["tunnelInterfaceAllowNetconfVariable"] = args?.tunnelInterfaceAllowNetconfVariable; resourceInputs["tunnelInterfaceAllowNtp"] = args?.tunnelInterfaceAllowNtp; resourceInputs["tunnelInterfaceAllowNtpVariable"] = args?.tunnelInterfaceAllowNtpVariable; resourceInputs["tunnelInterfaceAllowOspf"] = args?.tunnelInterfaceAllowOspf; resourceInputs["tunnelInterfaceAllowOspfVariable"] = args?.tunnelInterfaceAllowOspfVariable; resourceInputs["tunnelInterfaceAllowSnmp"] = args?.tunnelInterfaceAllowSnmp; resourceInputs["tunnelInterfaceAllowSnmpVariable"] = args?.tunnelInterfaceAllowSnmpVariable; resourceInputs["tunnelInterfaceAllowSsh"] = args?.tunnelInterfaceAllowSsh; resourceInputs["tunnelInterfaceAllowSshVariable"] = args?.tunnelInterfaceAllowSshVariable; resourceInputs["tunnelInterfaceAllowStun"] = args?.tunnelInterfaceAllowStun; resourceInputs["tunnelInterfaceAllowStunVariable"] = args?.tunnelInterfaceAllowStunVariable; resourceInputs["tunnelInterfaceBindLoopbackTunnel"] = args?.tunnelInterfaceBindLoopbackTunnel; resourceInputs["tunnelInterfaceBindLoopbackTunnelVariable"] = args?.tunnelInterfaceBindLoopbackTunnelVariable; resourceInputs["tunnelInterfaceBorder"] = args?.tunnelInterfaceBorder; resourceInputs["tunnelInterfaceBorderVariable"] = args?.tunnelInterfaceBorderVariable; resourceInputs["tunnelInterfaceCarrier"] = args?.tunnelInterfaceCarrier; resourceInputs["tunnelInterfaceCarrierVariable"] = args?.tunnelInterfaceCarrierVariable; resourceInputs["tunnelInterfaceClearDontFragment"] = args?.tunnelInterfaceClearDontFragment; resourceInputs["tunnelInterfaceClearDontFragmentVariable"] = args?.tunnelInterfaceClearDontFragmentVariable; resourceInputs["tunnelInterfaceColor"] = args?.tunnelInterfaceColor; resourceInputs["tunnelInterfaceColorRestrict"] = args?.tunnelInterfaceColorRestrict; resourceInputs["tunnelInterfaceColorVariable"] = args?.tunnelInterfaceColorVariable; resourceInputs["tunnelInterfaceControlConnections"] = args?.tunnelInterfaceControlConnections; resourceInputs["tunnelInterfaceControlConnectionsVariable"] = args?.tunnelInterfaceControlConnectionsVariable; resourceInputs["tunnelInterfaceEncapsulations"] = args?.tunnelInterfaceEncapsulations; resourceInputs["tunnelInterfaceExcludeControllerGroupListVariable"] = args?.tunnelInterfaceExcludeControllerGroupListVariable; resourceInputs["tunnelInterfaceExcludeControllerGroupLists"] = args?.tunnelInterfaceExcludeControllerGroupLists; resourceInputs["tunnelInterfaceGroups"] = args?.tunnelInterfaceGroups; resourceInputs["tunnelInterfaceGroupsVariable"] = args?.tunnelInterfaceGroupsVariable; resourceInputs["tunnelInterfaceHelloInterval"] = args?.tunnelInterfaceHelloInterval; resourceInputs["tunnelInterfaceHelloIntervalVariable"] = args?.tunnelInterfaceHelloIntervalVariable; resourceInputs["tunnelInterfaceHelloTolerance"] = args?.tunnelInterfaceHelloTolerance; resourceInputs["tunnelInterfaceHelloToleranceVariable"] = args?.tunnelInterfaceHelloToleranceVariable; resourceInputs["tunnelInterfaceLastResortCircuit"] = args?.tunnelInterfaceLastResortCircuit; resourceInputs["tunnelInterfaceLastResortCircuitVariable"] = args?.tunnelInterfaceLastResortCircuitVariable; resourceInputs["tunnelInterfaceLowBandwidthLink"] = args?.tunnelInterfaceLowBandwidthLink; resourceInputs["tunnelInterfaceLowBandwidthLinkVariable"] = args?.tunnelInterfaceLowBandwidthLinkVariable; resourceInputs["tunnelInterfaceMaxControlConnections"] = args?.tunnelInterfaceMaxControlConnections; resourceInputs["tunnelInterfaceMaxControlConnectionsVariable"] = args?.tunnelInterfaceMaxControlConnectionsVariable; resourceInputs["tunnelInterfaceNatRefreshInterval"] = args?.tunnelInterfaceNatRefreshInterval; resourceInputs["tunnelInterfaceNatRefreshIntervalVariable"] = args?.tunnelInterfaceNatRefreshIntervalVariable; resourceInputs["tunnelInterfaceNetworkBroadcast"] = args?.tunnelInterfaceNetworkBroadcast; resourceInputs["tunnelInterfaceNetworkBroadcastVariable"] = args?.tunnelInterfaceNetworkBroadcastVariable; resourceInputs["tunnelInterfacePortHop"] = args?.tunnelInterfacePortHop; resourceInputs["tunnelInterfacePortHopVariable"] = args?.tunnelInterfacePortHopVariable; resourceInputs["tunnelInterfaceTunnelTcpMss"] = args?.tunnelInterfaceTunnelTcpMss; resourceInputs["tunnelInterfaceTunnelTcpMssVariable"] = args?.tunnelInterfaceTunnelTcpMssVariable; resourceInputs["tunnelInterfaceVbondAsStunServer"] = args?.tunnelInterfaceVbondAsStunServer; resourceInputs["tunnelInterfaceVbondAsStunServerVariable"] = args?.tunnelInterfaceVbondAsStunServerVariable; resourceInputs["tunnelInterfaceVmanageConnectionPreference"] = args?.tunnelInterfaceVmanageConnectionPreference; resourceInputs["tunnelInterfaceVmanageConnectionPreferenceVariable"] = args?.tunnelInterfaceVmanageConnectionPreferenceVariable; resourceInputs["tunnelQosMode"] = args?.tunnelQosMode; resourceInputs["tunnelQosModeVariable"] = args?.tunnelQosModeVariable; resourceInputs["vdslConfigurations"] = args?.vdslConfigurations; resourceInputs["writeRule"] = args?.writeRule; resourceInputs["writeRuleVariable"] = args?.writeRuleVariable; resourceInputs["templateType"] = undefined /*out*/; resourceInputs["version"] = undefined /*out*/; } opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts); super(VpnInterfaceDslPppoaFeatureTemplate.__pulumiType, name, resourceInputs, opts); } } exports.VpnInterfaceDslPppoaFeatureTemplate = VpnInterfaceDslPppoaFeatureTemplate; /** @internal */ VpnInterfaceDslPppoaFeatureTemplate.__pulumiType = 'sdwan:index/vpnInterfaceDslPppoaFeatureTemplate:VpnInterfaceDslPppoaFeatureTemplate'; //# sourceMappingURL=vpnInterfaceDslPppoaFeatureTemplate.js.map