pulumi-sdwan 0.5.0a1755712533__py3-none-any.whl → 0.5.0a1757701880__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.0a1757701880.dist-info}/METADATA +1 -1
  134. {pulumi_sdwan-0.5.0a1755712533.dist-info → pulumi_sdwan-0.5.0a1757701880.dist-info}/RECORD +136 -136
  135. {pulumi_sdwan-0.5.0a1755712533.dist-info → pulumi_sdwan-0.5.0a1757701880.dist-info}/WHEEL +0 -0
  136. {pulumi_sdwan-0.5.0a1755712533.dist-info → pulumi_sdwan-0.5.0a1757701880.dist-info}/top_level.txt +0 -0
@@ -47,34 +47,25 @@ class ServiceWirelessLanFeatureArgs:
47
47
  :param pulumi.Input[_builtins.str] feature_profile_id: Feature Profile ID
48
48
  :param pulumi.Input[_builtins.bool] me_dynamic_ip_enabled: ME management IP dynamic allocated by DHCP
49
49
  :param pulumi.Input[Sequence[pulumi.Input['ServiceWirelessLanFeatureSsidArgs']]] ssids: Configure Wi-Fi SSID profile
50
- :param pulumi.Input[_builtins.str] country: Select country - Choices: `AE`, `AR`, `AT`, `AU`, `BA`, `BB`, `BE`, `BG`, `BH`, `BN`, `BO`, `BR`, `BY`, `CA`, `CA2`,
51
- `CH`, `CL`, `CM`, `CN`, `CO`, `CR`, `CY`, `CZ`, `DE`, `DK`, `DO`, `DZ`, `EC`, `EE`, `EG`, `ES`, `FI`, `FJ`, `FR`, `GB`,
52
- `GH`, `GI`, `GR`, `HK`, `HR`, `HU`, `ID`, `IE`, `IL`, `IO`, `IN`, `IQ`, `IS`, `IT`, `J2`, `J4`, `JM`, `JO`, `KE`, `KN`,
53
- `KW`, `KZ`, `LB`, `LI`, `LK`, `LT`, `LU`, `LV`, `LY`, `MA`, `MC`, `ME`, `MK`, `MN`, `MO`, `MT`, `MX`, `MY`, `NL`, `NO`,
54
- `NZ`, `OM`, `PA`, `PE`, `PH`, `PH2`, `PK`, `PL`, `PR`, `PT`, `PY`, `QA`, `RO`, `RS`, `RU`, `SA`, `SE`, `SG`, `SI`, `SK`,
55
- `TH`, `TN`, `TR`, `TW`, `UA`, `US`, `UY`, `VE`, `VN`, `ZA`
50
+ :param pulumi.Input[_builtins.str] country: Select country
51
+ - Choices: `AE`, `AR`, `AT`, `AU`, `BA`, `BB`, `BE`, `BG`, `BH`, `BN`, `BO`, `BR`, `BY`, `CA`, `CA2`, `CH`, `CL`, `CM`, `CN`, `CO`, `CR`, `CY`, `CZ`, `DE`, `DK`, `DO`, `DZ`, `EC`, `EE`, `EG`, `ES`, `FI`, `FJ`, `FR`, `GB`, `GH`, `GI`, `GR`, `HK`, `HR`, `HU`, `ID`, `IE`, `IL`, `IO`, `IN`, `IQ`, `IS`, `IT`, `J2`, `J4`, `JM`, `JO`, `KE`, `KN`, `KW`, `KZ`, `LB`, `LI`, `LK`, `LT`, `LU`, `LV`, `LY`, `MA`, `MC`, `ME`, `MK`, `MN`, `MO`, `MT`, `MX`, `MY`, `NL`, `NO`, `NZ`, `OM`, `PA`, `PE`, `PH`, `PH2`, `PK`, `PL`, `PR`, `PT`, `PY`, `QA`, `RO`, `RS`, `RU`, `SA`, `SE`, `SG`, `SI`, `SK`, `TH`, `TN`, `TR`, `TW`, `UA`, `US`, `UY`, `VE`, `VN`, `ZA`
56
52
  :param pulumi.Input[_builtins.str] country_variable: Variable name
57
53
  :param pulumi.Input[_builtins.str] description: The description of the Feature
58
- :param pulumi.Input[_builtins.bool] enable24g: 2.4GHz Enabled - Default value: `true`
54
+ :param pulumi.Input[_builtins.bool] enable24g: 2.4GHz Enabled
55
+ - Default value: `true`
59
56
  :param pulumi.Input[_builtins.str] enable24g_variable: Variable name
60
- :param pulumi.Input[_builtins.bool] enable5g: 5GHz Enabled - Default value: `true`
57
+ :param pulumi.Input[_builtins.bool] enable5g: 5GHz Enabled
58
+ - Default value: `true`
61
59
  :param pulumi.Input[_builtins.str] enable5g_variable: Variable name
62
60
  :param pulumi.Input[_builtins.str] me_default_gateway: Set mobile express default gateway
63
61
  :param pulumi.Input[_builtins.str] me_default_gateway_variable: Variable name
64
62
  :param pulumi.Input[_builtins.str] me_ipv4_address: Set mobile express controller address
65
63
  :param pulumi.Input[_builtins.str] me_ipv4_address_variable: Variable name
66
- :param pulumi.Input[_builtins.str] me_subnet_mask: Set mobile express controller subnet mask - Choices: `255.255.255.255`, `255.255.255.254`, `255.255.255.252`,
67
- `255.255.255.248`, `255.255.255.240`, `255.255.255.224`, `255.255.255.192`, `255.255.255.128`, `255.255.255.0`,
68
- `255.255.254.0`, `255.255.252.0`, `255.255.248.0`, `255.255.240.0`, `255.255.224.0`, `255.255.192.0`, `255.255.128.0`,
69
- `255.255.0.0`, `255.254.0.0`, `255.252.0.0`, `255.240.0.0`, `255.224.0.0`, `255.192.0.0`, `255.128.0.0`, `255.0.0.0`,
70
- `254.0.0.0`, `252.0.0.0`, `248.0.0.0`, `240.0.0.0`, `224.0.0.0`, `192.0.0.0`, `128.0.0.0`, `0.0.0.0`
64
+ :param pulumi.Input[_builtins.str] me_subnet_mask: Set mobile express controller subnet mask
65
+ - Choices: `255.255.255.255`, `255.255.255.254`, `255.255.255.252`, `255.255.255.248`, `255.255.255.240`, `255.255.255.224`, `255.255.255.192`, `255.255.255.128`, `255.255.255.0`, `255.255.254.0`, `255.255.252.0`, `255.255.248.0`, `255.255.240.0`, `255.255.224.0`, `255.255.192.0`, `255.255.128.0`, `255.255.0.0`, `255.254.0.0`, `255.252.0.0`, `255.240.0.0`, `255.224.0.0`, `255.192.0.0`, `255.128.0.0`, `255.0.0.0`, `254.0.0.0`, `252.0.0.0`, `248.0.0.0`, `240.0.0.0`, `224.0.0.0`, `192.0.0.0`, `128.0.0.0`, `0.0.0.0`
71
66
  :param pulumi.Input[_builtins.str] me_subnet_mask_variable: Variable name
72
67
  :param pulumi.Input[_builtins.str] name: The name of the Feature
73
- :param pulumi.Input[_builtins.str] password: Set management password,the password must contains characters from all of the following classes,lowercase
74
- letters,uppercase letters,digits,and special characters. No character in the password can be repeated more than three
75
- times consecutively. The password must not be the same as the associated username or the username reversed. The password
76
- must not be cisco,ocsic,or any variant obtained by changing the capitalization of the letters in word cisco. In
77
- addition,you can't substitute 1,l,or ! for i,0 for o,$ for s.
68
+ :param pulumi.Input[_builtins.str] password: Set management password,the password must contains characters from all of the following classes,lowercase letters,uppercase letters,digits,and special characters. No character in the password can be repeated more than three times consecutively. The password must not be the same as the associated username or the username reversed. The password must not be cisco,ocsic,or any variant obtained by changing the capitalization of the letters in word cisco. In addition,you can't substitute 1,l,or ! for i,0 for o,$ for s.
78
69
  :param pulumi.Input[_builtins.str] password_variable: Variable name
79
70
  :param pulumi.Input[_builtins.str] username: Set management username
80
71
  :param pulumi.Input[_builtins.str] username_variable: Variable name
@@ -159,12 +150,8 @@ class ServiceWirelessLanFeatureArgs:
159
150
  @pulumi.getter
160
151
  def country(self) -> Optional[pulumi.Input[_builtins.str]]:
161
152
  """
162
- Select country - Choices: `AE`, `AR`, `AT`, `AU`, `BA`, `BB`, `BE`, `BG`, `BH`, `BN`, `BO`, `BR`, `BY`, `CA`, `CA2`,
163
- `CH`, `CL`, `CM`, `CN`, `CO`, `CR`, `CY`, `CZ`, `DE`, `DK`, `DO`, `DZ`, `EC`, `EE`, `EG`, `ES`, `FI`, `FJ`, `FR`, `GB`,
164
- `GH`, `GI`, `GR`, `HK`, `HR`, `HU`, `ID`, `IE`, `IL`, `IO`, `IN`, `IQ`, `IS`, `IT`, `J2`, `J4`, `JM`, `JO`, `KE`, `KN`,
165
- `KW`, `KZ`, `LB`, `LI`, `LK`, `LT`, `LU`, `LV`, `LY`, `MA`, `MC`, `ME`, `MK`, `MN`, `MO`, `MT`, `MX`, `MY`, `NL`, `NO`,
166
- `NZ`, `OM`, `PA`, `PE`, `PH`, `PH2`, `PK`, `PL`, `PR`, `PT`, `PY`, `QA`, `RO`, `RS`, `RU`, `SA`, `SE`, `SG`, `SI`, `SK`,
167
- `TH`, `TN`, `TR`, `TW`, `UA`, `US`, `UY`, `VE`, `VN`, `ZA`
153
+ Select country
154
+ - Choices: `AE`, `AR`, `AT`, `AU`, `BA`, `BB`, `BE`, `BG`, `BH`, `BN`, `BO`, `BR`, `BY`, `CA`, `CA2`, `CH`, `CL`, `CM`, `CN`, `CO`, `CR`, `CY`, `CZ`, `DE`, `DK`, `DO`, `DZ`, `EC`, `EE`, `EG`, `ES`, `FI`, `FJ`, `FR`, `GB`, `GH`, `GI`, `GR`, `HK`, `HR`, `HU`, `ID`, `IE`, `IL`, `IO`, `IN`, `IQ`, `IS`, `IT`, `J2`, `J4`, `JM`, `JO`, `KE`, `KN`, `KW`, `KZ`, `LB`, `LI`, `LK`, `LT`, `LU`, `LV`, `LY`, `MA`, `MC`, `ME`, `MK`, `MN`, `MO`, `MT`, `MX`, `MY`, `NL`, `NO`, `NZ`, `OM`, `PA`, `PE`, `PH`, `PH2`, `PK`, `PL`, `PR`, `PT`, `PY`, `QA`, `RO`, `RS`, `RU`, `SA`, `SE`, `SG`, `SI`, `SK`, `TH`, `TN`, `TR`, `TW`, `UA`, `US`, `UY`, `VE`, `VN`, `ZA`
168
155
  """
169
156
  return pulumi.get(self, "country")
170
157
 
@@ -200,7 +187,8 @@ class ServiceWirelessLanFeatureArgs:
200
187
  @pulumi.getter
201
188
  def enable24g(self) -> Optional[pulumi.Input[_builtins.bool]]:
202
189
  """
203
- 2.4GHz Enabled - Default value: `true`
190
+ 2.4GHz Enabled
191
+ - Default value: `true`
204
192
  """
205
193
  return pulumi.get(self, "enable24g")
206
194
 
@@ -224,7 +212,8 @@ class ServiceWirelessLanFeatureArgs:
224
212
  @pulumi.getter
225
213
  def enable5g(self) -> Optional[pulumi.Input[_builtins.bool]]:
226
214
  """
227
- 5GHz Enabled - Default value: `true`
215
+ 5GHz Enabled
216
+ - Default value: `true`
228
217
  """
229
218
  return pulumi.get(self, "enable5g")
230
219
 
@@ -296,11 +285,8 @@ class ServiceWirelessLanFeatureArgs:
296
285
  @pulumi.getter(name="meSubnetMask")
297
286
  def me_subnet_mask(self) -> Optional[pulumi.Input[_builtins.str]]:
298
287
  """
299
- Set mobile express controller subnet mask - Choices: `255.255.255.255`, `255.255.255.254`, `255.255.255.252`,
300
- `255.255.255.248`, `255.255.255.240`, `255.255.255.224`, `255.255.255.192`, `255.255.255.128`, `255.255.255.0`,
301
- `255.255.254.0`, `255.255.252.0`, `255.255.248.0`, `255.255.240.0`, `255.255.224.0`, `255.255.192.0`, `255.255.128.0`,
302
- `255.255.0.0`, `255.254.0.0`, `255.252.0.0`, `255.240.0.0`, `255.224.0.0`, `255.192.0.0`, `255.128.0.0`, `255.0.0.0`,
303
- `254.0.0.0`, `252.0.0.0`, `248.0.0.0`, `240.0.0.0`, `224.0.0.0`, `192.0.0.0`, `128.0.0.0`, `0.0.0.0`
288
+ Set mobile express controller subnet mask
289
+ - Choices: `255.255.255.255`, `255.255.255.254`, `255.255.255.252`, `255.255.255.248`, `255.255.255.240`, `255.255.255.224`, `255.255.255.192`, `255.255.255.128`, `255.255.255.0`, `255.255.254.0`, `255.255.252.0`, `255.255.248.0`, `255.255.240.0`, `255.255.224.0`, `255.255.192.0`, `255.255.128.0`, `255.255.0.0`, `255.254.0.0`, `255.252.0.0`, `255.240.0.0`, `255.224.0.0`, `255.192.0.0`, `255.128.0.0`, `255.0.0.0`, `254.0.0.0`, `252.0.0.0`, `248.0.0.0`, `240.0.0.0`, `224.0.0.0`, `192.0.0.0`, `128.0.0.0`, `0.0.0.0`
304
290
  """
305
291
  return pulumi.get(self, "me_subnet_mask")
306
292
 
@@ -336,11 +322,7 @@ class ServiceWirelessLanFeatureArgs:
336
322
  @pulumi.getter
337
323
  def password(self) -> Optional[pulumi.Input[_builtins.str]]:
338
324
  """
339
- Set management password,the password must contains characters from all of the following classes,lowercase
340
- letters,uppercase letters,digits,and special characters. No character in the password can be repeated more than three
341
- times consecutively. The password must not be the same as the associated username or the username reversed. The password
342
- must not be cisco,ocsic,or any variant obtained by changing the capitalization of the letters in word cisco. In
343
- addition,you can't substitute 1,l,or ! for i,0 for o,$ for s.
325
+ Set management password,the password must contains characters from all of the following classes,lowercase letters,uppercase letters,digits,and special characters. No character in the password can be repeated more than three times consecutively. The password must not be the same as the associated username or the username reversed. The password must not be cisco,ocsic,or any variant obtained by changing the capitalization of the letters in word cisco. In addition,you can't substitute 1,l,or ! for i,0 for o,$ for s.
344
326
  """
345
327
  return pulumi.get(self, "password")
346
328
 
@@ -412,17 +394,15 @@ class _ServiceWirelessLanFeatureState:
412
394
  version: Optional[pulumi.Input[_builtins.int]] = None):
413
395
  """
414
396
  Input properties used for looking up and filtering ServiceWirelessLanFeature resources.
415
- :param pulumi.Input[_builtins.str] country: Select country - Choices: `AE`, `AR`, `AT`, `AU`, `BA`, `BB`, `BE`, `BG`, `BH`, `BN`, `BO`, `BR`, `BY`, `CA`, `CA2`,
416
- `CH`, `CL`, `CM`, `CN`, `CO`, `CR`, `CY`, `CZ`, `DE`, `DK`, `DO`, `DZ`, `EC`, `EE`, `EG`, `ES`, `FI`, `FJ`, `FR`, `GB`,
417
- `GH`, `GI`, `GR`, `HK`, `HR`, `HU`, `ID`, `IE`, `IL`, `IO`, `IN`, `IQ`, `IS`, `IT`, `J2`, `J4`, `JM`, `JO`, `KE`, `KN`,
418
- `KW`, `KZ`, `LB`, `LI`, `LK`, `LT`, `LU`, `LV`, `LY`, `MA`, `MC`, `ME`, `MK`, `MN`, `MO`, `MT`, `MX`, `MY`, `NL`, `NO`,
419
- `NZ`, `OM`, `PA`, `PE`, `PH`, `PH2`, `PK`, `PL`, `PR`, `PT`, `PY`, `QA`, `RO`, `RS`, `RU`, `SA`, `SE`, `SG`, `SI`, `SK`,
420
- `TH`, `TN`, `TR`, `TW`, `UA`, `US`, `UY`, `VE`, `VN`, `ZA`
397
+ :param pulumi.Input[_builtins.str] country: Select country
398
+ - Choices: `AE`, `AR`, `AT`, `AU`, `BA`, `BB`, `BE`, `BG`, `BH`, `BN`, `BO`, `BR`, `BY`, `CA`, `CA2`, `CH`, `CL`, `CM`, `CN`, `CO`, `CR`, `CY`, `CZ`, `DE`, `DK`, `DO`, `DZ`, `EC`, `EE`, `EG`, `ES`, `FI`, `FJ`, `FR`, `GB`, `GH`, `GI`, `GR`, `HK`, `HR`, `HU`, `ID`, `IE`, `IL`, `IO`, `IN`, `IQ`, `IS`, `IT`, `J2`, `J4`, `JM`, `JO`, `KE`, `KN`, `KW`, `KZ`, `LB`, `LI`, `LK`, `LT`, `LU`, `LV`, `LY`, `MA`, `MC`, `ME`, `MK`, `MN`, `MO`, `MT`, `MX`, `MY`, `NL`, `NO`, `NZ`, `OM`, `PA`, `PE`, `PH`, `PH2`, `PK`, `PL`, `PR`, `PT`, `PY`, `QA`, `RO`, `RS`, `RU`, `SA`, `SE`, `SG`, `SI`, `SK`, `TH`, `TN`, `TR`, `TW`, `UA`, `US`, `UY`, `VE`, `VN`, `ZA`
421
399
  :param pulumi.Input[_builtins.str] country_variable: Variable name
422
400
  :param pulumi.Input[_builtins.str] description: The description of the Feature
423
- :param pulumi.Input[_builtins.bool] enable24g: 2.4GHz Enabled - Default value: `true`
401
+ :param pulumi.Input[_builtins.bool] enable24g: 2.4GHz Enabled
402
+ - Default value: `true`
424
403
  :param pulumi.Input[_builtins.str] enable24g_variable: Variable name
425
- :param pulumi.Input[_builtins.bool] enable5g: 5GHz Enabled - Default value: `true`
404
+ :param pulumi.Input[_builtins.bool] enable5g: 5GHz Enabled
405
+ - Default value: `true`
426
406
  :param pulumi.Input[_builtins.str] enable5g_variable: Variable name
427
407
  :param pulumi.Input[_builtins.str] feature_profile_id: Feature Profile ID
428
408
  :param pulumi.Input[_builtins.str] me_default_gateway: Set mobile express default gateway
@@ -430,18 +410,11 @@ class _ServiceWirelessLanFeatureState:
430
410
  :param pulumi.Input[_builtins.bool] me_dynamic_ip_enabled: ME management IP dynamic allocated by DHCP
431
411
  :param pulumi.Input[_builtins.str] me_ipv4_address: Set mobile express controller address
432
412
  :param pulumi.Input[_builtins.str] me_ipv4_address_variable: Variable name
433
- :param pulumi.Input[_builtins.str] me_subnet_mask: Set mobile express controller subnet mask - Choices: `255.255.255.255`, `255.255.255.254`, `255.255.255.252`,
434
- `255.255.255.248`, `255.255.255.240`, `255.255.255.224`, `255.255.255.192`, `255.255.255.128`, `255.255.255.0`,
435
- `255.255.254.0`, `255.255.252.0`, `255.255.248.0`, `255.255.240.0`, `255.255.224.0`, `255.255.192.0`, `255.255.128.0`,
436
- `255.255.0.0`, `255.254.0.0`, `255.252.0.0`, `255.240.0.0`, `255.224.0.0`, `255.192.0.0`, `255.128.0.0`, `255.0.0.0`,
437
- `254.0.0.0`, `252.0.0.0`, `248.0.0.0`, `240.0.0.0`, `224.0.0.0`, `192.0.0.0`, `128.0.0.0`, `0.0.0.0`
413
+ :param pulumi.Input[_builtins.str] me_subnet_mask: Set mobile express controller subnet mask
414
+ - Choices: `255.255.255.255`, `255.255.255.254`, `255.255.255.252`, `255.255.255.248`, `255.255.255.240`, `255.255.255.224`, `255.255.255.192`, `255.255.255.128`, `255.255.255.0`, `255.255.254.0`, `255.255.252.0`, `255.255.248.0`, `255.255.240.0`, `255.255.224.0`, `255.255.192.0`, `255.255.128.0`, `255.255.0.0`, `255.254.0.0`, `255.252.0.0`, `255.240.0.0`, `255.224.0.0`, `255.192.0.0`, `255.128.0.0`, `255.0.0.0`, `254.0.0.0`, `252.0.0.0`, `248.0.0.0`, `240.0.0.0`, `224.0.0.0`, `192.0.0.0`, `128.0.0.0`, `0.0.0.0`
438
415
  :param pulumi.Input[_builtins.str] me_subnet_mask_variable: Variable name
439
416
  :param pulumi.Input[_builtins.str] name: The name of the Feature
440
- :param pulumi.Input[_builtins.str] password: Set management password,the password must contains characters from all of the following classes,lowercase
441
- letters,uppercase letters,digits,and special characters. No character in the password can be repeated more than three
442
- times consecutively. The password must not be the same as the associated username or the username reversed. The password
443
- must not be cisco,ocsic,or any variant obtained by changing the capitalization of the letters in word cisco. In
444
- addition,you can't substitute 1,l,or ! for i,0 for o,$ for s.
417
+ :param pulumi.Input[_builtins.str] password: Set management password,the password must contains characters from all of the following classes,lowercase letters,uppercase letters,digits,and special characters. No character in the password can be repeated more than three times consecutively. The password must not be the same as the associated username or the username reversed. The password must not be cisco,ocsic,or any variant obtained by changing the capitalization of the letters in word cisco. In addition,you can't substitute 1,l,or ! for i,0 for o,$ for s.
445
418
  :param pulumi.Input[_builtins.str] password_variable: Variable name
446
419
  :param pulumi.Input[Sequence[pulumi.Input['ServiceWirelessLanFeatureSsidArgs']]] ssids: Configure Wi-Fi SSID profile
447
420
  :param pulumi.Input[_builtins.str] username: Set management username
@@ -497,12 +470,8 @@ class _ServiceWirelessLanFeatureState:
497
470
  @pulumi.getter
498
471
  def country(self) -> Optional[pulumi.Input[_builtins.str]]:
499
472
  """
500
- Select country - Choices: `AE`, `AR`, `AT`, `AU`, `BA`, `BB`, `BE`, `BG`, `BH`, `BN`, `BO`, `BR`, `BY`, `CA`, `CA2`,
501
- `CH`, `CL`, `CM`, `CN`, `CO`, `CR`, `CY`, `CZ`, `DE`, `DK`, `DO`, `DZ`, `EC`, `EE`, `EG`, `ES`, `FI`, `FJ`, `FR`, `GB`,
502
- `GH`, `GI`, `GR`, `HK`, `HR`, `HU`, `ID`, `IE`, `IL`, `IO`, `IN`, `IQ`, `IS`, `IT`, `J2`, `J4`, `JM`, `JO`, `KE`, `KN`,
503
- `KW`, `KZ`, `LB`, `LI`, `LK`, `LT`, `LU`, `LV`, `LY`, `MA`, `MC`, `ME`, `MK`, `MN`, `MO`, `MT`, `MX`, `MY`, `NL`, `NO`,
504
- `NZ`, `OM`, `PA`, `PE`, `PH`, `PH2`, `PK`, `PL`, `PR`, `PT`, `PY`, `QA`, `RO`, `RS`, `RU`, `SA`, `SE`, `SG`, `SI`, `SK`,
505
- `TH`, `TN`, `TR`, `TW`, `UA`, `US`, `UY`, `VE`, `VN`, `ZA`
473
+ Select country
474
+ - Choices: `AE`, `AR`, `AT`, `AU`, `BA`, `BB`, `BE`, `BG`, `BH`, `BN`, `BO`, `BR`, `BY`, `CA`, `CA2`, `CH`, `CL`, `CM`, `CN`, `CO`, `CR`, `CY`, `CZ`, `DE`, `DK`, `DO`, `DZ`, `EC`, `EE`, `EG`, `ES`, `FI`, `FJ`, `FR`, `GB`, `GH`, `GI`, `GR`, `HK`, `HR`, `HU`, `ID`, `IE`, `IL`, `IO`, `IN`, `IQ`, `IS`, `IT`, `J2`, `J4`, `JM`, `JO`, `KE`, `KN`, `KW`, `KZ`, `LB`, `LI`, `LK`, `LT`, `LU`, `LV`, `LY`, `MA`, `MC`, `ME`, `MK`, `MN`, `MO`, `MT`, `MX`, `MY`, `NL`, `NO`, `NZ`, `OM`, `PA`, `PE`, `PH`, `PH2`, `PK`, `PL`, `PR`, `PT`, `PY`, `QA`, `RO`, `RS`, `RU`, `SA`, `SE`, `SG`, `SI`, `SK`, `TH`, `TN`, `TR`, `TW`, `UA`, `US`, `UY`, `VE`, `VN`, `ZA`
506
475
  """
507
476
  return pulumi.get(self, "country")
508
477
 
@@ -538,7 +507,8 @@ class _ServiceWirelessLanFeatureState:
538
507
  @pulumi.getter
539
508
  def enable24g(self) -> Optional[pulumi.Input[_builtins.bool]]:
540
509
  """
541
- 2.4GHz Enabled - Default value: `true`
510
+ 2.4GHz Enabled
511
+ - Default value: `true`
542
512
  """
543
513
  return pulumi.get(self, "enable24g")
544
514
 
@@ -562,7 +532,8 @@ class _ServiceWirelessLanFeatureState:
562
532
  @pulumi.getter
563
533
  def enable5g(self) -> Optional[pulumi.Input[_builtins.bool]]:
564
534
  """
565
- 5GHz Enabled - Default value: `true`
535
+ 5GHz Enabled
536
+ - Default value: `true`
566
537
  """
567
538
  return pulumi.get(self, "enable5g")
568
539
 
@@ -658,11 +629,8 @@ class _ServiceWirelessLanFeatureState:
658
629
  @pulumi.getter(name="meSubnetMask")
659
630
  def me_subnet_mask(self) -> Optional[pulumi.Input[_builtins.str]]:
660
631
  """
661
- Set mobile express controller subnet mask - Choices: `255.255.255.255`, `255.255.255.254`, `255.255.255.252`,
662
- `255.255.255.248`, `255.255.255.240`, `255.255.255.224`, `255.255.255.192`, `255.255.255.128`, `255.255.255.0`,
663
- `255.255.254.0`, `255.255.252.0`, `255.255.248.0`, `255.255.240.0`, `255.255.224.0`, `255.255.192.0`, `255.255.128.0`,
664
- `255.255.0.0`, `255.254.0.0`, `255.252.0.0`, `255.240.0.0`, `255.224.0.0`, `255.192.0.0`, `255.128.0.0`, `255.0.0.0`,
665
- `254.0.0.0`, `252.0.0.0`, `248.0.0.0`, `240.0.0.0`, `224.0.0.0`, `192.0.0.0`, `128.0.0.0`, `0.0.0.0`
632
+ Set mobile express controller subnet mask
633
+ - Choices: `255.255.255.255`, `255.255.255.254`, `255.255.255.252`, `255.255.255.248`, `255.255.255.240`, `255.255.255.224`, `255.255.255.192`, `255.255.255.128`, `255.255.255.0`, `255.255.254.0`, `255.255.252.0`, `255.255.248.0`, `255.255.240.0`, `255.255.224.0`, `255.255.192.0`, `255.255.128.0`, `255.255.0.0`, `255.254.0.0`, `255.252.0.0`, `255.240.0.0`, `255.224.0.0`, `255.192.0.0`, `255.128.0.0`, `255.0.0.0`, `254.0.0.0`, `252.0.0.0`, `248.0.0.0`, `240.0.0.0`, `224.0.0.0`, `192.0.0.0`, `128.0.0.0`, `0.0.0.0`
666
634
  """
667
635
  return pulumi.get(self, "me_subnet_mask")
668
636
 
@@ -698,11 +666,7 @@ class _ServiceWirelessLanFeatureState:
698
666
  @pulumi.getter
699
667
  def password(self) -> Optional[pulumi.Input[_builtins.str]]:
700
668
  """
701
- Set management password,the password must contains characters from all of the following classes,lowercase
702
- letters,uppercase letters,digits,and special characters. No character in the password can be repeated more than three
703
- times consecutively. The password must not be the same as the associated username or the username reversed. The password
704
- must not be cisco,ocsic,or any variant obtained by changing the capitalization of the letters in word cisco. In
705
- addition,you can't substitute 1,l,or ! for i,0 for o,$ for s.
669
+ Set management password,the password must contains characters from all of the following classes,lowercase letters,uppercase letters,digits,and special characters. No character in the password can be repeated more than three times consecutively. The password must not be the same as the associated username or the username reversed. The password must not be cisco,ocsic,or any variant obtained by changing the capitalization of the letters in word cisco. In addition,you can't substitute 1,l,or ! for i,0 for o,$ for s.
706
670
  """
707
671
  return pulumi.get(self, "password")
708
672
 
@@ -815,17 +779,15 @@ class ServiceWirelessLanFeature(pulumi.CustomResource):
815
779
 
816
780
  :param str resource_name: The name of the resource.
817
781
  :param pulumi.ResourceOptions opts: Options for the resource.
818
- :param pulumi.Input[_builtins.str] country: Select country - Choices: `AE`, `AR`, `AT`, `AU`, `BA`, `BB`, `BE`, `BG`, `BH`, `BN`, `BO`, `BR`, `BY`, `CA`, `CA2`,
819
- `CH`, `CL`, `CM`, `CN`, `CO`, `CR`, `CY`, `CZ`, `DE`, `DK`, `DO`, `DZ`, `EC`, `EE`, `EG`, `ES`, `FI`, `FJ`, `FR`, `GB`,
820
- `GH`, `GI`, `GR`, `HK`, `HR`, `HU`, `ID`, `IE`, `IL`, `IO`, `IN`, `IQ`, `IS`, `IT`, `J2`, `J4`, `JM`, `JO`, `KE`, `KN`,
821
- `KW`, `KZ`, `LB`, `LI`, `LK`, `LT`, `LU`, `LV`, `LY`, `MA`, `MC`, `ME`, `MK`, `MN`, `MO`, `MT`, `MX`, `MY`, `NL`, `NO`,
822
- `NZ`, `OM`, `PA`, `PE`, `PH`, `PH2`, `PK`, `PL`, `PR`, `PT`, `PY`, `QA`, `RO`, `RS`, `RU`, `SA`, `SE`, `SG`, `SI`, `SK`,
823
- `TH`, `TN`, `TR`, `TW`, `UA`, `US`, `UY`, `VE`, `VN`, `ZA`
782
+ :param pulumi.Input[_builtins.str] country: Select country
783
+ - Choices: `AE`, `AR`, `AT`, `AU`, `BA`, `BB`, `BE`, `BG`, `BH`, `BN`, `BO`, `BR`, `BY`, `CA`, `CA2`, `CH`, `CL`, `CM`, `CN`, `CO`, `CR`, `CY`, `CZ`, `DE`, `DK`, `DO`, `DZ`, `EC`, `EE`, `EG`, `ES`, `FI`, `FJ`, `FR`, `GB`, `GH`, `GI`, `GR`, `HK`, `HR`, `HU`, `ID`, `IE`, `IL`, `IO`, `IN`, `IQ`, `IS`, `IT`, `J2`, `J4`, `JM`, `JO`, `KE`, `KN`, `KW`, `KZ`, `LB`, `LI`, `LK`, `LT`, `LU`, `LV`, `LY`, `MA`, `MC`, `ME`, `MK`, `MN`, `MO`, `MT`, `MX`, `MY`, `NL`, `NO`, `NZ`, `OM`, `PA`, `PE`, `PH`, `PH2`, `PK`, `PL`, `PR`, `PT`, `PY`, `QA`, `RO`, `RS`, `RU`, `SA`, `SE`, `SG`, `SI`, `SK`, `TH`, `TN`, `TR`, `TW`, `UA`, `US`, `UY`, `VE`, `VN`, `ZA`
824
784
  :param pulumi.Input[_builtins.str] country_variable: Variable name
825
785
  :param pulumi.Input[_builtins.str] description: The description of the Feature
826
- :param pulumi.Input[_builtins.bool] enable24g: 2.4GHz Enabled - Default value: `true`
786
+ :param pulumi.Input[_builtins.bool] enable24g: 2.4GHz Enabled
787
+ - Default value: `true`
827
788
  :param pulumi.Input[_builtins.str] enable24g_variable: Variable name
828
- :param pulumi.Input[_builtins.bool] enable5g: 5GHz Enabled - Default value: `true`
789
+ :param pulumi.Input[_builtins.bool] enable5g: 5GHz Enabled
790
+ - Default value: `true`
829
791
  :param pulumi.Input[_builtins.str] enable5g_variable: Variable name
830
792
  :param pulumi.Input[_builtins.str] feature_profile_id: Feature Profile ID
831
793
  :param pulumi.Input[_builtins.str] me_default_gateway: Set mobile express default gateway
@@ -833,18 +795,11 @@ class ServiceWirelessLanFeature(pulumi.CustomResource):
833
795
  :param pulumi.Input[_builtins.bool] me_dynamic_ip_enabled: ME management IP dynamic allocated by DHCP
834
796
  :param pulumi.Input[_builtins.str] me_ipv4_address: Set mobile express controller address
835
797
  :param pulumi.Input[_builtins.str] me_ipv4_address_variable: Variable name
836
- :param pulumi.Input[_builtins.str] me_subnet_mask: Set mobile express controller subnet mask - Choices: `255.255.255.255`, `255.255.255.254`, `255.255.255.252`,
837
- `255.255.255.248`, `255.255.255.240`, `255.255.255.224`, `255.255.255.192`, `255.255.255.128`, `255.255.255.0`,
838
- `255.255.254.0`, `255.255.252.0`, `255.255.248.0`, `255.255.240.0`, `255.255.224.0`, `255.255.192.0`, `255.255.128.0`,
839
- `255.255.0.0`, `255.254.0.0`, `255.252.0.0`, `255.240.0.0`, `255.224.0.0`, `255.192.0.0`, `255.128.0.0`, `255.0.0.0`,
840
- `254.0.0.0`, `252.0.0.0`, `248.0.0.0`, `240.0.0.0`, `224.0.0.0`, `192.0.0.0`, `128.0.0.0`, `0.0.0.0`
798
+ :param pulumi.Input[_builtins.str] me_subnet_mask: Set mobile express controller subnet mask
799
+ - Choices: `255.255.255.255`, `255.255.255.254`, `255.255.255.252`, `255.255.255.248`, `255.255.255.240`, `255.255.255.224`, `255.255.255.192`, `255.255.255.128`, `255.255.255.0`, `255.255.254.0`, `255.255.252.0`, `255.255.248.0`, `255.255.240.0`, `255.255.224.0`, `255.255.192.0`, `255.255.128.0`, `255.255.0.0`, `255.254.0.0`, `255.252.0.0`, `255.240.0.0`, `255.224.0.0`, `255.192.0.0`, `255.128.0.0`, `255.0.0.0`, `254.0.0.0`, `252.0.0.0`, `248.0.0.0`, `240.0.0.0`, `224.0.0.0`, `192.0.0.0`, `128.0.0.0`, `0.0.0.0`
841
800
  :param pulumi.Input[_builtins.str] me_subnet_mask_variable: Variable name
842
801
  :param pulumi.Input[_builtins.str] name: The name of the Feature
843
- :param pulumi.Input[_builtins.str] password: Set management password,the password must contains characters from all of the following classes,lowercase
844
- letters,uppercase letters,digits,and special characters. No character in the password can be repeated more than three
845
- times consecutively. The password must not be the same as the associated username or the username reversed. The password
846
- must not be cisco,ocsic,or any variant obtained by changing the capitalization of the letters in word cisco. In
847
- addition,you can't substitute 1,l,or ! for i,0 for o,$ for s.
802
+ :param pulumi.Input[_builtins.str] password: Set management password,the password must contains characters from all of the following classes,lowercase letters,uppercase letters,digits,and special characters. No character in the password can be repeated more than three times consecutively. The password must not be the same as the associated username or the username reversed. The password must not be cisco,ocsic,or any variant obtained by changing the capitalization of the letters in word cisco. In addition,you can't substitute 1,l,or ! for i,0 for o,$ for s.
848
803
  :param pulumi.Input[_builtins.str] password_variable: Variable name
849
804
  :param pulumi.Input[Sequence[pulumi.Input[Union['ServiceWirelessLanFeatureSsidArgs', 'ServiceWirelessLanFeatureSsidArgsDict']]]] ssids: Configure Wi-Fi SSID profile
850
805
  :param pulumi.Input[_builtins.str] username: Set management username
@@ -982,17 +937,15 @@ class ServiceWirelessLanFeature(pulumi.CustomResource):
982
937
  :param str resource_name: The unique name of the resulting resource.
983
938
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
984
939
  :param pulumi.ResourceOptions opts: Options for the resource.
985
- :param pulumi.Input[_builtins.str] country: Select country - Choices: `AE`, `AR`, `AT`, `AU`, `BA`, `BB`, `BE`, `BG`, `BH`, `BN`, `BO`, `BR`, `BY`, `CA`, `CA2`,
986
- `CH`, `CL`, `CM`, `CN`, `CO`, `CR`, `CY`, `CZ`, `DE`, `DK`, `DO`, `DZ`, `EC`, `EE`, `EG`, `ES`, `FI`, `FJ`, `FR`, `GB`,
987
- `GH`, `GI`, `GR`, `HK`, `HR`, `HU`, `ID`, `IE`, `IL`, `IO`, `IN`, `IQ`, `IS`, `IT`, `J2`, `J4`, `JM`, `JO`, `KE`, `KN`,
988
- `KW`, `KZ`, `LB`, `LI`, `LK`, `LT`, `LU`, `LV`, `LY`, `MA`, `MC`, `ME`, `MK`, `MN`, `MO`, `MT`, `MX`, `MY`, `NL`, `NO`,
989
- `NZ`, `OM`, `PA`, `PE`, `PH`, `PH2`, `PK`, `PL`, `PR`, `PT`, `PY`, `QA`, `RO`, `RS`, `RU`, `SA`, `SE`, `SG`, `SI`, `SK`,
990
- `TH`, `TN`, `TR`, `TW`, `UA`, `US`, `UY`, `VE`, `VN`, `ZA`
940
+ :param pulumi.Input[_builtins.str] country: Select country
941
+ - Choices: `AE`, `AR`, `AT`, `AU`, `BA`, `BB`, `BE`, `BG`, `BH`, `BN`, `BO`, `BR`, `BY`, `CA`, `CA2`, `CH`, `CL`, `CM`, `CN`, `CO`, `CR`, `CY`, `CZ`, `DE`, `DK`, `DO`, `DZ`, `EC`, `EE`, `EG`, `ES`, `FI`, `FJ`, `FR`, `GB`, `GH`, `GI`, `GR`, `HK`, `HR`, `HU`, `ID`, `IE`, `IL`, `IO`, `IN`, `IQ`, `IS`, `IT`, `J2`, `J4`, `JM`, `JO`, `KE`, `KN`, `KW`, `KZ`, `LB`, `LI`, `LK`, `LT`, `LU`, `LV`, `LY`, `MA`, `MC`, `ME`, `MK`, `MN`, `MO`, `MT`, `MX`, `MY`, `NL`, `NO`, `NZ`, `OM`, `PA`, `PE`, `PH`, `PH2`, `PK`, `PL`, `PR`, `PT`, `PY`, `QA`, `RO`, `RS`, `RU`, `SA`, `SE`, `SG`, `SI`, `SK`, `TH`, `TN`, `TR`, `TW`, `UA`, `US`, `UY`, `VE`, `VN`, `ZA`
991
942
  :param pulumi.Input[_builtins.str] country_variable: Variable name
992
943
  :param pulumi.Input[_builtins.str] description: The description of the Feature
993
- :param pulumi.Input[_builtins.bool] enable24g: 2.4GHz Enabled - Default value: `true`
944
+ :param pulumi.Input[_builtins.bool] enable24g: 2.4GHz Enabled
945
+ - Default value: `true`
994
946
  :param pulumi.Input[_builtins.str] enable24g_variable: Variable name
995
- :param pulumi.Input[_builtins.bool] enable5g: 5GHz Enabled - Default value: `true`
947
+ :param pulumi.Input[_builtins.bool] enable5g: 5GHz Enabled
948
+ - Default value: `true`
996
949
  :param pulumi.Input[_builtins.str] enable5g_variable: Variable name
997
950
  :param pulumi.Input[_builtins.str] feature_profile_id: Feature Profile ID
998
951
  :param pulumi.Input[_builtins.str] me_default_gateway: Set mobile express default gateway
@@ -1000,18 +953,11 @@ class ServiceWirelessLanFeature(pulumi.CustomResource):
1000
953
  :param pulumi.Input[_builtins.bool] me_dynamic_ip_enabled: ME management IP dynamic allocated by DHCP
1001
954
  :param pulumi.Input[_builtins.str] me_ipv4_address: Set mobile express controller address
1002
955
  :param pulumi.Input[_builtins.str] me_ipv4_address_variable: Variable name
1003
- :param pulumi.Input[_builtins.str] me_subnet_mask: Set mobile express controller subnet mask - Choices: `255.255.255.255`, `255.255.255.254`, `255.255.255.252`,
1004
- `255.255.255.248`, `255.255.255.240`, `255.255.255.224`, `255.255.255.192`, `255.255.255.128`, `255.255.255.0`,
1005
- `255.255.254.0`, `255.255.252.0`, `255.255.248.0`, `255.255.240.0`, `255.255.224.0`, `255.255.192.0`, `255.255.128.0`,
1006
- `255.255.0.0`, `255.254.0.0`, `255.252.0.0`, `255.240.0.0`, `255.224.0.0`, `255.192.0.0`, `255.128.0.0`, `255.0.0.0`,
1007
- `254.0.0.0`, `252.0.0.0`, `248.0.0.0`, `240.0.0.0`, `224.0.0.0`, `192.0.0.0`, `128.0.0.0`, `0.0.0.0`
956
+ :param pulumi.Input[_builtins.str] me_subnet_mask: Set mobile express controller subnet mask
957
+ - Choices: `255.255.255.255`, `255.255.255.254`, `255.255.255.252`, `255.255.255.248`, `255.255.255.240`, `255.255.255.224`, `255.255.255.192`, `255.255.255.128`, `255.255.255.0`, `255.255.254.0`, `255.255.252.0`, `255.255.248.0`, `255.255.240.0`, `255.255.224.0`, `255.255.192.0`, `255.255.128.0`, `255.255.0.0`, `255.254.0.0`, `255.252.0.0`, `255.240.0.0`, `255.224.0.0`, `255.192.0.0`, `255.128.0.0`, `255.0.0.0`, `254.0.0.0`, `252.0.0.0`, `248.0.0.0`, `240.0.0.0`, `224.0.0.0`, `192.0.0.0`, `128.0.0.0`, `0.0.0.0`
1008
958
  :param pulumi.Input[_builtins.str] me_subnet_mask_variable: Variable name
1009
959
  :param pulumi.Input[_builtins.str] name: The name of the Feature
1010
- :param pulumi.Input[_builtins.str] password: Set management password,the password must contains characters from all of the following classes,lowercase
1011
- letters,uppercase letters,digits,and special characters. No character in the password can be repeated more than three
1012
- times consecutively. The password must not be the same as the associated username or the username reversed. The password
1013
- must not be cisco,ocsic,or any variant obtained by changing the capitalization of the letters in word cisco. In
1014
- addition,you can't substitute 1,l,or ! for i,0 for o,$ for s.
960
+ :param pulumi.Input[_builtins.str] password: Set management password,the password must contains characters from all of the following classes,lowercase letters,uppercase letters,digits,and special characters. No character in the password can be repeated more than three times consecutively. The password must not be the same as the associated username or the username reversed. The password must not be cisco,ocsic,or any variant obtained by changing the capitalization of the letters in word cisco. In addition,you can't substitute 1,l,or ! for i,0 for o,$ for s.
1015
961
  :param pulumi.Input[_builtins.str] password_variable: Variable name
1016
962
  :param pulumi.Input[Sequence[pulumi.Input[Union['ServiceWirelessLanFeatureSsidArgs', 'ServiceWirelessLanFeatureSsidArgsDict']]]] ssids: Configure Wi-Fi SSID profile
1017
963
  :param pulumi.Input[_builtins.str] username: Set management username
@@ -1050,12 +996,8 @@ class ServiceWirelessLanFeature(pulumi.CustomResource):
1050
996
  @pulumi.getter
1051
997
  def country(self) -> pulumi.Output[Optional[_builtins.str]]:
1052
998
  """
1053
- Select country - Choices: `AE`, `AR`, `AT`, `AU`, `BA`, `BB`, `BE`, `BG`, `BH`, `BN`, `BO`, `BR`, `BY`, `CA`, `CA2`,
1054
- `CH`, `CL`, `CM`, `CN`, `CO`, `CR`, `CY`, `CZ`, `DE`, `DK`, `DO`, `DZ`, `EC`, `EE`, `EG`, `ES`, `FI`, `FJ`, `FR`, `GB`,
1055
- `GH`, `GI`, `GR`, `HK`, `HR`, `HU`, `ID`, `IE`, `IL`, `IO`, `IN`, `IQ`, `IS`, `IT`, `J2`, `J4`, `JM`, `JO`, `KE`, `KN`,
1056
- `KW`, `KZ`, `LB`, `LI`, `LK`, `LT`, `LU`, `LV`, `LY`, `MA`, `MC`, `ME`, `MK`, `MN`, `MO`, `MT`, `MX`, `MY`, `NL`, `NO`,
1057
- `NZ`, `OM`, `PA`, `PE`, `PH`, `PH2`, `PK`, `PL`, `PR`, `PT`, `PY`, `QA`, `RO`, `RS`, `RU`, `SA`, `SE`, `SG`, `SI`, `SK`,
1058
- `TH`, `TN`, `TR`, `TW`, `UA`, `US`, `UY`, `VE`, `VN`, `ZA`
999
+ Select country
1000
+ - Choices: `AE`, `AR`, `AT`, `AU`, `BA`, `BB`, `BE`, `BG`, `BH`, `BN`, `BO`, `BR`, `BY`, `CA`, `CA2`, `CH`, `CL`, `CM`, `CN`, `CO`, `CR`, `CY`, `CZ`, `DE`, `DK`, `DO`, `DZ`, `EC`, `EE`, `EG`, `ES`, `FI`, `FJ`, `FR`, `GB`, `GH`, `GI`, `GR`, `HK`, `HR`, `HU`, `ID`, `IE`, `IL`, `IO`, `IN`, `IQ`, `IS`, `IT`, `J2`, `J4`, `JM`, `JO`, `KE`, `KN`, `KW`, `KZ`, `LB`, `LI`, `LK`, `LT`, `LU`, `LV`, `LY`, `MA`, `MC`, `ME`, `MK`, `MN`, `MO`, `MT`, `MX`, `MY`, `NL`, `NO`, `NZ`, `OM`, `PA`, `PE`, `PH`, `PH2`, `PK`, `PL`, `PR`, `PT`, `PY`, `QA`, `RO`, `RS`, `RU`, `SA`, `SE`, `SG`, `SI`, `SK`, `TH`, `TN`, `TR`, `TW`, `UA`, `US`, `UY`, `VE`, `VN`, `ZA`
1059
1001
  """
1060
1002
  return pulumi.get(self, "country")
1061
1003
 
@@ -1079,7 +1021,8 @@ class ServiceWirelessLanFeature(pulumi.CustomResource):
1079
1021
  @pulumi.getter
1080
1022
  def enable24g(self) -> pulumi.Output[Optional[_builtins.bool]]:
1081
1023
  """
1082
- 2.4GHz Enabled - Default value: `true`
1024
+ 2.4GHz Enabled
1025
+ - Default value: `true`
1083
1026
  """
1084
1027
  return pulumi.get(self, "enable24g")
1085
1028
 
@@ -1095,7 +1038,8 @@ class ServiceWirelessLanFeature(pulumi.CustomResource):
1095
1038
  @pulumi.getter
1096
1039
  def enable5g(self) -> pulumi.Output[Optional[_builtins.bool]]:
1097
1040
  """
1098
- 5GHz Enabled - Default value: `true`
1041
+ 5GHz Enabled
1042
+ - Default value: `true`
1099
1043
  """
1100
1044
  return pulumi.get(self, "enable5g")
1101
1045
 
@@ -1159,11 +1103,8 @@ class ServiceWirelessLanFeature(pulumi.CustomResource):
1159
1103
  @pulumi.getter(name="meSubnetMask")
1160
1104
  def me_subnet_mask(self) -> pulumi.Output[Optional[_builtins.str]]:
1161
1105
  """
1162
- Set mobile express controller subnet mask - Choices: `255.255.255.255`, `255.255.255.254`, `255.255.255.252`,
1163
- `255.255.255.248`, `255.255.255.240`, `255.255.255.224`, `255.255.255.192`, `255.255.255.128`, `255.255.255.0`,
1164
- `255.255.254.0`, `255.255.252.0`, `255.255.248.0`, `255.255.240.0`, `255.255.224.0`, `255.255.192.0`, `255.255.128.0`,
1165
- `255.255.0.0`, `255.254.0.0`, `255.252.0.0`, `255.240.0.0`, `255.224.0.0`, `255.192.0.0`, `255.128.0.0`, `255.0.0.0`,
1166
- `254.0.0.0`, `252.0.0.0`, `248.0.0.0`, `240.0.0.0`, `224.0.0.0`, `192.0.0.0`, `128.0.0.0`, `0.0.0.0`
1106
+ Set mobile express controller subnet mask
1107
+ - Choices: `255.255.255.255`, `255.255.255.254`, `255.255.255.252`, `255.255.255.248`, `255.255.255.240`, `255.255.255.224`, `255.255.255.192`, `255.255.255.128`, `255.255.255.0`, `255.255.254.0`, `255.255.252.0`, `255.255.248.0`, `255.255.240.0`, `255.255.224.0`, `255.255.192.0`, `255.255.128.0`, `255.255.0.0`, `255.254.0.0`, `255.252.0.0`, `255.240.0.0`, `255.224.0.0`, `255.192.0.0`, `255.128.0.0`, `255.0.0.0`, `254.0.0.0`, `252.0.0.0`, `248.0.0.0`, `240.0.0.0`, `224.0.0.0`, `192.0.0.0`, `128.0.0.0`, `0.0.0.0`
1167
1108
  """
1168
1109
  return pulumi.get(self, "me_subnet_mask")
1169
1110
 
@@ -1187,11 +1128,7 @@ class ServiceWirelessLanFeature(pulumi.CustomResource):
1187
1128
  @pulumi.getter
1188
1129
  def password(self) -> pulumi.Output[Optional[_builtins.str]]:
1189
1130
  """
1190
- Set management password,the password must contains characters from all of the following classes,lowercase
1191
- letters,uppercase letters,digits,and special characters. No character in the password can be repeated more than three
1192
- times consecutively. The password must not be the same as the associated username or the username reversed. The password
1193
- must not be cisco,ocsic,or any variant obtained by changing the capitalization of the letters in word cisco. In
1194
- addition,you can't substitute 1,l,or ! for i,0 for o,$ for s.
1131
+ Set management password,the password must contains characters from all of the following classes,lowercase letters,uppercase letters,digits,and special characters. No character in the password can be repeated more than three times consecutively. The password must not be the same as the associated username or the username reversed. The password must not be cisco,ocsic,or any variant obtained by changing the capitalization of the letters in word cisco. In addition,you can't substitute 1,l,or ! for i,0 for o,$ for s.
1195
1132
  """
1196
1133
  return pulumi.get(self, "password")
1197
1134