@pulumi/juniper-mist 0.2.2 → 0.2.3

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.
Files changed (54) hide show
  1. package/device/ap.d.ts +75 -54
  2. package/device/ap.js +2 -0
  3. package/device/ap.js.map +1 -1
  4. package/device/base.d.ts +1 -1
  5. package/device/base.js +1 -1
  6. package/device/gateway.d.ts +24 -24
  7. package/device/image.d.ts +1 -1
  8. package/device/image.js +1 -1
  9. package/device/switch.d.ts +39 -39
  10. package/org/avprofile.d.ts +128 -0
  11. package/org/avprofile.js +111 -0
  12. package/org/avprofile.js.map +1 -0
  13. package/org/deviceprofileAp.d.ts +36 -30
  14. package/org/deviceprofileAp.js.map +1 -1
  15. package/org/deviceprofileGateway.d.ts +9 -9
  16. package/org/gatewaytemplate.d.ts +9 -9
  17. package/org/getAvprofiles.d.ts +71 -0
  18. package/org/getAvprofiles.js +66 -0
  19. package/org/getAvprofiles.js.map +1 -0
  20. package/org/getSsoRoles.d.ts +2 -2
  21. package/org/getSsoRoles.js +2 -2
  22. package/org/index.d.ts +6 -0
  23. package/org/index.js +10 -2
  24. package/org/index.js.map +1 -1
  25. package/org/inventory.d.ts +4 -4
  26. package/org/inventory.js +1 -1
  27. package/org/nactag.d.ts +54 -39
  28. package/org/nactag.js +2 -0
  29. package/org/nactag.js.map +1 -1
  30. package/org/networktemplate.d.ts +12 -12
  31. package/org/rftemplate.d.ts +6 -6
  32. package/org/servicepolicy.d.ts +29 -8
  33. package/org/servicepolicy.js +5 -1
  34. package/org/servicepolicy.js.map +1 -1
  35. package/org/setting.d.ts +24 -24
  36. package/org/sso.d.ts +11 -11
  37. package/org/ssoRole.d.ts +1 -1
  38. package/org/ssoRole.js +1 -1
  39. package/org/webhook.d.ts +39 -42
  40. package/org/webhook.js.map +1 -1
  41. package/org/wlan.d.ts +233 -233
  42. package/org/wlanPortalTemplate.d.ts +3 -3
  43. package/package.json +2 -2
  44. package/site/base.d.ts +1 -1
  45. package/site/base.js +1 -1
  46. package/site/networktemplate.d.ts +15 -15
  47. package/site/setting.d.ts +49 -49
  48. package/site/setting.js +1 -1
  49. package/site/webhook.d.ts +39 -42
  50. package/site/webhook.js.map +1 -1
  51. package/site/wlan.d.ts +233 -233
  52. package/site/wlanPortalTemplate.d.ts +3 -3
  53. package/types/input.d.ts +1394 -1276
  54. package/types/output.d.ts +1732 -1575
package/org/wlan.d.ts CHANGED
@@ -61,45 +61,45 @@ export declare class Wlan extends pulumi.CustomResource {
61
61
  */
62
62
  static isInstance(obj: any): obj is Wlan;
63
63
  /**
64
- * enable coa-immediate-update and address-change-immediate-update on the access profile.
64
+ * Enable coa-immediate-update and address-change-immediate-update on the access profile.
65
65
  */
66
66
  readonly acctImmediateUpdate: pulumi.Output<boolean>;
67
67
  /**
68
- * how frequently should interim accounting be reported, 60-65535. default is 0 (use one specified in Access-Accept request
68
+ * How frequently should interim accounting be reported, 60-65535. default is 0 (use one specified in Access-Accept request
69
69
  * from RADIUS Server). Very frequent messages can affect the performance of the radius server, 600 and up is recommended
70
70
  * when enabled
71
71
  */
72
72
  readonly acctInterimInterval: pulumi.Output<number>;
73
73
  /**
74
- * list of RADIUS accounting servers, optional, order matters where the first one is treated as primary
74
+ * List of RADIUS accounting servers, optional, order matters where the first one is treated as primary
75
75
  */
76
76
  readonly acctServers: pulumi.Output<outputs.org.WlanAcctServer[]>;
77
77
  /**
78
- * airwatch wlan settings
78
+ * Airwatch wlan settings
79
79
  */
80
80
  readonly airwatch: pulumi.Output<outputs.org.WlanAirwatch>;
81
81
  /**
82
- * only applicable when limit_bcast==true, which allows or disallows ipv6 Neighbor Discovery packets to go through
82
+ * Only applicable when limit_bcast==true, which allows or disallows ipv6 Neighbor Discovery packets to go through
83
83
  */
84
84
  readonly allowIpv6Ndp: pulumi.Output<boolean>;
85
85
  /**
86
- * only applicable when limit_bcast==true, which allows mDNS / Bonjour packets to go through
86
+ * Only applicable when limit_bcast==true, which allows mDNS / Bonjour packets to go through
87
87
  */
88
88
  readonly allowMdns: pulumi.Output<boolean>;
89
89
  /**
90
- * only applicable when `limitBcast`==`true`, which allows SSDP
90
+ * Only applicable when `limitBcast`==`true`, which allows SSDP
91
91
  */
92
92
  readonly allowSsdp: pulumi.Output<boolean>;
93
93
  /**
94
- * list of device ids
94
+ * List of device ids
95
95
  */
96
96
  readonly apIds: pulumi.Output<string[]>;
97
97
  /**
98
- * bandwidth limiting for apps (applies to up/down)
98
+ * Bandwidth limiting for apps (applies to up/down)
99
99
  */
100
100
  readonly appLimit: pulumi.Output<outputs.org.WlanAppLimit>;
101
101
  /**
102
- * app qos wlan settings
102
+ * APp qos wlan settings
103
103
  */
104
104
  readonly appQos: pulumi.Output<outputs.org.WlanAppQos>;
105
105
  /**
@@ -107,11 +107,11 @@ export declare class Wlan extends pulumi.CustomResource {
107
107
  */
108
108
  readonly applyTo: pulumi.Output<string>;
109
109
  /**
110
- * whether to enable smart arp filter
110
+ * Whether to enable smart arp filter
111
111
  */
112
112
  readonly arpFilter: pulumi.Output<boolean>;
113
113
  /**
114
- * authentication wlan settings
114
+ * Authentication wlan settings
115
115
  */
116
116
  readonly auth: pulumi.Output<outputs.org.WlanAuth | undefined>;
117
117
  /**
@@ -119,36 +119,36 @@ export declare class Wlan extends pulumi.CustomResource {
119
119
  */
120
120
  readonly authServerSelection: pulumi.Output<string>;
121
121
  /**
122
- * list of RADIUS authentication servers, at least one is needed if `auth type`==`eap`, order matters where the first one
122
+ * List of RADIUS authentication servers, at least one is needed if `auth type`==`eap`, order matters where the first one
123
123
  * is treated as primary
124
124
  */
125
125
  readonly authServers: pulumi.Output<outputs.org.WlanAuthServer[]>;
126
126
  /**
127
- * optional, up to 48 bytes, will be dynamically generated if not provided. used only for authentication servers
127
+ * Optional, up to 48 bytes, will be dynamically generated if not provided. used only for authentication servers
128
128
  */
129
129
  readonly authServersNasId: pulumi.Output<string>;
130
130
  /**
131
- * optional, NAS-IP-ADDRESS to use
131
+ * Optional, NAS-IP-ADDRESS to use
132
132
  */
133
133
  readonly authServersNasIp: pulumi.Output<string>;
134
134
  /**
135
- * radius auth session retries. Following fast timers are set if “fast_dot1x_timers” knob is enabled. ‘retries’ are
136
- * set to value of auth_servers_retries. ‘max-requests’ is also set when setting authServersRetries and is set to
137
- * default value to 3.
135
+ * Radius auth session retries. Following fast timers are set if "fastDot1xTimers" knob is enabled. ‘retries’ are set
136
+ * to value of auth_servers_retries. ‘max-requests’ is also set when setting authServersRetries and is set to default
137
+ * value to 3.
138
138
  */
139
139
  readonly authServersRetries: pulumi.Output<number>;
140
140
  /**
141
- * radius auth session timeout. Following fast timers are set if “fast_dot1x_timers” knob is enabled.
142
- * ‘quite-period’ and ‘transmit-period’ are set to half the value of auth_servers_timeout. ‘supplicant-timeout’
143
- * is also set when setting authServersTimeout and is set to default value of 10.
141
+ * Radius auth session timeout. Following fast timers are set if "fastDot1xTimers" knob is enabled. ‘quite-period’ and
142
+ * ‘transmit-period’ are set to half the value of auth_servers_timeout. ‘supplicant-timeout’ is also set when
143
+ * setting authServersTimeout and is set to default value of 10.
144
144
  */
145
145
  readonly authServersTimeout: pulumi.Output<number>;
146
146
  /**
147
- * whether to enable band_steering, this works only when band==both
147
+ * Whether to enable band_steering, this works only when band==both
148
148
  */
149
149
  readonly bandSteer: pulumi.Output<boolean>;
150
150
  /**
151
- * force dualBand capable client to connect to 5G
151
+ * Force dualBand capable client to connect to 5G
152
152
  */
153
153
  readonly bandSteerForceBand5: pulumi.Output<boolean>;
154
154
  /**
@@ -156,11 +156,11 @@ export declare class Wlan extends pulumi.CustomResource {
156
156
  */
157
157
  readonly bands: pulumi.Output<string[] | undefined>;
158
158
  /**
159
- * whether to block the clients in the blacklist (up to first 256 macs)
159
+ * Whether to block the clients in the blacklist (up to first 256 macs)
160
160
  */
161
161
  readonly blockBlacklistClients: pulumi.Output<boolean>;
162
162
  /**
163
- * bonjour gateway wlan settings
163
+ * Bonjour gateway wlan settings
164
164
  */
165
165
  readonly bonjour: pulumi.Output<outputs.org.WlanBonjour>;
166
166
  /**
@@ -169,106 +169,106 @@ export declare class Wlan extends pulumi.CustomResource {
169
169
  */
170
170
  readonly ciscoCwa: pulumi.Output<outputs.org.WlanCiscoCwa>;
171
171
  /**
172
- * kbps
172
+ * In kbps
173
173
  */
174
174
  readonly clientLimitDown: pulumi.Output<number>;
175
175
  /**
176
- * if downlink limiting per-client is enabled
176
+ * If downlink limiting per-client is enabled
177
177
  */
178
178
  readonly clientLimitDownEnabled: pulumi.Output<boolean>;
179
179
  /**
180
- * kbps
180
+ * In kbps
181
181
  */
182
182
  readonly clientLimitUp: pulumi.Output<number>;
183
183
  /**
184
- * if uplink limiting per-client is enabled
184
+ * If uplink limiting per-client is enabled
185
185
  */
186
186
  readonly clientLimitUpEnabled: pulumi.Output<boolean>;
187
187
  /**
188
- * list of COA (change of authorization) servers, optional
188
+ * List of COA (change of authorization) servers, optional
189
189
  */
190
190
  readonly coaServers: pulumi.Output<outputs.org.WlanCoaServer[]>;
191
191
  /**
192
- * some old WLAN drivers may not be compatible
192
+ * Some old WLAN drivers may not be compatible
193
193
  */
194
194
  readonly disable11ax: pulumi.Output<boolean>;
195
195
  /**
196
- * to disable ht or vht rates
196
+ * To disable ht or vht rates
197
197
  */
198
198
  readonly disableHtVhtRates: pulumi.Output<boolean>;
199
199
  /**
200
- * whether to disable U-APSD
200
+ * Whether to disable U-APSD
201
201
  */
202
202
  readonly disableUapsd: pulumi.Output<boolean>;
203
203
  /**
204
- * disable sending v2 roam notification messages
204
+ * Disable sending v2 roam notification messages
205
205
  */
206
206
  readonly disableV1RoamNotify: pulumi.Output<boolean>;
207
207
  /**
208
- * disable sending v2 roam notification messages
208
+ * Disable sending v2 roam notification messages
209
209
  */
210
210
  readonly disableV2RoamNotify: pulumi.Output<boolean>;
211
211
  /**
212
- * when any of the following is true, this WLAN will be disabled * cannot get IP * cannot obtain default gateway * cannot
212
+ * When any of the following is true, this WLAN will be disabled * cannot get IP * cannot obtain default gateway * cannot
213
213
  * reach default gateway
214
214
  */
215
215
  readonly disableWhenGatewayUnreachable: pulumi.Output<boolean | undefined>;
216
216
  readonly disableWhenMxtunnelDown: pulumi.Output<boolean | undefined>;
217
217
  /**
218
- * whether to disable WMM
218
+ * Whether to disable WMM
219
219
  */
220
220
  readonly disableWmm: pulumi.Output<boolean>;
221
221
  /**
222
- * for radius_group-based DNS server (rewrite DNS request depending on the Group RADIUS server returns)
222
+ * For radius_group-based DNS server (rewrite DNS request depending on the Group RADIUS server returns)
223
223
  */
224
224
  readonly dnsServerRewrite: pulumi.Output<outputs.org.WlanDnsServerRewrite>;
225
225
  readonly dtim: pulumi.Output<number>;
226
226
  /**
227
- * for dynamic PSK where we get perUser PSK from Radius. dynamicPsk allows PSK to be selected at runtime depending on
227
+ * For dynamic PSK where we get perUser PSK from Radius. dynamicPsk allows PSK to be selected at runtime depending on
228
228
  * context (wlan/site/user/...) thus following configurations are assumed (currently) * PSK will come from RADIUS server *
229
- * AP sends client MAC as username ans password (i.e. `enableMacAuth` is assumed) * AP sends BSSID:SSID as
229
+ * AP sends client MAC as username and password (i.e. `enableMacAuth` is assumed) * AP sends BSSID:SSID as
230
230
  * Caller-Station-ID * `authServers` is required * PSK will come from cloud WLC if source is cloudPsks * defaultPsk will be
231
231
  * used if cloud WLC is not available * `multiPskOnly` and `psk` is ignored * `pairwise` can only be wpa2-ccmp (for now,
232
232
  * wpa3 support on the roadmap)
233
233
  */
234
234
  readonly dynamicPsk: pulumi.Output<outputs.org.WlanDynamicPsk | undefined>;
235
235
  /**
236
- * for 802.1x
236
+ * For 802.1x
237
237
  */
238
238
  readonly dynamicVlan: pulumi.Output<outputs.org.WlanDynamicVlan | undefined>;
239
239
  /**
240
- * enable AP-AP keycaching via multicast
240
+ * Enable AP-AP keycaching via multicast
241
241
  */
242
242
  readonly enableLocalKeycaching: pulumi.Output<boolean>;
243
243
  /**
244
- * by default, we'd inspect all DHCP packets and drop those unrelated to the wireless client itself in the case where
244
+ * By default, we'd inspect all DHCP packets and drop those unrelated to the wireless client itself in the case where
245
245
  * client is a wireless bridge (DHCP packets for other MACs will need to be orwarded), wirelessBridging can be enabled
246
246
  */
247
247
  readonly enableWirelessBridging: pulumi.Output<boolean>;
248
248
  /**
249
- * if the client bridge is doing DHCP on behalf of other devices (L2-NAT), enable dhcpTracking will cut down DHCP response
249
+ * If the client bridge is doing DHCP on behalf of other devices (L2-NAT), enable dhcpTracking will cut down DHCP response
250
250
  * packets to be forwarded to wireless
251
251
  */
252
252
  readonly enableWirelessBridgingDhcpTracking: pulumi.Output<boolean>;
253
253
  /**
254
- * if this wlan is enabled
254
+ * If this wlan is enabled
255
255
  */
256
256
  readonly enabled: pulumi.Output<boolean>;
257
257
  /**
258
- * if set to true, sets default fast-timers with values calculated from ‘auth_servers_timeout’ and
258
+ * If set to true, sets default fast-timers with values calculated from ‘auth_servers_timeout’ and
259
259
  * ‘auth_server_retries’ .
260
260
  */
261
261
  readonly fastDot1xTimers: pulumi.Output<boolean>;
262
262
  /**
263
- * whether to hide SSID in beacon
263
+ * Whether to hide SSID in beacon
264
264
  */
265
265
  readonly hideSsid: pulumi.Output<boolean>;
266
266
  /**
267
- * include hostname inside IE in AP beacons / probe responses
267
+ * Include hostname inside IE in AP beacons / probe responses
268
268
  */
269
269
  readonly hostnameIe: pulumi.Output<boolean>;
270
270
  /**
271
- * hostspot 2.0 wlan settings
271
+ * Hostspot 2.0 wlan settings
272
272
  */
273
273
  readonly hotspot20: pulumi.Output<outputs.org.WlanHotspot20>;
274
274
  readonly injectDhcpOption82: pulumi.Output<outputs.org.WlanInjectDhcpOption82 | undefined>;
@@ -277,71 +277,71 @@ export declare class Wlan extends pulumi.CustomResource {
277
277
  */
278
278
  readonly interface: pulumi.Output<string>;
279
279
  /**
280
- * whether to stop clients to talk to each other
280
+ * Whether to stop clients to talk to each other
281
281
  */
282
282
  readonly isolation: pulumi.Output<boolean>;
283
283
  /**
284
- * if isolation is enabled, whether to deny clients to talk to L2 on the LAN
284
+ * If isolation is enabled, whether to deny clients to talk to L2 on the LAN
285
285
  */
286
286
  readonly l2Isolation: pulumi.Output<boolean>;
287
287
  /**
288
- * legacy devices requires the Over-DS (for Fast BSS Transition) bit set (while our chip doesn’t support it). Warning!
288
+ * Legacy devices requires the Over-DS (for Fast BSS Transition) bit set (while our chip doesn’t support it). Warning!
289
289
  * Enabling this will cause problem for iOS devices.
290
290
  */
291
291
  readonly legacyOverds: pulumi.Output<boolean>;
292
292
  /**
293
- * whether to limit broadcast packets going to wireless (i.e. only allow certain bcast packets to go through)
293
+ * Whether to limit broadcast packets going to wireless (i.e. only allow certain bcast packets to go through)
294
294
  */
295
295
  readonly limitBcast: pulumi.Output<boolean>;
296
296
  /**
297
- * limit probe response base on some heuristic rules
297
+ * Limit probe response base on some heuristic rules
298
298
  */
299
299
  readonly limitProbeResponse: pulumi.Output<boolean>;
300
300
  /**
301
- * max idle time in seconds
301
+ * Max idle time in seconds
302
302
  */
303
303
  readonly maxIdletime: pulumi.Output<number>;
304
304
  /**
305
- * maximum number of client connected to the SSID. `0` means unlimited
305
+ * Maximum number of client connected to the SSID. `0` means unlimited
306
306
  */
307
307
  readonly maxNumClients: pulumi.Output<number>;
308
308
  readonly mistNac: pulumi.Output<outputs.org.WlanMistNac>;
309
309
  readonly mspId: pulumi.Output<string>;
310
310
  /**
311
- * when `interface`=`mxtunnel`, id of the Mist Tunnel
311
+ * When `interface`=`mxtunnel`, id of the Mist Tunnel
312
312
  */
313
313
  readonly mxtunnelIds: pulumi.Output<string[]>;
314
314
  /**
315
- * when `interface`=`siteMedge`, name of the mxtunnel that in mxtunnels under Site Setting
315
+ * When `interface`=`siteMedge`, name of the mxtunnel that in mxtunnels under Site Setting
316
316
  */
317
317
  readonly mxtunnelNames: pulumi.Output<string[]>;
318
318
  /**
319
- * whether to only allow client to use DNS that we’ve learned from DHCP response
319
+ * Whether to only allow client to use DNS that we’ve learned from DHCP response
320
320
  */
321
321
  readonly noStaticDns: pulumi.Output<boolean>;
322
322
  /**
323
- * whether to only allow client that we’ve learned from DHCP exchange to talk
323
+ * Whether to only allow client that we’ve learned from DHCP exchange to talk
324
324
  */
325
325
  readonly noStaticIp: pulumi.Output<boolean>;
326
326
  readonly orgId: pulumi.Output<string>;
327
327
  /**
328
- * portal wlan settings
328
+ * Portal wlan settings
329
329
  */
330
330
  readonly portal: pulumi.Output<outputs.org.WlanPortal>;
331
331
  /**
332
- * list of hostnames without http(s):// (matched by substring)
332
+ * List of hostnames without http(s):// (matched by substring)
333
333
  */
334
334
  readonly portalAllowedHostnames: pulumi.Output<string[]>;
335
335
  /**
336
- * list of CIDRs
336
+ * List of CIDRs
337
337
  */
338
338
  readonly portalAllowedSubnets: pulumi.Output<string[]>;
339
339
  /**
340
- * api secret (auto-generated) that can be used to sign guest authorization requests
340
+ * APi secret (auto-generated) that can be used to sign guest authorization requests
341
341
  */
342
342
  readonly portalApiSecret: pulumi.Output<string>;
343
343
  /**
344
- * list of hostnames without http(s):// (matched by substring), this takes precedence over portal_allowed_hostnames
344
+ * List of hostnames without http(s):// (matched by substring), this takes precedence over portal_allowed_hostnames
345
345
  */
346
346
  readonly portalDeniedHostnames: pulumi.Output<string[]>;
347
347
  /**
@@ -351,7 +351,7 @@ export declare class Wlan extends pulumi.CustomResource {
351
351
  readonly portalSsoUrl: pulumi.Output<string>;
352
352
  readonly qos: pulumi.Output<outputs.org.WlanQos>;
353
353
  /**
354
- * Radsec settings
354
+ * RadSec settings
355
355
  */
356
356
  readonly radsec: pulumi.Output<outputs.org.WlanRadsec>;
357
357
  /**
@@ -361,7 +361,7 @@ export declare class Wlan extends pulumi.CustomResource {
361
361
  [key: string]: outputs.org.WlanRateset;
362
362
  }>;
363
363
  /**
364
- * when different mxcluster is on different subnet, we'd want to disconnect clients (so they'll reconnect and get new IPs)
364
+ * When different mxcluster is on different subnet, we'd want to disconnect clients (so they'll reconnect and get new IPs)
365
365
  */
366
366
  readonly reconnectClientsWhenRoamingMxcluster: pulumi.Output<boolean | undefined>;
367
367
  /**
@@ -373,20 +373,20 @@ export declare class Wlan extends pulumi.CustomResource {
373
373
  */
374
374
  readonly schedule: pulumi.Output<outputs.org.WlanSchedule>;
375
375
  /**
376
- * whether to exclude this WLAN from SLE metrics
376
+ * Whether to exclude this WLAN from SLE metrics
377
377
  */
378
378
  readonly sleExcluded: pulumi.Output<boolean>;
379
379
  /**
380
- * the name of the SSID
380
+ * Name of the SSID
381
381
  */
382
382
  readonly ssid: pulumi.Output<string>;
383
383
  readonly templateId: pulumi.Output<string>;
384
384
  /**
385
- * if `auth.type`==’eap or psk’, should only be set for legacy client, such as pre-2004, 802.11b devices
385
+ * If `auth.type`==`eap` or `auth.type`==`psk`, should only be set for legacy client, such as pre-2004, 802.11b devices
386
386
  */
387
387
  readonly useEapolV1: pulumi.Output<boolean>;
388
388
  /**
389
- * if vlan tagging is enabled
389
+ * If vlan tagging is enabled
390
390
  */
391
391
  readonly vlanEnabled: pulumi.Output<boolean>;
392
392
  readonly vlanId: pulumi.Output<string | undefined>;
@@ -400,31 +400,31 @@ export declare class Wlan extends pulumi.CustomResource {
400
400
  */
401
401
  readonly vlanPooling: pulumi.Output<boolean>;
402
402
  /**
403
- * kbps
403
+ * In kbps
404
404
  */
405
405
  readonly wlanLimitDown: pulumi.Output<number>;
406
406
  /**
407
- * if downlink limiting for whole wlan is enabled
407
+ * If downlink limiting for whole wlan is enabled
408
408
  */
409
409
  readonly wlanLimitDownEnabled: pulumi.Output<boolean>;
410
410
  /**
411
- * kbps
411
+ * In kbps
412
412
  */
413
413
  readonly wlanLimitUp: pulumi.Output<number>;
414
414
  /**
415
- * if uplink limiting for whole wlan is enabled
415
+ * If uplink limiting for whole wlan is enabled
416
416
  */
417
417
  readonly wlanLimitUpEnabled: pulumi.Output<boolean>;
418
418
  /**
419
- * list of wxtag_ids
419
+ * List of wxtag_ids
420
420
  */
421
421
  readonly wxtagIds: pulumi.Output<string[]>;
422
422
  /**
423
- * when `interface`=`wxtunnel`, id of the WXLAN Tunnel
423
+ * When `interface`=`wxtunnel`, id of the WXLAN Tunnel
424
424
  */
425
425
  readonly wxtunnelId: pulumi.Output<string>;
426
426
  /**
427
- * when `interface`=`wxtunnel`, remote tunnel identifier
427
+ * When `interface`=`wxtunnel`, remote tunnel identifier
428
428
  */
429
429
  readonly wxtunnelRemoteId: pulumi.Output<string>;
430
430
  /**
@@ -441,45 +441,45 @@ export declare class Wlan extends pulumi.CustomResource {
441
441
  */
442
442
  export interface WlanState {
443
443
  /**
444
- * enable coa-immediate-update and address-change-immediate-update on the access profile.
444
+ * Enable coa-immediate-update and address-change-immediate-update on the access profile.
445
445
  */
446
446
  acctImmediateUpdate?: pulumi.Input<boolean>;
447
447
  /**
448
- * how frequently should interim accounting be reported, 60-65535. default is 0 (use one specified in Access-Accept request
448
+ * How frequently should interim accounting be reported, 60-65535. default is 0 (use one specified in Access-Accept request
449
449
  * from RADIUS Server). Very frequent messages can affect the performance of the radius server, 600 and up is recommended
450
450
  * when enabled
451
451
  */
452
452
  acctInterimInterval?: pulumi.Input<number>;
453
453
  /**
454
- * list of RADIUS accounting servers, optional, order matters where the first one is treated as primary
454
+ * List of RADIUS accounting servers, optional, order matters where the first one is treated as primary
455
455
  */
456
456
  acctServers?: pulumi.Input<pulumi.Input<inputs.org.WlanAcctServer>[]>;
457
457
  /**
458
- * airwatch wlan settings
458
+ * Airwatch wlan settings
459
459
  */
460
460
  airwatch?: pulumi.Input<inputs.org.WlanAirwatch>;
461
461
  /**
462
- * only applicable when limit_bcast==true, which allows or disallows ipv6 Neighbor Discovery packets to go through
462
+ * Only applicable when limit_bcast==true, which allows or disallows ipv6 Neighbor Discovery packets to go through
463
463
  */
464
464
  allowIpv6Ndp?: pulumi.Input<boolean>;
465
465
  /**
466
- * only applicable when limit_bcast==true, which allows mDNS / Bonjour packets to go through
466
+ * Only applicable when limit_bcast==true, which allows mDNS / Bonjour packets to go through
467
467
  */
468
468
  allowMdns?: pulumi.Input<boolean>;
469
469
  /**
470
- * only applicable when `limitBcast`==`true`, which allows SSDP
470
+ * Only applicable when `limitBcast`==`true`, which allows SSDP
471
471
  */
472
472
  allowSsdp?: pulumi.Input<boolean>;
473
473
  /**
474
- * list of device ids
474
+ * List of device ids
475
475
  */
476
476
  apIds?: pulumi.Input<pulumi.Input<string>[]>;
477
477
  /**
478
- * bandwidth limiting for apps (applies to up/down)
478
+ * Bandwidth limiting for apps (applies to up/down)
479
479
  */
480
480
  appLimit?: pulumi.Input<inputs.org.WlanAppLimit>;
481
481
  /**
482
- * app qos wlan settings
482
+ * APp qos wlan settings
483
483
  */
484
484
  appQos?: pulumi.Input<inputs.org.WlanAppQos>;
485
485
  /**
@@ -487,11 +487,11 @@ export interface WlanState {
487
487
  */
488
488
  applyTo?: pulumi.Input<string>;
489
489
  /**
490
- * whether to enable smart arp filter
490
+ * Whether to enable smart arp filter
491
491
  */
492
492
  arpFilter?: pulumi.Input<boolean>;
493
493
  /**
494
- * authentication wlan settings
494
+ * Authentication wlan settings
495
495
  */
496
496
  auth?: pulumi.Input<inputs.org.WlanAuth>;
497
497
  /**
@@ -499,36 +499,36 @@ export interface WlanState {
499
499
  */
500
500
  authServerSelection?: pulumi.Input<string>;
501
501
  /**
502
- * list of RADIUS authentication servers, at least one is needed if `auth type`==`eap`, order matters where the first one
502
+ * List of RADIUS authentication servers, at least one is needed if `auth type`==`eap`, order matters where the first one
503
503
  * is treated as primary
504
504
  */
505
505
  authServers?: pulumi.Input<pulumi.Input<inputs.org.WlanAuthServer>[]>;
506
506
  /**
507
- * optional, up to 48 bytes, will be dynamically generated if not provided. used only for authentication servers
507
+ * Optional, up to 48 bytes, will be dynamically generated if not provided. used only for authentication servers
508
508
  */
509
509
  authServersNasId?: pulumi.Input<string>;
510
510
  /**
511
- * optional, NAS-IP-ADDRESS to use
511
+ * Optional, NAS-IP-ADDRESS to use
512
512
  */
513
513
  authServersNasIp?: pulumi.Input<string>;
514
514
  /**
515
- * radius auth session retries. Following fast timers are set if “fast_dot1x_timers” knob is enabled. ‘retries’ are
516
- * set to value of auth_servers_retries. ‘max-requests’ is also set when setting authServersRetries and is set to
517
- * default value to 3.
515
+ * Radius auth session retries. Following fast timers are set if "fastDot1xTimers" knob is enabled. ‘retries’ are set
516
+ * to value of auth_servers_retries. ‘max-requests’ is also set when setting authServersRetries and is set to default
517
+ * value to 3.
518
518
  */
519
519
  authServersRetries?: pulumi.Input<number>;
520
520
  /**
521
- * radius auth session timeout. Following fast timers are set if “fast_dot1x_timers” knob is enabled.
522
- * ‘quite-period’ and ‘transmit-period’ are set to half the value of auth_servers_timeout. ‘supplicant-timeout’
523
- * is also set when setting authServersTimeout and is set to default value of 10.
521
+ * Radius auth session timeout. Following fast timers are set if "fastDot1xTimers" knob is enabled. ‘quite-period’ and
522
+ * ‘transmit-period’ are set to half the value of auth_servers_timeout. ‘supplicant-timeout’ is also set when
523
+ * setting authServersTimeout and is set to default value of 10.
524
524
  */
525
525
  authServersTimeout?: pulumi.Input<number>;
526
526
  /**
527
- * whether to enable band_steering, this works only when band==both
527
+ * Whether to enable band_steering, this works only when band==both
528
528
  */
529
529
  bandSteer?: pulumi.Input<boolean>;
530
530
  /**
531
- * force dualBand capable client to connect to 5G
531
+ * Force dualBand capable client to connect to 5G
532
532
  */
533
533
  bandSteerForceBand5?: pulumi.Input<boolean>;
534
534
  /**
@@ -536,11 +536,11 @@ export interface WlanState {
536
536
  */
537
537
  bands?: pulumi.Input<pulumi.Input<string>[]>;
538
538
  /**
539
- * whether to block the clients in the blacklist (up to first 256 macs)
539
+ * Whether to block the clients in the blacklist (up to first 256 macs)
540
540
  */
541
541
  blockBlacklistClients?: pulumi.Input<boolean>;
542
542
  /**
543
- * bonjour gateway wlan settings
543
+ * Bonjour gateway wlan settings
544
544
  */
545
545
  bonjour?: pulumi.Input<inputs.org.WlanBonjour>;
546
546
  /**
@@ -549,106 +549,106 @@ export interface WlanState {
549
549
  */
550
550
  ciscoCwa?: pulumi.Input<inputs.org.WlanCiscoCwa>;
551
551
  /**
552
- * kbps
552
+ * In kbps
553
553
  */
554
554
  clientLimitDown?: pulumi.Input<number>;
555
555
  /**
556
- * if downlink limiting per-client is enabled
556
+ * If downlink limiting per-client is enabled
557
557
  */
558
558
  clientLimitDownEnabled?: pulumi.Input<boolean>;
559
559
  /**
560
- * kbps
560
+ * In kbps
561
561
  */
562
562
  clientLimitUp?: pulumi.Input<number>;
563
563
  /**
564
- * if uplink limiting per-client is enabled
564
+ * If uplink limiting per-client is enabled
565
565
  */
566
566
  clientLimitUpEnabled?: pulumi.Input<boolean>;
567
567
  /**
568
- * list of COA (change of authorization) servers, optional
568
+ * List of COA (change of authorization) servers, optional
569
569
  */
570
570
  coaServers?: pulumi.Input<pulumi.Input<inputs.org.WlanCoaServer>[]>;
571
571
  /**
572
- * some old WLAN drivers may not be compatible
572
+ * Some old WLAN drivers may not be compatible
573
573
  */
574
574
  disable11ax?: pulumi.Input<boolean>;
575
575
  /**
576
- * to disable ht or vht rates
576
+ * To disable ht or vht rates
577
577
  */
578
578
  disableHtVhtRates?: pulumi.Input<boolean>;
579
579
  /**
580
- * whether to disable U-APSD
580
+ * Whether to disable U-APSD
581
581
  */
582
582
  disableUapsd?: pulumi.Input<boolean>;
583
583
  /**
584
- * disable sending v2 roam notification messages
584
+ * Disable sending v2 roam notification messages
585
585
  */
586
586
  disableV1RoamNotify?: pulumi.Input<boolean>;
587
587
  /**
588
- * disable sending v2 roam notification messages
588
+ * Disable sending v2 roam notification messages
589
589
  */
590
590
  disableV2RoamNotify?: pulumi.Input<boolean>;
591
591
  /**
592
- * when any of the following is true, this WLAN will be disabled * cannot get IP * cannot obtain default gateway * cannot
592
+ * When any of the following is true, this WLAN will be disabled * cannot get IP * cannot obtain default gateway * cannot
593
593
  * reach default gateway
594
594
  */
595
595
  disableWhenGatewayUnreachable?: pulumi.Input<boolean>;
596
596
  disableWhenMxtunnelDown?: pulumi.Input<boolean>;
597
597
  /**
598
- * whether to disable WMM
598
+ * Whether to disable WMM
599
599
  */
600
600
  disableWmm?: pulumi.Input<boolean>;
601
601
  /**
602
- * for radius_group-based DNS server (rewrite DNS request depending on the Group RADIUS server returns)
602
+ * For radius_group-based DNS server (rewrite DNS request depending on the Group RADIUS server returns)
603
603
  */
604
604
  dnsServerRewrite?: pulumi.Input<inputs.org.WlanDnsServerRewrite>;
605
605
  dtim?: pulumi.Input<number>;
606
606
  /**
607
- * for dynamic PSK where we get perUser PSK from Radius. dynamicPsk allows PSK to be selected at runtime depending on
607
+ * For dynamic PSK where we get perUser PSK from Radius. dynamicPsk allows PSK to be selected at runtime depending on
608
608
  * context (wlan/site/user/...) thus following configurations are assumed (currently) * PSK will come from RADIUS server *
609
- * AP sends client MAC as username ans password (i.e. `enableMacAuth` is assumed) * AP sends BSSID:SSID as
609
+ * AP sends client MAC as username and password (i.e. `enableMacAuth` is assumed) * AP sends BSSID:SSID as
610
610
  * Caller-Station-ID * `authServers` is required * PSK will come from cloud WLC if source is cloudPsks * defaultPsk will be
611
611
  * used if cloud WLC is not available * `multiPskOnly` and `psk` is ignored * `pairwise` can only be wpa2-ccmp (for now,
612
612
  * wpa3 support on the roadmap)
613
613
  */
614
614
  dynamicPsk?: pulumi.Input<inputs.org.WlanDynamicPsk>;
615
615
  /**
616
- * for 802.1x
616
+ * For 802.1x
617
617
  */
618
618
  dynamicVlan?: pulumi.Input<inputs.org.WlanDynamicVlan>;
619
619
  /**
620
- * enable AP-AP keycaching via multicast
620
+ * Enable AP-AP keycaching via multicast
621
621
  */
622
622
  enableLocalKeycaching?: pulumi.Input<boolean>;
623
623
  /**
624
- * by default, we'd inspect all DHCP packets and drop those unrelated to the wireless client itself in the case where
624
+ * By default, we'd inspect all DHCP packets and drop those unrelated to the wireless client itself in the case where
625
625
  * client is a wireless bridge (DHCP packets for other MACs will need to be orwarded), wirelessBridging can be enabled
626
626
  */
627
627
  enableWirelessBridging?: pulumi.Input<boolean>;
628
628
  /**
629
- * if the client bridge is doing DHCP on behalf of other devices (L2-NAT), enable dhcpTracking will cut down DHCP response
629
+ * If the client bridge is doing DHCP on behalf of other devices (L2-NAT), enable dhcpTracking will cut down DHCP response
630
630
  * packets to be forwarded to wireless
631
631
  */
632
632
  enableWirelessBridgingDhcpTracking?: pulumi.Input<boolean>;
633
633
  /**
634
- * if this wlan is enabled
634
+ * If this wlan is enabled
635
635
  */
636
636
  enabled?: pulumi.Input<boolean>;
637
637
  /**
638
- * if set to true, sets default fast-timers with values calculated from ‘auth_servers_timeout’ and
638
+ * If set to true, sets default fast-timers with values calculated from ‘auth_servers_timeout’ and
639
639
  * ‘auth_server_retries’ .
640
640
  */
641
641
  fastDot1xTimers?: pulumi.Input<boolean>;
642
642
  /**
643
- * whether to hide SSID in beacon
643
+ * Whether to hide SSID in beacon
644
644
  */
645
645
  hideSsid?: pulumi.Input<boolean>;
646
646
  /**
647
- * include hostname inside IE in AP beacons / probe responses
647
+ * Include hostname inside IE in AP beacons / probe responses
648
648
  */
649
649
  hostnameIe?: pulumi.Input<boolean>;
650
650
  /**
651
- * hostspot 2.0 wlan settings
651
+ * Hostspot 2.0 wlan settings
652
652
  */
653
653
  hotspot20?: pulumi.Input<inputs.org.WlanHotspot20>;
654
654
  injectDhcpOption82?: pulumi.Input<inputs.org.WlanInjectDhcpOption82>;
@@ -657,71 +657,71 @@ export interface WlanState {
657
657
  */
658
658
  interface?: pulumi.Input<string>;
659
659
  /**
660
- * whether to stop clients to talk to each other
660
+ * Whether to stop clients to talk to each other
661
661
  */
662
662
  isolation?: pulumi.Input<boolean>;
663
663
  /**
664
- * if isolation is enabled, whether to deny clients to talk to L2 on the LAN
664
+ * If isolation is enabled, whether to deny clients to talk to L2 on the LAN
665
665
  */
666
666
  l2Isolation?: pulumi.Input<boolean>;
667
667
  /**
668
- * legacy devices requires the Over-DS (for Fast BSS Transition) bit set (while our chip doesn’t support it). Warning!
668
+ * Legacy devices requires the Over-DS (for Fast BSS Transition) bit set (while our chip doesn’t support it). Warning!
669
669
  * Enabling this will cause problem for iOS devices.
670
670
  */
671
671
  legacyOverds?: pulumi.Input<boolean>;
672
672
  /**
673
- * whether to limit broadcast packets going to wireless (i.e. only allow certain bcast packets to go through)
673
+ * Whether to limit broadcast packets going to wireless (i.e. only allow certain bcast packets to go through)
674
674
  */
675
675
  limitBcast?: pulumi.Input<boolean>;
676
676
  /**
677
- * limit probe response base on some heuristic rules
677
+ * Limit probe response base on some heuristic rules
678
678
  */
679
679
  limitProbeResponse?: pulumi.Input<boolean>;
680
680
  /**
681
- * max idle time in seconds
681
+ * Max idle time in seconds
682
682
  */
683
683
  maxIdletime?: pulumi.Input<number>;
684
684
  /**
685
- * maximum number of client connected to the SSID. `0` means unlimited
685
+ * Maximum number of client connected to the SSID. `0` means unlimited
686
686
  */
687
687
  maxNumClients?: pulumi.Input<number>;
688
688
  mistNac?: pulumi.Input<inputs.org.WlanMistNac>;
689
689
  mspId?: pulumi.Input<string>;
690
690
  /**
691
- * when `interface`=`mxtunnel`, id of the Mist Tunnel
691
+ * When `interface`=`mxtunnel`, id of the Mist Tunnel
692
692
  */
693
693
  mxtunnelIds?: pulumi.Input<pulumi.Input<string>[]>;
694
694
  /**
695
- * when `interface`=`siteMedge`, name of the mxtunnel that in mxtunnels under Site Setting
695
+ * When `interface`=`siteMedge`, name of the mxtunnel that in mxtunnels under Site Setting
696
696
  */
697
697
  mxtunnelNames?: pulumi.Input<pulumi.Input<string>[]>;
698
698
  /**
699
- * whether to only allow client to use DNS that we’ve learned from DHCP response
699
+ * Whether to only allow client to use DNS that we’ve learned from DHCP response
700
700
  */
701
701
  noStaticDns?: pulumi.Input<boolean>;
702
702
  /**
703
- * whether to only allow client that we’ve learned from DHCP exchange to talk
703
+ * Whether to only allow client that we’ve learned from DHCP exchange to talk
704
704
  */
705
705
  noStaticIp?: pulumi.Input<boolean>;
706
706
  orgId?: pulumi.Input<string>;
707
707
  /**
708
- * portal wlan settings
708
+ * Portal wlan settings
709
709
  */
710
710
  portal?: pulumi.Input<inputs.org.WlanPortal>;
711
711
  /**
712
- * list of hostnames without http(s):// (matched by substring)
712
+ * List of hostnames without http(s):// (matched by substring)
713
713
  */
714
714
  portalAllowedHostnames?: pulumi.Input<pulumi.Input<string>[]>;
715
715
  /**
716
- * list of CIDRs
716
+ * List of CIDRs
717
717
  */
718
718
  portalAllowedSubnets?: pulumi.Input<pulumi.Input<string>[]>;
719
719
  /**
720
- * api secret (auto-generated) that can be used to sign guest authorization requests
720
+ * APi secret (auto-generated) that can be used to sign guest authorization requests
721
721
  */
722
722
  portalApiSecret?: pulumi.Input<string>;
723
723
  /**
724
- * list of hostnames without http(s):// (matched by substring), this takes precedence over portal_allowed_hostnames
724
+ * List of hostnames without http(s):// (matched by substring), this takes precedence over portal_allowed_hostnames
725
725
  */
726
726
  portalDeniedHostnames?: pulumi.Input<pulumi.Input<string>[]>;
727
727
  /**
@@ -731,7 +731,7 @@ export interface WlanState {
731
731
  portalSsoUrl?: pulumi.Input<string>;
732
732
  qos?: pulumi.Input<inputs.org.WlanQos>;
733
733
  /**
734
- * Radsec settings
734
+ * RadSec settings
735
735
  */
736
736
  radsec?: pulumi.Input<inputs.org.WlanRadsec>;
737
737
  /**
@@ -741,7 +741,7 @@ export interface WlanState {
741
741
  [key: string]: pulumi.Input<inputs.org.WlanRateset>;
742
742
  }>;
743
743
  /**
744
- * when different mxcluster is on different subnet, we'd want to disconnect clients (so they'll reconnect and get new IPs)
744
+ * When different mxcluster is on different subnet, we'd want to disconnect clients (so they'll reconnect and get new IPs)
745
745
  */
746
746
  reconnectClientsWhenRoamingMxcluster?: pulumi.Input<boolean>;
747
747
  /**
@@ -753,20 +753,20 @@ export interface WlanState {
753
753
  */
754
754
  schedule?: pulumi.Input<inputs.org.WlanSchedule>;
755
755
  /**
756
- * whether to exclude this WLAN from SLE metrics
756
+ * Whether to exclude this WLAN from SLE metrics
757
757
  */
758
758
  sleExcluded?: pulumi.Input<boolean>;
759
759
  /**
760
- * the name of the SSID
760
+ * Name of the SSID
761
761
  */
762
762
  ssid?: pulumi.Input<string>;
763
763
  templateId?: pulumi.Input<string>;
764
764
  /**
765
- * if `auth.type`==’eap or psk’, should only be set for legacy client, such as pre-2004, 802.11b devices
765
+ * If `auth.type`==`eap` or `auth.type`==`psk`, should only be set for legacy client, such as pre-2004, 802.11b devices
766
766
  */
767
767
  useEapolV1?: pulumi.Input<boolean>;
768
768
  /**
769
- * if vlan tagging is enabled
769
+ * If vlan tagging is enabled
770
770
  */
771
771
  vlanEnabled?: pulumi.Input<boolean>;
772
772
  vlanId?: pulumi.Input<string>;
@@ -780,31 +780,31 @@ export interface WlanState {
780
780
  */
781
781
  vlanPooling?: pulumi.Input<boolean>;
782
782
  /**
783
- * kbps
783
+ * In kbps
784
784
  */
785
785
  wlanLimitDown?: pulumi.Input<number>;
786
786
  /**
787
- * if downlink limiting for whole wlan is enabled
787
+ * If downlink limiting for whole wlan is enabled
788
788
  */
789
789
  wlanLimitDownEnabled?: pulumi.Input<boolean>;
790
790
  /**
791
- * kbps
791
+ * In kbps
792
792
  */
793
793
  wlanLimitUp?: pulumi.Input<number>;
794
794
  /**
795
- * if uplink limiting for whole wlan is enabled
795
+ * If uplink limiting for whole wlan is enabled
796
796
  */
797
797
  wlanLimitUpEnabled?: pulumi.Input<boolean>;
798
798
  /**
799
- * list of wxtag_ids
799
+ * List of wxtag_ids
800
800
  */
801
801
  wxtagIds?: pulumi.Input<pulumi.Input<string>[]>;
802
802
  /**
803
- * when `interface`=`wxtunnel`, id of the WXLAN Tunnel
803
+ * When `interface`=`wxtunnel`, id of the WXLAN Tunnel
804
804
  */
805
805
  wxtunnelId?: pulumi.Input<string>;
806
806
  /**
807
- * when `interface`=`wxtunnel`, remote tunnel identifier
807
+ * When `interface`=`wxtunnel`, remote tunnel identifier
808
808
  */
809
809
  wxtunnelRemoteId?: pulumi.Input<string>;
810
810
  }
@@ -813,45 +813,45 @@ export interface WlanState {
813
813
  */
814
814
  export interface WlanArgs {
815
815
  /**
816
- * enable coa-immediate-update and address-change-immediate-update on the access profile.
816
+ * Enable coa-immediate-update and address-change-immediate-update on the access profile.
817
817
  */
818
818
  acctImmediateUpdate?: pulumi.Input<boolean>;
819
819
  /**
820
- * how frequently should interim accounting be reported, 60-65535. default is 0 (use one specified in Access-Accept request
820
+ * How frequently should interim accounting be reported, 60-65535. default is 0 (use one specified in Access-Accept request
821
821
  * from RADIUS Server). Very frequent messages can affect the performance of the radius server, 600 and up is recommended
822
822
  * when enabled
823
823
  */
824
824
  acctInterimInterval?: pulumi.Input<number>;
825
825
  /**
826
- * list of RADIUS accounting servers, optional, order matters where the first one is treated as primary
826
+ * List of RADIUS accounting servers, optional, order matters where the first one is treated as primary
827
827
  */
828
828
  acctServers?: pulumi.Input<pulumi.Input<inputs.org.WlanAcctServer>[]>;
829
829
  /**
830
- * airwatch wlan settings
830
+ * Airwatch wlan settings
831
831
  */
832
832
  airwatch?: pulumi.Input<inputs.org.WlanAirwatch>;
833
833
  /**
834
- * only applicable when limit_bcast==true, which allows or disallows ipv6 Neighbor Discovery packets to go through
834
+ * Only applicable when limit_bcast==true, which allows or disallows ipv6 Neighbor Discovery packets to go through
835
835
  */
836
836
  allowIpv6Ndp?: pulumi.Input<boolean>;
837
837
  /**
838
- * only applicable when limit_bcast==true, which allows mDNS / Bonjour packets to go through
838
+ * Only applicable when limit_bcast==true, which allows mDNS / Bonjour packets to go through
839
839
  */
840
840
  allowMdns?: pulumi.Input<boolean>;
841
841
  /**
842
- * only applicable when `limitBcast`==`true`, which allows SSDP
842
+ * Only applicable when `limitBcast`==`true`, which allows SSDP
843
843
  */
844
844
  allowSsdp?: pulumi.Input<boolean>;
845
845
  /**
846
- * list of device ids
846
+ * List of device ids
847
847
  */
848
848
  apIds?: pulumi.Input<pulumi.Input<string>[]>;
849
849
  /**
850
- * bandwidth limiting for apps (applies to up/down)
850
+ * Bandwidth limiting for apps (applies to up/down)
851
851
  */
852
852
  appLimit?: pulumi.Input<inputs.org.WlanAppLimit>;
853
853
  /**
854
- * app qos wlan settings
854
+ * APp qos wlan settings
855
855
  */
856
856
  appQos?: pulumi.Input<inputs.org.WlanAppQos>;
857
857
  /**
@@ -859,11 +859,11 @@ export interface WlanArgs {
859
859
  */
860
860
  applyTo?: pulumi.Input<string>;
861
861
  /**
862
- * whether to enable smart arp filter
862
+ * Whether to enable smart arp filter
863
863
  */
864
864
  arpFilter?: pulumi.Input<boolean>;
865
865
  /**
866
- * authentication wlan settings
866
+ * Authentication wlan settings
867
867
  */
868
868
  auth?: pulumi.Input<inputs.org.WlanAuth>;
869
869
  /**
@@ -871,36 +871,36 @@ export interface WlanArgs {
871
871
  */
872
872
  authServerSelection?: pulumi.Input<string>;
873
873
  /**
874
- * list of RADIUS authentication servers, at least one is needed if `auth type`==`eap`, order matters where the first one
874
+ * List of RADIUS authentication servers, at least one is needed if `auth type`==`eap`, order matters where the first one
875
875
  * is treated as primary
876
876
  */
877
877
  authServers?: pulumi.Input<pulumi.Input<inputs.org.WlanAuthServer>[]>;
878
878
  /**
879
- * optional, up to 48 bytes, will be dynamically generated if not provided. used only for authentication servers
879
+ * Optional, up to 48 bytes, will be dynamically generated if not provided. used only for authentication servers
880
880
  */
881
881
  authServersNasId?: pulumi.Input<string>;
882
882
  /**
883
- * optional, NAS-IP-ADDRESS to use
883
+ * Optional, NAS-IP-ADDRESS to use
884
884
  */
885
885
  authServersNasIp?: pulumi.Input<string>;
886
886
  /**
887
- * radius auth session retries. Following fast timers are set if “fast_dot1x_timers” knob is enabled. ‘retries’ are
888
- * set to value of auth_servers_retries. ‘max-requests’ is also set when setting authServersRetries and is set to
889
- * default value to 3.
887
+ * Radius auth session retries. Following fast timers are set if "fastDot1xTimers" knob is enabled. ‘retries’ are set
888
+ * to value of auth_servers_retries. ‘max-requests’ is also set when setting authServersRetries and is set to default
889
+ * value to 3.
890
890
  */
891
891
  authServersRetries?: pulumi.Input<number>;
892
892
  /**
893
- * radius auth session timeout. Following fast timers are set if “fast_dot1x_timers” knob is enabled.
894
- * ‘quite-period’ and ‘transmit-period’ are set to half the value of auth_servers_timeout. ‘supplicant-timeout’
895
- * is also set when setting authServersTimeout and is set to default value of 10.
893
+ * Radius auth session timeout. Following fast timers are set if "fastDot1xTimers" knob is enabled. ‘quite-period’ and
894
+ * ‘transmit-period’ are set to half the value of auth_servers_timeout. ‘supplicant-timeout’ is also set when
895
+ * setting authServersTimeout and is set to default value of 10.
896
896
  */
897
897
  authServersTimeout?: pulumi.Input<number>;
898
898
  /**
899
- * whether to enable band_steering, this works only when band==both
899
+ * Whether to enable band_steering, this works only when band==both
900
900
  */
901
901
  bandSteer?: pulumi.Input<boolean>;
902
902
  /**
903
- * force dualBand capable client to connect to 5G
903
+ * Force dualBand capable client to connect to 5G
904
904
  */
905
905
  bandSteerForceBand5?: pulumi.Input<boolean>;
906
906
  /**
@@ -908,11 +908,11 @@ export interface WlanArgs {
908
908
  */
909
909
  bands?: pulumi.Input<pulumi.Input<string>[]>;
910
910
  /**
911
- * whether to block the clients in the blacklist (up to first 256 macs)
911
+ * Whether to block the clients in the blacklist (up to first 256 macs)
912
912
  */
913
913
  blockBlacklistClients?: pulumi.Input<boolean>;
914
914
  /**
915
- * bonjour gateway wlan settings
915
+ * Bonjour gateway wlan settings
916
916
  */
917
917
  bonjour?: pulumi.Input<inputs.org.WlanBonjour>;
918
918
  /**
@@ -921,106 +921,106 @@ export interface WlanArgs {
921
921
  */
922
922
  ciscoCwa?: pulumi.Input<inputs.org.WlanCiscoCwa>;
923
923
  /**
924
- * kbps
924
+ * In kbps
925
925
  */
926
926
  clientLimitDown?: pulumi.Input<number>;
927
927
  /**
928
- * if downlink limiting per-client is enabled
928
+ * If downlink limiting per-client is enabled
929
929
  */
930
930
  clientLimitDownEnabled?: pulumi.Input<boolean>;
931
931
  /**
932
- * kbps
932
+ * In kbps
933
933
  */
934
934
  clientLimitUp?: pulumi.Input<number>;
935
935
  /**
936
- * if uplink limiting per-client is enabled
936
+ * If uplink limiting per-client is enabled
937
937
  */
938
938
  clientLimitUpEnabled?: pulumi.Input<boolean>;
939
939
  /**
940
- * list of COA (change of authorization) servers, optional
940
+ * List of COA (change of authorization) servers, optional
941
941
  */
942
942
  coaServers?: pulumi.Input<pulumi.Input<inputs.org.WlanCoaServer>[]>;
943
943
  /**
944
- * some old WLAN drivers may not be compatible
944
+ * Some old WLAN drivers may not be compatible
945
945
  */
946
946
  disable11ax?: pulumi.Input<boolean>;
947
947
  /**
948
- * to disable ht or vht rates
948
+ * To disable ht or vht rates
949
949
  */
950
950
  disableHtVhtRates?: pulumi.Input<boolean>;
951
951
  /**
952
- * whether to disable U-APSD
952
+ * Whether to disable U-APSD
953
953
  */
954
954
  disableUapsd?: pulumi.Input<boolean>;
955
955
  /**
956
- * disable sending v2 roam notification messages
956
+ * Disable sending v2 roam notification messages
957
957
  */
958
958
  disableV1RoamNotify?: pulumi.Input<boolean>;
959
959
  /**
960
- * disable sending v2 roam notification messages
960
+ * Disable sending v2 roam notification messages
961
961
  */
962
962
  disableV2RoamNotify?: pulumi.Input<boolean>;
963
963
  /**
964
- * when any of the following is true, this WLAN will be disabled * cannot get IP * cannot obtain default gateway * cannot
964
+ * When any of the following is true, this WLAN will be disabled * cannot get IP * cannot obtain default gateway * cannot
965
965
  * reach default gateway
966
966
  */
967
967
  disableWhenGatewayUnreachable?: pulumi.Input<boolean>;
968
968
  disableWhenMxtunnelDown?: pulumi.Input<boolean>;
969
969
  /**
970
- * whether to disable WMM
970
+ * Whether to disable WMM
971
971
  */
972
972
  disableWmm?: pulumi.Input<boolean>;
973
973
  /**
974
- * for radius_group-based DNS server (rewrite DNS request depending on the Group RADIUS server returns)
974
+ * For radius_group-based DNS server (rewrite DNS request depending on the Group RADIUS server returns)
975
975
  */
976
976
  dnsServerRewrite?: pulumi.Input<inputs.org.WlanDnsServerRewrite>;
977
977
  dtim?: pulumi.Input<number>;
978
978
  /**
979
- * for dynamic PSK where we get perUser PSK from Radius. dynamicPsk allows PSK to be selected at runtime depending on
979
+ * For dynamic PSK where we get perUser PSK from Radius. dynamicPsk allows PSK to be selected at runtime depending on
980
980
  * context (wlan/site/user/...) thus following configurations are assumed (currently) * PSK will come from RADIUS server *
981
- * AP sends client MAC as username ans password (i.e. `enableMacAuth` is assumed) * AP sends BSSID:SSID as
981
+ * AP sends client MAC as username and password (i.e. `enableMacAuth` is assumed) * AP sends BSSID:SSID as
982
982
  * Caller-Station-ID * `authServers` is required * PSK will come from cloud WLC if source is cloudPsks * defaultPsk will be
983
983
  * used if cloud WLC is not available * `multiPskOnly` and `psk` is ignored * `pairwise` can only be wpa2-ccmp (for now,
984
984
  * wpa3 support on the roadmap)
985
985
  */
986
986
  dynamicPsk?: pulumi.Input<inputs.org.WlanDynamicPsk>;
987
987
  /**
988
- * for 802.1x
988
+ * For 802.1x
989
989
  */
990
990
  dynamicVlan?: pulumi.Input<inputs.org.WlanDynamicVlan>;
991
991
  /**
992
- * enable AP-AP keycaching via multicast
992
+ * Enable AP-AP keycaching via multicast
993
993
  */
994
994
  enableLocalKeycaching?: pulumi.Input<boolean>;
995
995
  /**
996
- * by default, we'd inspect all DHCP packets and drop those unrelated to the wireless client itself in the case where
996
+ * By default, we'd inspect all DHCP packets and drop those unrelated to the wireless client itself in the case where
997
997
  * client is a wireless bridge (DHCP packets for other MACs will need to be orwarded), wirelessBridging can be enabled
998
998
  */
999
999
  enableWirelessBridging?: pulumi.Input<boolean>;
1000
1000
  /**
1001
- * if the client bridge is doing DHCP on behalf of other devices (L2-NAT), enable dhcpTracking will cut down DHCP response
1001
+ * If the client bridge is doing DHCP on behalf of other devices (L2-NAT), enable dhcpTracking will cut down DHCP response
1002
1002
  * packets to be forwarded to wireless
1003
1003
  */
1004
1004
  enableWirelessBridgingDhcpTracking?: pulumi.Input<boolean>;
1005
1005
  /**
1006
- * if this wlan is enabled
1006
+ * If this wlan is enabled
1007
1007
  */
1008
1008
  enabled?: pulumi.Input<boolean>;
1009
1009
  /**
1010
- * if set to true, sets default fast-timers with values calculated from ‘auth_servers_timeout’ and
1010
+ * If set to true, sets default fast-timers with values calculated from ‘auth_servers_timeout’ and
1011
1011
  * ‘auth_server_retries’ .
1012
1012
  */
1013
1013
  fastDot1xTimers?: pulumi.Input<boolean>;
1014
1014
  /**
1015
- * whether to hide SSID in beacon
1015
+ * Whether to hide SSID in beacon
1016
1016
  */
1017
1017
  hideSsid?: pulumi.Input<boolean>;
1018
1018
  /**
1019
- * include hostname inside IE in AP beacons / probe responses
1019
+ * Include hostname inside IE in AP beacons / probe responses
1020
1020
  */
1021
1021
  hostnameIe?: pulumi.Input<boolean>;
1022
1022
  /**
1023
- * hostspot 2.0 wlan settings
1023
+ * Hostspot 2.0 wlan settings
1024
1024
  */
1025
1025
  hotspot20?: pulumi.Input<inputs.org.WlanHotspot20>;
1026
1026
  injectDhcpOption82?: pulumi.Input<inputs.org.WlanInjectDhcpOption82>;
@@ -1029,71 +1029,71 @@ export interface WlanArgs {
1029
1029
  */
1030
1030
  interface?: pulumi.Input<string>;
1031
1031
  /**
1032
- * whether to stop clients to talk to each other
1032
+ * Whether to stop clients to talk to each other
1033
1033
  */
1034
1034
  isolation?: pulumi.Input<boolean>;
1035
1035
  /**
1036
- * if isolation is enabled, whether to deny clients to talk to L2 on the LAN
1036
+ * If isolation is enabled, whether to deny clients to talk to L2 on the LAN
1037
1037
  */
1038
1038
  l2Isolation?: pulumi.Input<boolean>;
1039
1039
  /**
1040
- * legacy devices requires the Over-DS (for Fast BSS Transition) bit set (while our chip doesn’t support it). Warning!
1040
+ * Legacy devices requires the Over-DS (for Fast BSS Transition) bit set (while our chip doesn’t support it). Warning!
1041
1041
  * Enabling this will cause problem for iOS devices.
1042
1042
  */
1043
1043
  legacyOverds?: pulumi.Input<boolean>;
1044
1044
  /**
1045
- * whether to limit broadcast packets going to wireless (i.e. only allow certain bcast packets to go through)
1045
+ * Whether to limit broadcast packets going to wireless (i.e. only allow certain bcast packets to go through)
1046
1046
  */
1047
1047
  limitBcast?: pulumi.Input<boolean>;
1048
1048
  /**
1049
- * limit probe response base on some heuristic rules
1049
+ * Limit probe response base on some heuristic rules
1050
1050
  */
1051
1051
  limitProbeResponse?: pulumi.Input<boolean>;
1052
1052
  /**
1053
- * max idle time in seconds
1053
+ * Max idle time in seconds
1054
1054
  */
1055
1055
  maxIdletime?: pulumi.Input<number>;
1056
1056
  /**
1057
- * maximum number of client connected to the SSID. `0` means unlimited
1057
+ * Maximum number of client connected to the SSID. `0` means unlimited
1058
1058
  */
1059
1059
  maxNumClients?: pulumi.Input<number>;
1060
1060
  mistNac?: pulumi.Input<inputs.org.WlanMistNac>;
1061
1061
  /**
1062
- * when `interface`=`mxtunnel`, id of the Mist Tunnel
1062
+ * When `interface`=`mxtunnel`, id of the Mist Tunnel
1063
1063
  */
1064
1064
  mxtunnelIds?: pulumi.Input<pulumi.Input<string>[]>;
1065
1065
  /**
1066
- * when `interface`=`siteMedge`, name of the mxtunnel that in mxtunnels under Site Setting
1066
+ * When `interface`=`siteMedge`, name of the mxtunnel that in mxtunnels under Site Setting
1067
1067
  */
1068
1068
  mxtunnelNames?: pulumi.Input<pulumi.Input<string>[]>;
1069
1069
  /**
1070
- * whether to only allow client to use DNS that we’ve learned from DHCP response
1070
+ * Whether to only allow client to use DNS that we’ve learned from DHCP response
1071
1071
  */
1072
1072
  noStaticDns?: pulumi.Input<boolean>;
1073
1073
  /**
1074
- * whether to only allow client that we’ve learned from DHCP exchange to talk
1074
+ * Whether to only allow client that we’ve learned from DHCP exchange to talk
1075
1075
  */
1076
1076
  noStaticIp?: pulumi.Input<boolean>;
1077
1077
  orgId: pulumi.Input<string>;
1078
1078
  /**
1079
- * portal wlan settings
1079
+ * Portal wlan settings
1080
1080
  */
1081
1081
  portal?: pulumi.Input<inputs.org.WlanPortal>;
1082
1082
  /**
1083
- * list of hostnames without http(s):// (matched by substring)
1083
+ * List of hostnames without http(s):// (matched by substring)
1084
1084
  */
1085
1085
  portalAllowedHostnames?: pulumi.Input<pulumi.Input<string>[]>;
1086
1086
  /**
1087
- * list of CIDRs
1087
+ * List of CIDRs
1088
1088
  */
1089
1089
  portalAllowedSubnets?: pulumi.Input<pulumi.Input<string>[]>;
1090
1090
  /**
1091
- * list of hostnames without http(s):// (matched by substring), this takes precedence over portal_allowed_hostnames
1091
+ * List of hostnames without http(s):// (matched by substring), this takes precedence over portal_allowed_hostnames
1092
1092
  */
1093
1093
  portalDeniedHostnames?: pulumi.Input<pulumi.Input<string>[]>;
1094
1094
  qos?: pulumi.Input<inputs.org.WlanQos>;
1095
1095
  /**
1096
- * Radsec settings
1096
+ * RadSec settings
1097
1097
  */
1098
1098
  radsec?: pulumi.Input<inputs.org.WlanRadsec>;
1099
1099
  /**
@@ -1103,7 +1103,7 @@ export interface WlanArgs {
1103
1103
  [key: string]: pulumi.Input<inputs.org.WlanRateset>;
1104
1104
  }>;
1105
1105
  /**
1106
- * when different mxcluster is on different subnet, we'd want to disconnect clients (so they'll reconnect and get new IPs)
1106
+ * When different mxcluster is on different subnet, we'd want to disconnect clients (so they'll reconnect and get new IPs)
1107
1107
  */
1108
1108
  reconnectClientsWhenRoamingMxcluster?: pulumi.Input<boolean>;
1109
1109
  /**
@@ -1115,20 +1115,20 @@ export interface WlanArgs {
1115
1115
  */
1116
1116
  schedule?: pulumi.Input<inputs.org.WlanSchedule>;
1117
1117
  /**
1118
- * whether to exclude this WLAN from SLE metrics
1118
+ * Whether to exclude this WLAN from SLE metrics
1119
1119
  */
1120
1120
  sleExcluded?: pulumi.Input<boolean>;
1121
1121
  /**
1122
- * the name of the SSID
1122
+ * Name of the SSID
1123
1123
  */
1124
1124
  ssid: pulumi.Input<string>;
1125
1125
  templateId: pulumi.Input<string>;
1126
1126
  /**
1127
- * if `auth.type`==’eap or psk’, should only be set for legacy client, such as pre-2004, 802.11b devices
1127
+ * If `auth.type`==`eap` or `auth.type`==`psk`, should only be set for legacy client, such as pre-2004, 802.11b devices
1128
1128
  */
1129
1129
  useEapolV1?: pulumi.Input<boolean>;
1130
1130
  /**
1131
- * if vlan tagging is enabled
1131
+ * If vlan tagging is enabled
1132
1132
  */
1133
1133
  vlanEnabled?: pulumi.Input<boolean>;
1134
1134
  vlanId?: pulumi.Input<string>;
@@ -1142,31 +1142,31 @@ export interface WlanArgs {
1142
1142
  */
1143
1143
  vlanPooling?: pulumi.Input<boolean>;
1144
1144
  /**
1145
- * kbps
1145
+ * In kbps
1146
1146
  */
1147
1147
  wlanLimitDown?: pulumi.Input<number>;
1148
1148
  /**
1149
- * if downlink limiting for whole wlan is enabled
1149
+ * If downlink limiting for whole wlan is enabled
1150
1150
  */
1151
1151
  wlanLimitDownEnabled?: pulumi.Input<boolean>;
1152
1152
  /**
1153
- * kbps
1153
+ * In kbps
1154
1154
  */
1155
1155
  wlanLimitUp?: pulumi.Input<number>;
1156
1156
  /**
1157
- * if uplink limiting for whole wlan is enabled
1157
+ * If uplink limiting for whole wlan is enabled
1158
1158
  */
1159
1159
  wlanLimitUpEnabled?: pulumi.Input<boolean>;
1160
1160
  /**
1161
- * list of wxtag_ids
1161
+ * List of wxtag_ids
1162
1162
  */
1163
1163
  wxtagIds?: pulumi.Input<pulumi.Input<string>[]>;
1164
1164
  /**
1165
- * when `interface`=`wxtunnel`, id of the WXLAN Tunnel
1165
+ * When `interface`=`wxtunnel`, id of the WXLAN Tunnel
1166
1166
  */
1167
1167
  wxtunnelId?: pulumi.Input<string>;
1168
1168
  /**
1169
- * when `interface`=`wxtunnel`, remote tunnel identifier
1169
+ * When `interface`=`wxtunnel`, remote tunnel identifier
1170
1170
  */
1171
1171
  wxtunnelRemoteId?: pulumi.Input<string>;
1172
1172
  }