pulumi-sdwan 0.3.0a1732277684__py3-none-any.whl → 0.3.0a1732664608__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of pulumi-sdwan might be problematic. Click here for more details.
- pulumi_sdwan/__init__.py +160 -0
- pulumi_sdwan/_inputs.py +78 -55
- pulumi_sdwan/get_service_lan_vpn_feature_associate_multicast_feature.py +156 -0
- pulumi_sdwan/get_service_lan_vpn_feature_associate_routing_bgp_feature.py +156 -0
- pulumi_sdwan/get_service_lan_vpn_feature_associate_routing_eigrp_feature.py +156 -0
- pulumi_sdwan/get_service_lan_vpn_feature_associate_routing_ospf_feature.py +156 -0
- pulumi_sdwan/get_service_lan_vpn_feature_associate_routing_ospfv3_ipv4_feature.py +156 -0
- pulumi_sdwan/get_service_lan_vpn_feature_associate_routing_ospfv3_ipv6_feature.py +156 -0
- pulumi_sdwan/get_service_lan_vpn_interface_svi_feature.py +45 -1
- pulumi_sdwan/get_transport_cellular_controller_feature.py +302 -0
- pulumi_sdwan/get_transport_cellular_profile_feature.py +372 -0
- pulumi_sdwan/get_transport_wan_vpn_feature_associate_routing_bgp_feature.py +156 -0
- pulumi_sdwan/get_transport_wan_vpn_feature_associate_routing_ospf_feature.py +156 -0
- pulumi_sdwan/get_transport_wan_vpn_feature_associate_routing_ospfv3_ipv4_feature.py +156 -0
- pulumi_sdwan/get_transport_wan_vpn_feature_associate_routing_ospfv3_ipv6_feature.py +156 -0
- pulumi_sdwan/get_transport_wan_vpn_interface_cellular_feature.py +45 -1
- pulumi_sdwan/get_transport_wan_vpn_interface_ethernet_feature.py +45 -1
- pulumi_sdwan/get_transport_wan_vpn_interface_ethernet_feature_associate_ipv6_tracker_feature.py +178 -0
- pulumi_sdwan/get_transport_wan_vpn_interface_ethernet_feature_associate_ipv6_tracker_group_feature.py +178 -0
- pulumi_sdwan/get_transport_wan_vpn_interface_ethernet_feature_associate_tracker_feature.py +178 -0
- pulumi_sdwan/get_transport_wan_vpn_interface_ethernet_feature_associate_tracker_group_feature.py +178 -0
- pulumi_sdwan/get_transport_wan_vpn_interface_t1_e1_serial_feature.py +45 -1
- pulumi_sdwan/other_ucse_feature.py +51 -46
- pulumi_sdwan/outputs.py +83 -58
- pulumi_sdwan/pulumi-plugin.json +1 -1
- pulumi_sdwan/service_lan_vpn_feature_associate_multicast_feature.py +285 -0
- pulumi_sdwan/service_lan_vpn_feature_associate_routing_bgp_feature.py +285 -0
- pulumi_sdwan/service_lan_vpn_feature_associate_routing_eigrp_feature.py +285 -0
- pulumi_sdwan/service_lan_vpn_feature_associate_routing_ospf_feature.py +285 -0
- pulumi_sdwan/service_lan_vpn_feature_associate_routing_ospfv3_ipv4_feature.py +285 -0
- pulumi_sdwan/service_lan_vpn_feature_associate_routing_ospfv3_ipv6_feature.py +285 -0
- pulumi_sdwan/service_lan_vpn_interface_svi_feature.py +136 -0
- pulumi_sdwan/system_remote_access_feature.py +17 -18
- pulumi_sdwan/transport_cellular_controller_feature.py +796 -0
- pulumi_sdwan/transport_cellular_profile_feature.py +1036 -0
- pulumi_sdwan/transport_wan_vpn_feature_associate_routing_bgp_feature.py +285 -0
- pulumi_sdwan/transport_wan_vpn_feature_associate_routing_ospf_feature.py +285 -0
- pulumi_sdwan/transport_wan_vpn_feature_associate_routing_ospfv3_ipv4_feature.py +285 -0
- pulumi_sdwan/transport_wan_vpn_feature_associate_routing_ospfv3_ipv6_feature.py +285 -0
- pulumi_sdwan/transport_wan_vpn_interface_cellular_feature.py +136 -0
- pulumi_sdwan/transport_wan_vpn_interface_ethernet_feature.py +136 -0
- pulumi_sdwan/transport_wan_vpn_interface_ethernet_feature_associate_ipv6_tracker_feature.py +335 -0
- pulumi_sdwan/transport_wan_vpn_interface_ethernet_feature_associate_ipv6_tracker_group_feature.py +335 -0
- pulumi_sdwan/transport_wan_vpn_interface_ethernet_feature_associate_tracker_feature.py +335 -0
- pulumi_sdwan/transport_wan_vpn_interface_ethernet_feature_associate_tracker_group_feature.py +335 -0
- pulumi_sdwan/transport_wan_vpn_interface_t1_e1_serial_feature.py +140 -0
- {pulumi_sdwan-0.3.0a1732277684.dist-info → pulumi_sdwan-0.3.0a1732664608.dist-info}/METADATA +1 -1
- {pulumi_sdwan-0.3.0a1732277684.dist-info → pulumi_sdwan-0.3.0a1732664608.dist-info}/RECORD +50 -18
- {pulumi_sdwan-0.3.0a1732277684.dist-info → pulumi_sdwan-0.3.0a1732664608.dist-info}/WHEEL +0 -0
- {pulumi_sdwan-0.3.0a1732277684.dist-info → pulumi_sdwan-0.3.0a1732664608.dist-info}/top_level.txt +0 -0
|
@@ -22,6 +22,10 @@ __all__ = ['TransportWanVpnInterfaceT1E1SerialFeatureArgs', 'TransportWanVpnInte
|
|
|
22
22
|
class TransportWanVpnInterfaceT1E1SerialFeatureArgs:
|
|
23
23
|
def __init__(__self__, *,
|
|
24
24
|
feature_profile_id: pulumi.Input[str],
|
|
25
|
+
acl_ipv4_egress_feature_id: Optional[pulumi.Input[str]] = None,
|
|
26
|
+
acl_ipv4_ingress_feature_id: Optional[pulumi.Input[str]] = None,
|
|
27
|
+
acl_ipv6_egress_feature_id: Optional[pulumi.Input[str]] = None,
|
|
28
|
+
acl_ipv6_ingress_feature_id: Optional[pulumi.Input[str]] = None,
|
|
25
29
|
bandwidth: Optional[pulumi.Input[int]] = None,
|
|
26
30
|
bandwidth_downstream: Optional[pulumi.Input[int]] = None,
|
|
27
31
|
bandwidth_downstream_variable: Optional[pulumi.Input[str]] = None,
|
|
@@ -241,6 +245,14 @@ class TransportWanVpnInterfaceT1E1SerialFeatureArgs:
|
|
|
241
245
|
:param pulumi.Input[str] tunnel_qos_mode_variable: Variable name
|
|
242
246
|
"""
|
|
243
247
|
pulumi.set(__self__, "feature_profile_id", feature_profile_id)
|
|
248
|
+
if acl_ipv4_egress_feature_id is not None:
|
|
249
|
+
pulumi.set(__self__, "acl_ipv4_egress_feature_id", acl_ipv4_egress_feature_id)
|
|
250
|
+
if acl_ipv4_ingress_feature_id is not None:
|
|
251
|
+
pulumi.set(__self__, "acl_ipv4_ingress_feature_id", acl_ipv4_ingress_feature_id)
|
|
252
|
+
if acl_ipv6_egress_feature_id is not None:
|
|
253
|
+
pulumi.set(__self__, "acl_ipv6_egress_feature_id", acl_ipv6_egress_feature_id)
|
|
254
|
+
if acl_ipv6_ingress_feature_id is not None:
|
|
255
|
+
pulumi.set(__self__, "acl_ipv6_ingress_feature_id", acl_ipv6_ingress_feature_id)
|
|
244
256
|
if bandwidth is not None:
|
|
245
257
|
pulumi.set(__self__, "bandwidth", bandwidth)
|
|
246
258
|
if bandwidth_downstream is not None:
|
|
@@ -460,6 +472,42 @@ class TransportWanVpnInterfaceT1E1SerialFeatureArgs:
|
|
|
460
472
|
def feature_profile_id(self, value: pulumi.Input[str]):
|
|
461
473
|
pulumi.set(self, "feature_profile_id", value)
|
|
462
474
|
|
|
475
|
+
@property
|
|
476
|
+
@pulumi.getter(name="aclIpv4EgressFeatureId")
|
|
477
|
+
def acl_ipv4_egress_feature_id(self) -> Optional[pulumi.Input[str]]:
|
|
478
|
+
return pulumi.get(self, "acl_ipv4_egress_feature_id")
|
|
479
|
+
|
|
480
|
+
@acl_ipv4_egress_feature_id.setter
|
|
481
|
+
def acl_ipv4_egress_feature_id(self, value: Optional[pulumi.Input[str]]):
|
|
482
|
+
pulumi.set(self, "acl_ipv4_egress_feature_id", value)
|
|
483
|
+
|
|
484
|
+
@property
|
|
485
|
+
@pulumi.getter(name="aclIpv4IngressFeatureId")
|
|
486
|
+
def acl_ipv4_ingress_feature_id(self) -> Optional[pulumi.Input[str]]:
|
|
487
|
+
return pulumi.get(self, "acl_ipv4_ingress_feature_id")
|
|
488
|
+
|
|
489
|
+
@acl_ipv4_ingress_feature_id.setter
|
|
490
|
+
def acl_ipv4_ingress_feature_id(self, value: Optional[pulumi.Input[str]]):
|
|
491
|
+
pulumi.set(self, "acl_ipv4_ingress_feature_id", value)
|
|
492
|
+
|
|
493
|
+
@property
|
|
494
|
+
@pulumi.getter(name="aclIpv6EgressFeatureId")
|
|
495
|
+
def acl_ipv6_egress_feature_id(self) -> Optional[pulumi.Input[str]]:
|
|
496
|
+
return pulumi.get(self, "acl_ipv6_egress_feature_id")
|
|
497
|
+
|
|
498
|
+
@acl_ipv6_egress_feature_id.setter
|
|
499
|
+
def acl_ipv6_egress_feature_id(self, value: Optional[pulumi.Input[str]]):
|
|
500
|
+
pulumi.set(self, "acl_ipv6_egress_feature_id", value)
|
|
501
|
+
|
|
502
|
+
@property
|
|
503
|
+
@pulumi.getter(name="aclIpv6IngressFeatureId")
|
|
504
|
+
def acl_ipv6_ingress_feature_id(self) -> Optional[pulumi.Input[str]]:
|
|
505
|
+
return pulumi.get(self, "acl_ipv6_ingress_feature_id")
|
|
506
|
+
|
|
507
|
+
@acl_ipv6_ingress_feature_id.setter
|
|
508
|
+
def acl_ipv6_ingress_feature_id(self, value: Optional[pulumi.Input[str]]):
|
|
509
|
+
pulumi.set(self, "acl_ipv6_ingress_feature_id", value)
|
|
510
|
+
|
|
463
511
|
@property
|
|
464
512
|
@pulumi.getter
|
|
465
513
|
def bandwidth(self) -> Optional[pulumi.Input[int]]:
|
|
@@ -1706,6 +1754,10 @@ class TransportWanVpnInterfaceT1E1SerialFeatureArgs:
|
|
|
1706
1754
|
@pulumi.input_type
|
|
1707
1755
|
class _TransportWanVpnInterfaceT1E1SerialFeatureState:
|
|
1708
1756
|
def __init__(__self__, *,
|
|
1757
|
+
acl_ipv4_egress_feature_id: Optional[pulumi.Input[str]] = None,
|
|
1758
|
+
acl_ipv4_ingress_feature_id: Optional[pulumi.Input[str]] = None,
|
|
1759
|
+
acl_ipv6_egress_feature_id: Optional[pulumi.Input[str]] = None,
|
|
1760
|
+
acl_ipv6_ingress_feature_id: Optional[pulumi.Input[str]] = None,
|
|
1709
1761
|
bandwidth: Optional[pulumi.Input[int]] = None,
|
|
1710
1762
|
bandwidth_downstream: Optional[pulumi.Input[int]] = None,
|
|
1711
1763
|
bandwidth_downstream_variable: Optional[pulumi.Input[str]] = None,
|
|
@@ -1927,6 +1979,14 @@ class _TransportWanVpnInterfaceT1E1SerialFeatureState:
|
|
|
1927
1979
|
:param pulumi.Input[str] tunnel_qos_mode_variable: Variable name
|
|
1928
1980
|
:param pulumi.Input[int] version: The version of the Feature
|
|
1929
1981
|
"""
|
|
1982
|
+
if acl_ipv4_egress_feature_id is not None:
|
|
1983
|
+
pulumi.set(__self__, "acl_ipv4_egress_feature_id", acl_ipv4_egress_feature_id)
|
|
1984
|
+
if acl_ipv4_ingress_feature_id is not None:
|
|
1985
|
+
pulumi.set(__self__, "acl_ipv4_ingress_feature_id", acl_ipv4_ingress_feature_id)
|
|
1986
|
+
if acl_ipv6_egress_feature_id is not None:
|
|
1987
|
+
pulumi.set(__self__, "acl_ipv6_egress_feature_id", acl_ipv6_egress_feature_id)
|
|
1988
|
+
if acl_ipv6_ingress_feature_id is not None:
|
|
1989
|
+
pulumi.set(__self__, "acl_ipv6_ingress_feature_id", acl_ipv6_ingress_feature_id)
|
|
1930
1990
|
if bandwidth is not None:
|
|
1931
1991
|
pulumi.set(__self__, "bandwidth", bandwidth)
|
|
1932
1992
|
if bandwidth_downstream is not None:
|
|
@@ -2138,6 +2198,42 @@ class _TransportWanVpnInterfaceT1E1SerialFeatureState:
|
|
|
2138
2198
|
if version is not None:
|
|
2139
2199
|
pulumi.set(__self__, "version", version)
|
|
2140
2200
|
|
|
2201
|
+
@property
|
|
2202
|
+
@pulumi.getter(name="aclIpv4EgressFeatureId")
|
|
2203
|
+
def acl_ipv4_egress_feature_id(self) -> Optional[pulumi.Input[str]]:
|
|
2204
|
+
return pulumi.get(self, "acl_ipv4_egress_feature_id")
|
|
2205
|
+
|
|
2206
|
+
@acl_ipv4_egress_feature_id.setter
|
|
2207
|
+
def acl_ipv4_egress_feature_id(self, value: Optional[pulumi.Input[str]]):
|
|
2208
|
+
pulumi.set(self, "acl_ipv4_egress_feature_id", value)
|
|
2209
|
+
|
|
2210
|
+
@property
|
|
2211
|
+
@pulumi.getter(name="aclIpv4IngressFeatureId")
|
|
2212
|
+
def acl_ipv4_ingress_feature_id(self) -> Optional[pulumi.Input[str]]:
|
|
2213
|
+
return pulumi.get(self, "acl_ipv4_ingress_feature_id")
|
|
2214
|
+
|
|
2215
|
+
@acl_ipv4_ingress_feature_id.setter
|
|
2216
|
+
def acl_ipv4_ingress_feature_id(self, value: Optional[pulumi.Input[str]]):
|
|
2217
|
+
pulumi.set(self, "acl_ipv4_ingress_feature_id", value)
|
|
2218
|
+
|
|
2219
|
+
@property
|
|
2220
|
+
@pulumi.getter(name="aclIpv6EgressFeatureId")
|
|
2221
|
+
def acl_ipv6_egress_feature_id(self) -> Optional[pulumi.Input[str]]:
|
|
2222
|
+
return pulumi.get(self, "acl_ipv6_egress_feature_id")
|
|
2223
|
+
|
|
2224
|
+
@acl_ipv6_egress_feature_id.setter
|
|
2225
|
+
def acl_ipv6_egress_feature_id(self, value: Optional[pulumi.Input[str]]):
|
|
2226
|
+
pulumi.set(self, "acl_ipv6_egress_feature_id", value)
|
|
2227
|
+
|
|
2228
|
+
@property
|
|
2229
|
+
@pulumi.getter(name="aclIpv6IngressFeatureId")
|
|
2230
|
+
def acl_ipv6_ingress_feature_id(self) -> Optional[pulumi.Input[str]]:
|
|
2231
|
+
return pulumi.get(self, "acl_ipv6_ingress_feature_id")
|
|
2232
|
+
|
|
2233
|
+
@acl_ipv6_ingress_feature_id.setter
|
|
2234
|
+
def acl_ipv6_ingress_feature_id(self, value: Optional[pulumi.Input[str]]):
|
|
2235
|
+
pulumi.set(self, "acl_ipv6_ingress_feature_id", value)
|
|
2236
|
+
|
|
2141
2237
|
@property
|
|
2142
2238
|
@pulumi.getter
|
|
2143
2239
|
def bandwidth(self) -> Optional[pulumi.Input[int]]:
|
|
@@ -3410,6 +3506,10 @@ class TransportWanVpnInterfaceT1E1SerialFeature(pulumi.CustomResource):
|
|
|
3410
3506
|
def __init__(__self__,
|
|
3411
3507
|
resource_name: str,
|
|
3412
3508
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
3509
|
+
acl_ipv4_egress_feature_id: Optional[pulumi.Input[str]] = None,
|
|
3510
|
+
acl_ipv4_ingress_feature_id: Optional[pulumi.Input[str]] = None,
|
|
3511
|
+
acl_ipv6_egress_feature_id: Optional[pulumi.Input[str]] = None,
|
|
3512
|
+
acl_ipv6_ingress_feature_id: Optional[pulumi.Input[str]] = None,
|
|
3413
3513
|
bandwidth: Optional[pulumi.Input[int]] = None,
|
|
3414
3514
|
bandwidth_downstream: Optional[pulumi.Input[int]] = None,
|
|
3415
3515
|
bandwidth_downstream_variable: Optional[pulumi.Input[str]] = None,
|
|
@@ -3580,6 +3680,8 @@ class TransportWanVpnInterfaceT1E1SerialFeature(pulumi.CustomResource):
|
|
|
3580
3680
|
"preference": 4294967,
|
|
3581
3681
|
"weight": 250,
|
|
3582
3682
|
}],
|
|
3683
|
+
acl_ipv4_egress_feature_id="f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
|
|
3684
|
+
acl_ipv6_ingress_feature_id="f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
|
|
3583
3685
|
tcp_mss=1460,
|
|
3584
3686
|
mtu=1500,
|
|
3585
3687
|
ip_mtu=1500,
|
|
@@ -3780,6 +3882,8 @@ class TransportWanVpnInterfaceT1E1SerialFeature(pulumi.CustomResource):
|
|
|
3780
3882
|
"preference": 4294967,
|
|
3781
3883
|
"weight": 250,
|
|
3782
3884
|
}],
|
|
3885
|
+
acl_ipv4_egress_feature_id="f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
|
|
3886
|
+
acl_ipv6_ingress_feature_id="f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
|
|
3783
3887
|
tcp_mss=1460,
|
|
3784
3888
|
mtu=1500,
|
|
3785
3889
|
ip_mtu=1500,
|
|
@@ -3809,6 +3913,10 @@ class TransportWanVpnInterfaceT1E1SerialFeature(pulumi.CustomResource):
|
|
|
3809
3913
|
def _internal_init(__self__,
|
|
3810
3914
|
resource_name: str,
|
|
3811
3915
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
3916
|
+
acl_ipv4_egress_feature_id: Optional[pulumi.Input[str]] = None,
|
|
3917
|
+
acl_ipv4_ingress_feature_id: Optional[pulumi.Input[str]] = None,
|
|
3918
|
+
acl_ipv6_egress_feature_id: Optional[pulumi.Input[str]] = None,
|
|
3919
|
+
acl_ipv6_ingress_feature_id: Optional[pulumi.Input[str]] = None,
|
|
3812
3920
|
bandwidth: Optional[pulumi.Input[int]] = None,
|
|
3813
3921
|
bandwidth_downstream: Optional[pulumi.Input[int]] = None,
|
|
3814
3922
|
bandwidth_downstream_variable: Optional[pulumi.Input[str]] = None,
|
|
@@ -3922,6 +4030,10 @@ class TransportWanVpnInterfaceT1E1SerialFeature(pulumi.CustomResource):
|
|
|
3922
4030
|
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
|
3923
4031
|
__props__ = TransportWanVpnInterfaceT1E1SerialFeatureArgs.__new__(TransportWanVpnInterfaceT1E1SerialFeatureArgs)
|
|
3924
4032
|
|
|
4033
|
+
__props__.__dict__["acl_ipv4_egress_feature_id"] = acl_ipv4_egress_feature_id
|
|
4034
|
+
__props__.__dict__["acl_ipv4_ingress_feature_id"] = acl_ipv4_ingress_feature_id
|
|
4035
|
+
__props__.__dict__["acl_ipv6_egress_feature_id"] = acl_ipv6_egress_feature_id
|
|
4036
|
+
__props__.__dict__["acl_ipv6_ingress_feature_id"] = acl_ipv6_ingress_feature_id
|
|
3925
4037
|
__props__.__dict__["bandwidth"] = bandwidth
|
|
3926
4038
|
__props__.__dict__["bandwidth_downstream"] = bandwidth_downstream
|
|
3927
4039
|
__props__.__dict__["bandwidth_downstream_variable"] = bandwidth_downstream_variable
|
|
@@ -4039,6 +4151,10 @@ class TransportWanVpnInterfaceT1E1SerialFeature(pulumi.CustomResource):
|
|
|
4039
4151
|
def get(resource_name: str,
|
|
4040
4152
|
id: pulumi.Input[str],
|
|
4041
4153
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
4154
|
+
acl_ipv4_egress_feature_id: Optional[pulumi.Input[str]] = None,
|
|
4155
|
+
acl_ipv4_ingress_feature_id: Optional[pulumi.Input[str]] = None,
|
|
4156
|
+
acl_ipv6_egress_feature_id: Optional[pulumi.Input[str]] = None,
|
|
4157
|
+
acl_ipv6_ingress_feature_id: Optional[pulumi.Input[str]] = None,
|
|
4042
4158
|
bandwidth: Optional[pulumi.Input[int]] = None,
|
|
4043
4159
|
bandwidth_downstream: Optional[pulumi.Input[int]] = None,
|
|
4044
4160
|
bandwidth_downstream_variable: Optional[pulumi.Input[str]] = None,
|
|
@@ -4269,6 +4385,10 @@ class TransportWanVpnInterfaceT1E1SerialFeature(pulumi.CustomResource):
|
|
|
4269
4385
|
|
|
4270
4386
|
__props__ = _TransportWanVpnInterfaceT1E1SerialFeatureState.__new__(_TransportWanVpnInterfaceT1E1SerialFeatureState)
|
|
4271
4387
|
|
|
4388
|
+
__props__.__dict__["acl_ipv4_egress_feature_id"] = acl_ipv4_egress_feature_id
|
|
4389
|
+
__props__.__dict__["acl_ipv4_ingress_feature_id"] = acl_ipv4_ingress_feature_id
|
|
4390
|
+
__props__.__dict__["acl_ipv6_egress_feature_id"] = acl_ipv6_egress_feature_id
|
|
4391
|
+
__props__.__dict__["acl_ipv6_ingress_feature_id"] = acl_ipv6_ingress_feature_id
|
|
4272
4392
|
__props__.__dict__["bandwidth"] = bandwidth
|
|
4273
4393
|
__props__.__dict__["bandwidth_downstream"] = bandwidth_downstream
|
|
4274
4394
|
__props__.__dict__["bandwidth_downstream_variable"] = bandwidth_downstream_variable
|
|
@@ -4376,6 +4496,26 @@ class TransportWanVpnInterfaceT1E1SerialFeature(pulumi.CustomResource):
|
|
|
4376
4496
|
__props__.__dict__["version"] = version
|
|
4377
4497
|
return TransportWanVpnInterfaceT1E1SerialFeature(resource_name, opts=opts, __props__=__props__)
|
|
4378
4498
|
|
|
4499
|
+
@property
|
|
4500
|
+
@pulumi.getter(name="aclIpv4EgressFeatureId")
|
|
4501
|
+
def acl_ipv4_egress_feature_id(self) -> pulumi.Output[Optional[str]]:
|
|
4502
|
+
return pulumi.get(self, "acl_ipv4_egress_feature_id")
|
|
4503
|
+
|
|
4504
|
+
@property
|
|
4505
|
+
@pulumi.getter(name="aclIpv4IngressFeatureId")
|
|
4506
|
+
def acl_ipv4_ingress_feature_id(self) -> pulumi.Output[Optional[str]]:
|
|
4507
|
+
return pulumi.get(self, "acl_ipv4_ingress_feature_id")
|
|
4508
|
+
|
|
4509
|
+
@property
|
|
4510
|
+
@pulumi.getter(name="aclIpv6EgressFeatureId")
|
|
4511
|
+
def acl_ipv6_egress_feature_id(self) -> pulumi.Output[Optional[str]]:
|
|
4512
|
+
return pulumi.get(self, "acl_ipv6_egress_feature_id")
|
|
4513
|
+
|
|
4514
|
+
@property
|
|
4515
|
+
@pulumi.getter(name="aclIpv6IngressFeatureId")
|
|
4516
|
+
def acl_ipv6_ingress_feature_id(self) -> pulumi.Output[Optional[str]]:
|
|
4517
|
+
return pulumi.get(self, "acl_ipv6_ingress_feature_id")
|
|
4518
|
+
|
|
4379
4519
|
@property
|
|
4380
4520
|
@pulumi.getter
|
|
4381
4521
|
def bandwidth(self) -> pulumi.Output[Optional[int]]:
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
pulumi_sdwan/__init__.py,sha256=
|
|
2
|
-
pulumi_sdwan/_inputs.py,sha256
|
|
1
|
+
pulumi_sdwan/__init__.py,sha256=qau3eTvwvrSHJIWrM5dS2xcNmjWyaw0BMPZ5xGvM5ao,72983
|
|
2
|
+
pulumi_sdwan/_inputs.py,sha256=-ADJM0NvUpNqdtwKVGlIkrj7_uJWz_8YNznIRlTmhwI,3121065
|
|
3
3
|
pulumi_sdwan/_utilities.py,sha256=-gxwnD6__OYdSf8jJgJijNuu-UHUwi5pJ1H7-eIHDhg,10504
|
|
4
4
|
pulumi_sdwan/activate_centralized_policy.py,sha256=PBRLaAdspGU24s9uHilioumbGzcJM7Igf4ZcLmlKbzE,6286
|
|
5
5
|
pulumi_sdwan/advanced_inspection_profile_policy_definition.py,sha256=6KwP0JZLN8hg5BklYhKIC2IunRdlLd_gPcMiKAZ2elo,30967
|
|
@@ -191,10 +191,16 @@ pulumi_sdwan/get_service_feature_profile.py,sha256=4gV_UZrHfyYNrB2N3Bd0Mdy_0Ih-1
|
|
|
191
191
|
pulumi_sdwan/get_service_ipv4_acl_feature.py,sha256=fPrs52meXLncr_vT6AaBD9Ov6O1_ilMCIgnPPDOFmiE,7089
|
|
192
192
|
pulumi_sdwan/get_service_ipv6_acl_feature.py,sha256=YZNMBK4F4OXrMoPlD6aY3tIjJ8Qmmpk6AA9GYUO3isM,7089
|
|
193
193
|
pulumi_sdwan/get_service_lan_vpn_feature.py,sha256=sAgPOzlQXC-lRAJBdgTnp4N-deRxVmTIO9604_uOWO0,33250
|
|
194
|
+
pulumi_sdwan/get_service_lan_vpn_feature_associate_multicast_feature.py,sha256=l4rTdUstAgEW9T1P8QSfUllv9CKRc-Fgo42jTW4J-ao,7427
|
|
195
|
+
pulumi_sdwan/get_service_lan_vpn_feature_associate_routing_bgp_feature.py,sha256=bbHIS8ZuAHn5UtV5LU4Y23Efu1k1xT2nx--sTiJLtDg,7503
|
|
196
|
+
pulumi_sdwan/get_service_lan_vpn_feature_associate_routing_eigrp_feature.py,sha256=HFA5Zt7Tyrz1OQYxB-dr7Fx55gdqSBzkWmegAUX9Xak,7597
|
|
197
|
+
pulumi_sdwan/get_service_lan_vpn_feature_associate_routing_ospf_feature.py,sha256=KVZLm7bjBthKm_Uurmh28tjniGzRzeS3DOh9PfR5AiU,7550
|
|
198
|
+
pulumi_sdwan/get_service_lan_vpn_feature_associate_routing_ospfv3_ipv4_feature.py,sha256=CT3NPiM7B4PzBHOuNkgCU0Zc3MdpNfAaWqNawYf4TSk,7861
|
|
199
|
+
pulumi_sdwan/get_service_lan_vpn_feature_associate_routing_ospfv3_ipv6_feature.py,sha256=fLBzb9VHhHvTx-eKAxtU0gpZWA3uYEjwQ5DGqnar560,7861
|
|
194
200
|
pulumi_sdwan/get_service_lan_vpn_interface_ethernet_feature.py,sha256=mXEGQF9Da79pg0UgkesW6KLORbJzUN1JqrMC9NHX_JY,65997
|
|
195
201
|
pulumi_sdwan/get_service_lan_vpn_interface_gre_feature.py,sha256=XRsf1o05eo_z6kFCn-6mk7bPEOH7XbKKmtmmvmUa2Y8,28304
|
|
196
202
|
pulumi_sdwan/get_service_lan_vpn_interface_ipsec_feature.py,sha256=_coW-DRuE1jLZ7lNIjXI5jVidTlO0uoZWTiH5FUXrRY,50988
|
|
197
|
-
pulumi_sdwan/get_service_lan_vpn_interface_svi_feature.py,sha256=
|
|
203
|
+
pulumi_sdwan/get_service_lan_vpn_interface_svi_feature.py,sha256=jDaBHBp5PGdDxZwgHCNO9F0e21s9SrMvLwoNEP85hhI,33349
|
|
198
204
|
pulumi_sdwan/get_service_multicast_feature.py,sha256=Ium-G1FZVYhJMaRgE53N2I95S2eUlSXYLg20BickdKE,25074
|
|
199
205
|
pulumi_sdwan/get_service_object_tracker_feature.py,sha256=ir3HdrgHOZoaqxQRhM7OsbKy2UTMRDomWLNSjkFIP58,12660
|
|
200
206
|
pulumi_sdwan/get_service_object_tracker_group_feature.py,sha256=cI18zcKN7E2Id9LgGsbt6cehdsYJsAAdoIzWMCVWgf8,9557
|
|
@@ -234,6 +240,8 @@ pulumi_sdwan/get_tloc_list_policy_object.py,sha256=3iPp_3JKz9-4Wvt8FD64meGU22H7O
|
|
|
234
240
|
pulumi_sdwan/get_tls_ssl_decryption_policy_definition.py,sha256=Q1d_00XOPmJwdWOJRDq4u785ZLr4xycqW1wyPN2sYQY,16919
|
|
235
241
|
pulumi_sdwan/get_tls_ssl_profile_policy_definition.py,sha256=m_k4pvygdyJzeFB5yHtSENzanxX82DkfUv1dtDw5GzU,12109
|
|
236
242
|
pulumi_sdwan/get_traffic_data_policy_definition.py,sha256=LjgvV8gpu_hb5ejgonLiMD_PRwCFmZ1ODrR45mIP9RA,6544
|
|
243
|
+
pulumi_sdwan/get_transport_cellular_controller_feature.py,sha256=TCPmoz8rqrPhEP87z3kl2OzyREso84tHegUlumgne1w,13374
|
|
244
|
+
pulumi_sdwan/get_transport_cellular_profile_feature.py,sha256=Kptx_0mXlHLq5Nb00eHcUEIvbGe-QnM8D_GFJdCf3ek,16639
|
|
237
245
|
pulumi_sdwan/get_transport_feature_profile.py,sha256=jGKwP6YNhPGgWxvRGaZLkHqRIxw9KmgtpNcNz3iFPRM,4279
|
|
238
246
|
pulumi_sdwan/get_transport_gps_feature.py,sha256=QlAzBcs7kIKN825MwgKEMG_DWO8vU5NJ4prbd0XwhHA,14077
|
|
239
247
|
pulumi_sdwan/get_transport_ipv4_acl_feature.py,sha256=6837TbQP-iNUp8jZszcGclBzDUdw4nWz_4s7lKHqOdQ,7149
|
|
@@ -251,11 +259,19 @@ pulumi_sdwan/get_transport_t1_e1_controller_feature.py,sha256=4oWnmpq96n6ZNQTahU
|
|
|
251
259
|
pulumi_sdwan/get_transport_tracker_feature.py,sha256=U5oDyvoHfHyxrVCaVA67gSMy-rxuqZ1ZR-7UEb9Xeq4,17515
|
|
252
260
|
pulumi_sdwan/get_transport_tracker_group_feature.py,sha256=vWbQ5UTps0s0ETXGwecAo6A3b3zS3xv3Zy_gbycwshY,8215
|
|
253
261
|
pulumi_sdwan/get_transport_wan_vpn_feature.py,sha256=svBYlvQkCCet1FnbiPhzkd216AncKmN4L3cYatL4_Zw,17800
|
|
254
|
-
pulumi_sdwan/
|
|
255
|
-
pulumi_sdwan/
|
|
262
|
+
pulumi_sdwan/get_transport_wan_vpn_feature_associate_routing_bgp_feature.py,sha256=geunQGd7xdaiE7d9GmFaSExCpJ_h8THQX-bbH36LxDs,7653
|
|
263
|
+
pulumi_sdwan/get_transport_wan_vpn_feature_associate_routing_ospf_feature.py,sha256=EHxS9VkoWaEo5rvttEXtNrlMpP2G2QBxz1FKm7HCdyg,7700
|
|
264
|
+
pulumi_sdwan/get_transport_wan_vpn_feature_associate_routing_ospfv3_ipv4_feature.py,sha256=37DzQwHTDZQ3QLyCGxoJUmiBx1KEuZjrJOCAvOglFHM,8011
|
|
265
|
+
pulumi_sdwan/get_transport_wan_vpn_feature_associate_routing_ospfv3_ipv6_feature.py,sha256=ydfNV1gZ7R1EYbWM9JDA1O3syPkv3Fa5cn_i6weofe4,8011
|
|
266
|
+
pulumi_sdwan/get_transport_wan_vpn_interface_cellular_feature.py,sha256=NN9aXoYDCsNlpoei4ydn7y-oiSofkqLLQoHUa7of7n0,113086
|
|
267
|
+
pulumi_sdwan/get_transport_wan_vpn_interface_ethernet_feature.py,sha256=N6nFNwbBnZZRBZH-KYSszc1SscA5ZxuyTiSy4OeDjv0,155558
|
|
268
|
+
pulumi_sdwan/get_transport_wan_vpn_interface_ethernet_feature_associate_ipv6_tracker_feature.py,sha256=5Rl_Q4LknDSIVNldF-EhL4Tosx3P8Trh0eIbmrNV22s,10337
|
|
269
|
+
pulumi_sdwan/get_transport_wan_vpn_interface_ethernet_feature_associate_ipv6_tracker_group_feature.py,sha256=gmZ7JmQJ9hYXTQ6PiqddWYLb4F_9pNEnjz_1NU_vI4U,10613
|
|
270
|
+
pulumi_sdwan/get_transport_wan_vpn_interface_ethernet_feature_associate_tracker_feature.py,sha256=KBNqis_Zpb34m0cINh0KOfugkqFI0OmSoRy6-arLW8A,10110
|
|
271
|
+
pulumi_sdwan/get_transport_wan_vpn_interface_ethernet_feature_associate_tracker_group_feature.py,sha256=RhYCWJrAW7aGRy64uWdxL5Mz-0Jfg69xzYOkhTplwYs,10386
|
|
256
272
|
pulumi_sdwan/get_transport_wan_vpn_interface_gre_feature.py,sha256=6sNG_Tuu0G27Dwxgu0gbM0IuH8z2NHVTiVYyKEdd5rU,28422
|
|
257
273
|
pulumi_sdwan/get_transport_wan_vpn_interface_ipsec_feature.py,sha256=pAAfqkQmQj1vCMPzApvZNWTPxtMly5iXoBcN6V_BS9Y,51106
|
|
258
|
-
pulumi_sdwan/get_transport_wan_vpn_interface_t1_e1_serial_feature.py,sha256=
|
|
274
|
+
pulumi_sdwan/get_transport_wan_vpn_interface_t1_e1_serial_feature.py,sha256=hDxPsdqvqEI45vfPYL4e68LMRYYD4xvq65eWGBN7W54,93357
|
|
259
275
|
pulumi_sdwan/get_url_filtering_policy_definition.py,sha256=BgwfIJkJNd4X7KhCoC9kAMiYBipBOmdrzN0oOIUYiy0,12618
|
|
260
276
|
pulumi_sdwan/get_vedge_inventory.py,sha256=GgdmpiNwz8O82LGmoTAyZ-6iSJ5I7DheI0qC4bQehrs,3257
|
|
261
277
|
pulumi_sdwan/get_vpn_interface_cellular_feature_template.py,sha256=KVT_clFEsiBcrzETonishfoFUmhAd-nBfYC1Pp53ob0,123937
|
|
@@ -287,8 +303,8 @@ pulumi_sdwan/mirror_policy_object.py,sha256=aEZH8EQbqgx8bMYPid0AN6cdfGxGdXx6Rw7T
|
|
|
287
303
|
pulumi_sdwan/object_group_policy_definition.py,sha256=2G9F25nQ_mrP0cIKD7Qv5SWHpCW7FV8rT3BUO49u7Vo,36293
|
|
288
304
|
pulumi_sdwan/other_feature_profile.py,sha256=6A0eOHotUhHVypFhH4l7UZSrr_u2Geb6xRq7f8h8eTw,8404
|
|
289
305
|
pulumi_sdwan/other_thousandeyes_feature.py,sha256=F1tC31P_fWjp89E0h9WNsu3c9AysbpkY4xVcOmlwKJE,14750
|
|
290
|
-
pulumi_sdwan/other_ucse_feature.py,sha256=
|
|
291
|
-
pulumi_sdwan/outputs.py,sha256=
|
|
306
|
+
pulumi_sdwan/other_ucse_feature.py,sha256=yMG2K17suOPT0pgjalK_R86GAQdxKd39_UMwv9Yvl_I,41520
|
|
307
|
+
pulumi_sdwan/outputs.py,sha256=pdJLaMcFXKdK0NcPQf_p-Doq0CZpfeZijKpj8o0Tfoc,3732991
|
|
292
308
|
pulumi_sdwan/policer_policy_object.py,sha256=niCM26ExIcPUUJlz47mGSTxkqa_Me26rW-unHBR5LyE,12985
|
|
293
309
|
pulumi_sdwan/policy_object_app_probe_class.py,sha256=k_3MSpQ3NE5SCeR_9osV5YniNUTRVqu2B8igIMWMaIA,14146
|
|
294
310
|
pulumi_sdwan/policy_object_application_list.py,sha256=DkVyQE-YhWa-PdC-9y2V4SYLDAbSdXEE0o3Fgh5ompQ,15127
|
|
@@ -324,7 +340,7 @@ pulumi_sdwan/port_list_policy_object.py,sha256=0yeYc50bP9w8w4BuVbb1QMkv1V2nKYka1
|
|
|
324
340
|
pulumi_sdwan/preferred_color_group_policy_object.py,sha256=H4bdNO2wH3G6T6YMxLj3Sgve5cNZCP7jCMMaR1uekkE,23347
|
|
325
341
|
pulumi_sdwan/protocol_list_policy_object.py,sha256=8t17Lwp5w9z-oiwZVMF7TNDbkA6kSa2QhjXdROwrRn4,10278
|
|
326
342
|
pulumi_sdwan/provider.py,sha256=vAm2qEQ3oecSzov_XrQDsOyXuttLdtfBvrXceMrYSgk,9888
|
|
327
|
-
pulumi_sdwan/pulumi-plugin.json,sha256=
|
|
343
|
+
pulumi_sdwan/pulumi-plugin.json,sha256=84jTejLRYToTyMtokFYR_tqBUnhKbF55eMiF_lpIuUs,81
|
|
328
344
|
pulumi_sdwan/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
329
345
|
pulumi_sdwan/qos_map_policy_definition.py,sha256=G9VnIxP8TRpJKZyu1TtYar_JEoFoq4q9mCXle0h-J7I,12853
|
|
330
346
|
pulumi_sdwan/region_list_policy_object.py,sha256=_9AKZJffhZpgezgj9RqJUDWC7HRhysus58QyOZ14GGA,9628
|
|
@@ -337,10 +353,16 @@ pulumi_sdwan/service_feature_profile.py,sha256=GmZwPIo6wL7lsVDSCMinwRsHorBdOSBjN
|
|
|
337
353
|
pulumi_sdwan/service_ipv4_acl_feature.py,sha256=7P-G6lKb48wnN2xj5Os92upg2bzTgyo9WiWNPC95Pa8,16135
|
|
338
354
|
pulumi_sdwan/service_ipv6_acl_feature.py,sha256=HeruINckDXMjLQNuLZbFxinxUatHSt5bpazRCfv3vUg,16135
|
|
339
355
|
pulumi_sdwan/service_lan_vpn_feature.py,sha256=QFCRU4QkMFTw5ZnZ4o1VlOgBSZk_8oGR5JnUjJQIR6s,110065
|
|
356
|
+
pulumi_sdwan/service_lan_vpn_feature_associate_multicast_feature.py,sha256=aE4TcXxwGWWDYG9stsWtqC_d98KATrvFwJ20EivwN_k,13009
|
|
357
|
+
pulumi_sdwan/service_lan_vpn_feature_associate_routing_bgp_feature.py,sha256=axJRaUHj62n9ds7c5u7wlr4txhkmJe2qtSfcELJR4n4,13124
|
|
358
|
+
pulumi_sdwan/service_lan_vpn_feature_associate_routing_eigrp_feature.py,sha256=iGA_s36bLfRklfLdKmGehFqWKy7UwUWD-vdYWSZHhgE,13268
|
|
359
|
+
pulumi_sdwan/service_lan_vpn_feature_associate_routing_ospf_feature.py,sha256=to3cR619WdldSv7YluOX971JpeMpA47JIALK9LXySno,13196
|
|
360
|
+
pulumi_sdwan/service_lan_vpn_feature_associate_routing_ospfv3_ipv4_feature.py,sha256=6TCBNNQaQg1wnPNg2dhO8ePOfSXLRMP4bL5ZFfGTZ_w,13671
|
|
361
|
+
pulumi_sdwan/service_lan_vpn_feature_associate_routing_ospfv3_ipv6_feature.py,sha256=kFp7LUpSyNH0fZxbYp90MGganto1CGqER7So-rA46is,13671
|
|
340
362
|
pulumi_sdwan/service_lan_vpn_interface_ethernet_feature.py,sha256=s-0nJJ5Y5i3xuT9t6kIDy3aF7CJIvNGURwcCNFOAi7k,210677
|
|
341
363
|
pulumi_sdwan/service_lan_vpn_interface_gre_feature.py,sha256=CugZB6aL7XqhBEw2COzyWsgPU9hiBW4gGYBnzvyvBMw,82683
|
|
342
364
|
pulumi_sdwan/service_lan_vpn_interface_ipsec_feature.py,sha256=Qjn1K6SCQABxU30mS0dL5mc-Y-scZuH7tSbzX0oa4rQ,167112
|
|
343
|
-
pulumi_sdwan/service_lan_vpn_interface_svi_feature.py,sha256=
|
|
365
|
+
pulumi_sdwan/service_lan_vpn_interface_svi_feature.py,sha256=2F1bzgnmqEehiNEiAP__OsajCSE9eNY7Xh3t1apJUtA,104486
|
|
344
366
|
pulumi_sdwan/service_multicast_feature.py,sha256=VFu4ICAKrAX0J0mtWuhMtVQfSzwq5S4A20hPPNvA4G4,77845
|
|
345
367
|
pulumi_sdwan/service_object_tracker_feature.py,sha256=wq-tHMNNU4Vhoz0Mjq3DyV_g6qdaFEc7AfSFuS44UTE,37563
|
|
346
368
|
pulumi_sdwan/service_object_tracker_group_feature.py,sha256=uj83dARm5GjiPXS3gcUrU_FQiVzZXNRPxnQCEG6SK-8,23338
|
|
@@ -373,13 +395,15 @@ pulumi_sdwan/system_mrf_feature.py,sha256=3tZ6lhRSoZvOB61E9HCNTIA1MLe3plD1W4rUYO
|
|
|
373
395
|
pulumi_sdwan/system_ntp_feature.py,sha256=DOHvh0nejJ8px-iQVdiaOOP2V9R63qb3jjQAJmEBf5Q,34179
|
|
374
396
|
pulumi_sdwan/system_omp_feature.py,sha256=JJwII357zd4_21NmJ5ZyXG11iV_LUe9is37CNfLD_TE,145858
|
|
375
397
|
pulumi_sdwan/system_performance_monitoring_feature.py,sha256=3x8O7kO79m6YDB4dlu9Ysjh8v8JboNSi219P16QzFSI,28332
|
|
376
|
-
pulumi_sdwan/system_remote_access_feature.py,sha256=
|
|
398
|
+
pulumi_sdwan/system_remote_access_feature.py,sha256=bBldSxiojbNocb9uBm5XPXuj7DdBgfCLnzIOGbhlUgE,120526
|
|
377
399
|
pulumi_sdwan/system_security_feature.py,sha256=JDC9vy0zJoYTAJ-_Umc7jzcpL5Abuc-WvQ-xdaWEWWE,40296
|
|
378
400
|
pulumi_sdwan/system_snmp_feature.py,sha256=qtHnbDIGf2o8blbJBJNwYQECUeuzHkEC-uz54jkFEaA,37072
|
|
379
401
|
pulumi_sdwan/tloc_list_policy_object.py,sha256=iUKX_Btj_miZareonZquL1wLM_jHIzLAPPQzfzYDkgE,9538
|
|
380
402
|
pulumi_sdwan/tls_ssl_decryption_policy_definition.py,sha256=tfqINEztfPvSsRMCZ5jOL_Wl-FqIF2-QJJTp6xZyqKc,51135
|
|
381
403
|
pulumi_sdwan/tls_ssl_profile_policy_definition.py,sha256=Cb3QWdRQZGD-7g9nDq_VkRFzISdwQ-sBQMShUu0m23M,34209
|
|
382
404
|
pulumi_sdwan/traffic_data_policy_definition.py,sha256=bP-ZLeq5Akrh5qUayM_snTbo0qRIFuMxiJD99pXZEgQ,14993
|
|
405
|
+
pulumi_sdwan/transport_cellular_controller_feature.py,sha256=_jV1pdIJ4E0k3LnQkobx5pNPClzjkyyxQBdWycz4WKg,34603
|
|
406
|
+
pulumi_sdwan/transport_cellular_profile_feature.py,sha256=trgBvsrENbsGip6VU-v3Z4DnqaeWf0yiRRGj4ECH6QQ,45157
|
|
383
407
|
pulumi_sdwan/transport_feature_profile.py,sha256=bLRyXEAAtvgRpLokUP-GN_7fam-IjFWqtvu9uvmFpdY,8532
|
|
384
408
|
pulumi_sdwan/transport_gps_feature.py,sha256=h-wETcMPHHSdYWuDU4WMXyWTBOeAdKs7Q2Pc3oihzoI,38100
|
|
385
409
|
pulumi_sdwan/transport_ipv4_acl_feature.py,sha256=74FZs1cWO6sgGo8gJFdT8Fcu6nCv2YwVoXpHZAg63tc,16229
|
|
@@ -397,11 +421,19 @@ pulumi_sdwan/transport_t1_e1_controller_feature.py,sha256=x5TO8ox05qLC3X9X73HsSR
|
|
|
397
421
|
pulumi_sdwan/transport_tracker_feature.py,sha256=c18lSiaNi5yJuIVP_JbyvG1ES-5VvppYRGt2eKkvDdA,49562
|
|
398
422
|
pulumi_sdwan/transport_tracker_group_feature.py,sha256=Td2sTwa4tbSB5omgF9H0ogRL0ulVdFWFDgmkbKwKGaU,19283
|
|
399
423
|
pulumi_sdwan/transport_wan_vpn_feature.py,sha256=qXiBl_xG8HJi-G4dp_nTYLA9gW0_jWCybM9nNJOm5kk,51026
|
|
400
|
-
pulumi_sdwan/
|
|
401
|
-
pulumi_sdwan/
|
|
424
|
+
pulumi_sdwan/transport_wan_vpn_feature_associate_routing_bgp_feature.py,sha256=JczuY1M0CSvb5VmxfdwcXYwpkhkwdQV6GCiHYo2BFEI,13356
|
|
425
|
+
pulumi_sdwan/transport_wan_vpn_feature_associate_routing_ospf_feature.py,sha256=ahY6jFoskBXRWHKBCbjSa5y8xU80C053XdwZzPK7n44,13428
|
|
426
|
+
pulumi_sdwan/transport_wan_vpn_feature_associate_routing_ospfv3_ipv4_feature.py,sha256=v3JrvH-btGZXxhoVaFa-FrKcu3tFL1OIhAf_ysGKeEg,13903
|
|
427
|
+
pulumi_sdwan/transport_wan_vpn_feature_associate_routing_ospfv3_ipv6_feature.py,sha256=aUyWBHugBD-DDkKskwkm9DHYPX2IZD31bUH5s4nqorw,13903
|
|
428
|
+
pulumi_sdwan/transport_wan_vpn_interface_cellular_feature.py,sha256=cZBWDk4OoQPX6w0KcXLrTwPKVuc1VnkgpQe3IX2y1Bs,339636
|
|
429
|
+
pulumi_sdwan/transport_wan_vpn_interface_ethernet_feature.py,sha256=8h_TXBfc8guIi3p9WqhqfH1FewUuj22Y8zXixehK9zw,489520
|
|
430
|
+
pulumi_sdwan/transport_wan_vpn_interface_ethernet_feature_associate_ipv6_tracker_feature.py,sha256=RLQIyK_bENm4beOJPjpkAgoiap19bC0-JiqY0uv1v1k,17390
|
|
431
|
+
pulumi_sdwan/transport_wan_vpn_interface_ethernet_feature_associate_ipv6_tracker_group_feature.py,sha256=PPkl0yot8arWFJVPYwVImholJuHXZ1CQSx5L5ej1CdM,17793
|
|
432
|
+
pulumi_sdwan/transport_wan_vpn_interface_ethernet_feature_associate_tracker_feature.py,sha256=15tpOFDdMG3W4PTrYfeDlNcu5cDTXguAfNgi_X6K2TU,17059
|
|
433
|
+
pulumi_sdwan/transport_wan_vpn_interface_ethernet_feature_associate_tracker_group_feature.py,sha256=dOSNNzdX94JUVufYqq3bA4IR1XaOTt3FbwH-TYYD_Lc,17462
|
|
402
434
|
pulumi_sdwan/transport_wan_vpn_interface_gre_feature.py,sha256=so20BJ-XOmU_x1Xl_uXPqd7-zvTtovVc7OsqqsZfG_M,82833
|
|
403
435
|
pulumi_sdwan/transport_wan_vpn_interface_ipsec_feature.py,sha256=Iaint-91Tx1iZhRoLfsFg_fk7HZjUxIk1cZAu0H1wJY,167197
|
|
404
|
-
pulumi_sdwan/transport_wan_vpn_interface_t1_e1_serial_feature.py,sha256=
|
|
436
|
+
pulumi_sdwan/transport_wan_vpn_interface_t1_e1_serial_feature.py,sha256=LFSAZxKWQvuLI3hJ8arf4XbG1nJMjHmK5h6OZ2bIOhE,289178
|
|
405
437
|
pulumi_sdwan/url_filtering_policy_definition.py,sha256=UcVZzWv_HDsxXWqVrLaGEh_NL9XXEbHXl1DEBpwSjEk,37561
|
|
406
438
|
pulumi_sdwan/vpn_interface_cellular_feature_template.py,sha256=CGMfUmZJJxuAGeoMpSzfPB1d0QUeUJpv77njCDEOmmI,384713
|
|
407
439
|
pulumi_sdwan/vpn_interface_dsl_ipoe_feature_template.py,sha256=fa7erimHZRJUnaYSDuw2Kr-ftxfEjj1Q14Wr2Tbc21c,414709
|
|
@@ -418,7 +450,7 @@ pulumi_sdwan/zone_list_policy_object.py,sha256=Ha71vcWJf_qGV7kB2ivV2iC-yRJSiFO55
|
|
|
418
450
|
pulumi_sdwan/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
|
|
419
451
|
pulumi_sdwan/config/__init__.pyi,sha256=MjvdovZO905Yq--NDuqNyrniFVnxvGv0mW-Aoai8IeY,1234
|
|
420
452
|
pulumi_sdwan/config/vars.py,sha256=6jQB7SVq1hsTRLU_E0MvsTtc5QNuI1NiwWdXUnBWtoE,1817
|
|
421
|
-
pulumi_sdwan-0.3.
|
|
422
|
-
pulumi_sdwan-0.3.
|
|
423
|
-
pulumi_sdwan-0.3.
|
|
424
|
-
pulumi_sdwan-0.3.
|
|
453
|
+
pulumi_sdwan-0.3.0a1732664608.dist-info/METADATA,sha256=Hf1RVFiD_LKkv5z22Z2xIZEwtVdg1X6M2h72-VgK5IU,1471
|
|
454
|
+
pulumi_sdwan-0.3.0a1732664608.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
|
455
|
+
pulumi_sdwan-0.3.0a1732664608.dist-info/top_level.txt,sha256=67dz2Uvzqj865TgEV7tb70GjrAWdDRK9MaWIVf-8GDM,13
|
|
456
|
+
pulumi_sdwan-0.3.0a1732664608.dist-info/RECORD,,
|
|
File without changes
|
{pulumi_sdwan-0.3.0a1732277684.dist-info → pulumi_sdwan-0.3.0a1732664608.dist-info}/top_level.txt
RENAMED
|
File without changes
|