@pulumi/juniper-mist 0.7.0 → 0.7.1

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.
package/types/input.d.ts CHANGED
@@ -501,14 +501,14 @@ export declare namespace device {
501
501
  * Antenna gain for 6G - for models with external antenna only
502
502
  */
503
503
  antGain6?: pulumi.Input<number>;
504
- /**
505
- * Antenna Mode for AP which supports selectable antennas. enum: `external`, `internal`
506
- */
507
- antMode?: pulumi.Input<string>;
508
504
  /**
509
505
  * enum: `1x1`, `2x2`, `3x3`, `4x4`, `default`
510
506
  */
511
507
  antennaMode?: pulumi.Input<string>;
508
+ /**
509
+ * Antenna Mode for AP which supports selectable antennas. enum: `external`, `internal`
510
+ */
511
+ antennaSelect?: pulumi.Input<string>;
512
512
  /**
513
513
  * Radio Band AP settings
514
514
  */
@@ -537,6 +537,10 @@ export declare namespace device {
537
537
  * To make an outdoor operate indoor. For an outdoor-ap, some channels are disallowed by default, this allows the user to use it as an indoor-ap
538
538
  */
539
539
  indoorUse?: pulumi.Input<boolean>;
540
+ /**
541
+ * Enable RRM to manage all radio settings (ignores all bandXxx configs)
542
+ */
543
+ rrmManaged?: pulumi.Input<boolean>;
540
544
  /**
541
545
  * Whether scanning radio is enabled
542
546
  */
@@ -585,6 +589,10 @@ export declare namespace device {
585
589
  interface ApRadioConfigBand5 {
586
590
  allowRrmDisable?: pulumi.Input<boolean>;
587
591
  antGain?: pulumi.Input<number>;
592
+ /**
593
+ * enum: `narrow`, `medium`, `wide`
594
+ */
595
+ antennaBeamPattern?: pulumi.Input<string>;
588
596
  /**
589
597
  * enum: `1x1`, `2x2`, `3x3`, `4x4`, `default`
590
598
  */
@@ -625,6 +633,10 @@ export declare namespace device {
625
633
  interface ApRadioConfigBand5On24Radio {
626
634
  allowRrmDisable?: pulumi.Input<boolean>;
627
635
  antGain?: pulumi.Input<number>;
636
+ /**
637
+ * enum: `narrow`, `medium`, `wide`
638
+ */
639
+ antennaBeamPattern?: pulumi.Input<string>;
628
640
  /**
629
641
  * enum: `1x1`, `2x2`, `3x3`, `4x4`, `default`
630
642
  */
@@ -665,6 +677,10 @@ export declare namespace device {
665
677
  interface ApRadioConfigBand6 {
666
678
  allowRrmDisable?: pulumi.Input<boolean>;
667
679
  antGain?: pulumi.Input<number>;
680
+ /**
681
+ * enum: `narrow`, `medium`, `wide`
682
+ */
683
+ antennaBeamPattern?: pulumi.Input<string>;
668
684
  /**
669
685
  * enum: `1x1`, `2x2`, `3x3`, `4x4`, `default`
670
686
  */
@@ -1333,7 +1349,7 @@ export declare namespace device {
1333
1349
  */
1334
1350
  aeIdx?: pulumi.Input<string>;
1335
1351
  /**
1336
- * For SRX Only, 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
1352
+ * For SRX only, 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
1337
1353
  */
1338
1354
  aeLacpForceUp?: pulumi.Input<boolean>;
1339
1355
  aggregated?: pulumi.Input<boolean>;
@@ -1725,7 +1741,7 @@ export declare namespace device {
1725
1741
  */
1726
1742
  antivirus?: pulumi.Input<inputs.device.GatewayServicePolicyAntivirus>;
1727
1743
  /**
1728
- * For SRX Only
1744
+ * SRX only
1729
1745
  */
1730
1746
  appqoe?: pulumi.Input<inputs.device.GatewayServicePolicyAppqoe>;
1731
1747
  ewfs?: pulumi.Input<pulumi.Input<inputs.device.GatewayServicePolicyEwf>[]>;
@@ -1750,10 +1766,18 @@ export declare namespace device {
1750
1766
  * Required when `servicepolicyId` is not defined. List of Applications / Destinations
1751
1767
  */
1752
1768
  services?: pulumi.Input<pulumi.Input<string>[]>;
1769
+ /**
1770
+ * SRX only
1771
+ */
1772
+ skyatp?: pulumi.Input<inputs.device.GatewayServicePolicySkyatp>;
1753
1773
  /**
1754
1774
  * For SRX-only
1755
1775
  */
1756
1776
  sslProxy?: pulumi.Input<inputs.device.GatewayServicePolicySslProxy>;
1777
+ /**
1778
+ * Required for syslog logging
1779
+ */
1780
+ syslog?: pulumi.Input<inputs.device.GatewayServicePolicySyslog>;
1757
1781
  /**
1758
1782
  * Required when `servicepolicyId` is not defined. List of Networks / Users
1759
1783
  */
@@ -1794,6 +1818,24 @@ export declare namespace device {
1794
1818
  */
1795
1819
  profile?: pulumi.Input<string>;
1796
1820
  }
1821
+ interface GatewayServicePolicySkyatp {
1822
+ /**
1823
+ * enum: `disabled`, `default`, `standard`, `strict`
1824
+ */
1825
+ dnsDgaDetection?: pulumi.Input<string>;
1826
+ /**
1827
+ * enum: `disabled`, `default`, `standard`, `strict`
1828
+ */
1829
+ dnsTunnelDetection?: pulumi.Input<string>;
1830
+ /**
1831
+ * enum: `disabled`, `standard`
1832
+ */
1833
+ httpInspection?: pulumi.Input<string>;
1834
+ /**
1835
+ * enum: `disabled`, `enabled`
1836
+ */
1837
+ iotDevicePolicy?: pulumi.Input<string>;
1838
+ }
1797
1839
  interface GatewayServicePolicySslProxy {
1798
1840
  /**
1799
1841
  * enum: `medium`, `strong`, `weak`
@@ -1801,6 +1843,10 @@ export declare namespace device {
1801
1843
  ciphersCategory?: pulumi.Input<string>;
1802
1844
  enabled?: pulumi.Input<boolean>;
1803
1845
  }
1846
+ interface GatewayServicePolicySyslog {
1847
+ enabled?: pulumi.Input<boolean>;
1848
+ serverNames?: pulumi.Input<pulumi.Input<string>[]>;
1849
+ }
1804
1850
  interface GatewayTunnelConfigs {
1805
1851
  /**
1806
1852
  * Auto Provisioning configuration for the tunne. This takes precedence over the `primary` and `secondary` nodes.
@@ -2180,7 +2226,7 @@ export declare namespace device {
2180
2226
  }
2181
2227
  interface SwitchAclTags {
2182
2228
  /**
2183
- * Can only be used under dst tags.
2229
+ * ARP / IPv6. Default is `any`
2184
2230
  */
2185
2231
  etherTypes?: pulumi.Input<pulumi.Input<string>[]>;
2186
2232
  /**
@@ -2441,7 +2487,7 @@ export declare namespace device {
2441
2487
  */
2442
2488
  allNetworks?: pulumi.Input<boolean>;
2443
2489
  /**
2444
- * If DHCP snooping is enabled, whether DHCP server is allowed on the interfaces with. All the interfaces from port configs using this port usage are effected. Please notice that allowDhcpd is a tri_state. When it is not defined, it means using the system's default setting which depends on whether the port is an access or trunk port.
2490
+ * Controls whether DHCP server traffic is allowed on ports using this configuration if DHCP snooping is enabled. This is a tri-state setting; true: ports become trusted ports allowing DHCP server traffic, false: ports become untrusted blocking DHCP server traffic, undefined: use system defaults (access ports default to untrusted, trunk ports default to trusted).
2445
2491
  */
2446
2492
  allowDhcpd?: pulumi.Input<boolean>;
2447
2493
  allowMultipleSupplicants?: pulumi.Input<boolean>;
@@ -2859,7 +2905,7 @@ export declare namespace device {
2859
2905
  */
2860
2906
  allNetworks?: pulumi.Input<boolean>;
2861
2907
  /**
2862
- * Only if `mode`!=`dynamic`. If DHCP snooping is enabled, whether DHCP server is allowed on the interfaces with. All the interfaces from port configs using this port usage are effected. Please notice that allowDhcpd is a tri_state. When it is not defined, it means using the system's default setting which depends on whether the port is an access or trunk port.
2908
+ * Only applies when `mode`!=`dynamic`. Controls whether DHCP server traffic is allowed on ports using this configuration if DHCP snooping is enabled. This is a tri-state setting; true: ports become trusted ports allowing DHCP server traffic, false: ports become untrusted blocking DHCP server traffic, undefined: use system defaults (access ports default to untrusted, trunk ports default to trusted).
2863
2909
  */
2864
2910
  allowDhcpd?: pulumi.Input<boolean>;
2865
2911
  /**
@@ -2874,6 +2920,10 @@ export declare namespace device {
2874
2920
  * Only if `mode`!=`dynamic` and `portAuth`=`dot1x`. Bypass auth for all (including unknown clients) if set to true when RADIUS server is down
2875
2921
  */
2876
2922
  bypassAuthWhenServerDownForUnknownClient?: pulumi.Input<boolean>;
2923
+ /**
2924
+ * Only if `mode`!=`dynamic` and `portAuth`==`dot1x`. Bypass auth for VOIP if set to true when RADIUS server is down
2925
+ */
2926
+ bypassAuthWhenServerDownForVoip?: pulumi.Input<boolean>;
2877
2927
  /**
2878
2928
  * Only if `mode`!=`dynamic`. To be used together with `isolation` under networks. Signaling that this port connects to the networks isolated but wired clients belong to the same community can talk to each other
2879
2929
  */
@@ -2954,6 +3004,10 @@ export declare namespace device {
2954
3004
  * Only if `mode`!=`dynamic`. Whether PoE capabilities are disabled for a port
2955
3005
  */
2956
3006
  poeDisabled?: pulumi.Input<boolean>;
3007
+ /**
3008
+ * PoE priority. enum: `low`, `high`
3009
+ */
3010
+ poePriority?: pulumi.Input<string>;
2957
3011
  /**
2958
3012
  * Only if `mode`!=`dynamic`. If dot1x is desired, set to dot1x. enum: `dot1x`
2959
3013
  */
@@ -3032,7 +3086,7 @@ export declare namespace device {
3032
3086
  */
3033
3087
  expression?: pulumi.Input<string>;
3034
3088
  /**
3035
- * enum: `linkPeermac`, `lldpChassisId`, `lldpHardwareRevision`, `lldpManufacturerName`, `lldpOui`, `lldpSerialNumber`, `lldpSystemName`, `radiusDynamicfilter`, `radiusUsermac`, `radiusUsername`
3089
+ * enum: `linkPeermac`, `lldpChassisId`, `lldpHardwareRevision`, `lldpManufacturerName`, `lldpOui`, `lldpSerialNumber`, `lldpSystemDescription`, `lldpSystemName`, `radiusDynamicfilter`, `radiusUsermac`, `radiusUsername`
3036
3090
  */
3037
3091
  src: pulumi.Input<string>;
3038
3092
  /**
@@ -3698,7 +3752,7 @@ export declare namespace org {
3698
3752
  */
3699
3753
  role: pulumi.Input<string>;
3700
3754
  /**
3701
- * enum: `org`, `site`, `sitegroup`
3755
+ * enum: `org`, `site`, `sitegroup`, `orgsites`
3702
3756
  */
3703
3757
  scope: pulumi.Input<string>;
3704
3758
  /**
@@ -4177,14 +4231,14 @@ export declare namespace org {
4177
4231
  * Antenna gain for 6G - for models with external antenna only
4178
4232
  */
4179
4233
  antGain6?: pulumi.Input<number>;
4180
- /**
4181
- * Antenna Mode for AP which supports selectable antennas. enum: `external`, `internal`
4182
- */
4183
- antMode?: pulumi.Input<string>;
4184
4234
  /**
4185
4235
  * enum: `1x1`, `2x2`, `3x3`, `4x4`, `default`
4186
4236
  */
4187
4237
  antennaMode?: pulumi.Input<string>;
4238
+ /**
4239
+ * Antenna Mode for AP which supports selectable antennas. enum: `external`, `internal`
4240
+ */
4241
+ antennaSelect?: pulumi.Input<string>;
4188
4242
  /**
4189
4243
  * Radio Band AP settings
4190
4244
  */
@@ -4213,6 +4267,10 @@ export declare namespace org {
4213
4267
  * To make an outdoor operate indoor. For an outdoor-ap, some channels are disallowed by default, this allows the user to use it as an indoor-ap
4214
4268
  */
4215
4269
  indoorUse?: pulumi.Input<boolean>;
4270
+ /**
4271
+ * Enable RRM to manage all radio settings (ignores all bandXxx configs)
4272
+ */
4273
+ rrmManaged?: pulumi.Input<boolean>;
4216
4274
  /**
4217
4275
  * Whether scanning radio is enabled
4218
4276
  */
@@ -4261,6 +4319,10 @@ export declare namespace org {
4261
4319
  interface DeviceprofileApRadioConfigBand5 {
4262
4320
  allowRrmDisable?: pulumi.Input<boolean>;
4263
4321
  antGain?: pulumi.Input<number>;
4322
+ /**
4323
+ * enum: `narrow`, `medium`, `wide`
4324
+ */
4325
+ antennaBeamPattern?: pulumi.Input<string>;
4264
4326
  /**
4265
4327
  * enum: `1x1`, `2x2`, `3x3`, `4x4`, `default`
4266
4328
  */
@@ -4301,6 +4363,10 @@ export declare namespace org {
4301
4363
  interface DeviceprofileApRadioConfigBand5On24Radio {
4302
4364
  allowRrmDisable?: pulumi.Input<boolean>;
4303
4365
  antGain?: pulumi.Input<number>;
4366
+ /**
4367
+ * enum: `narrow`, `medium`, `wide`
4368
+ */
4369
+ antennaBeamPattern?: pulumi.Input<string>;
4304
4370
  /**
4305
4371
  * enum: `1x1`, `2x2`, `3x3`, `4x4`, `default`
4306
4372
  */
@@ -4341,6 +4407,10 @@ export declare namespace org {
4341
4407
  interface DeviceprofileApRadioConfigBand6 {
4342
4408
  allowRrmDisable?: pulumi.Input<boolean>;
4343
4409
  antGain?: pulumi.Input<number>;
4410
+ /**
4411
+ * enum: `narrow`, `medium`, `wide`
4412
+ */
4413
+ antennaBeamPattern?: pulumi.Input<string>;
4344
4414
  /**
4345
4415
  * enum: `1x1`, `2x2`, `3x3`, `4x4`, `default`
4346
4416
  */
@@ -4989,7 +5059,7 @@ export declare namespace org {
4989
5059
  */
4990
5060
  aeIdx?: pulumi.Input<string>;
4991
5061
  /**
4992
- * For SRX Only, 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
5062
+ * For SRX only, 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
4993
5063
  */
4994
5064
  aeLacpForceUp?: pulumi.Input<boolean>;
4995
5065
  aggregated?: pulumi.Input<boolean>;
@@ -5371,7 +5441,7 @@ export declare namespace org {
5371
5441
  */
5372
5442
  antivirus?: pulumi.Input<inputs.org.DeviceprofileGatewayServicePolicyAntivirus>;
5373
5443
  /**
5374
- * For SRX Only
5444
+ * SRX only
5375
5445
  */
5376
5446
  appqoe?: pulumi.Input<inputs.org.DeviceprofileGatewayServicePolicyAppqoe>;
5377
5447
  ewfs?: pulumi.Input<pulumi.Input<inputs.org.DeviceprofileGatewayServicePolicyEwf>[]>;
@@ -5396,10 +5466,18 @@ export declare namespace org {
5396
5466
  * Required when `servicepolicyId` is not defined. List of Applications / Destinations
5397
5467
  */
5398
5468
  services?: pulumi.Input<pulumi.Input<string>[]>;
5469
+ /**
5470
+ * SRX only
5471
+ */
5472
+ skyatp?: pulumi.Input<inputs.org.DeviceprofileGatewayServicePolicySkyatp>;
5399
5473
  /**
5400
5474
  * For SRX-only
5401
5475
  */
5402
5476
  sslProxy?: pulumi.Input<inputs.org.DeviceprofileGatewayServicePolicySslProxy>;
5477
+ /**
5478
+ * Required for syslog logging
5479
+ */
5480
+ syslog?: pulumi.Input<inputs.org.DeviceprofileGatewayServicePolicySyslog>;
5403
5481
  /**
5404
5482
  * Required when `servicepolicyId` is not defined. List of Networks / Users
5405
5483
  */
@@ -5440,6 +5518,24 @@ export declare namespace org {
5440
5518
  */
5441
5519
  profile?: pulumi.Input<string>;
5442
5520
  }
5521
+ interface DeviceprofileGatewayServicePolicySkyatp {
5522
+ /**
5523
+ * enum: `disabled`, `default`, `standard`, `strict`
5524
+ */
5525
+ dnsDgaDetection?: pulumi.Input<string>;
5526
+ /**
5527
+ * enum: `disabled`, `default`, `standard`, `strict`
5528
+ */
5529
+ dnsTunnelDetection?: pulumi.Input<string>;
5530
+ /**
5531
+ * enum: `disabled`, `standard`
5532
+ */
5533
+ httpInspection?: pulumi.Input<string>;
5534
+ /**
5535
+ * enum: `disabled`, `enabled`
5536
+ */
5537
+ iotDevicePolicy?: pulumi.Input<string>;
5538
+ }
5443
5539
  interface DeviceprofileGatewayServicePolicySslProxy {
5444
5540
  /**
5445
5541
  * enum: `medium`, `strong`, `weak`
@@ -5447,6 +5543,10 @@ export declare namespace org {
5447
5543
  ciphersCategory?: pulumi.Input<string>;
5448
5544
  enabled?: pulumi.Input<boolean>;
5449
5545
  }
5546
+ interface DeviceprofileGatewayServicePolicySyslog {
5547
+ enabled?: pulumi.Input<boolean>;
5548
+ serverNames?: pulumi.Input<pulumi.Input<string>[]>;
5549
+ }
5450
5550
  interface DeviceprofileGatewayTunnelConfigs {
5451
5551
  /**
5452
5552
  * Auto Provisioning configuration for the tunne. This takes precedence over the `primary` and `secondary` nodes.
@@ -6458,7 +6558,7 @@ export declare namespace org {
6458
6558
  */
6459
6559
  aeIdx?: pulumi.Input<string>;
6460
6560
  /**
6461
- * For SRX Only, 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
6561
+ * For SRX only, 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
6462
6562
  */
6463
6563
  aeLacpForceUp?: pulumi.Input<boolean>;
6464
6564
  aggregated?: pulumi.Input<boolean>;
@@ -6840,7 +6940,7 @@ export declare namespace org {
6840
6940
  */
6841
6941
  antivirus?: pulumi.Input<inputs.org.GatewaytemplateServicePolicyAntivirus>;
6842
6942
  /**
6843
- * For SRX Only
6943
+ * SRX only
6844
6944
  */
6845
6945
  appqoe?: pulumi.Input<inputs.org.GatewaytemplateServicePolicyAppqoe>;
6846
6946
  ewfs?: pulumi.Input<pulumi.Input<inputs.org.GatewaytemplateServicePolicyEwf>[]>;
@@ -6865,10 +6965,18 @@ export declare namespace org {
6865
6965
  * Required when `servicepolicyId` is not defined. List of Applications / Destinations
6866
6966
  */
6867
6967
  services?: pulumi.Input<pulumi.Input<string>[]>;
6968
+ /**
6969
+ * SRX only
6970
+ */
6971
+ skyatp?: pulumi.Input<inputs.org.GatewaytemplateServicePolicySkyatp>;
6868
6972
  /**
6869
6973
  * For SRX-only
6870
6974
  */
6871
6975
  sslProxy?: pulumi.Input<inputs.org.GatewaytemplateServicePolicySslProxy>;
6976
+ /**
6977
+ * Required for syslog logging
6978
+ */
6979
+ syslog?: pulumi.Input<inputs.org.GatewaytemplateServicePolicySyslog>;
6872
6980
  /**
6873
6981
  * Required when `servicepolicyId` is not defined. List of Networks / Users
6874
6982
  */
@@ -6909,6 +7017,24 @@ export declare namespace org {
6909
7017
  */
6910
7018
  profile?: pulumi.Input<string>;
6911
7019
  }
7020
+ interface GatewaytemplateServicePolicySkyatp {
7021
+ /**
7022
+ * enum: `disabled`, `default`, `standard`, `strict`
7023
+ */
7024
+ dnsDgaDetection?: pulumi.Input<string>;
7025
+ /**
7026
+ * enum: `disabled`, `default`, `standard`, `strict`
7027
+ */
7028
+ dnsTunnelDetection?: pulumi.Input<string>;
7029
+ /**
7030
+ * enum: `disabled`, `standard`
7031
+ */
7032
+ httpInspection?: pulumi.Input<string>;
7033
+ /**
7034
+ * enum: `disabled`, `enabled`
7035
+ */
7036
+ iotDevicePolicy?: pulumi.Input<string>;
7037
+ }
6912
7038
  interface GatewaytemplateServicePolicySslProxy {
6913
7039
  /**
6914
7040
  * enum: `medium`, `strong`, `weak`
@@ -6916,6 +7042,10 @@ export declare namespace org {
6916
7042
  ciphersCategory?: pulumi.Input<string>;
6917
7043
  enabled?: pulumi.Input<boolean>;
6918
7044
  }
7045
+ interface GatewaytemplateServicePolicySyslog {
7046
+ enabled?: pulumi.Input<boolean>;
7047
+ serverNames?: pulumi.Input<pulumi.Input<string>[]>;
7048
+ }
6919
7049
  interface GatewaytemplateTunnelConfigs {
6920
7050
  /**
6921
7051
  * Auto Provisioning configuration for the tunne. This takes precedence over the `primary` and `secondary` nodes.
@@ -7581,7 +7711,7 @@ export declare namespace org {
7581
7711
  }
7582
7712
  interface NetworktemplateAclTags {
7583
7713
  /**
7584
- * Can only be used under dst tags.
7714
+ * ARP / IPv6. Default is `any`
7585
7715
  */
7586
7716
  etherTypes?: pulumi.Input<pulumi.Input<string>[]>;
7587
7717
  /**
@@ -7813,7 +7943,7 @@ export declare namespace org {
7813
7943
  */
7814
7944
  allNetworks?: pulumi.Input<boolean>;
7815
7945
  /**
7816
- * Only if `mode`!=`dynamic`. If DHCP snooping is enabled, whether DHCP server is allowed on the interfaces with. All the interfaces from port configs using this port usage are effected. Please notice that allowDhcpd is a tri_state. When it is not defined, it means using the system's default setting which depends on whether the port is an access or trunk port.
7946
+ * Only applies when `mode`!=`dynamic`. Controls whether DHCP server traffic is allowed on ports using this configuration if DHCP snooping is enabled. This is a tri-state setting; true: ports become trusted ports allowing DHCP server traffic, false: ports become untrusted blocking DHCP server traffic, undefined: use system defaults (access ports default to untrusted, trunk ports default to trusted).
7817
7947
  */
7818
7948
  allowDhcpd?: pulumi.Input<boolean>;
7819
7949
  /**
@@ -7828,6 +7958,10 @@ export declare namespace org {
7828
7958
  * Only if `mode`!=`dynamic` and `portAuth`=`dot1x`. Bypass auth for all (including unknown clients) if set to true when RADIUS server is down
7829
7959
  */
7830
7960
  bypassAuthWhenServerDownForUnknownClient?: pulumi.Input<boolean>;
7961
+ /**
7962
+ * Only if `mode`!=`dynamic` and `portAuth`==`dot1x`. Bypass auth for VOIP if set to true when RADIUS server is down
7963
+ */
7964
+ bypassAuthWhenServerDownForVoip?: pulumi.Input<boolean>;
7831
7965
  /**
7832
7966
  * Only if `mode`!=`dynamic`. To be used together with `isolation` under networks. Signaling that this port connects to the networks isolated but wired clients belong to the same community can talk to each other
7833
7967
  */
@@ -7865,11 +7999,11 @@ export declare namespace org {
7865
7999
  */
7866
8000
  guestNetwork?: pulumi.Input<string>;
7867
8001
  /**
7868
- * Only if `mode`!=`dynamic`. `interSwitchLink` is used together with `isolation` under networks. NOTE: `interSwitchLink` works only between Juniper device. This has to be applied to both ports connected together
8002
+ * Only if `mode`!=`dynamic`. `interIsolationNetworkLink` is used together with `isolation` under networks, signaling that this port connects to isolated networks
7869
8003
  */
7870
8004
  interIsolationNetworkLink?: pulumi.Input<boolean>;
7871
8005
  /**
7872
- * Only if `mode`!=`dynamic`. `interSwitchLink` is used together with `isolation` under networks. NOTE: interSwitchLink works only between Juniper device. This has to be applied to both ports connected together
8006
+ * Only if `mode`!=`dynamic`. `interSwitchLink` is used together with `isolation` under networks. NOTE: `interSwitchLink` works only between Juniper devices. This has to be applied to both ports connected together
7873
8007
  */
7874
8008
  interSwitchLink?: pulumi.Input<boolean>;
7875
8009
  /**
@@ -7908,6 +8042,10 @@ export declare namespace org {
7908
8042
  * Only if `mode`!=`dynamic`. Whether PoE capabilities are disabled for a port
7909
8043
  */
7910
8044
  poeDisabled?: pulumi.Input<boolean>;
8045
+ /**
8046
+ * PoE priority. enum: `low`, `high`
8047
+ */
8048
+ poePriority?: pulumi.Input<string>;
7911
8049
  /**
7912
8050
  * Only if `mode`!=`dynamic`. If dot1x is desired, set to dot1x. enum: `dot1x`
7913
8051
  */
@@ -7990,7 +8128,7 @@ export declare namespace org {
7990
8128
  */
7991
8129
  expression?: pulumi.Input<string>;
7992
8130
  /**
7993
- * enum: `linkPeermac`, `lldpChassisId`, `lldpHardwareRevision`, `lldpManufacturerName`, `lldpOui`, `lldpSerialNumber`, `lldpSystemName`, `radiusDynamicfilter`, `radiusUsermac`, `radiusUsername`
8131
+ * enum: `linkPeermac`, `lldpChassisId`, `lldpHardwareRevision`, `lldpManufacturerName`, `lldpOui`, `lldpSerialNumber`, `lldpSystemDescription`, `lldpSystemName`, `radiusDynamicfilter`, `radiusUsermac`, `radiusUsername`
7994
8132
  */
7995
8133
  src: pulumi.Input<string>;
7996
8134
  /**
@@ -9219,9 +9357,15 @@ export declare namespace org {
9219
9357
  autoOperations?: pulumi.Input<inputs.org.SettingMarvisAutoOperations>;
9220
9358
  }
9221
9359
  interface SettingMarvisAutoOperations {
9360
+ apInsufficientCapacity?: pulumi.Input<boolean>;
9361
+ apLoop?: pulumi.Input<boolean>;
9362
+ apNonCompliant?: pulumi.Input<boolean>;
9222
9363
  bouncePortForAbnormalPoeClient?: pulumi.Input<boolean>;
9223
9364
  disablePortWhenDdosProtocolViolation?: pulumi.Input<boolean>;
9224
9365
  disablePortWhenRogueDhcpServerDetected?: pulumi.Input<boolean>;
9366
+ gatewayNonCompliant?: pulumi.Input<boolean>;
9367
+ switchMisconfiguredPort?: pulumi.Input<boolean>;
9368
+ switchPortStuck?: pulumi.Input<boolean>;
9225
9369
  }
9226
9370
  interface SettingMgmt {
9227
9371
  /**
@@ -9389,7 +9533,7 @@ export declare namespace org {
9389
9533
  */
9390
9534
  disableStats?: pulumi.Input<boolean>;
9391
9535
  /**
9392
- * Proxy Configuration to talk to Mist
9536
+ * SSR proxy configuration to talk to Mist
9393
9537
  */
9394
9538
  proxy?: pulumi.Input<inputs.org.SettingSsrProxy>;
9395
9539
  }
@@ -9407,6 +9551,7 @@ export declare namespace org {
9407
9551
  enabled?: pulumi.Input<boolean>;
9408
9552
  }
9409
9553
  interface SettingSsrProxy {
9554
+ disabled?: pulumi.Input<boolean>;
9410
9555
  url?: pulumi.Input<string>;
9411
9556
  }
9412
9557
  interface SettingSwitch {
@@ -9537,7 +9682,7 @@ export declare namespace org {
9537
9682
  */
9538
9683
  role: pulumi.Input<string>;
9539
9684
  /**
9540
- * enum: `org`, `site`, `sitegroup`
9685
+ * enum: `org`, `site`, `sitegroup`, `orgsites`
9541
9686
  */
9542
9687
  scope: pulumi.Input<string>;
9543
9688
  /**
@@ -11219,7 +11364,7 @@ export declare namespace site {
11219
11364
  }
11220
11365
  interface NetworktemplateAclTags {
11221
11366
  /**
11222
- * Can only be used under dst tags.
11367
+ * ARP / IPv6. Default is `any`
11223
11368
  */
11224
11369
  etherTypes?: pulumi.Input<pulumi.Input<string>[]>;
11225
11370
  /**
@@ -11451,7 +11596,7 @@ export declare namespace site {
11451
11596
  */
11452
11597
  allNetworks?: pulumi.Input<boolean>;
11453
11598
  /**
11454
- * Only if `mode`!=`dynamic`. If DHCP snooping is enabled, whether DHCP server is allowed on the interfaces with. All the interfaces from port configs using this port usage are effected. Please notice that allowDhcpd is a tri_state. When it is not defined, it means using the system's default setting which depends on whether the port is an access or trunk port.
11599
+ * Only applies when `mode`!=`dynamic`. Controls whether DHCP server traffic is allowed on ports using this configuration if DHCP snooping is enabled. This is a tri-state setting; true: ports become trusted ports allowing DHCP server traffic, false: ports become untrusted blocking DHCP server traffic, undefined: use system defaults (access ports default to untrusted, trunk ports default to trusted).
11455
11600
  */
11456
11601
  allowDhcpd?: pulumi.Input<boolean>;
11457
11602
  /**
@@ -11466,6 +11611,10 @@ export declare namespace site {
11466
11611
  * Only if `mode`!=`dynamic` and `portAuth`=`dot1x`. Bypass auth for all (including unknown clients) if set to true when RADIUS server is down
11467
11612
  */
11468
11613
  bypassAuthWhenServerDownForUnknownClient?: pulumi.Input<boolean>;
11614
+ /**
11615
+ * Only if `mode`!=`dynamic` and `portAuth`==`dot1x`. Bypass auth for VOIP if set to true when RADIUS server is down
11616
+ */
11617
+ bypassAuthWhenServerDownForVoip?: pulumi.Input<boolean>;
11469
11618
  /**
11470
11619
  * Only if `mode`!=`dynamic`. To be used together with `isolation` under networks. Signaling that this port connects to the networks isolated but wired clients belong to the same community can talk to each other
11471
11620
  */
@@ -11503,11 +11652,11 @@ export declare namespace site {
11503
11652
  */
11504
11653
  guestNetwork?: pulumi.Input<string>;
11505
11654
  /**
11506
- * Only if `mode`!=`dynamic`. `interSwitchLink` is used together with `isolation` under networks. NOTE: `interSwitchLink` works only between Juniper device. This has to be applied to both ports connected together
11655
+ * Only if `mode`!=`dynamic`. `interIsolationNetworkLink` is used together with `isolation` under networks, signaling that this port connects to isolated networks
11507
11656
  */
11508
11657
  interIsolationNetworkLink?: pulumi.Input<boolean>;
11509
11658
  /**
11510
- * Only if `mode`!=`dynamic`. `interSwitchLink` is used together with `isolation` under networks. NOTE: interSwitchLink works only between Juniper device. This has to be applied to both ports connected together
11659
+ * Only if `mode`!=`dynamic`. `interSwitchLink` is used together with `isolation` under networks. NOTE: `interSwitchLink` works only between Juniper devices. This has to be applied to both ports connected together
11511
11660
  */
11512
11661
  interSwitchLink?: pulumi.Input<boolean>;
11513
11662
  /**
@@ -11546,6 +11695,10 @@ export declare namespace site {
11546
11695
  * Only if `mode`!=`dynamic`. Whether PoE capabilities are disabled for a port
11547
11696
  */
11548
11697
  poeDisabled?: pulumi.Input<boolean>;
11698
+ /**
11699
+ * PoE priority. enum: `low`, `high`
11700
+ */
11701
+ poePriority?: pulumi.Input<string>;
11549
11702
  /**
11550
11703
  * Only if `mode`!=`dynamic`. If dot1x is desired, set to dot1x. enum: `dot1x`
11551
11704
  */
@@ -11628,7 +11781,7 @@ export declare namespace site {
11628
11781
  */
11629
11782
  expression?: pulumi.Input<string>;
11630
11783
  /**
11631
- * enum: `linkPeermac`, `lldpChassisId`, `lldpHardwareRevision`, `lldpManufacturerName`, `lldpOui`, `lldpSerialNumber`, `lldpSystemName`, `radiusDynamicfilter`, `radiusUsermac`, `radiusUsername`
11784
+ * enum: `linkPeermac`, `lldpChassisId`, `lldpHardwareRevision`, `lldpManufacturerName`, `lldpOui`, `lldpSerialNumber`, `lldpSystemDescription`, `lldpSystemName`, `radiusDynamicfilter`, `radiusUsermac`, `radiusUsername`
11632
11785
  */
11633
11786
  src: pulumi.Input<string>;
11634
11787
  /**
@@ -12700,7 +12853,7 @@ export declare namespace site {
12700
12853
  */
12701
12854
  protectRe?: pulumi.Input<inputs.site.SettingGatewayMgmtProtectRe>;
12702
12855
  /**
12703
- * For SRX only
12856
+ * SRX only
12704
12857
  */
12705
12858
  rootPassword?: pulumi.Input<string>;
12706
12859
  securityLogSourceAddress?: pulumi.Input<string>;
@@ -12811,9 +12964,15 @@ export declare namespace site {
12811
12964
  autoOperations?: pulumi.Input<inputs.site.SettingMarvisAutoOperations>;
12812
12965
  }
12813
12966
  interface SettingMarvisAutoOperations {
12967
+ apInsufficientCapacity?: pulumi.Input<boolean>;
12968
+ apLoop?: pulumi.Input<boolean>;
12969
+ apNonCompliant?: pulumi.Input<boolean>;
12814
12970
  bouncePortForAbnormalPoeClient?: pulumi.Input<boolean>;
12815
12971
  disablePortWhenDdosProtocolViolation?: pulumi.Input<boolean>;
12816
12972
  disablePortWhenRogueDhcpServerDetected?: pulumi.Input<boolean>;
12973
+ gatewayNonCompliant?: pulumi.Input<boolean>;
12974
+ switchMisconfiguredPort?: pulumi.Input<boolean>;
12975
+ switchPortStuck?: pulumi.Input<boolean>;
12817
12976
  }
12818
12977
  interface SettingOccupancy {
12819
12978
  /**
@@ -12838,6 +12997,7 @@ export declare namespace site {
12838
12997
  unconnectedClientsEnabled?: pulumi.Input<boolean>;
12839
12998
  }
12840
12999
  interface SettingProxy {
13000
+ disabled?: pulumi.Input<boolean>;
12841
13001
  url?: pulumi.Input<string>;
12842
13002
  }
12843
13003
  interface SettingRogue {
@@ -12963,7 +13123,7 @@ export declare namespace site {
12963
13123
  */
12964
13124
  disableStats?: pulumi.Input<boolean>;
12965
13125
  /**
12966
- * Proxy Configuration to talk to Mist
13126
+ * SSR proxy configuration to talk to Mist
12967
13127
  */
12968
13128
  proxy?: pulumi.Input<inputs.site.SettingSsrProxy>;
12969
13129
  }
@@ -12981,6 +13141,7 @@ export declare namespace site {
12981
13141
  enabled?: pulumi.Input<boolean>;
12982
13142
  }
12983
13143
  interface SettingSsrProxy {
13144
+ disabled?: pulumi.Input<boolean>;
12984
13145
  url?: pulumi.Input<string>;
12985
13146
  }
12986
13147
  interface SettingSyntheticTest {