pulumi-sdwan 0.5.0a1755712533__py3-none-any.whl → 0.5.0a1756506981__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 (136) hide show
  1. pulumi_sdwan/_inputs.py +120 -5
  2. pulumi_sdwan/advanced_inspection_profile_policy_definition.py +14 -7
  3. pulumi_sdwan/advanced_malware_protection_policy_definition.py +91 -42
  4. pulumi_sdwan/cedge_aaa_feature_template.py +147 -77
  5. pulumi_sdwan/cedge_global_feature_template.py +336 -175
  6. pulumi_sdwan/cedge_igmp_feature_template.py +14 -21
  7. pulumi_sdwan/cedge_multicast_feature_template.py +56 -42
  8. pulumi_sdwan/cedge_pim_feature_template.py +84 -56
  9. pulumi_sdwan/cellular_cedge_profile_feature_template.py +70 -42
  10. pulumi_sdwan/cellular_controller_feature_template.py +70 -49
  11. pulumi_sdwan/cellular_profile_feature_template.py +63 -42
  12. pulumi_sdwan/cflowd_policy_definition.py +70 -35
  13. pulumi_sdwan/cisco_banner_feature_template.py +14 -21
  14. pulumi_sdwan/cisco_bfd_feature_template.py +77 -49
  15. pulumi_sdwan/cisco_bgp_feature_template.py +231 -112
  16. pulumi_sdwan/cisco_dhcp_server_feature_template.py +49 -35
  17. pulumi_sdwan/cisco_logging_feature_template.py +70 -42
  18. pulumi_sdwan/cisco_ntp_feature_template.py +42 -35
  19. pulumi_sdwan/cisco_omp_feature_template.py +231 -112
  20. pulumi_sdwan/cisco_ospf_feature_template.py +231 -105
  21. pulumi_sdwan/cisco_ospfv3_feature_template.py +518 -217
  22. pulumi_sdwan/cisco_secure_internet_gateway_feature_template.py +35 -28
  23. pulumi_sdwan/cisco_security_feature_template.py +91 -56
  24. pulumi_sdwan/cisco_sig_credentials_feature_template.py +28 -28
  25. pulumi_sdwan/cisco_snmp_feature_template.py +28 -28
  26. pulumi_sdwan/cisco_system_feature_template.py +516 -742
  27. pulumi_sdwan/cisco_thousandeyes_feature_template.py +14 -21
  28. pulumi_sdwan/cisco_trustsec_feature_template.py +203 -112
  29. pulumi_sdwan/cisco_vpn_feature_template.py +98 -56
  30. pulumi_sdwan/cisco_vpn_interface_feature_template.py +1211 -602
  31. pulumi_sdwan/cisco_vpn_interface_gre_feature_template.py +105 -70
  32. pulumi_sdwan/cisco_vpn_interface_ipsec_feature_template.py +329 -161
  33. pulumi_sdwan/cisco_wireless_lan_feature_template.py +98 -98
  34. pulumi_sdwan/class_map_policy_object.py +14 -7
  35. pulumi_sdwan/cli_device_template.py +14 -7
  36. pulumi_sdwan/cli_template_feature_template.py +14 -21
  37. pulumi_sdwan/configuration_group.py +28 -14
  38. pulumi_sdwan/custom_control_topology_policy_definition.py +14 -7
  39. pulumi_sdwan/eigrp_feature_template.py +98 -56
  40. pulumi_sdwan/feature_device_template.py +14 -7
  41. pulumi_sdwan/get_cisco_system_feature_template.py +15 -1
  42. pulumi_sdwan/gps_feature_template.py +77 -49
  43. pulumi_sdwan/intrusion_prevention_policy_definition.py +56 -28
  44. pulumi_sdwan/ipv4_acl_policy_definition.py +14 -7
  45. pulumi_sdwan/ipv4_device_acl_policy_definition.py +14 -7
  46. pulumi_sdwan/ipv6_acl_policy_definition.py +14 -7
  47. pulumi_sdwan/ipv6_device_acl_policy_definition.py +14 -7
  48. pulumi_sdwan/localized_policy.py +82 -26
  49. pulumi_sdwan/other_ucse_feature.py +98 -56
  50. pulumi_sdwan/outputs.py +145 -10
  51. pulumi_sdwan/policer_policy_object.py +42 -21
  52. pulumi_sdwan/policy_group.py +14 -7
  53. pulumi_sdwan/policy_object_as_path_list.py +14 -7
  54. pulumi_sdwan/policy_object_security_geolocation_list.py +7 -7
  55. pulumi_sdwan/preferred_color_group_policy_object.py +42 -21
  56. pulumi_sdwan/pulumi-plugin.json +1 -1
  57. pulumi_sdwan/route_policy_definition.py +14 -7
  58. pulumi_sdwan/security_app_hosting_feature_template.py +14 -21
  59. pulumi_sdwan/security_policy.py +98 -49
  60. pulumi_sdwan/service_dhcp_server_feature.py +49 -49
  61. pulumi_sdwan/service_ipv4_acl_feature.py +21 -7
  62. pulumi_sdwan/service_ipv6_acl_feature.py +21 -7
  63. pulumi_sdwan/service_lan_vpn_feature.py +63 -28
  64. pulumi_sdwan/service_lan_vpn_interface_ethernet_feature.py +392 -210
  65. pulumi_sdwan/service_lan_vpn_interface_gre_feature.py +84 -70
  66. pulumi_sdwan/service_lan_vpn_interface_ipsec_feature.py +329 -245
  67. pulumi_sdwan/service_lan_vpn_interface_svi_feature.py +147 -91
  68. pulumi_sdwan/service_multicast_feature.py +91 -42
  69. pulumi_sdwan/service_object_tracker_feature.py +63 -56
  70. pulumi_sdwan/service_object_tracker_group_feature.py +35 -14
  71. pulumi_sdwan/service_route_policy_feature.py +21 -7
  72. pulumi_sdwan/service_routing_bgp_feature.py +287 -133
  73. pulumi_sdwan/service_routing_eigrp_feature.py +84 -35
  74. pulumi_sdwan/service_routing_ospf_feature.py +217 -84
  75. pulumi_sdwan/service_routing_ospfv3_ipv4_feature.py +238 -91
  76. pulumi_sdwan/service_routing_ospfv3_ipv6_feature.py +238 -91
  77. pulumi_sdwan/service_switchport_feature.py +21 -7
  78. pulumi_sdwan/service_tracker_feature.py +105 -35
  79. pulumi_sdwan/service_tracker_group_feature.py +21 -7
  80. pulumi_sdwan/service_wireless_lan_feature.py +63 -126
  81. pulumi_sdwan/sla_class_policy_object.py +91 -63
  82. pulumi_sdwan/switchport_feature_template.py +91 -49
  83. pulumi_sdwan/system_aaa_feature.py +56 -28
  84. pulumi_sdwan/system_basic_feature.py +392 -693
  85. pulumi_sdwan/system_bfd_feature.py +42 -21
  86. pulumi_sdwan/system_flexible_port_speed_feature.py +21 -21
  87. pulumi_sdwan/system_global_feature.py +322 -154
  88. pulumi_sdwan/system_ipv4_device_access_feature.py +21 -7
  89. pulumi_sdwan/system_ipv6_device_access_feature.py +21 -7
  90. pulumi_sdwan/system_logging_feature.py +56 -21
  91. pulumi_sdwan/system_mrf_feature.py +70 -35
  92. pulumi_sdwan/system_ntp_feature.py +28 -14
  93. pulumi_sdwan/system_omp_feature.py +441 -196
  94. pulumi_sdwan/system_performance_monitoring_feature.py +56 -28
  95. pulumi_sdwan/system_remote_access_feature.py +203 -133
  96. pulumi_sdwan/system_security_feature.py +77 -35
  97. pulumi_sdwan/system_snmp_feature.py +14 -7
  98. pulumi_sdwan/tls_ssl_decryption_policy_definition.py +168 -84
  99. pulumi_sdwan/tls_ssl_profile_policy_definition.py +28 -14
  100. pulumi_sdwan/traffic_data_policy_definition.py +14 -7
  101. pulumi_sdwan/transport_cellular_controller_feature.py +56 -28
  102. pulumi_sdwan/transport_cellular_profile_feature.py +63 -35
  103. pulumi_sdwan/transport_gps_feature.py +63 -28
  104. pulumi_sdwan/transport_ipv4_acl_feature.py +21 -7
  105. pulumi_sdwan/transport_ipv6_acl_feature.py +21 -7
  106. pulumi_sdwan/transport_ipv6_tracker_feature.py +105 -35
  107. pulumi_sdwan/transport_ipv6_tracker_group_feature.py +21 -7
  108. pulumi_sdwan/transport_management_vpn_interface_ethernet_feature.py +259 -154
  109. pulumi_sdwan/transport_route_policy_feature.py +21 -7
  110. pulumi_sdwan/transport_routing_bgp_feature.py +287 -133
  111. pulumi_sdwan/transport_routing_ospf_feature.py +217 -84
  112. pulumi_sdwan/transport_routing_ospfv3_ipv4_feature.py +238 -91
  113. pulumi_sdwan/transport_routing_ospfv3_ipv6_feature.py +238 -91
  114. pulumi_sdwan/transport_t1_e1_controller_feature.py +14 -7
  115. pulumi_sdwan/transport_tracker_feature.py +105 -35
  116. pulumi_sdwan/transport_tracker_group_feature.py +21 -7
  117. pulumi_sdwan/transport_wan_vpn_feature.py +28 -14
  118. pulumi_sdwan/transport_wan_vpn_interface_cellular_feature.py +840 -413
  119. pulumi_sdwan/transport_wan_vpn_interface_ethernet_feature.py +1162 -735
  120. pulumi_sdwan/transport_wan_vpn_interface_gre_feature.py +84 -70
  121. pulumi_sdwan/transport_wan_vpn_interface_ipsec_feature.py +329 -245
  122. pulumi_sdwan/transport_wan_vpn_interface_t1_e1_serial_feature.py +665 -371
  123. pulumi_sdwan/url_filtering_policy_definition.py +56 -35
  124. pulumi_sdwan/vpn_interface_cellular_feature_template.py +931 -455
  125. pulumi_sdwan/vpn_interface_dsl_ipoe_feature_template.py +959 -469
  126. pulumi_sdwan/vpn_interface_dsl_pppoa_feature_template.py +924 -448
  127. pulumi_sdwan/vpn_interface_dsl_pppoe_feature_template.py +980 -476
  128. pulumi_sdwan/vpn_interface_ethernet_pppoe_feature_template.py +980 -476
  129. pulumi_sdwan/vpn_interface_multilink_feature_template.py +812 -406
  130. pulumi_sdwan/vpn_interface_svi_feature_template.py +168 -84
  131. pulumi_sdwan/vpn_interface_t1_e1_serial_feature_template.py +721 -378
  132. pulumi_sdwan/zone_based_firewall_policy_definition.py +28 -14
  133. {pulumi_sdwan-0.5.0a1755712533.dist-info → pulumi_sdwan-0.5.0a1756506981.dist-info}/METADATA +1 -1
  134. {pulumi_sdwan-0.5.0a1755712533.dist-info → pulumi_sdwan-0.5.0a1756506981.dist-info}/RECORD +136 -136
  135. {pulumi_sdwan-0.5.0a1755712533.dist-info → pulumi_sdwan-0.5.0a1756506981.dist-info}/WHEEL +0 -0
  136. {pulumi_sdwan-0.5.0a1755712533.dist-info → pulumi_sdwan-0.5.0a1756506981.dist-info}/top_level.txt +0 -0
@@ -35,13 +35,16 @@ class SystemBfdFeatureArgs:
35
35
  The set of arguments for constructing a SystemBfdFeature resource.
36
36
  :param pulumi.Input[_builtins.str] feature_profile_id: Feature Profile ID
37
37
  :param pulumi.Input[Sequence[pulumi.Input['SystemBfdFeatureColorArgs']]] colors: Set color that identifies the WAN transport tunnel
38
- :param pulumi.Input[_builtins.int] default_dscp: - Range: `0`-`63` - Default value: `48`
38
+ :param pulumi.Input[_builtins.int] default_dscp: - Range: `0`-`63`
39
+ - Default value: `48`
39
40
  :param pulumi.Input[_builtins.str] default_dscp_variable: Variable name
40
41
  :param pulumi.Input[_builtins.str] description: The description of the Feature
41
- :param pulumi.Input[_builtins.int] multiplier: - Range: `1`-`6` - Default value: `6`
42
+ :param pulumi.Input[_builtins.int] multiplier: - Range: `1`-`6`
43
+ - Default value: `6`
42
44
  :param pulumi.Input[_builtins.str] multiplier_variable: Variable name
43
45
  :param pulumi.Input[_builtins.str] name: The name of the Feature
44
- :param pulumi.Input[_builtins.int] poll_interval: - Range: `1`-`4294967295` - Default value: `600000`
46
+ :param pulumi.Input[_builtins.int] poll_interval: - Range: `1`-`4294967295`
47
+ - Default value: `600000`
45
48
  :param pulumi.Input[_builtins.str] poll_interval_variable: Variable name
46
49
  """
47
50
  pulumi.set(__self__, "feature_profile_id", feature_profile_id)
@@ -92,7 +95,8 @@ class SystemBfdFeatureArgs:
92
95
  @pulumi.getter(name="defaultDscp")
93
96
  def default_dscp(self) -> Optional[pulumi.Input[_builtins.int]]:
94
97
  """
95
- - Range: `0`-`63` - Default value: `48`
98
+ - Range: `0`-`63`
99
+ - Default value: `48`
96
100
  """
97
101
  return pulumi.get(self, "default_dscp")
98
102
 
@@ -128,7 +132,8 @@ class SystemBfdFeatureArgs:
128
132
  @pulumi.getter
129
133
  def multiplier(self) -> Optional[pulumi.Input[_builtins.int]]:
130
134
  """
131
- - Range: `1`-`6` - Default value: `6`
135
+ - Range: `1`-`6`
136
+ - Default value: `6`
132
137
  """
133
138
  return pulumi.get(self, "multiplier")
134
139
 
@@ -164,7 +169,8 @@ class SystemBfdFeatureArgs:
164
169
  @pulumi.getter(name="pollInterval")
165
170
  def poll_interval(self) -> Optional[pulumi.Input[_builtins.int]]:
166
171
  """
167
- - Range: `1`-`4294967295` - Default value: `600000`
172
+ - Range: `1`-`4294967295`
173
+ - Default value: `600000`
168
174
  """
169
175
  return pulumi.get(self, "poll_interval")
170
176
 
@@ -202,14 +208,17 @@ class _SystemBfdFeatureState:
202
208
  """
203
209
  Input properties used for looking up and filtering SystemBfdFeature resources.
204
210
  :param pulumi.Input[Sequence[pulumi.Input['SystemBfdFeatureColorArgs']]] colors: Set color that identifies the WAN transport tunnel
205
- :param pulumi.Input[_builtins.int] default_dscp: - Range: `0`-`63` - Default value: `48`
211
+ :param pulumi.Input[_builtins.int] default_dscp: - Range: `0`-`63`
212
+ - Default value: `48`
206
213
  :param pulumi.Input[_builtins.str] default_dscp_variable: Variable name
207
214
  :param pulumi.Input[_builtins.str] description: The description of the Feature
208
215
  :param pulumi.Input[_builtins.str] feature_profile_id: Feature Profile ID
209
- :param pulumi.Input[_builtins.int] multiplier: - Range: `1`-`6` - Default value: `6`
216
+ :param pulumi.Input[_builtins.int] multiplier: - Range: `1`-`6`
217
+ - Default value: `6`
210
218
  :param pulumi.Input[_builtins.str] multiplier_variable: Variable name
211
219
  :param pulumi.Input[_builtins.str] name: The name of the Feature
212
- :param pulumi.Input[_builtins.int] poll_interval: - Range: `1`-`4294967295` - Default value: `600000`
220
+ :param pulumi.Input[_builtins.int] poll_interval: - Range: `1`-`4294967295`
221
+ - Default value: `600000`
213
222
  :param pulumi.Input[_builtins.str] poll_interval_variable: Variable name
214
223
  :param pulumi.Input[_builtins.int] version: The version of the Feature
215
224
  """
@@ -252,7 +261,8 @@ class _SystemBfdFeatureState:
252
261
  @pulumi.getter(name="defaultDscp")
253
262
  def default_dscp(self) -> Optional[pulumi.Input[_builtins.int]]:
254
263
  """
255
- - Range: `0`-`63` - Default value: `48`
264
+ - Range: `0`-`63`
265
+ - Default value: `48`
256
266
  """
257
267
  return pulumi.get(self, "default_dscp")
258
268
 
@@ -300,7 +310,8 @@ class _SystemBfdFeatureState:
300
310
  @pulumi.getter
301
311
  def multiplier(self) -> Optional[pulumi.Input[_builtins.int]]:
302
312
  """
303
- - Range: `1`-`6` - Default value: `6`
313
+ - Range: `1`-`6`
314
+ - Default value: `6`
304
315
  """
305
316
  return pulumi.get(self, "multiplier")
306
317
 
@@ -336,7 +347,8 @@ class _SystemBfdFeatureState:
336
347
  @pulumi.getter(name="pollInterval")
337
348
  def poll_interval(self) -> Optional[pulumi.Input[_builtins.int]]:
338
349
  """
339
- - Range: `1`-`4294967295` - Default value: `600000`
350
+ - Range: `1`-`4294967295`
351
+ - Default value: `600000`
340
352
  """
341
353
  return pulumi.get(self, "poll_interval")
342
354
 
@@ -403,14 +415,17 @@ class SystemBfdFeature(pulumi.CustomResource):
403
415
  :param str resource_name: The name of the resource.
404
416
  :param pulumi.ResourceOptions opts: Options for the resource.
405
417
  :param pulumi.Input[Sequence[pulumi.Input[Union['SystemBfdFeatureColorArgs', 'SystemBfdFeatureColorArgsDict']]]] colors: Set color that identifies the WAN transport tunnel
406
- :param pulumi.Input[_builtins.int] default_dscp: - Range: `0`-`63` - Default value: `48`
418
+ :param pulumi.Input[_builtins.int] default_dscp: - Range: `0`-`63`
419
+ - Default value: `48`
407
420
  :param pulumi.Input[_builtins.str] default_dscp_variable: Variable name
408
421
  :param pulumi.Input[_builtins.str] description: The description of the Feature
409
422
  :param pulumi.Input[_builtins.str] feature_profile_id: Feature Profile ID
410
- :param pulumi.Input[_builtins.int] multiplier: - Range: `1`-`6` - Default value: `6`
423
+ :param pulumi.Input[_builtins.int] multiplier: - Range: `1`-`6`
424
+ - Default value: `6`
411
425
  :param pulumi.Input[_builtins.str] multiplier_variable: Variable name
412
426
  :param pulumi.Input[_builtins.str] name: The name of the Feature
413
- :param pulumi.Input[_builtins.int] poll_interval: - Range: `1`-`4294967295` - Default value: `600000`
427
+ :param pulumi.Input[_builtins.int] poll_interval: - Range: `1`-`4294967295`
428
+ - Default value: `600000`
414
429
  :param pulumi.Input[_builtins.str] poll_interval_variable: Variable name
415
430
  """
416
431
  ...
@@ -509,14 +524,17 @@ class SystemBfdFeature(pulumi.CustomResource):
509
524
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
510
525
  :param pulumi.ResourceOptions opts: Options for the resource.
511
526
  :param pulumi.Input[Sequence[pulumi.Input[Union['SystemBfdFeatureColorArgs', 'SystemBfdFeatureColorArgsDict']]]] colors: Set color that identifies the WAN transport tunnel
512
- :param pulumi.Input[_builtins.int] default_dscp: - Range: `0`-`63` - Default value: `48`
527
+ :param pulumi.Input[_builtins.int] default_dscp: - Range: `0`-`63`
528
+ - Default value: `48`
513
529
  :param pulumi.Input[_builtins.str] default_dscp_variable: Variable name
514
530
  :param pulumi.Input[_builtins.str] description: The description of the Feature
515
531
  :param pulumi.Input[_builtins.str] feature_profile_id: Feature Profile ID
516
- :param pulumi.Input[_builtins.int] multiplier: - Range: `1`-`6` - Default value: `6`
532
+ :param pulumi.Input[_builtins.int] multiplier: - Range: `1`-`6`
533
+ - Default value: `6`
517
534
  :param pulumi.Input[_builtins.str] multiplier_variable: Variable name
518
535
  :param pulumi.Input[_builtins.str] name: The name of the Feature
519
- :param pulumi.Input[_builtins.int] poll_interval: - Range: `1`-`4294967295` - Default value: `600000`
536
+ :param pulumi.Input[_builtins.int] poll_interval: - Range: `1`-`4294967295`
537
+ - Default value: `600000`
520
538
  :param pulumi.Input[_builtins.str] poll_interval_variable: Variable name
521
539
  :param pulumi.Input[_builtins.int] version: The version of the Feature
522
540
  """
@@ -549,7 +567,8 @@ class SystemBfdFeature(pulumi.CustomResource):
549
567
  @pulumi.getter(name="defaultDscp")
550
568
  def default_dscp(self) -> pulumi.Output[Optional[_builtins.int]]:
551
569
  """
552
- - Range: `0`-`63` - Default value: `48`
570
+ - Range: `0`-`63`
571
+ - Default value: `48`
553
572
  """
554
573
  return pulumi.get(self, "default_dscp")
555
574
 
@@ -581,7 +600,8 @@ class SystemBfdFeature(pulumi.CustomResource):
581
600
  @pulumi.getter
582
601
  def multiplier(self) -> pulumi.Output[Optional[_builtins.int]]:
583
602
  """
584
- - Range: `1`-`6` - Default value: `6`
603
+ - Range: `1`-`6`
604
+ - Default value: `6`
585
605
  """
586
606
  return pulumi.get(self, "multiplier")
587
607
 
@@ -605,7 +625,8 @@ class SystemBfdFeature(pulumi.CustomResource):
605
625
  @pulumi.getter(name="pollInterval")
606
626
  def poll_interval(self) -> pulumi.Output[Optional[_builtins.int]]:
607
627
  """
608
- - Range: `1`-`4294967295` - Default value: `600000`
628
+ - Range: `1`-`4294967295`
629
+ - Default value: `600000`
609
630
  """
610
631
  return pulumi.get(self, "poll_interval")
611
632
 
@@ -29,9 +29,9 @@ class SystemFlexiblePortSpeedFeatureArgs:
29
29
  :param pulumi.Input[_builtins.str] feature_profile_id: Feature Profile ID
30
30
  :param pulumi.Input[_builtins.str] description: The description of the Feature
31
31
  :param pulumi.Input[_builtins.str] name: The name of the Feature
32
- :param pulumi.Input[_builtins.str] port_type: port Type - Choices: `12 ports of 1/10GE + 3 ports 40GE`, `8 ports of 1/10GE + 4 ports of 40GE`, `2 ports of 100 GE`,
33
- `12 ports of 1/10GE + 1 port of 100GE`, `8 ports of 1/10GE + 1 port of 40GE + 1 port of 100GE`, `3 ports of 40GE + 1port
34
- of 100GE` - Default value: `12 ports of 1/10GE + 3 ports 40GE`
32
+ :param pulumi.Input[_builtins.str] port_type: port Type
33
+ - Choices: `12 ports of 1/10GE + 3 ports 40GE`, `8 ports of 1/10GE + 4 ports of 40GE`, `2 ports of 100 GE`, `12 ports of 1/10GE + 1 port of 100GE`, `8 ports of 1/10GE + 1 port of 40GE + 1 port of 100GE`, `3 ports of 40GE + 1port of 100GE`
34
+ - Default value: `12 ports of 1/10GE + 3 ports 40GE`
35
35
  :param pulumi.Input[_builtins.str] port_type_variable: Variable name
36
36
  """
37
37
  pulumi.set(__self__, "feature_profile_id", feature_profile_id)
@@ -84,9 +84,9 @@ class SystemFlexiblePortSpeedFeatureArgs:
84
84
  @pulumi.getter(name="portType")
85
85
  def port_type(self) -> Optional[pulumi.Input[_builtins.str]]:
86
86
  """
87
- port Type - Choices: `12 ports of 1/10GE + 3 ports 40GE`, `8 ports of 1/10GE + 4 ports of 40GE`, `2 ports of 100 GE`,
88
- `12 ports of 1/10GE + 1 port of 100GE`, `8 ports of 1/10GE + 1 port of 40GE + 1 port of 100GE`, `3 ports of 40GE + 1port
89
- of 100GE` - Default value: `12 ports of 1/10GE + 3 ports 40GE`
87
+ port Type
88
+ - Choices: `12 ports of 1/10GE + 3 ports 40GE`, `8 ports of 1/10GE + 4 ports of 40GE`, `2 ports of 100 GE`, `12 ports of 1/10GE + 1 port of 100GE`, `8 ports of 1/10GE + 1 port of 40GE + 1 port of 100GE`, `3 ports of 40GE + 1port of 100GE`
89
+ - Default value: `12 ports of 1/10GE + 3 ports 40GE`
90
90
  """
91
91
  return pulumi.get(self, "port_type")
92
92
 
@@ -121,9 +121,9 @@ class _SystemFlexiblePortSpeedFeatureState:
121
121
  :param pulumi.Input[_builtins.str] description: The description of the Feature
122
122
  :param pulumi.Input[_builtins.str] feature_profile_id: Feature Profile ID
123
123
  :param pulumi.Input[_builtins.str] name: The name of the Feature
124
- :param pulumi.Input[_builtins.str] port_type: port Type - Choices: `12 ports of 1/10GE + 3 ports 40GE`, `8 ports of 1/10GE + 4 ports of 40GE`, `2 ports of 100 GE`,
125
- `12 ports of 1/10GE + 1 port of 100GE`, `8 ports of 1/10GE + 1 port of 40GE + 1 port of 100GE`, `3 ports of 40GE + 1port
126
- of 100GE` - Default value: `12 ports of 1/10GE + 3 ports 40GE`
124
+ :param pulumi.Input[_builtins.str] port_type: port Type
125
+ - Choices: `12 ports of 1/10GE + 3 ports 40GE`, `8 ports of 1/10GE + 4 ports of 40GE`, `2 ports of 100 GE`, `12 ports of 1/10GE + 1 port of 100GE`, `8 ports of 1/10GE + 1 port of 40GE + 1 port of 100GE`, `3 ports of 40GE + 1port of 100GE`
126
+ - Default value: `12 ports of 1/10GE + 3 ports 40GE`
127
127
  :param pulumi.Input[_builtins.str] port_type_variable: Variable name
128
128
  :param pulumi.Input[_builtins.int] version: The version of the Feature
129
129
  """
@@ -180,9 +180,9 @@ class _SystemFlexiblePortSpeedFeatureState:
180
180
  @pulumi.getter(name="portType")
181
181
  def port_type(self) -> Optional[pulumi.Input[_builtins.str]]:
182
182
  """
183
- port Type - Choices: `12 ports of 1/10GE + 3 ports 40GE`, `8 ports of 1/10GE + 4 ports of 40GE`, `2 ports of 100 GE`,
184
- `12 ports of 1/10GE + 1 port of 100GE`, `8 ports of 1/10GE + 1 port of 40GE + 1 port of 100GE`, `3 ports of 40GE + 1port
185
- of 100GE` - Default value: `12 ports of 1/10GE + 3 ports 40GE`
183
+ port Type
184
+ - Choices: `12 ports of 1/10GE + 3 ports 40GE`, `8 ports of 1/10GE + 4 ports of 40GE`, `2 ports of 100 GE`, `12 ports of 1/10GE + 1 port of 100GE`, `8 ports of 1/10GE + 1 port of 40GE + 1 port of 100GE`, `3 ports of 40GE + 1port of 100GE`
185
+ - Default value: `12 ports of 1/10GE + 3 ports 40GE`
186
186
  """
187
187
  return pulumi.get(self, "port_type")
188
188
 
@@ -259,9 +259,9 @@ class SystemFlexiblePortSpeedFeature(pulumi.CustomResource):
259
259
  :param pulumi.Input[_builtins.str] description: The description of the Feature
260
260
  :param pulumi.Input[_builtins.str] feature_profile_id: Feature Profile ID
261
261
  :param pulumi.Input[_builtins.str] name: The name of the Feature
262
- :param pulumi.Input[_builtins.str] port_type: port Type - Choices: `12 ports of 1/10GE + 3 ports 40GE`, `8 ports of 1/10GE + 4 ports of 40GE`, `2 ports of 100 GE`,
263
- `12 ports of 1/10GE + 1 port of 100GE`, `8 ports of 1/10GE + 1 port of 40GE + 1 port of 100GE`, `3 ports of 40GE + 1port
264
- of 100GE` - Default value: `12 ports of 1/10GE + 3 ports 40GE`
262
+ :param pulumi.Input[_builtins.str] port_type: port Type
263
+ - Choices: `12 ports of 1/10GE + 3 ports 40GE`, `8 ports of 1/10GE + 4 ports of 40GE`, `2 ports of 100 GE`, `12 ports of 1/10GE + 1 port of 100GE`, `8 ports of 1/10GE + 1 port of 40GE + 1 port of 100GE`, `3 ports of 40GE + 1port of 100GE`
264
+ - Default value: `12 ports of 1/10GE + 3 ports 40GE`
265
265
  :param pulumi.Input[_builtins.str] port_type_variable: Variable name
266
266
  """
267
267
  ...
@@ -360,9 +360,9 @@ class SystemFlexiblePortSpeedFeature(pulumi.CustomResource):
360
360
  :param pulumi.Input[_builtins.str] description: The description of the Feature
361
361
  :param pulumi.Input[_builtins.str] feature_profile_id: Feature Profile ID
362
362
  :param pulumi.Input[_builtins.str] name: The name of the Feature
363
- :param pulumi.Input[_builtins.str] port_type: port Type - Choices: `12 ports of 1/10GE + 3 ports 40GE`, `8 ports of 1/10GE + 4 ports of 40GE`, `2 ports of 100 GE`,
364
- `12 ports of 1/10GE + 1 port of 100GE`, `8 ports of 1/10GE + 1 port of 40GE + 1 port of 100GE`, `3 ports of 40GE + 1port
365
- of 100GE` - Default value: `12 ports of 1/10GE + 3 ports 40GE`
363
+ :param pulumi.Input[_builtins.str] port_type: port Type
364
+ - Choices: `12 ports of 1/10GE + 3 ports 40GE`, `8 ports of 1/10GE + 4 ports of 40GE`, `2 ports of 100 GE`, `12 ports of 1/10GE + 1 port of 100GE`, `8 ports of 1/10GE + 1 port of 40GE + 1 port of 100GE`, `3 ports of 40GE + 1port of 100GE`
365
+ - Default value: `12 ports of 1/10GE + 3 ports 40GE`
366
366
  :param pulumi.Input[_builtins.str] port_type_variable: Variable name
367
367
  :param pulumi.Input[_builtins.int] version: The version of the Feature
368
368
  """
@@ -406,9 +406,9 @@ class SystemFlexiblePortSpeedFeature(pulumi.CustomResource):
406
406
  @pulumi.getter(name="portType")
407
407
  def port_type(self) -> pulumi.Output[Optional[_builtins.str]]:
408
408
  """
409
- port Type - Choices: `12 ports of 1/10GE + 3 ports 40GE`, `8 ports of 1/10GE + 4 ports of 40GE`, `2 ports of 100 GE`,
410
- `12 ports of 1/10GE + 1 port of 100GE`, `8 ports of 1/10GE + 1 port of 40GE + 1 port of 100GE`, `3 ports of 40GE + 1port
411
- of 100GE` - Default value: `12 ports of 1/10GE + 3 ports 40GE`
409
+ port Type
410
+ - Choices: `12 ports of 1/10GE + 3 ports 40GE`, `8 ports of 1/10GE + 4 ports of 40GE`, `2 ports of 100 GE`, `12 ports of 1/10GE + 1 port of 100GE`, `8 ports of 1/10GE + 1 port of 40GE + 1 port of 100GE`, `3 ports of 40GE + 1port of 100GE`
411
+ - Default value: `12 ports of 1/10GE + 3 ports 40GE`
412
412
  """
413
413
  return pulumi.get(self, "port_type")
414
414