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.

Files changed (50) hide show
  1. pulumi_sdwan/__init__.py +160 -0
  2. pulumi_sdwan/_inputs.py +78 -55
  3. pulumi_sdwan/get_service_lan_vpn_feature_associate_multicast_feature.py +156 -0
  4. pulumi_sdwan/get_service_lan_vpn_feature_associate_routing_bgp_feature.py +156 -0
  5. pulumi_sdwan/get_service_lan_vpn_feature_associate_routing_eigrp_feature.py +156 -0
  6. pulumi_sdwan/get_service_lan_vpn_feature_associate_routing_ospf_feature.py +156 -0
  7. pulumi_sdwan/get_service_lan_vpn_feature_associate_routing_ospfv3_ipv4_feature.py +156 -0
  8. pulumi_sdwan/get_service_lan_vpn_feature_associate_routing_ospfv3_ipv6_feature.py +156 -0
  9. pulumi_sdwan/get_service_lan_vpn_interface_svi_feature.py +45 -1
  10. pulumi_sdwan/get_transport_cellular_controller_feature.py +302 -0
  11. pulumi_sdwan/get_transport_cellular_profile_feature.py +372 -0
  12. pulumi_sdwan/get_transport_wan_vpn_feature_associate_routing_bgp_feature.py +156 -0
  13. pulumi_sdwan/get_transport_wan_vpn_feature_associate_routing_ospf_feature.py +156 -0
  14. pulumi_sdwan/get_transport_wan_vpn_feature_associate_routing_ospfv3_ipv4_feature.py +156 -0
  15. pulumi_sdwan/get_transport_wan_vpn_feature_associate_routing_ospfv3_ipv6_feature.py +156 -0
  16. pulumi_sdwan/get_transport_wan_vpn_interface_cellular_feature.py +45 -1
  17. pulumi_sdwan/get_transport_wan_vpn_interface_ethernet_feature.py +45 -1
  18. pulumi_sdwan/get_transport_wan_vpn_interface_ethernet_feature_associate_ipv6_tracker_feature.py +178 -0
  19. pulumi_sdwan/get_transport_wan_vpn_interface_ethernet_feature_associate_ipv6_tracker_group_feature.py +178 -0
  20. pulumi_sdwan/get_transport_wan_vpn_interface_ethernet_feature_associate_tracker_feature.py +178 -0
  21. pulumi_sdwan/get_transport_wan_vpn_interface_ethernet_feature_associate_tracker_group_feature.py +178 -0
  22. pulumi_sdwan/get_transport_wan_vpn_interface_t1_e1_serial_feature.py +45 -1
  23. pulumi_sdwan/other_ucse_feature.py +51 -46
  24. pulumi_sdwan/outputs.py +83 -58
  25. pulumi_sdwan/pulumi-plugin.json +1 -1
  26. pulumi_sdwan/service_lan_vpn_feature_associate_multicast_feature.py +285 -0
  27. pulumi_sdwan/service_lan_vpn_feature_associate_routing_bgp_feature.py +285 -0
  28. pulumi_sdwan/service_lan_vpn_feature_associate_routing_eigrp_feature.py +285 -0
  29. pulumi_sdwan/service_lan_vpn_feature_associate_routing_ospf_feature.py +285 -0
  30. pulumi_sdwan/service_lan_vpn_feature_associate_routing_ospfv3_ipv4_feature.py +285 -0
  31. pulumi_sdwan/service_lan_vpn_feature_associate_routing_ospfv3_ipv6_feature.py +285 -0
  32. pulumi_sdwan/service_lan_vpn_interface_svi_feature.py +136 -0
  33. pulumi_sdwan/system_remote_access_feature.py +17 -18
  34. pulumi_sdwan/transport_cellular_controller_feature.py +796 -0
  35. pulumi_sdwan/transport_cellular_profile_feature.py +1036 -0
  36. pulumi_sdwan/transport_wan_vpn_feature_associate_routing_bgp_feature.py +285 -0
  37. pulumi_sdwan/transport_wan_vpn_feature_associate_routing_ospf_feature.py +285 -0
  38. pulumi_sdwan/transport_wan_vpn_feature_associate_routing_ospfv3_ipv4_feature.py +285 -0
  39. pulumi_sdwan/transport_wan_vpn_feature_associate_routing_ospfv3_ipv6_feature.py +285 -0
  40. pulumi_sdwan/transport_wan_vpn_interface_cellular_feature.py +136 -0
  41. pulumi_sdwan/transport_wan_vpn_interface_ethernet_feature.py +136 -0
  42. pulumi_sdwan/transport_wan_vpn_interface_ethernet_feature_associate_ipv6_tracker_feature.py +335 -0
  43. pulumi_sdwan/transport_wan_vpn_interface_ethernet_feature_associate_ipv6_tracker_group_feature.py +335 -0
  44. pulumi_sdwan/transport_wan_vpn_interface_ethernet_feature_associate_tracker_feature.py +335 -0
  45. pulumi_sdwan/transport_wan_vpn_interface_ethernet_feature_associate_tracker_group_feature.py +335 -0
  46. pulumi_sdwan/transport_wan_vpn_interface_t1_e1_serial_feature.py +140 -0
  47. {pulumi_sdwan-0.3.0a1732277684.dist-info → pulumi_sdwan-0.3.0a1732664608.dist-info}/METADATA +1 -1
  48. {pulumi_sdwan-0.3.0a1732277684.dist-info → pulumi_sdwan-0.3.0a1732664608.dist-info}/RECORD +50 -18
  49. {pulumi_sdwan-0.3.0a1732277684.dist-info → pulumi_sdwan-0.3.0a1732664608.dist-info}/WHEEL +0 -0
  50. {pulumi_sdwan-0.3.0a1732277684.dist-info → pulumi_sdwan-0.3.0a1732664608.dist-info}/top_level.txt +0 -0
pulumi_sdwan/outputs.py CHANGED
@@ -30204,16 +30204,16 @@ class ServiceIpv4AclFeatureSequenceMatchEntry(dict):
30204
30204
  @pulumi.output_type
30205
30205
  class ServiceIpv4AclFeatureSequenceMatchEntryDestinationPort(dict):
30206
30206
  def __init__(__self__, *,
30207
- port: Optional[int] = None):
30207
+ port: Optional[str] = None):
30208
30208
  """
30209
- :param int port: destination port range or individual port number
30209
+ :param str port: destination port range or individual port number
30210
30210
  """
30211
30211
  if port is not None:
30212
30212
  pulumi.set(__self__, "port", port)
30213
30213
 
30214
30214
  @property
30215
30215
  @pulumi.getter
30216
- def port(self) -> Optional[int]:
30216
+ def port(self) -> Optional[str]:
30217
30217
  """
30218
30218
  destination port range or individual port number
30219
30219
  """
@@ -30223,16 +30223,16 @@ class ServiceIpv4AclFeatureSequenceMatchEntryDestinationPort(dict):
30223
30223
  @pulumi.output_type
30224
30224
  class ServiceIpv4AclFeatureSequenceMatchEntrySourcePort(dict):
30225
30225
  def __init__(__self__, *,
30226
- port: Optional[int] = None):
30226
+ port: Optional[str] = None):
30227
30227
  """
30228
- :param int port: source port range or individual port number
30228
+ :param str port: source port range or individual port number
30229
30229
  """
30230
30230
  if port is not None:
30231
30231
  pulumi.set(__self__, "port", port)
30232
30232
 
30233
30233
  @property
30234
30234
  @pulumi.getter
30235
- def port(self) -> Optional[int]:
30235
+ def port(self) -> Optional[str]:
30236
30236
  """
30237
30237
  source port range or individual port number
30238
30238
  """
@@ -30642,16 +30642,16 @@ class ServiceIpv6AclFeatureSequenceMatchEntry(dict):
30642
30642
  @pulumi.output_type
30643
30643
  class ServiceIpv6AclFeatureSequenceMatchEntryDestinationPort(dict):
30644
30644
  def __init__(__self__, *,
30645
- port: Optional[int] = None):
30645
+ port: Optional[str] = None):
30646
30646
  """
30647
- :param int port: destination port range or individual port number
30647
+ :param str port: destination port range or individual port number
30648
30648
  """
30649
30649
  if port is not None:
30650
30650
  pulumi.set(__self__, "port", port)
30651
30651
 
30652
30652
  @property
30653
30653
  @pulumi.getter
30654
- def port(self) -> Optional[int]:
30654
+ def port(self) -> Optional[str]:
30655
30655
  """
30656
30656
  destination port range or individual port number
30657
30657
  """
@@ -30661,16 +30661,16 @@ class ServiceIpv6AclFeatureSequenceMatchEntryDestinationPort(dict):
30661
30661
  @pulumi.output_type
30662
30662
  class ServiceIpv6AclFeatureSequenceMatchEntrySourcePort(dict):
30663
30663
  def __init__(__self__, *,
30664
- port: Optional[int] = None):
30664
+ port: Optional[str] = None):
30665
30665
  """
30666
- :param int port: source port range or individual port number
30666
+ :param str port: source port range or individual port number
30667
30667
  """
30668
30668
  if port is not None:
30669
30669
  pulumi.set(__self__, "port", port)
30670
30670
 
30671
30671
  @property
30672
30672
  @pulumi.getter
30673
- def port(self) -> Optional[int]:
30673
+ def port(self) -> Optional[str]:
30674
30674
  """
30675
30675
  source port range or individual port number
30676
30676
  """
@@ -48764,16 +48764,16 @@ class TransportIpv4AclFeatureSequenceMatchEntry(dict):
48764
48764
  @pulumi.output_type
48765
48765
  class TransportIpv4AclFeatureSequenceMatchEntryDestinationPort(dict):
48766
48766
  def __init__(__self__, *,
48767
- port: Optional[int] = None):
48767
+ port: Optional[str] = None):
48768
48768
  """
48769
- :param int port: destination port range or individual port number
48769
+ :param str port: destination port range or individual port number
48770
48770
  """
48771
48771
  if port is not None:
48772
48772
  pulumi.set(__self__, "port", port)
48773
48773
 
48774
48774
  @property
48775
48775
  @pulumi.getter
48776
- def port(self) -> Optional[int]:
48776
+ def port(self) -> Optional[str]:
48777
48777
  """
48778
48778
  destination port range or individual port number
48779
48779
  """
@@ -48783,16 +48783,16 @@ class TransportIpv4AclFeatureSequenceMatchEntryDestinationPort(dict):
48783
48783
  @pulumi.output_type
48784
48784
  class TransportIpv4AclFeatureSequenceMatchEntrySourcePort(dict):
48785
48785
  def __init__(__self__, *,
48786
- port: Optional[int] = None):
48786
+ port: Optional[str] = None):
48787
48787
  """
48788
- :param int port: source port range or individual port number
48788
+ :param str port: source port range or individual port number
48789
48789
  """
48790
48790
  if port is not None:
48791
48791
  pulumi.set(__self__, "port", port)
48792
48792
 
48793
48793
  @property
48794
48794
  @pulumi.getter
48795
- def port(self) -> Optional[int]:
48795
+ def port(self) -> Optional[str]:
48796
48796
  """
48797
48797
  source port range or individual port number
48798
48798
  """
@@ -49202,16 +49202,16 @@ class TransportIpv6AclFeatureSequenceMatchEntry(dict):
49202
49202
  @pulumi.output_type
49203
49203
  class TransportIpv6AclFeatureSequenceMatchEntryDestinationPort(dict):
49204
49204
  def __init__(__self__, *,
49205
- port: Optional[int] = None):
49205
+ port: Optional[str] = None):
49206
49206
  """
49207
- :param int port: destination port range or individual port number
49207
+ :param str port: destination port range or individual port number
49208
49208
  """
49209
49209
  if port is not None:
49210
49210
  pulumi.set(__self__, "port", port)
49211
49211
 
49212
49212
  @property
49213
49213
  @pulumi.getter
49214
- def port(self) -> Optional[int]:
49214
+ def port(self) -> Optional[str]:
49215
49215
  """
49216
49216
  destination port range or individual port number
49217
49217
  """
@@ -49221,16 +49221,16 @@ class TransportIpv6AclFeatureSequenceMatchEntryDestinationPort(dict):
49221
49221
  @pulumi.output_type
49222
49222
  class TransportIpv6AclFeatureSequenceMatchEntrySourcePort(dict):
49223
49223
  def __init__(__self__, *,
49224
- port: Optional[int] = None):
49224
+ port: Optional[str] = None):
49225
49225
  """
49226
- :param int port: source port range or individual port number
49226
+ :param str port: source port range or individual port number
49227
49227
  """
49228
49228
  if port is not None:
49229
49229
  pulumi.set(__self__, "port", port)
49230
49230
 
49231
49231
  @property
49232
49232
  @pulumi.getter
49233
- def port(self) -> Optional[int]:
49233
+ def port(self) -> Optional[str]:
49234
49234
  """
49235
49235
  source port range or individual port number
49236
49236
  """
@@ -49522,11 +49522,11 @@ class TransportManagementVpnFeatureIpv6StaticRoute(dict):
49522
49522
  prefix_variable: Optional[str] = None):
49523
49523
  """
49524
49524
  :param str gateway: Gateway
49525
- - Choices: `next_hop`, `null0`, `nat`
49525
+ - Choices: `nextHop`, `null0`, `nat`
49526
49526
  :param str nat: IPv6 Nat, Attribute conditional on `gateway` being equal to `nat`
49527
49527
  - Choices: `NAT64`, `NAT66`
49528
49528
  :param str nat_variable: Variable name
49529
- :param Sequence['TransportManagementVpnFeatureIpv6StaticRouteNextHopArgs'] next_hops: IPv6 Route Gateway Next Hop, Attribute conditional on `gateway` being equal to `next_hop`
49529
+ :param Sequence['TransportManagementVpnFeatureIpv6StaticRouteNextHopArgs'] next_hops: IPv6 Route Gateway Next Hop, Attribute conditional on `gateway` being equal to `nextHop`
49530
49530
  :param bool null0: IPv6 Route Gateway Next Hop, Attribute conditional on `gateway` being equal to `null0`
49531
49531
  :param str prefix: Prefix
49532
49532
  :param str prefix_variable: Variable name
@@ -49551,7 +49551,7 @@ class TransportManagementVpnFeatureIpv6StaticRoute(dict):
49551
49551
  def gateway(self) -> Optional[str]:
49552
49552
  """
49553
49553
  Gateway
49554
- - Choices: `next_hop`, `null0`, `nat`
49554
+ - Choices: `nextHop`, `null0`, `nat`
49555
49555
  """
49556
49556
  return pulumi.get(self, "gateway")
49557
49557
 
@@ -49576,7 +49576,7 @@ class TransportManagementVpnFeatureIpv6StaticRoute(dict):
49576
49576
  @pulumi.getter(name="nextHops")
49577
49577
  def next_hops(self) -> Optional[Sequence['outputs.TransportManagementVpnFeatureIpv6StaticRouteNextHop']]:
49578
49578
  """
49579
- IPv6 Route Gateway Next Hop, Attribute conditional on `gateway` being equal to `next_hop`
49579
+ IPv6 Route Gateway Next Hop, Attribute conditional on `gateway` being equal to `nextHop`
49580
49580
  """
49581
49581
  return pulumi.get(self, "next_hops")
49582
49582
 
@@ -55034,6 +55034,7 @@ class TransportWanVpnFeatureIpv6StaticRoute(dict):
55034
55034
  return super().get(key, default)
55035
55035
 
55036
55036
  def __init__(__self__, *,
55037
+ gateway: Optional[str] = None,
55037
55038
  nat: Optional[str] = None,
55038
55039
  nat_variable: Optional[str] = None,
55039
55040
  next_hops: Optional[Sequence['outputs.TransportWanVpnFeatureIpv6StaticRouteNextHop']] = None,
@@ -55041,14 +55042,18 @@ class TransportWanVpnFeatureIpv6StaticRoute(dict):
55041
55042
  prefix: Optional[str] = None,
55042
55043
  prefix_variable: Optional[str] = None):
55043
55044
  """
55044
- :param str nat: IPv6 Nat
55045
+ :param str gateway: Gateway
55046
+ - Choices: `nextHop`, `null0`, `nat`
55047
+ :param str nat: IPv6 Nat, Attribute conditional on `gateway` being equal to `nat`
55045
55048
  - Choices: `NAT64`, `NAT66`
55046
55049
  :param str nat_variable: Variable name
55047
- :param Sequence['TransportWanVpnFeatureIpv6StaticRouteNextHopArgs'] next_hops: IPv6 Route Gateway Next Hop
55048
- :param bool null0: IPv6 Route Gateway Next Hop
55050
+ :param Sequence['TransportWanVpnFeatureIpv6StaticRouteNextHopArgs'] next_hops: IPv6 Route Gateway Next Hop, Attribute conditional on `gateway` being equal to `nextHop`
55051
+ :param bool null0: IPv6 Route Gateway Next Hop, Attribute conditional on `gateway` being equal to `null0`
55049
55052
  :param str prefix: Prefix
55050
55053
  :param str prefix_variable: Variable name
55051
55054
  """
55055
+ if gateway is not None:
55056
+ pulumi.set(__self__, "gateway", gateway)
55052
55057
  if nat is not None:
55053
55058
  pulumi.set(__self__, "nat", nat)
55054
55059
  if nat_variable is not None:
@@ -55062,11 +55067,20 @@ class TransportWanVpnFeatureIpv6StaticRoute(dict):
55062
55067
  if prefix_variable is not None:
55063
55068
  pulumi.set(__self__, "prefix_variable", prefix_variable)
55064
55069
 
55070
+ @property
55071
+ @pulumi.getter
55072
+ def gateway(self) -> Optional[str]:
55073
+ """
55074
+ Gateway
55075
+ - Choices: `nextHop`, `null0`, `nat`
55076
+ """
55077
+ return pulumi.get(self, "gateway")
55078
+
55065
55079
  @property
55066
55080
  @pulumi.getter
55067
55081
  def nat(self) -> Optional[str]:
55068
55082
  """
55069
- IPv6 Nat
55083
+ IPv6 Nat, Attribute conditional on `gateway` being equal to `nat`
55070
55084
  - Choices: `NAT64`, `NAT66`
55071
55085
  """
55072
55086
  return pulumi.get(self, "nat")
@@ -55083,7 +55097,7 @@ class TransportWanVpnFeatureIpv6StaticRoute(dict):
55083
55097
  @pulumi.getter(name="nextHops")
55084
55098
  def next_hops(self) -> Optional[Sequence['outputs.TransportWanVpnFeatureIpv6StaticRouteNextHop']]:
55085
55099
  """
55086
- IPv6 Route Gateway Next Hop
55100
+ IPv6 Route Gateway Next Hop, Attribute conditional on `gateway` being equal to `nextHop`
55087
55101
  """
55088
55102
  return pulumi.get(self, "next_hops")
55089
55103
 
@@ -55091,7 +55105,7 @@ class TransportWanVpnFeatureIpv6StaticRoute(dict):
55091
55105
  @pulumi.getter
55092
55106
  def null0(self) -> Optional[bool]:
55093
55107
  """
55094
- IPv6 Route Gateway Next Hop
55108
+ IPv6 Route Gateway Next Hop, Attribute conditional on `gateway` being equal to `null0`
55095
55109
  """
55096
55110
  return pulumi.get(self, "null0")
55097
55111
 
@@ -82690,15 +82704,15 @@ class GetServiceIpv4AclFeatureSequenceMatchEntryResult(dict):
82690
82704
  @pulumi.output_type
82691
82705
  class GetServiceIpv4AclFeatureSequenceMatchEntryDestinationPortResult(dict):
82692
82706
  def __init__(__self__, *,
82693
- port: int):
82707
+ port: str):
82694
82708
  """
82695
- :param int port: destination port range or individual port number
82709
+ :param str port: destination port range or individual port number
82696
82710
  """
82697
82711
  pulumi.set(__self__, "port", port)
82698
82712
 
82699
82713
  @property
82700
82714
  @pulumi.getter
82701
- def port(self) -> int:
82715
+ def port(self) -> str:
82702
82716
  """
82703
82717
  destination port range or individual port number
82704
82718
  """
@@ -82708,15 +82722,15 @@ class GetServiceIpv4AclFeatureSequenceMatchEntryDestinationPortResult(dict):
82708
82722
  @pulumi.output_type
82709
82723
  class GetServiceIpv4AclFeatureSequenceMatchEntrySourcePortResult(dict):
82710
82724
  def __init__(__self__, *,
82711
- port: int):
82725
+ port: str):
82712
82726
  """
82713
- :param int port: source port range or individual port number
82727
+ :param str port: source port range or individual port number
82714
82728
  """
82715
82729
  pulumi.set(__self__, "port", port)
82716
82730
 
82717
82731
  @property
82718
82732
  @pulumi.getter
82719
- def port(self) -> int:
82733
+ def port(self) -> str:
82720
82734
  """
82721
82735
  source port range or individual port number
82722
82736
  """
@@ -82995,15 +83009,15 @@ class GetServiceIpv6AclFeatureSequenceMatchEntryResult(dict):
82995
83009
  @pulumi.output_type
82996
83010
  class GetServiceIpv6AclFeatureSequenceMatchEntryDestinationPortResult(dict):
82997
83011
  def __init__(__self__, *,
82998
- port: int):
83012
+ port: str):
82999
83013
  """
83000
- :param int port: destination port range or individual port number
83014
+ :param str port: destination port range or individual port number
83001
83015
  """
83002
83016
  pulumi.set(__self__, "port", port)
83003
83017
 
83004
83018
  @property
83005
83019
  @pulumi.getter
83006
- def port(self) -> int:
83020
+ def port(self) -> str:
83007
83021
  """
83008
83022
  destination port range or individual port number
83009
83023
  """
@@ -83013,15 +83027,15 @@ class GetServiceIpv6AclFeatureSequenceMatchEntryDestinationPortResult(dict):
83013
83027
  @pulumi.output_type
83014
83028
  class GetServiceIpv6AclFeatureSequenceMatchEntrySourcePortResult(dict):
83015
83029
  def __init__(__self__, *,
83016
- port: int):
83030
+ port: str):
83017
83031
  """
83018
- :param int port: source port range or individual port number
83032
+ :param str port: source port range or individual port number
83019
83033
  """
83020
83034
  pulumi.set(__self__, "port", port)
83021
83035
 
83022
83036
  @property
83023
83037
  @pulumi.getter
83024
- def port(self) -> int:
83038
+ def port(self) -> str:
83025
83039
  """
83026
83040
  source port range or individual port number
83027
83041
  """
@@ -95522,15 +95536,15 @@ class GetTransportIpv4AclFeatureSequenceMatchEntryResult(dict):
95522
95536
  @pulumi.output_type
95523
95537
  class GetTransportIpv4AclFeatureSequenceMatchEntryDestinationPortResult(dict):
95524
95538
  def __init__(__self__, *,
95525
- port: int):
95539
+ port: str):
95526
95540
  """
95527
- :param int port: destination port range or individual port number
95541
+ :param str port: destination port range or individual port number
95528
95542
  """
95529
95543
  pulumi.set(__self__, "port", port)
95530
95544
 
95531
95545
  @property
95532
95546
  @pulumi.getter
95533
- def port(self) -> int:
95547
+ def port(self) -> str:
95534
95548
  """
95535
95549
  destination port range or individual port number
95536
95550
  """
@@ -95540,15 +95554,15 @@ class GetTransportIpv4AclFeatureSequenceMatchEntryDestinationPortResult(dict):
95540
95554
  @pulumi.output_type
95541
95555
  class GetTransportIpv4AclFeatureSequenceMatchEntrySourcePortResult(dict):
95542
95556
  def __init__(__self__, *,
95543
- port: int):
95557
+ port: str):
95544
95558
  """
95545
- :param int port: source port range or individual port number
95559
+ :param str port: source port range or individual port number
95546
95560
  """
95547
95561
  pulumi.set(__self__, "port", port)
95548
95562
 
95549
95563
  @property
95550
95564
  @pulumi.getter
95551
- def port(self) -> int:
95565
+ def port(self) -> str:
95552
95566
  """
95553
95567
  source port range or individual port number
95554
95568
  """
@@ -95827,15 +95841,15 @@ class GetTransportIpv6AclFeatureSequenceMatchEntryResult(dict):
95827
95841
  @pulumi.output_type
95828
95842
  class GetTransportIpv6AclFeatureSequenceMatchEntryDestinationPortResult(dict):
95829
95843
  def __init__(__self__, *,
95830
- port: int):
95844
+ port: str):
95831
95845
  """
95832
- :param int port: destination port range or individual port number
95846
+ :param str port: destination port range or individual port number
95833
95847
  """
95834
95848
  pulumi.set(__self__, "port", port)
95835
95849
 
95836
95850
  @property
95837
95851
  @pulumi.getter
95838
- def port(self) -> int:
95852
+ def port(self) -> str:
95839
95853
  """
95840
95854
  destination port range or individual port number
95841
95855
  """
@@ -95845,15 +95859,15 @@ class GetTransportIpv6AclFeatureSequenceMatchEntryDestinationPortResult(dict):
95845
95859
  @pulumi.output_type
95846
95860
  class GetTransportIpv6AclFeatureSequenceMatchEntrySourcePortResult(dict):
95847
95861
  def __init__(__self__, *,
95848
- port: int):
95862
+ port: str):
95849
95863
  """
95850
- :param int port: source port range or individual port number
95864
+ :param str port: source port range or individual port number
95851
95865
  """
95852
95866
  pulumi.set(__self__, "port", port)
95853
95867
 
95854
95868
  @property
95855
95869
  @pulumi.getter
95856
- def port(self) -> int:
95870
+ def port(self) -> str:
95857
95871
  """
95858
95872
  source port range or individual port number
95859
95873
  """
@@ -99805,6 +99819,7 @@ class GetTransportWanVpnFeatureIpv4StaticRouteNextHopResult(dict):
99805
99819
  @pulumi.output_type
99806
99820
  class GetTransportWanVpnFeatureIpv6StaticRouteResult(dict):
99807
99821
  def __init__(__self__, *,
99822
+ gateway: str,
99808
99823
  nat: str,
99809
99824
  nat_variable: str,
99810
99825
  next_hops: Sequence['outputs.GetTransportWanVpnFeatureIpv6StaticRouteNextHopResult'],
@@ -99812,6 +99827,7 @@ class GetTransportWanVpnFeatureIpv6StaticRouteResult(dict):
99812
99827
  prefix: str,
99813
99828
  prefix_variable: str):
99814
99829
  """
99830
+ :param str gateway: Gateway
99815
99831
  :param str nat: IPv6 Nat
99816
99832
  :param str nat_variable: Variable name
99817
99833
  :param Sequence['GetTransportWanVpnFeatureIpv6StaticRouteNextHopArgs'] next_hops: IPv6 Route Gateway Next Hop
@@ -99819,6 +99835,7 @@ class GetTransportWanVpnFeatureIpv6StaticRouteResult(dict):
99819
99835
  :param str prefix: Prefix
99820
99836
  :param str prefix_variable: Variable name
99821
99837
  """
99838
+ pulumi.set(__self__, "gateway", gateway)
99822
99839
  pulumi.set(__self__, "nat", nat)
99823
99840
  pulumi.set(__self__, "nat_variable", nat_variable)
99824
99841
  pulumi.set(__self__, "next_hops", next_hops)
@@ -99826,6 +99843,14 @@ class GetTransportWanVpnFeatureIpv6StaticRouteResult(dict):
99826
99843
  pulumi.set(__self__, "prefix", prefix)
99827
99844
  pulumi.set(__self__, "prefix_variable", prefix_variable)
99828
99845
 
99846
+ @property
99847
+ @pulumi.getter
99848
+ def gateway(self) -> str:
99849
+ """
99850
+ Gateway
99851
+ """
99852
+ return pulumi.get(self, "gateway")
99853
+
99829
99854
  @property
99830
99855
  @pulumi.getter
99831
99856
  def nat(self) -> str:
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "resource": true,
3
3
  "name": "sdwan",
4
- "version": "0.3.0-alpha.1732277684"
4
+ "version": "0.3.0-alpha.1732664608"
5
5
  }