@pulumi/juniper-mist 0.9.0 → 0.10.0

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 (57) hide show
  1. package/device/ap.d.ts +12 -0
  2. package/device/ap.d.ts.map +1 -1
  3. package/device/ap.js +2 -0
  4. package/device/ap.js.map +1 -1
  5. package/device/gateway.d.ts +3 -3
  6. package/device/switch.d.ts +3 -3
  7. package/org/deviceprofileAp.d.ts +12 -0
  8. package/org/deviceprofileAp.d.ts.map +1 -1
  9. package/org/deviceprofileAp.js +2 -0
  10. package/org/deviceprofileAp.js.map +1 -1
  11. package/org/gatewaytemplate.d.ts +12 -0
  12. package/org/gatewaytemplate.d.ts.map +1 -1
  13. package/org/gatewaytemplate.js +2 -0
  14. package/org/gatewaytemplate.js.map +1 -1
  15. package/org/mxcluster.d.ts +0 -178
  16. package/org/mxcluster.d.ts.map +1 -1
  17. package/org/mxcluster.js +0 -178
  18. package/org/mxcluster.js.map +1 -1
  19. package/org/mxedge.d.ts +1 -9
  20. package/org/mxedge.d.ts.map +1 -1
  21. package/org/mxedge.js +0 -2
  22. package/org/mxedge.js.map +1 -1
  23. package/org/nacidp.d.ts.map +1 -1
  24. package/org/nacidp.js +5 -3
  25. package/org/nacidp.js.map +1 -1
  26. package/org/networktemplate.d.ts +3 -3
  27. package/org/psk.d.ts +12 -0
  28. package/org/psk.d.ts.map +1 -1
  29. package/org/psk.js +2 -0
  30. package/org/psk.js.map +1 -1
  31. package/org/webhook.d.ts +3 -3
  32. package/org/wlan.d.ts +8 -4
  33. package/org/wlan.d.ts.map +1 -1
  34. package/org/wlan.js +1 -1
  35. package/org/wlan.js.map +1 -1
  36. package/package.json +2 -2
  37. package/site/networktemplate.d.ts +8 -4
  38. package/site/networktemplate.d.ts.map +1 -1
  39. package/site/networktemplate.js +1 -1
  40. package/site/networktemplate.js.map +1 -1
  41. package/site/psk.d.ts +12 -0
  42. package/site/psk.d.ts.map +1 -1
  43. package/site/psk.js +2 -0
  44. package/site/psk.js.map +1 -1
  45. package/site/setting.d.ts +69 -15
  46. package/site/setting.d.ts.map +1 -1
  47. package/site/setting.js +10 -2
  48. package/site/setting.js.map +1 -1
  49. package/site/webhook.d.ts +3 -3
  50. package/site/wlan.d.ts +8 -4
  51. package/site/wlan.d.ts.map +1 -1
  52. package/site/wlan.js +1 -1
  53. package/site/wlan.js.map +1 -1
  54. package/types/input.d.ts +462 -30
  55. package/types/input.d.ts.map +1 -1
  56. package/types/output.d.ts +475 -43
  57. package/types/output.d.ts.map +1 -1
package/types/output.d.ts CHANGED
@@ -425,6 +425,10 @@ export declare namespace device {
425
425
  * enum: `base`, `remote`
426
426
  */
427
427
  role?: string;
428
+ /**
429
+ * Whether to use WPA3 on the 5 GHz band for mesh links
430
+ */
431
+ useWpa3On5?: boolean;
428
432
  }
429
433
  interface ApPortConfig {
430
434
  disabled: boolean;
@@ -934,6 +938,28 @@ export declare namespace device {
934
938
  */
935
939
  vlanId?: number;
936
940
  }
941
+ interface ApZigbeeConfig {
942
+ /**
943
+ * Controls whether new Zigbee devices are allowed to join the network. enum: `always`, `manual`
944
+ */
945
+ allowJoin?: string;
946
+ /**
947
+ * Zigbee channel (2.4 GHz). `0` means auto; valid fixed values are 11–26
948
+ */
949
+ channel?: number;
950
+ /**
951
+ * Whether to enable Zigbee on this AP
952
+ */
953
+ enabled?: boolean;
954
+ /**
955
+ * Extended PAN ID in hex string format; only applicable when `panId` is also specified
956
+ */
957
+ extendedPanId?: string;
958
+ /**
959
+ * PAN ID in hex string format; if not specified, assigned automatically
960
+ */
961
+ panId?: string;
962
+ }
937
963
  interface BaseLatlng {
938
964
  lat: number;
939
965
  lng: number;
@@ -1042,6 +1068,10 @@ export declare namespace device {
1042
1068
  * Neighbor AS. Value must be in range 1-4294967295 or a variable (e.g. `{{as_variable}}`)
1043
1069
  */
1044
1070
  neighborAs: string;
1071
+ /**
1072
+ * If `via`==`tunnel`, specifies which tunnel (primary/secondary) this neighbor is associated with. enum: `primary`, `secondary`
1073
+ */
1074
+ tunnelVia?: string;
1045
1075
  }
1046
1076
  interface GatewayClusterNode {
1047
1077
  /**
@@ -1164,10 +1194,125 @@ export declare namespace device {
1164
1194
  via: string;
1165
1195
  }
1166
1196
  interface GatewayGatewayMgmt {
1197
+ /**
1198
+ * For SSR only, as direct root access is not allowed
1199
+ */
1200
+ adminSshkeys?: string[];
1201
+ appProbing?: outputs.device.GatewayGatewayMgmtAppProbing;
1202
+ /**
1203
+ * Consumes uplink bandwidth, requires WA license
1204
+ */
1205
+ appUsage?: boolean;
1206
+ autoSignatureUpdate?: outputs.device.GatewayGatewayMgmtAutoSignatureUpdate;
1167
1207
  /**
1168
1208
  * Rollback timer for commit confirmed
1169
1209
  */
1170
1210
  configRevertTimer?: number;
1211
+ /**
1212
+ * For SSR and SRX, disable console port
1213
+ */
1214
+ disableConsole?: boolean;
1215
+ /**
1216
+ * For SSR and SRX, disable management interface
1217
+ */
1218
+ disableOob?: boolean;
1219
+ /**
1220
+ * For SSR and SRX, disable usb interface
1221
+ */
1222
+ disableUsb?: boolean;
1223
+ fipsEnabled?: boolean;
1224
+ probeHosts?: string[];
1225
+ probeHostsv6s?: string[];
1226
+ /**
1227
+ * Restrict inbound-traffic to host
1228
+ * when enabled, all traffic that is not essential to our operation will be dropped
1229
+ * e.g. ntp / dns / traffic to mist will be allowed by default, if dhcpd is enabled, we'll make sure it works
1230
+ */
1231
+ protectRe?: outputs.device.GatewayGatewayMgmtProtectRe;
1232
+ /**
1233
+ * SRX only
1234
+ */
1235
+ rootPassword?: string;
1236
+ securityLogSourceAddress?: string;
1237
+ securityLogSourceInterface?: string;
1238
+ }
1239
+ interface GatewayGatewayMgmtAppProbing {
1240
+ /**
1241
+ * APp-keys from List Applications
1242
+ */
1243
+ apps?: string[];
1244
+ customApps?: outputs.device.GatewayGatewayMgmtAppProbingCustomApp[];
1245
+ enabled?: boolean;
1246
+ }
1247
+ interface GatewayGatewayMgmtAppProbingCustomApp {
1248
+ /**
1249
+ * Required if `protocol`==`icmp`
1250
+ */
1251
+ address?: string;
1252
+ appType?: string;
1253
+ /**
1254
+ * If `protocol`==`http`
1255
+ */
1256
+ hostnames?: string[];
1257
+ key?: string;
1258
+ name?: string;
1259
+ network?: string;
1260
+ /**
1261
+ * If `protocol`==`icmp`
1262
+ */
1263
+ packetSize?: number;
1264
+ /**
1265
+ * enum: `http`, `icmp`
1266
+ */
1267
+ protocol?: string;
1268
+ /**
1269
+ * If `protocol`==`http`
1270
+ */
1271
+ url?: string;
1272
+ vrf?: string;
1273
+ }
1274
+ interface GatewayGatewayMgmtAutoSignatureUpdate {
1275
+ /**
1276
+ * enum: `any`, `fri`, `mon`, `sat`, `sun`, `thu`, `tue`, `wed`
1277
+ */
1278
+ dayOfWeek?: string;
1279
+ enable?: boolean;
1280
+ /**
1281
+ * Optional, Mist will decide the timing
1282
+ */
1283
+ timeOfDay?: string;
1284
+ }
1285
+ interface GatewayGatewayMgmtProtectRe {
1286
+ /**
1287
+ * Optionally, services we'll allow
1288
+ */
1289
+ allowedServices?: string[];
1290
+ customs?: outputs.device.GatewayGatewayMgmtProtectReCustom[];
1291
+ /**
1292
+ * When enabled, all traffic that is not essential to our operation will be dropped
1293
+ * e.g. ntp / dns / traffic to mist will be allowed by default
1294
+ * if dhcpd is enabled, we'll make sure it works
1295
+ */
1296
+ enabled?: boolean;
1297
+ /**
1298
+ * Whether to enable hit count for Protect_RE policy
1299
+ */
1300
+ hitCount?: boolean;
1301
+ /**
1302
+ * host/subnets we'll allow traffic to/from
1303
+ */
1304
+ trustedHosts?: string[];
1305
+ }
1306
+ interface GatewayGatewayMgmtProtectReCustom {
1307
+ /**
1308
+ * Matched dst port, "0" means any
1309
+ */
1310
+ portRange?: string;
1311
+ /**
1312
+ * enum: `any`, `icmp`, `tcp`, `udp`
1313
+ */
1314
+ protocol?: string;
1315
+ subnets?: string[];
1171
1316
  }
1172
1317
  interface GatewayIdpProfiles {
1173
1318
  /**
@@ -1428,7 +1573,7 @@ export declare namespace device {
1428
1573
  /**
1429
1574
  * enum: `dhcp`, `static`
1430
1575
  */
1431
- type: string;
1576
+ type?: string;
1432
1577
  /**
1433
1578
  * If supported on the platform. If enabled, DNS will be using this routing-instance, too
1434
1579
  */
@@ -1452,7 +1597,7 @@ export declare namespace device {
1452
1597
  /**
1453
1598
  * enum: `dhcp`, `static`
1454
1599
  */
1455
- type: string;
1600
+ type?: string;
1456
1601
  /**
1457
1602
  * If supported on the platform. If enabled, DNS will be using this routing-instance, too
1458
1603
  */
@@ -1585,6 +1730,10 @@ export declare namespace device {
1585
1730
  */
1586
1731
  outerVlanId?: number;
1587
1732
  poeDisabled?: boolean;
1733
+ /**
1734
+ * Whether Perpetual PoE capabilities are enabled for a port
1735
+ */
1736
+ poeKeepStateWhenReboot?: boolean;
1588
1737
  /**
1589
1738
  * Only for SRX and if `usage`==`lan`, the name of the Network to be used as the Untagged VLAN
1590
1739
  */
@@ -2049,7 +2198,7 @@ export declare namespace device {
2049
2198
  */
2050
2199
  ipsecLifetime?: number;
2051
2200
  /**
2052
- * Only if `provider`==`custom-ipsec`
2201
+ * Only if `provider`==`custom-ipsec`
2053
2202
  */
2054
2203
  ipsecProposals?: outputs.device.GatewayTunnelConfigsIpsecProposal[];
2055
2204
  /**
@@ -2199,7 +2348,7 @@ export declare namespace device {
2199
2348
  internalIps?: string[];
2200
2349
  probeIps?: string[];
2201
2350
  /**
2202
- * Only if `provider`==`jse-ipsec` or `provider`==`custom-ipsec`
2351
+ * Only if `provider`==`jse-ipsec` or `provider`==`custom-ipsec`
2203
2352
  */
2204
2353
  remoteIds?: string[];
2205
2354
  wanNames: string[];
@@ -2230,7 +2379,7 @@ export declare namespace device {
2230
2379
  internalIps?: string[];
2231
2380
  probeIps?: string[];
2232
2381
  /**
2233
- * Only if `provider`==`jse-ipsec` or `provider`==`custom-ipsec`
2382
+ * Only if `provider`==`jse-ipsec` or `provider`==`custom-ipsec`
2234
2383
  */
2235
2384
  remoteIds?: string[];
2236
2385
  wanNames: string[];
@@ -5083,7 +5232,7 @@ export declare namespace device {
5083
5232
  [key: string]: outputs.device.SwitchDhcpdConfigConfigFixedBindings;
5084
5233
  };
5085
5234
  /**
5086
- * If `type`==`server` - optional, `ip` will be used if not provided
5235
+ * If `type`==`server` - optional, `ip` will be used if not provided
5087
5236
  */
5088
5237
  gateway?: string;
5089
5238
  /**
@@ -5173,7 +5322,7 @@ export declare namespace device {
5173
5322
  noResolve?: boolean;
5174
5323
  preference?: number;
5175
5324
  /**
5176
- * Next-hop IP Address
5325
+ * Next-hop IP Address. Can be a single IP address or an array of IP addresses for ECMP (Equal-Cost Multi-Path) load balancing across multiple next-hops.
5177
5326
  */
5178
5327
  via: string;
5179
5328
  }
@@ -5189,7 +5338,7 @@ export declare namespace device {
5189
5338
  noResolve?: boolean;
5190
5339
  preference?: number;
5191
5340
  /**
5192
- * Next-hop IP Address
5341
+ * Next-hop IP Address. Can be a single IP address or an array of IP addresses for ECMP (Equal-Cost Multi-Path) load balancing across multiple next-hops.
5193
5342
  */
5194
5343
  via: string;
5195
5344
  }
@@ -5546,7 +5695,11 @@ export declare namespace device {
5546
5695
  */
5547
5696
  aeIdx?: number;
5548
5697
  /**
5549
- * To use fast timeout
5698
+ * If `aggregated`==`true`, sets the state of the interface as UP when the peer has limited LACP capability. Use case: When a device connected to this AE port is ZTPing for the first time, it will not have LACP configured on the other end. **Note:** Turning this on will enable force-up on one of the interfaces in the bundle only
5699
+ */
5700
+ aeLacpForceUp?: boolean;
5701
+ /**
5702
+ * To use slow timeout
5550
5703
  */
5551
5704
  aeLacpSlow?: boolean;
5552
5705
  aggregated?: boolean;
@@ -5609,6 +5762,10 @@ export declare namespace device {
5609
5762
  * Whether PoE capabilities are disabled for a port
5610
5763
  */
5611
5764
  poeDisabled: boolean;
5765
+ /**
5766
+ * Whether Perpetual PoE is enabled; keeps PoE state across reboots
5767
+ */
5768
+ poeKeepStateWhenReboot?: boolean;
5612
5769
  /**
5613
5770
  * Native network/vlan for untagged traffic
5614
5771
  */
@@ -5749,6 +5906,10 @@ export declare namespace device {
5749
5906
  * Only if `mode`!=`dynamic`. Whether PoE capabilities are disabled for a port
5750
5907
  */
5751
5908
  poeDisabled?: boolean;
5909
+ /**
5910
+ * Only if `mode`!=`dynamic`. Whether Perpetual PoE is enabled; keeps PoE state across reboots
5911
+ */
5912
+ poeKeepStateWhenReboot?: boolean;
5752
5913
  /**
5753
5914
  * PoE priority. enum: `low`, `high`
5754
5915
  */
@@ -6783,6 +6944,10 @@ export declare namespace org {
6783
6944
  * enum: `base`, `remote`
6784
6945
  */
6785
6946
  role?: string;
6947
+ /**
6948
+ * Whether to use WPA3 on the 5 GHz band for mesh links
6949
+ */
6950
+ useWpa3On5?: boolean;
6786
6951
  }
6787
6952
  interface DeviceprofileApPortConfig {
6788
6953
  disabled: boolean;
@@ -7292,6 +7457,28 @@ export declare namespace org {
7292
7457
  */
7293
7458
  vlanId?: number;
7294
7459
  }
7460
+ interface DeviceprofileApZigbeeConfig {
7461
+ /**
7462
+ * Controls whether new Zigbee devices are allowed to join the network. enum: `always`, `manual`
7463
+ */
7464
+ allowJoin?: string;
7465
+ /**
7466
+ * Zigbee channel (2.4 GHz). `0` means auto; valid fixed values are 11–26
7467
+ */
7468
+ channel?: number;
7469
+ /**
7470
+ * Whether to enable Zigbee on this AP
7471
+ */
7472
+ enabled?: boolean;
7473
+ /**
7474
+ * Extended PAN ID in hex string format; only applicable when `panId` is also specified
7475
+ */
7476
+ extendedPanId?: string;
7477
+ /**
7478
+ * PAN ID in hex string format; if not specified, assigned automatically
7479
+ */
7480
+ panId?: string;
7481
+ }
7295
7482
  interface DeviceprofileGatewayBgpConfig {
7296
7483
  /**
7297
7484
  * Optional if `via`==`lan`, `via`==`tunnel` or `via`==`wan`
@@ -7396,6 +7583,10 @@ export declare namespace org {
7396
7583
  * Neighbor AS. Value must be in range 1-4294967295 or a variable (e.g. `{{as_variable}}`)
7397
7584
  */
7398
7585
  neighborAs: string;
7586
+ /**
7587
+ * If `via`==`tunnel`, specifies which tunnel (primary/secondary) this neighbor is associated with. enum: `primary`, `secondary`
7588
+ */
7589
+ tunnelVia?: string;
7399
7590
  }
7400
7591
  interface DeviceprofileGatewayDhcpdConfig {
7401
7592
  /**
@@ -7766,7 +7957,7 @@ export declare namespace org {
7766
7957
  /**
7767
7958
  * enum: `dhcp`, `static`
7768
7959
  */
7769
- type: string;
7960
+ type?: string;
7770
7961
  /**
7771
7962
  * If supported on the platform. If enabled, DNS will be using this routing-instance, too
7772
7963
  */
@@ -7790,7 +7981,7 @@ export declare namespace org {
7790
7981
  /**
7791
7982
  * enum: `dhcp`, `static`
7792
7983
  */
7793
- type: string;
7984
+ type?: string;
7794
7985
  /**
7795
7986
  * If supported on the platform. If enabled, DNS will be using this routing-instance, too
7796
7987
  */
@@ -7923,6 +8114,10 @@ export declare namespace org {
7923
8114
  */
7924
8115
  outerVlanId?: number;
7925
8116
  poeDisabled?: boolean;
8117
+ /**
8118
+ * Whether Perpetual PoE capabilities are enabled for a port
8119
+ */
8120
+ poeKeepStateWhenReboot?: boolean;
7926
8121
  /**
7927
8122
  * Only for SRX and if `usage`==`lan`, the name of the Network to be used as the Untagged VLAN
7928
8123
  */
@@ -8377,7 +8572,7 @@ export declare namespace org {
8377
8572
  */
8378
8573
  ipsecLifetime?: number;
8379
8574
  /**
8380
- * Only if `provider`==`custom-ipsec`
8575
+ * Only if `provider`==`custom-ipsec`
8381
8576
  */
8382
8577
  ipsecProposals?: outputs.org.DeviceprofileGatewayTunnelConfigsIpsecProposal[];
8383
8578
  /**
@@ -8527,7 +8722,7 @@ export declare namespace org {
8527
8722
  internalIps?: string[];
8528
8723
  probeIps?: string[];
8529
8724
  /**
8530
- * Only if `provider`==`jse-ipsec` or `provider`==`custom-ipsec`
8725
+ * Only if `provider`==`jse-ipsec` or `provider`==`custom-ipsec`
8531
8726
  */
8532
8727
  remoteIds?: string[];
8533
8728
  wanNames: string[];
@@ -8558,7 +8753,7 @@ export declare namespace org {
8558
8753
  internalIps?: string[];
8559
8754
  probeIps?: string[];
8560
8755
  /**
8561
- * Only if `provider`==`jse-ipsec` or `provider`==`custom-ipsec`
8756
+ * Only if `provider`==`jse-ipsec` or `provider`==`custom-ipsec`
8562
8757
  */
8563
8758
  remoteIds?: string[];
8564
8759
  wanNames: string[];
@@ -8731,6 +8926,10 @@ export declare namespace org {
8731
8926
  * Optional, for ERB or CLOS, you can either use esilag to upstream routers or to also be the virtual-gateway. When `routedAt` != `core`, whether to do virtual-gateway at core as well
8732
8927
  */
8733
8928
  coreAsBorder: boolean;
8929
+ /**
8930
+ * Whether to route management traffic inband; routes will be propagated to downstream switches
8931
+ */
8932
+ enableInbandMgmt?: boolean;
8734
8933
  /**
8735
8934
  * if the mangement traffic goes inbnd, during installation, only the border/core switches are connected to the Internet to allow initial configuration to be pushed down and leave the downstream access switches stay in the Factory Default state enabling inband-ztp allows upstream switches to use LLDP to assign IP and gives Internet to downstream switches in that state
8736
8935
  */
@@ -8914,6 +9113,10 @@ export declare namespace org {
8914
9113
  * Neighbor AS. Value must be in range 1-4294967295 or a variable (e.g. `{{as_variable}}`)
8915
9114
  */
8916
9115
  neighborAs: string;
9116
+ /**
9117
+ * If `via`==`tunnel`, specifies which tunnel (primary/secondary) this neighbor is associated with. enum: `primary`, `secondary`
9118
+ */
9119
+ tunnelVia?: string;
8917
9120
  }
8918
9121
  interface GatewaytemplateDhcpdConfig {
8919
9122
  /**
@@ -9029,6 +9232,127 @@ export declare namespace org {
9029
9232
  interface GatewaytemplateExtraRoutes6 {
9030
9233
  via: string;
9031
9234
  }
9235
+ interface GatewaytemplateGatewayMgmt {
9236
+ /**
9237
+ * For SSR only, as direct root access is not allowed
9238
+ */
9239
+ adminSshkeys?: string[];
9240
+ appProbing?: outputs.org.GatewaytemplateGatewayMgmtAppProbing;
9241
+ /**
9242
+ * Consumes uplink bandwidth, requires WA license
9243
+ */
9244
+ appUsage?: boolean;
9245
+ autoSignatureUpdate?: outputs.org.GatewaytemplateGatewayMgmtAutoSignatureUpdate;
9246
+ /**
9247
+ * Rollback timer for commit confirmed
9248
+ */
9249
+ configRevertTimer: number;
9250
+ /**
9251
+ * For SSR and SRX, disable console port
9252
+ */
9253
+ disableConsole?: boolean;
9254
+ /**
9255
+ * For SSR and SRX, disable management interface
9256
+ */
9257
+ disableOob?: boolean;
9258
+ /**
9259
+ * For SSR and SRX, disable usb interface
9260
+ */
9261
+ disableUsb?: boolean;
9262
+ fipsEnabled?: boolean;
9263
+ probeHosts?: string[];
9264
+ probeHostsv6s?: string[];
9265
+ /**
9266
+ * Restrict inbound-traffic to host
9267
+ * when enabled, all traffic that is not essential to our operation will be dropped
9268
+ * e.g. ntp / dns / traffic to mist will be allowed by default, if dhcpd is enabled, we'll make sure it works
9269
+ */
9270
+ protectRe?: outputs.org.GatewaytemplateGatewayMgmtProtectRe;
9271
+ /**
9272
+ * SRX only
9273
+ */
9274
+ rootPassword?: string;
9275
+ securityLogSourceAddress?: string;
9276
+ securityLogSourceInterface?: string;
9277
+ }
9278
+ interface GatewaytemplateGatewayMgmtAppProbing {
9279
+ /**
9280
+ * APp-keys from List Applications
9281
+ */
9282
+ apps?: string[];
9283
+ customApps?: outputs.org.GatewaytemplateGatewayMgmtAppProbingCustomApp[];
9284
+ enabled?: boolean;
9285
+ }
9286
+ interface GatewaytemplateGatewayMgmtAppProbingCustomApp {
9287
+ /**
9288
+ * Required if `protocol`==`icmp`
9289
+ */
9290
+ address?: string;
9291
+ appType?: string;
9292
+ /**
9293
+ * If `protocol`==`http`
9294
+ */
9295
+ hostnames?: string[];
9296
+ key?: string;
9297
+ name?: string;
9298
+ network?: string;
9299
+ /**
9300
+ * If `protocol`==`icmp`
9301
+ */
9302
+ packetSize?: number;
9303
+ /**
9304
+ * enum: `http`, `icmp`
9305
+ */
9306
+ protocol?: string;
9307
+ /**
9308
+ * If `protocol`==`http`
9309
+ */
9310
+ url?: string;
9311
+ vrf?: string;
9312
+ }
9313
+ interface GatewaytemplateGatewayMgmtAutoSignatureUpdate {
9314
+ /**
9315
+ * enum: `any`, `fri`, `mon`, `sat`, `sun`, `thu`, `tue`, `wed`
9316
+ */
9317
+ dayOfWeek?: string;
9318
+ enable?: boolean;
9319
+ /**
9320
+ * Optional, Mist will decide the timing
9321
+ */
9322
+ timeOfDay?: string;
9323
+ }
9324
+ interface GatewaytemplateGatewayMgmtProtectRe {
9325
+ /**
9326
+ * Optionally, services we'll allow
9327
+ */
9328
+ allowedServices?: string[];
9329
+ customs?: outputs.org.GatewaytemplateGatewayMgmtProtectReCustom[];
9330
+ /**
9331
+ * When enabled, all traffic that is not essential to our operation will be dropped
9332
+ * e.g. ntp / dns / traffic to mist will be allowed by default
9333
+ * if dhcpd is enabled, we'll make sure it works
9334
+ */
9335
+ enabled?: boolean;
9336
+ /**
9337
+ * Whether to enable hit count for Protect_RE policy
9338
+ */
9339
+ hitCount?: boolean;
9340
+ /**
9341
+ * host/subnets we'll allow traffic to/from
9342
+ */
9343
+ trustedHosts?: string[];
9344
+ }
9345
+ interface GatewaytemplateGatewayMgmtProtectReCustom {
9346
+ /**
9347
+ * Matched dst port, "0" means any
9348
+ */
9349
+ portRange?: string;
9350
+ /**
9351
+ * enum: `any`, `icmp`, `tcp`, `udp`
9352
+ */
9353
+ protocol?: string;
9354
+ subnets?: string[];
9355
+ }
9032
9356
  interface GatewaytemplateIdpProfiles {
9033
9357
  /**
9034
9358
  * enum: `critical`, `standard`, `strict`
@@ -9284,7 +9608,7 @@ export declare namespace org {
9284
9608
  /**
9285
9609
  * enum: `dhcp`, `static`
9286
9610
  */
9287
- type: string;
9611
+ type?: string;
9288
9612
  /**
9289
9613
  * If supported on the platform. If enabled, DNS will be using this routing-instance, too
9290
9614
  */
@@ -9308,7 +9632,7 @@ export declare namespace org {
9308
9632
  /**
9309
9633
  * enum: `dhcp`, `static`
9310
9634
  */
9311
- type: string;
9635
+ type?: string;
9312
9636
  /**
9313
9637
  * If supported on the platform. If enabled, DNS will be using this routing-instance, too
9314
9638
  */
@@ -9441,6 +9765,10 @@ export declare namespace org {
9441
9765
  */
9442
9766
  outerVlanId?: number;
9443
9767
  poeDisabled?: boolean;
9768
+ /**
9769
+ * Whether Perpetual PoE capabilities are enabled for a port
9770
+ */
9771
+ poeKeepStateWhenReboot?: boolean;
9444
9772
  /**
9445
9773
  * Only for SRX and if `usage`==`lan`, the name of the Network to be used as the Untagged VLAN
9446
9774
  */
@@ -9895,7 +10223,7 @@ export declare namespace org {
9895
10223
  */
9896
10224
  ipsecLifetime?: number;
9897
10225
  /**
9898
- * Only if `provider`==`custom-ipsec`
10226
+ * Only if `provider`==`custom-ipsec`
9899
10227
  */
9900
10228
  ipsecProposals?: outputs.org.GatewaytemplateTunnelConfigsIpsecProposal[];
9901
10229
  /**
@@ -10045,7 +10373,7 @@ export declare namespace org {
10045
10373
  internalIps?: string[];
10046
10374
  probeIps?: string[];
10047
10375
  /**
10048
- * Only if `provider`==`jse-ipsec` or `provider`==`custom-ipsec`
10376
+ * Only if `provider`==`jse-ipsec` or `provider`==`custom-ipsec`
10049
10377
  */
10050
10378
  remoteIds?: string[];
10051
10379
  wanNames: string[];
@@ -10076,7 +10404,7 @@ export declare namespace org {
10076
10404
  internalIps?: string[];
10077
10405
  probeIps?: string[];
10078
10406
  /**
10079
- * Only if `provider`==`jse-ipsec` or `provider`==`custom-ipsec`
10407
+ * Only if `provider`==`jse-ipsec` or `provider`==`custom-ipsec`
10080
10408
  */
10081
10409
  remoteIds?: string[];
10082
10410
  wanNames: string[];
@@ -13483,7 +13811,7 @@ export declare namespace org {
13483
13811
  noResolve?: boolean;
13484
13812
  preference?: number;
13485
13813
  /**
13486
- * Next-hop IP Address
13814
+ * Next-hop IP Address. Can be a single IP address or an array of IP addresses for ECMP (Equal-Cost Multi-Path) load balancing across multiple next-hops.
13487
13815
  */
13488
13816
  via: string;
13489
13817
  }
@@ -13499,7 +13827,7 @@ export declare namespace org {
13499
13827
  noResolve?: boolean;
13500
13828
  preference?: number;
13501
13829
  /**
13502
- * Next-hop IP Address
13830
+ * Next-hop IP Address. Can be a single IP address or an array of IP addresses for ECMP (Equal-Cost Multi-Path) load balancing across multiple next-hops.
13503
13831
  */
13504
13832
  via: string;
13505
13833
  }
@@ -13714,6 +14042,10 @@ export declare namespace org {
13714
14042
  * Only if `mode`!=`dynamic`. Whether PoE capabilities are disabled for a port
13715
14043
  */
13716
14044
  poeDisabled?: boolean;
14045
+ /**
14046
+ * Only if `mode`!=`dynamic`. Whether Perpetual PoE is enabled; keeps PoE state across reboots
14047
+ */
14048
+ poeKeepStateWhenReboot?: boolean;
13717
14049
  /**
13718
14050
  * PoE priority. enum: `low`, `high`
13719
14051
  */
@@ -14362,7 +14694,11 @@ export declare namespace org {
14362
14694
  */
14363
14695
  aeIdx?: number;
14364
14696
  /**
14365
- * To use fast timeout
14697
+ * If `aggregated`==`true`, sets the state of the interface as UP when the peer has limited LACP capability. Use case: When a device connected to this AE port is ZTPing for the first time, it will not have LACP configured on the other end. **Note:** Turning this on will enable force-up on one of the interfaces in the bundle only
14698
+ */
14699
+ aeLacpForceUp?: boolean;
14700
+ /**
14701
+ * To use slow timeout
14366
14702
  */
14367
14703
  aeLacpSlow?: boolean;
14368
14704
  aggregated?: boolean;
@@ -15089,18 +15425,24 @@ export declare namespace org {
15089
15425
  write: string;
15090
15426
  }
15091
15427
  interface SettingMarvis {
15092
- autoOperations?: outputs.org.SettingMarvisAutoOperations;
15428
+ /**
15429
+ * Self-driving network automation settings per domain
15430
+ */
15431
+ selfDriving?: outputs.org.SettingMarvisSelfDriving;
15093
15432
  }
15094
- interface SettingMarvisAutoOperations {
15095
- apInsufficientCapacity: boolean;
15096
- apLoop: boolean;
15097
- apNonCompliant: boolean;
15098
- bouncePortForAbnormalPoeClient: boolean;
15099
- disablePortWhenDdosProtocolViolation: boolean;
15100
- disablePortWhenRogueDhcpServerDetected: boolean;
15101
- gatewayNonCompliant: boolean;
15102
- switchMisconfiguredPort: boolean;
15103
- switchPortStuck: boolean;
15433
+ interface SettingMarvisSelfDriving {
15434
+ wan?: outputs.org.SettingMarvisSelfDrivingWan;
15435
+ wired?: outputs.org.SettingMarvisSelfDrivingWired;
15436
+ wireless?: outputs.org.SettingMarvisSelfDrivingWireless;
15437
+ }
15438
+ interface SettingMarvisSelfDrivingWan {
15439
+ enabled?: boolean;
15440
+ }
15441
+ interface SettingMarvisSelfDrivingWired {
15442
+ enabled?: boolean;
15443
+ }
15444
+ interface SettingMarvisSelfDrivingWireless {
15445
+ enabled?: boolean;
15104
15446
  }
15105
15447
  interface SettingMgmt {
15106
15448
  /**
@@ -15110,13 +15452,17 @@ export declare namespace org {
15110
15452
  /**
15111
15453
  * Whether to use Mist Tunnel for mgmt connectivity, this takes precedence over use_wxtunnel
15112
15454
  */
15113
- useMxtunnel: boolean;
15455
+ useMxtunnel?: boolean;
15114
15456
  /**
15115
15457
  * Whether to use wxtunnel for mgmt connectivity
15116
15458
  */
15117
- useWxtunnel: boolean;
15459
+ useWxtunnel?: boolean;
15118
15460
  }
15119
15461
  interface SettingMistNac {
15462
+ /**
15463
+ * allow clients to connect even when the user cert failed. TEAP authenticates both Machine Cert and User Cert. When enabled, clients who only succeed Machine Cert authentication will be accepted.
15464
+ */
15465
+ allowTeapMachineAuthOnly?: boolean;
15120
15466
  /**
15121
15467
  * List of PEM-encoded ca certs
15122
15468
  */
@@ -15136,7 +15482,7 @@ export declare namespace org {
15136
15482
  /**
15137
15483
  * By default, NAC POD failover considers all NAC pods available around the globe, i.e. EU, US, or APAC based, failover happens based on geo IP of the originating site. For strict GDPR compliance NAC POD failover would only happen between the PODs located within the EU environment, and no authentication would take place outside of EU. This is an org setting that is applicable to WLANs, switch templates, mxedge clusters that have mistNac enabled
15138
15484
  */
15139
- euOnly: boolean;
15485
+ euOnly?: boolean;
15140
15486
  /**
15141
15487
  * Allows customer to enable client fingerprinting for policy enforcement
15142
15488
  */
@@ -15150,6 +15496,10 @@ export declare namespace org {
15150
15496
  */
15151
15497
  idpUserCertLookupField?: string;
15152
15498
  idps: outputs.org.SettingMistNacIdp[];
15499
+ /**
15500
+ * MDM (Mobile Device Management) CoA configuration
15501
+ */
15502
+ mdm?: outputs.org.SettingMistNacMdm;
15153
15503
  /**
15154
15504
  * radius server cert to be presented in EAP TLS
15155
15505
  */
@@ -15171,15 +15521,15 @@ export declare namespace org {
15171
15521
  /**
15172
15522
  * enable/disable writes to NAC DDB fingerprint table
15173
15523
  */
15174
- enabled: boolean;
15524
+ enabled?: boolean;
15175
15525
  /**
15176
15526
  * enable/disable CoA triggers on fingerprint change for wired clients, always port-bounce
15177
15527
  */
15178
- generateCoa: boolean;
15528
+ generateCoa?: boolean;
15179
15529
  /**
15180
15530
  * enable/disable CoA triggers on fingerprint change for wireless clients
15181
15531
  */
15182
- generateWirelessCoa: boolean;
15532
+ generateWirelessCoa?: boolean;
15183
15533
  /**
15184
15534
  * enum: `reauth`, `disconnect`
15185
15535
  */
@@ -15201,6 +15551,12 @@ export declare namespace org {
15201
15551
  */
15202
15552
  userRealms: string[];
15203
15553
  }
15554
+ interface SettingMistNacMdm {
15555
+ /**
15556
+ * CoA type to send. enum: `reauth`, `disconnect`
15557
+ */
15558
+ coaType?: string;
15559
+ }
15204
15560
  interface SettingMistNacServerCert {
15205
15561
  cert?: string;
15206
15562
  key?: string;
@@ -15227,7 +15583,7 @@ export declare namespace org {
15227
15583
  /**
15228
15584
  * Enable channelization
15229
15585
  */
15230
- channelized: boolean;
15586
+ channelized?: boolean;
15231
15587
  /**
15232
15588
  * Interface speed (e.g. `25g`, `50g`), use the chassis speed by default
15233
15589
  */
@@ -15597,6 +15953,14 @@ export declare namespace org {
15597
15953
  * Whether to trigger EAP reauth when the session ends
15598
15954
  */
15599
15955
  eapReauth: boolean;
15956
+ /**
15957
+ * Enable Beacon Protection; default is false for better compatibility
15958
+ */
15959
+ enableBeaconProtection?: boolean;
15960
+ /**
15961
+ * Enable GCMP-256 encryption suite; default is false for better compatibility
15962
+ */
15963
+ enableGcmp256?: boolean;
15600
15964
  /**
15601
15965
  * Whether to enable MAC Auth, uses the same auth_servers
15602
15966
  */
@@ -17025,6 +17389,10 @@ export declare namespace site {
17025
17389
  * Optional, for ERB or CLOS, you can either use esilag to upstream routers or to also be the virtual-gateway. When `routedAt` != `core`, whether to do virtual-gateway at core as well
17026
17390
  */
17027
17391
  coreAsBorder: boolean;
17392
+ /**
17393
+ * Whether to route management traffic inband; routes will be propagated to downstream switches
17394
+ */
17395
+ enableInbandMgmt?: boolean;
17028
17396
  /**
17029
17397
  * if the mangement traffic goes inbnd, during installation, only the border/core switches are connected to the Internet to allow initial configuration to be pushed down and leave the downstream access switches stay in the Factory Default state enabling inband-ztp allows upstream switches to use LLDP to assign IP and gives Internet to downstream switches in that state
17030
17398
  */
@@ -18597,7 +18965,7 @@ export declare namespace site {
18597
18965
  noResolve?: boolean;
18598
18966
  preference?: number;
18599
18967
  /**
18600
- * Next-hop IP Address
18968
+ * Next-hop IP Address. Can be a single IP address or an array of IP addresses for ECMP (Equal-Cost Multi-Path) load balancing across multiple next-hops.
18601
18969
  */
18602
18970
  via: string;
18603
18971
  }
@@ -18613,7 +18981,7 @@ export declare namespace site {
18613
18981
  noResolve?: boolean;
18614
18982
  preference?: number;
18615
18983
  /**
18616
- * Next-hop IP Address
18984
+ * Next-hop IP Address. Can be a single IP address or an array of IP addresses for ECMP (Equal-Cost Multi-Path) load balancing across multiple next-hops.
18617
18985
  */
18618
18986
  via: string;
18619
18987
  }
@@ -18828,6 +19196,10 @@ export declare namespace site {
18828
19196
  * Only if `mode`!=`dynamic`. Whether PoE capabilities are disabled for a port
18829
19197
  */
18830
19198
  poeDisabled?: boolean;
19199
+ /**
19200
+ * Only if `mode`!=`dynamic`. Whether Perpetual PoE is enabled; keeps PoE state across reboots
19201
+ */
19202
+ poeKeepStateWhenReboot?: boolean;
18831
19203
  /**
18832
19204
  * PoE priority. enum: `low`, `high`
18833
19205
  */
@@ -19476,7 +19848,11 @@ export declare namespace site {
19476
19848
  */
19477
19849
  aeIdx?: number;
19478
19850
  /**
19479
- * To use fast timeout
19851
+ * If `aggregated`==`true`, sets the state of the interface as UP when the peer has limited LACP capability. Use case: When a device connected to this AE port is ZTPing for the first time, it will not have LACP configured on the other end. **Note:** Turning this on will enable force-up on one of the interfaces in the bundle only
19852
+ */
19853
+ aeLacpForceUp?: boolean;
19854
+ /**
19855
+ * To use slow timeout
19480
19856
  */
19481
19857
  aeLacpSlow?: boolean;
19482
19858
  aggregated?: boolean;
@@ -19715,6 +20091,12 @@ export declare namespace site {
19715
20091
  */
19716
20092
  enabled: boolean;
19717
20093
  }
20094
+ interface SettingApSyntheticTest {
20095
+ /**
20096
+ * List or Comma separated list of additional VLAN IDs (on the LAN side or from other WLANs) should we be forwarding bonjour queries/responses
20097
+ */
20098
+ additionalVlanIds?: string[];
20099
+ }
19718
20100
  interface SettingAutoUpgrade {
19719
20101
  /**
19720
20102
  * Custom versions for different models. Property key is the model name (e.g. "AP41")
@@ -20125,6 +20507,36 @@ export declare namespace site {
20125
20507
  protocol: string;
20126
20508
  subnets: string[];
20127
20509
  }
20510
+ interface SettingIotproxy {
20511
+ enabled: boolean;
20512
+ /**
20513
+ * Visionline integration settings for IoT proxy
20514
+ */
20515
+ visionline?: outputs.site.SettingIotproxyVisionline;
20516
+ }
20517
+ interface SettingIotproxyVisionline {
20518
+ /**
20519
+ * Access ID for the Visionline service
20520
+ */
20521
+ accessId?: string;
20522
+ enabled: boolean;
20523
+ /**
20524
+ * Hostname or IP of the Visionline collector
20525
+ */
20526
+ host?: string;
20527
+ /**
20528
+ * Password for the Visionline service
20529
+ */
20530
+ password?: string;
20531
+ /**
20532
+ * TCP port of the Visionline collector
20533
+ */
20534
+ port: number;
20535
+ /**
20536
+ * Username for the Visionline service
20537
+ */
20538
+ username?: string;
20539
+ }
20128
20540
  interface SettingJuniperSrx {
20129
20541
  /**
20130
20542
  * auto_upgrade device first time it is onboarded
@@ -20426,6 +20838,18 @@ export declare namespace site {
20426
20838
  */
20427
20839
  keepWlansUpIfDown: boolean;
20428
20840
  }
20841
+ interface SettingVarsAnnotations {
20842
+ /**
20843
+ * User-provided note to describe what this var was created for
20844
+ */
20845
+ note?: string;
20846
+ /**
20847
+ * Used to identify where to enumerate / auto-complete the field from. Default is `generic` (plain string, no special handling).
20848
+ *
20849
+ * enum: `generic`, `mxtunnelId`
20850
+ */
20851
+ type: string;
20852
+ }
20429
20853
  interface SettingVna {
20430
20854
  /**
20431
20855
  * Enable Virtual Network Assistant (using SUB-VNA license). This applied to AP / Switch / Gateway
@@ -20607,6 +21031,14 @@ export declare namespace site {
20607
21031
  * Whether to trigger EAP reauth when the session ends
20608
21032
  */
20609
21033
  eapReauth: boolean;
21034
+ /**
21035
+ * Enable Beacon Protection; default is false for better compatibility
21036
+ */
21037
+ enableBeaconProtection?: boolean;
21038
+ /**
21039
+ * Enable GCMP-256 encryption suite; default is false for better compatibility
21040
+ */
21041
+ enableGcmp256?: boolean;
20610
21042
  /**
20611
21043
  * Whether to enable MAC Auth, uses the same auth_servers
20612
21044
  */