UNPKG

@pulumi/sdwan

Version:

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

412 lines 30.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.TransportWanVpnInterfaceCellularFeature = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("./utilities"); /** * This resource can manage a Transport WAN VPN Interface Cellular Feature. * - Minimum SD-WAN Manager version: `20.12.0` * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as sdwan from "@pulumi/sdwan"; * * const example = new sdwan.TransportWanVpnInterfaceCellularFeature("example", { * name: "Example", * description: "My Example", * featureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac", * transportWanVpnFeatureId: "140331f6-5418-4755-a059-13c77eb96037", * shutdown: true, * interfaceName: "GigabitEthernet1", * interfaceDescription: "WAN", * ipv4DhcpHelpers: ["1.2.3.4"], * serviceProvider: "example", * bandwidthUpstream: 21474836, * bandwidthDownstream: 21474836, * tunnelInterface: true, * perTunnelQos: true, * tunnelQosMode: "hub", * tunnelBandwidthPercent: 82, * tunnelInterfaceBindLoopbackTunnel: "example", * tunnelInterfaceCarrier: "default", * tunnelInterfaceColor: "default", * tunnelInterfaceHelloInterval: 1000, * tunnelInterfaceHelloTolerance: 12, * tunnelInterfaceLastResortCircuit: false, * tunnelInterfaceColorRestrict: true, * tunnelInterfaceGroups: 42949672, * tunnelInterfaceBorder: false, * tunnelInterfaceMaxControlConnections: 62, * tunnelInterfaceNatRefreshInterval: 5, * tunnelInterfaceVbondAsStunServer: false, * tunnelInterfaceExcludeControllerGroupLists: [2], * tunnelInterfaceVmanageConnectionPreference: 8, * tunnelInterfacePortHop: true, * tunnelInterfaceLowBandwidthLink: false, * tunnelInterfaceTunnelTcpMss: 1460, * tunnelInterfaceClearDontFragment: false, * tunnelInterfaceNetworkBroadcast: false, * tunnelInterfaceAllowAll: false, * tunnelInterfaceAllowBgp: false, * tunnelInterfaceAllowDhcp: true, * tunnelInterfaceAllowNtp: false, * tunnelInterfaceAllowSsh: false, * tunnelInterfaceAllowDns: true, * tunnelInterfaceAllowIcmp: true, * tunnelInterfaceAllowHttps: true, * tunnelInterfaceAllowOspf: false, * tunnelInterfaceAllowStun: false, * tunnelInterfaceAllowSnmp: false, * tunnelInterfaceAllowNetconf: false, * tunnelInterfaceAllowBfd: false, * tunnelInterfaceEncapsulations: [{ * encapsulation: "gre", * preference: 4294967, * weight: 250, * }], * natIpv4: true, * natUdpTimeout: 1, * natTcpTimeout: 60, * qosAdaptive: false, * qosShapingRate: 16, * aclIpv4EgressFeatureId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac", * aclIpv6IngressFeatureId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac", * arps: [{ * ipAddress: "1.2.3.4", * macAddress: "00-B0-D0-63-C2-26", * }], * ipMtu: 1500, * interfaceMtu: 1500, * tcpMss: 505, * tlocExtension: "tloc", * tracker: "example", * ipDirectedBroadcast: false, * }); * ``` * * ## Import * * The `pulumi import` command can be used, for example: * * Expected import identifier with the format: "transport_wan_vpn_interface_cellular_feature_id,feature_profile_id,transport_wan_vpn_feature_id" * * ```sh * $ pulumi import sdwan:index/transportWanVpnInterfaceCellularFeature:TransportWanVpnInterfaceCellularFeature example "f6b2c44c-693c-4763-b010-895aa3d236bd,f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac,140331f6-5418-4755-a059-13c77eb96037" * ``` */ class TransportWanVpnInterfaceCellularFeature extends pulumi.CustomResource { /** * Get an existing TransportWanVpnInterfaceCellularFeature 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 TransportWanVpnInterfaceCellularFeature(name, state, { ...opts, id: id }); } /** * Returns true if the given object is an instance of TransportWanVpnInterfaceCellularFeature. 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'] === TransportWanVpnInterfaceCellularFeature.__pulumiType; } constructor(name, argsOrState, opts) { let resourceInputs = {}; opts = opts || {}; if (opts.id) { const state = argsOrState; resourceInputs["aclIpv4EgressFeatureId"] = state?.aclIpv4EgressFeatureId; resourceInputs["aclIpv4IngressFeatureId"] = state?.aclIpv4IngressFeatureId; resourceInputs["aclIpv6EgressFeatureId"] = state?.aclIpv6EgressFeatureId; resourceInputs["aclIpv6IngressFeatureId"] = state?.aclIpv6IngressFeatureId; resourceInputs["arps"] = state?.arps; resourceInputs["bandwidthDownstream"] = state?.bandwidthDownstream; resourceInputs["bandwidthDownstreamVariable"] = state?.bandwidthDownstreamVariable; resourceInputs["bandwidthUpstream"] = state?.bandwidthUpstream; resourceInputs["bandwidthUpstreamVariable"] = state?.bandwidthUpstreamVariable; resourceInputs["description"] = state?.description; resourceInputs["featureProfileId"] = state?.featureProfileId; resourceInputs["interfaceDescription"] = state?.interfaceDescription; resourceInputs["interfaceDescriptionVariable"] = state?.interfaceDescriptionVariable; resourceInputs["interfaceMtu"] = state?.interfaceMtu; resourceInputs["interfaceMtuVariable"] = state?.interfaceMtuVariable; resourceInputs["interfaceName"] = state?.interfaceName; resourceInputs["interfaceNameVariable"] = state?.interfaceNameVariable; resourceInputs["ipDirectedBroadcast"] = state?.ipDirectedBroadcast; resourceInputs["ipDirectedBroadcastVariable"] = state?.ipDirectedBroadcastVariable; resourceInputs["ipMtu"] = state?.ipMtu; resourceInputs["ipMtuVariable"] = state?.ipMtuVariable; resourceInputs["ipv4DhcpHelperVariable"] = state?.ipv4DhcpHelperVariable; resourceInputs["ipv4DhcpHelpers"] = state?.ipv4DhcpHelpers; resourceInputs["name"] = state?.name; resourceInputs["natIpv4"] = state?.natIpv4; resourceInputs["natIpv4Variable"] = state?.natIpv4Variable; resourceInputs["natTcpTimeout"] = state?.natTcpTimeout; resourceInputs["natTcpTimeoutVariable"] = state?.natTcpTimeoutVariable; resourceInputs["natUdpTimeout"] = state?.natUdpTimeout; resourceInputs["natUdpTimeoutVariable"] = state?.natUdpTimeoutVariable; resourceInputs["perTunnelQos"] = state?.perTunnelQos; resourceInputs["perTunnelQosVariable"] = state?.perTunnelQosVariable; resourceInputs["qosAdaptive"] = state?.qosAdaptive; resourceInputs["qosAdaptiveBandwidthDownstream"] = state?.qosAdaptiveBandwidthDownstream; resourceInputs["qosAdaptiveBandwidthUpstream"] = state?.qosAdaptiveBandwidthUpstream; resourceInputs["qosAdaptiveDefaultDownstream"] = state?.qosAdaptiveDefaultDownstream; resourceInputs["qosAdaptiveDefaultDownstreamVariable"] = state?.qosAdaptiveDefaultDownstreamVariable; resourceInputs["qosAdaptiveDefaultUpstream"] = state?.qosAdaptiveDefaultUpstream; resourceInputs["qosAdaptiveDefaultUpstreamVariable"] = state?.qosAdaptiveDefaultUpstreamVariable; 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["qosShapingRate"] = state?.qosShapingRate; resourceInputs["qosShapingRateVariable"] = state?.qosShapingRateVariable; resourceInputs["serviceProvider"] = state?.serviceProvider; resourceInputs["serviceProviderVariable"] = state?.serviceProviderVariable; resourceInputs["shutdown"] = state?.shutdown; resourceInputs["shutdownVariable"] = state?.shutdownVariable; resourceInputs["tcpMss"] = state?.tcpMss; resourceInputs["tcpMssVariable"] = state?.tcpMssVariable; resourceInputs["tlocExtension"] = state?.tlocExtension; resourceInputs["tlocExtensionVariable"] = state?.tlocExtensionVariable; resourceInputs["tracker"] = state?.tracker; resourceInputs["trackerVariable"] = state?.trackerVariable; resourceInputs["transportWanVpnFeatureId"] = state?.transportWanVpnFeatureId; resourceInputs["tunnelBandwidthPercent"] = state?.tunnelBandwidthPercent; resourceInputs["tunnelBandwidthPercentVariable"] = state?.tunnelBandwidthPercentVariable; resourceInputs["tunnelInterface"] = state?.tunnelInterface; resourceInputs["tunnelInterfaceAllowAll"] = state?.tunnelInterfaceAllowAll; resourceInputs["tunnelInterfaceAllowAllVariable"] = state?.tunnelInterfaceAllowAllVariable; resourceInputs["tunnelInterfaceAllowBfd"] = state?.tunnelInterfaceAllowBfd; resourceInputs["tunnelInterfaceAllowBfdVariable"] = state?.tunnelInterfaceAllowBfdVariable; 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["tunnelInterfaceColorRestrictVariable"] = state?.tunnelInterfaceColorRestrictVariable; resourceInputs["tunnelInterfaceColorVariable"] = state?.tunnelInterfaceColorVariable; 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["version"] = state?.version; } else { const args = argsOrState; if (args?.featureProfileId === undefined && !opts.urn) { throw new Error("Missing required property 'featureProfileId'"); } if (args?.transportWanVpnFeatureId === undefined && !opts.urn) { throw new Error("Missing required property 'transportWanVpnFeatureId'"); } resourceInputs["aclIpv4EgressFeatureId"] = args?.aclIpv4EgressFeatureId; resourceInputs["aclIpv4IngressFeatureId"] = args?.aclIpv4IngressFeatureId; resourceInputs["aclIpv6EgressFeatureId"] = args?.aclIpv6EgressFeatureId; resourceInputs["aclIpv6IngressFeatureId"] = args?.aclIpv6IngressFeatureId; resourceInputs["arps"] = args?.arps; resourceInputs["bandwidthDownstream"] = args?.bandwidthDownstream; resourceInputs["bandwidthDownstreamVariable"] = args?.bandwidthDownstreamVariable; resourceInputs["bandwidthUpstream"] = args?.bandwidthUpstream; resourceInputs["bandwidthUpstreamVariable"] = args?.bandwidthUpstreamVariable; resourceInputs["description"] = args?.description; resourceInputs["featureProfileId"] = args?.featureProfileId; resourceInputs["interfaceDescription"] = args?.interfaceDescription; resourceInputs["interfaceDescriptionVariable"] = args?.interfaceDescriptionVariable; resourceInputs["interfaceMtu"] = args?.interfaceMtu; resourceInputs["interfaceMtuVariable"] = args?.interfaceMtuVariable; resourceInputs["interfaceName"] = args?.interfaceName; resourceInputs["interfaceNameVariable"] = args?.interfaceNameVariable; resourceInputs["ipDirectedBroadcast"] = args?.ipDirectedBroadcast; resourceInputs["ipDirectedBroadcastVariable"] = args?.ipDirectedBroadcastVariable; resourceInputs["ipMtu"] = args?.ipMtu; resourceInputs["ipMtuVariable"] = args?.ipMtuVariable; resourceInputs["ipv4DhcpHelperVariable"] = args?.ipv4DhcpHelperVariable; resourceInputs["ipv4DhcpHelpers"] = args?.ipv4DhcpHelpers; resourceInputs["name"] = args?.name; resourceInputs["natIpv4"] = args?.natIpv4; resourceInputs["natIpv4Variable"] = args?.natIpv4Variable; resourceInputs["natTcpTimeout"] = args?.natTcpTimeout; resourceInputs["natTcpTimeoutVariable"] = args?.natTcpTimeoutVariable; resourceInputs["natUdpTimeout"] = args?.natUdpTimeout; resourceInputs["natUdpTimeoutVariable"] = args?.natUdpTimeoutVariable; resourceInputs["perTunnelQos"] = args?.perTunnelQos; resourceInputs["perTunnelQosVariable"] = args?.perTunnelQosVariable; resourceInputs["qosAdaptive"] = args?.qosAdaptive; resourceInputs["qosAdaptiveBandwidthDownstream"] = args?.qosAdaptiveBandwidthDownstream; resourceInputs["qosAdaptiveBandwidthUpstream"] = args?.qosAdaptiveBandwidthUpstream; resourceInputs["qosAdaptiveDefaultDownstream"] = args?.qosAdaptiveDefaultDownstream; resourceInputs["qosAdaptiveDefaultDownstreamVariable"] = args?.qosAdaptiveDefaultDownstreamVariable; resourceInputs["qosAdaptiveDefaultUpstream"] = args?.qosAdaptiveDefaultUpstream; resourceInputs["qosAdaptiveDefaultUpstreamVariable"] = args?.qosAdaptiveDefaultUpstreamVariable; 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["qosShapingRate"] = args?.qosShapingRate; resourceInputs["qosShapingRateVariable"] = args?.qosShapingRateVariable; resourceInputs["serviceProvider"] = args?.serviceProvider; resourceInputs["serviceProviderVariable"] = args?.serviceProviderVariable; 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["tracker"] = args?.tracker; resourceInputs["trackerVariable"] = args?.trackerVariable; resourceInputs["transportWanVpnFeatureId"] = args?.transportWanVpnFeatureId; resourceInputs["tunnelBandwidthPercent"] = args?.tunnelBandwidthPercent; resourceInputs["tunnelBandwidthPercentVariable"] = args?.tunnelBandwidthPercentVariable; resourceInputs["tunnelInterface"] = args?.tunnelInterface; resourceInputs["tunnelInterfaceAllowAll"] = args?.tunnelInterfaceAllowAll; resourceInputs["tunnelInterfaceAllowAllVariable"] = args?.tunnelInterfaceAllowAllVariable; resourceInputs["tunnelInterfaceAllowBfd"] = args?.tunnelInterfaceAllowBfd; resourceInputs["tunnelInterfaceAllowBfdVariable"] = args?.tunnelInterfaceAllowBfdVariable; 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["tunnelInterfaceColorRestrictVariable"] = args?.tunnelInterfaceColorRestrictVariable; resourceInputs["tunnelInterfaceColorVariable"] = args?.tunnelInterfaceColorVariable; 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["version"] = undefined /*out*/; } opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts); super(TransportWanVpnInterfaceCellularFeature.__pulumiType, name, resourceInputs, opts); } } exports.TransportWanVpnInterfaceCellularFeature = TransportWanVpnInterfaceCellularFeature; /** @internal */ TransportWanVpnInterfaceCellularFeature.__pulumiType = 'sdwan:index/transportWanVpnInterfaceCellularFeature:TransportWanVpnInterfaceCellularFeature'; //# sourceMappingURL=transportWanVpnInterfaceCellularFeature.js.map