@pulumi/juniper-mist 0.0.17 → 0.0.19

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
@@ -549,12 +549,16 @@ export declare namespace device {
549
549
  * by default, we'll re-advertise all learned BGP routers toward overlay
550
550
  */
551
551
  noReadvertiseToOverlay?: pulumi.Input<boolean>;
552
+ /**
553
+ * if `type`==`tunnel`
554
+ */
555
+ tunnelName?: pulumi.Input<string>;
552
556
  /**
553
557
  * enum: `external`, `internal`
554
558
  */
555
559
  type?: pulumi.Input<string>;
556
560
  /**
557
- * network name. enum: `lan`, `vpn`, `wan`
561
+ * network name. enum: `lan`, `tunnel`, `vpn`, `wan`
558
562
  */
559
563
  via?: pulumi.Input<string>;
560
564
  vpnName?: pulumi.Input<string>;
@@ -589,6 +593,9 @@ export declare namespace device {
589
593
  mac: pulumi.Input<string>;
590
594
  }
591
595
  interface GatewayDhcpdConfig {
596
+ /**
597
+ * Property key is the network name
598
+ */
592
599
  config?: pulumi.Input<{
593
600
  [key: string]: pulumi.Input<inputs.device.GatewayDhcpdConfigConfig>;
594
601
  }>;
@@ -920,7 +927,7 @@ export declare namespace device {
920
927
  */
921
928
  useMgmtVrf?: pulumi.Input<boolean>;
922
929
  /**
923
- * for host-out traffic (NTP/TACPLUS/RADIUS/SYSLOG/SNMP), if alternative source network/ip is desired,
930
+ * for host-out traffic (NTP/TACPLUS/RADIUS/SYSLOG/SNMP), if alternative source network/ip is desired
924
931
  */
925
932
  useMgmtVrfForHostOut?: pulumi.Input<boolean>;
926
933
  vlanId?: pulumi.Input<string>;
@@ -989,11 +996,30 @@ export declare namespace device {
989
996
  */
990
997
  type?: pulumi.Input<string>;
991
998
  /**
992
- * required when`type`==`tunnel`
999
+ * optional if `type`==`vpn`
993
1000
  */
994
1001
  wanName?: pulumi.Input<string>;
995
1002
  }
996
1003
  interface GatewayPortConfig {
1004
+ /**
1005
+ * if `aggregated`==`true`. To disable LCP support for the AE interface
1006
+ */
1007
+ aeDisableLacp?: pulumi.Input<boolean>;
1008
+ /**
1009
+ * if `aggregated`==`true`. Users could force to use the designated AE name (must be an integer between 0 and 127)
1010
+ */
1011
+ aeIdx?: pulumi.Input<string>;
1012
+ /**
1013
+ * For SRX Only, if `aggregated`==`true`.Sets the state of the interface as UP when the peer has limited LACP capability.\n
1014
+ * 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\n
1015
+ * Note: Turning this on will enable force-up on one of the interfaces in the bundle only
1016
+ */
1017
+ aeLacpForceUp?: pulumi.Input<boolean>;
1018
+ aggregated?: pulumi.Input<boolean>;
1019
+ /**
1020
+ * if want to generate port up/down alarm, set it to true
1021
+ */
1022
+ critical?: pulumi.Input<boolean>;
997
1023
  description?: pulumi.Input<string>;
998
1024
  disableAutoneg?: pulumi.Input<boolean>;
999
1025
  /**
@@ -1379,6 +1405,10 @@ export declare namespace device {
1379
1405
  * enum: `active-active`, `active-standby`
1380
1406
  */
1381
1407
  mode?: pulumi.Input<string>;
1408
+ /**
1409
+ * networks reachable via this tunnel
1410
+ */
1411
+ networks?: pulumi.Input<pulumi.Input<string>[]>;
1382
1412
  primary?: pulumi.Input<inputs.device.GatewayTunnelConfigsPrimary>;
1383
1413
  /**
1384
1414
  * Only if `provider`== `custom-ipsec`
@@ -1409,10 +1439,6 @@ export declare namespace device {
1409
1439
  enable?: pulumi.Input<boolean>;
1410
1440
  latlng?: pulumi.Input<inputs.device.GatewayTunnelConfigsAutoProvisionLatlng>;
1411
1441
  primary?: pulumi.Input<inputs.device.GatewayTunnelConfigsAutoProvisionPrimary>;
1412
- /**
1413
- * enum: `APAC`, `Americas`, `EMEA`, `auto`
1414
- */
1415
- region?: pulumi.Input<string>;
1416
1442
  secondary?: pulumi.Input<inputs.device.GatewayTunnelConfigsAutoProvisionSecondary>;
1417
1443
  }
1418
1444
  interface GatewayTunnelConfigsAutoProvisionLatlng {
@@ -1636,7 +1662,7 @@ export declare namespace device {
1636
1662
  * enum: `allow`, `deny`
1637
1663
  */
1638
1664
  action?: pulumi.Input<string>;
1639
- dstTag?: pulumi.Input<string>;
1665
+ dstTag: pulumi.Input<string>;
1640
1666
  }
1641
1667
  interface SwitchAclTags {
1642
1668
  /**
@@ -1711,6 +1737,9 @@ export declare namespace device {
1711
1737
  networks?: pulumi.Input<pulumi.Input<string>[]>;
1712
1738
  }
1713
1739
  interface SwitchDhcpdConfig {
1740
+ /**
1741
+ * Property key is the network name
1742
+ */
1714
1743
  config?: pulumi.Input<{
1715
1744
  [key: string]: pulumi.Input<inputs.device.SwitchDhcpdConfigConfig>;
1716
1745
  }>;
@@ -1914,7 +1943,7 @@ export declare namespace device {
1914
1943
  */
1915
1944
  useMgmtVrf?: pulumi.Input<boolean>;
1916
1945
  /**
1917
- * for host-out traffic (NTP/TACPLUS/RADIUS/SYSLOG/SNMP), if alternative source network/ip is desired,
1946
+ * for host-out traffic (NTP/TACPLUS/RADIUS/SYSLOG/SNMP), if alternative source network/ip is desired
1918
1947
  */
1919
1948
  useMgmtVrfForHostOut?: pulumi.Input<boolean>;
1920
1949
  }
@@ -2108,6 +2137,10 @@ export declare namespace device {
2108
2137
  * Only if `mode`!=`dynamic` and `enableMacAuth`==`true`
2109
2138
  */
2110
2139
  macAuthOnly?: pulumi.Input<boolean>;
2140
+ /**
2141
+ * Only if `mode`!=`dynamic` + `enableMacAuth`==`true` + `macAuthOnly`==`false`, dot1x will be given priority then mac_auth. Enable this to prefer macAuth over dot1x.
2142
+ */
2143
+ macAuthPreferred?: pulumi.Input<boolean>;
2111
2144
  /**
2112
2145
  * Only if `mode`!=`dynamic` and `enableMacAuth` ==`true`. This type is ignored if mistNac is enabled. enum: `eap-md5`, `eap-peap`, `pap`
2113
2146
  */
@@ -2148,10 +2181,6 @@ export declare namespace device {
2148
2181
  * Only if `mode`!=`dynamic` and `portAuth`=`dot1x` reauthentication interval range
2149
2182
  */
2150
2183
  reauthInterval?: pulumi.Input<number>;
2151
- /**
2152
- * Only if `mode`!=`dynamic` and `portAuth`==`dot1x` when radius server reject / fails
2153
- */
2154
- rejectedNetwork?: pulumi.Input<string>;
2155
2184
  /**
2156
2185
  * Only if `mode`==`dynamic` Control when the DPC port should be changed to the default port usage. enum: `linkDown`, `none` (let the DPC port keep at the current port usage)
2157
2186
  */
@@ -2160,6 +2189,14 @@ export declare namespace device {
2160
2189
  * Only if `mode`==`dynamic`
2161
2190
  */
2162
2191
  rules?: pulumi.Input<pulumi.Input<inputs.device.SwitchPortUsagesRule>[]>;
2192
+ /**
2193
+ * Only if `mode`!=`dynamic` and `portAuth`==`dot1x` sets server fail fallback vlan
2194
+ */
2195
+ serverFailNetwork?: pulumi.Input<string>;
2196
+ /**
2197
+ * Only if `mode`!=`dynamic` and `portAuth`==`dot1x` when radius server reject / fails
2198
+ */
2199
+ serverRejectNetwork?: pulumi.Input<string>;
2163
2200
  /**
2164
2201
  * Only if `mode`!=`dynamic` speed, default is auto to automatically negotiate speed
2165
2202
  */
@@ -2287,6 +2324,10 @@ export declare namespace device {
2287
2324
  * Auth port of RADIUS server
2288
2325
  */
2289
2326
  port?: pulumi.Input<number>;
2327
+ /**
2328
+ * whether to require Message-Authenticator in requests
2329
+ */
2330
+ requireMessageAuthenticator?: pulumi.Input<boolean>;
2290
2331
  /**
2291
2332
  * secret of RADIUS server
2292
2333
  */
@@ -2599,9 +2640,9 @@ export declare namespace device {
2599
2640
  }
2600
2641
  interface SwitchStpConfig {
2601
2642
  /**
2602
- * enum: `rstp`, `vstp`
2643
+ * ignored for switches participating in EVPN
2603
2644
  */
2604
- type?: pulumi.Input<string>;
2645
+ vstpEnabled?: pulumi.Input<boolean>;
2605
2646
  }
2606
2647
  interface SwitchSwitchMgmt {
2607
2648
  /**
@@ -2624,6 +2665,7 @@ export declare namespace device {
2624
2665
  * Enable to provide the FQDN with DHCP option 81
2625
2666
  */
2626
2667
  dhcpOptionFqdn?: pulumi.Input<boolean>;
2668
+ disableOobDownAlarm?: pulumi.Input<boolean>;
2627
2669
  /**
2628
2670
  * Property key is the user name. For Local user authentication
2629
2671
  */
@@ -3285,12 +3327,16 @@ export declare namespace org {
3285
3327
  * by default, we'll re-advertise all learned BGP routers toward overlay
3286
3328
  */
3287
3329
  noReadvertiseToOverlay?: pulumi.Input<boolean>;
3330
+ /**
3331
+ * if `type`==`tunnel`
3332
+ */
3333
+ tunnelName?: pulumi.Input<string>;
3288
3334
  /**
3289
3335
  * enum: `external`, `internal`
3290
3336
  */
3291
3337
  type?: pulumi.Input<string>;
3292
3338
  /**
3293
- * network name. enum: `lan`, `vpn`, `wan`
3339
+ * network name. enum: `lan`, `tunnel`, `vpn`, `wan`
3294
3340
  */
3295
3341
  via?: pulumi.Input<string>;
3296
3342
  vpnName?: pulumi.Input<string>;
@@ -3319,6 +3365,9 @@ export declare namespace org {
3319
3365
  neighborAs?: pulumi.Input<number>;
3320
3366
  }
3321
3367
  interface DeviceprofileGatewayDhcpdConfig {
3368
+ /**
3369
+ * Property key is the network name
3370
+ */
3322
3371
  config?: pulumi.Input<{
3323
3372
  [key: string]: pulumi.Input<inputs.org.DeviceprofileGatewayDhcpdConfigConfig>;
3324
3373
  }>;
@@ -3643,7 +3692,7 @@ export declare namespace org {
3643
3692
  */
3644
3693
  useMgmtVrf?: pulumi.Input<boolean>;
3645
3694
  /**
3646
- * for host-out traffic (NTP/TACPLUS/RADIUS/SYSLOG/SNMP), if alternative source network/ip is desired,
3695
+ * for host-out traffic (NTP/TACPLUS/RADIUS/SYSLOG/SNMP), if alternative source network/ip is desired
3647
3696
  */
3648
3697
  useMgmtVrfForHostOut?: pulumi.Input<boolean>;
3649
3698
  vlanId?: pulumi.Input<string>;
@@ -3712,11 +3761,30 @@ export declare namespace org {
3712
3761
  */
3713
3762
  type?: pulumi.Input<string>;
3714
3763
  /**
3715
- * required when`type`==`tunnel`
3764
+ * optional if `type`==`vpn`
3716
3765
  */
3717
3766
  wanName?: pulumi.Input<string>;
3718
3767
  }
3719
3768
  interface DeviceprofileGatewayPortConfig {
3769
+ /**
3770
+ * if `aggregated`==`true`. To disable LCP support for the AE interface
3771
+ */
3772
+ aeDisableLacp?: pulumi.Input<boolean>;
3773
+ /**
3774
+ * if `aggregated`==`true`. Users could force to use the designated AE name (must be an integer between 0 and 127)
3775
+ */
3776
+ aeIdx?: pulumi.Input<string>;
3777
+ /**
3778
+ * For SRX Only, if `aggregated`==`true`.Sets the state of the interface as UP when the peer has limited LACP capability.\n
3779
+ * 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\n
3780
+ * Note: Turning this on will enable force-up on one of the interfaces in the bundle only
3781
+ */
3782
+ aeLacpForceUp?: pulumi.Input<boolean>;
3783
+ aggregated?: pulumi.Input<boolean>;
3784
+ /**
3785
+ * if want to generate port up/down alarm, set it to true
3786
+ */
3787
+ critical?: pulumi.Input<boolean>;
3720
3788
  description?: pulumi.Input<string>;
3721
3789
  disableAutoneg?: pulumi.Input<boolean>;
3722
3790
  /**
@@ -4092,6 +4160,10 @@ export declare namespace org {
4092
4160
  * enum: `active-active`, `active-standby`
4093
4161
  */
4094
4162
  mode?: pulumi.Input<string>;
4163
+ /**
4164
+ * networks reachable via this tunnel
4165
+ */
4166
+ networks?: pulumi.Input<pulumi.Input<string>[]>;
4095
4167
  primary?: pulumi.Input<inputs.org.DeviceprofileGatewayTunnelConfigsPrimary>;
4096
4168
  /**
4097
4169
  * Only if `provider`== `custom-ipsec`
@@ -4122,10 +4194,6 @@ export declare namespace org {
4122
4194
  enable?: pulumi.Input<boolean>;
4123
4195
  latlng?: pulumi.Input<inputs.org.DeviceprofileGatewayTunnelConfigsAutoProvisionLatlng>;
4124
4196
  primary?: pulumi.Input<inputs.org.DeviceprofileGatewayTunnelConfigsAutoProvisionPrimary>;
4125
- /**
4126
- * enum: `APAC`, `Americas`, `EMEA`, `auto`
4127
- */
4128
- region?: pulumi.Input<string>;
4129
4197
  secondary?: pulumi.Input<inputs.org.DeviceprofileGatewayTunnelConfigsAutoProvisionSecondary>;
4130
4198
  }
4131
4199
  interface DeviceprofileGatewayTunnelConfigsAutoProvisionLatlng {
@@ -4384,12 +4452,16 @@ export declare namespace org {
4384
4452
  * by default, we'll re-advertise all learned BGP routers toward overlay
4385
4453
  */
4386
4454
  noReadvertiseToOverlay?: pulumi.Input<boolean>;
4455
+ /**
4456
+ * if `type`==`tunnel`
4457
+ */
4458
+ tunnelName?: pulumi.Input<string>;
4387
4459
  /**
4388
4460
  * enum: `external`, `internal`
4389
4461
  */
4390
4462
  type?: pulumi.Input<string>;
4391
4463
  /**
4392
- * network name. enum: `lan`, `vpn`, `wan`
4464
+ * network name. enum: `lan`, `tunnel`, `vpn`, `wan`
4393
4465
  */
4394
4466
  via?: pulumi.Input<string>;
4395
4467
  vpnName?: pulumi.Input<string>;
@@ -4418,6 +4490,9 @@ export declare namespace org {
4418
4490
  neighborAs?: pulumi.Input<number>;
4419
4491
  }
4420
4492
  interface GatewaytemplateDhcpdConfig {
4493
+ /**
4494
+ * Property key is the network name
4495
+ */
4421
4496
  config?: pulumi.Input<{
4422
4497
  [key: string]: pulumi.Input<inputs.org.GatewaytemplateDhcpdConfigConfig>;
4423
4498
  }>;
@@ -4742,7 +4817,7 @@ export declare namespace org {
4742
4817
  */
4743
4818
  useMgmtVrf?: pulumi.Input<boolean>;
4744
4819
  /**
4745
- * for host-out traffic (NTP/TACPLUS/RADIUS/SYSLOG/SNMP), if alternative source network/ip is desired,
4820
+ * for host-out traffic (NTP/TACPLUS/RADIUS/SYSLOG/SNMP), if alternative source network/ip is desired
4746
4821
  */
4747
4822
  useMgmtVrfForHostOut?: pulumi.Input<boolean>;
4748
4823
  vlanId?: pulumi.Input<string>;
@@ -4811,11 +4886,30 @@ export declare namespace org {
4811
4886
  */
4812
4887
  type?: pulumi.Input<string>;
4813
4888
  /**
4814
- * required when`type`==`tunnel`
4889
+ * optional if `type`==`vpn`
4815
4890
  */
4816
4891
  wanName?: pulumi.Input<string>;
4817
4892
  }
4818
4893
  interface GatewaytemplatePortConfig {
4894
+ /**
4895
+ * if `aggregated`==`true`. To disable LCP support for the AE interface
4896
+ */
4897
+ aeDisableLacp?: pulumi.Input<boolean>;
4898
+ /**
4899
+ * if `aggregated`==`true`. Users could force to use the designated AE name (must be an integer between 0 and 127)
4900
+ */
4901
+ aeIdx?: pulumi.Input<string>;
4902
+ /**
4903
+ * For SRX Only, if `aggregated`==`true`.Sets the state of the interface as UP when the peer has limited LACP capability.\n
4904
+ * 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\n
4905
+ * Note: Turning this on will enable force-up on one of the interfaces in the bundle only
4906
+ */
4907
+ aeLacpForceUp?: pulumi.Input<boolean>;
4908
+ aggregated?: pulumi.Input<boolean>;
4909
+ /**
4910
+ * if want to generate port up/down alarm, set it to true
4911
+ */
4912
+ critical?: pulumi.Input<boolean>;
4819
4913
  description?: pulumi.Input<string>;
4820
4914
  disableAutoneg?: pulumi.Input<boolean>;
4821
4915
  /**
@@ -5191,6 +5285,10 @@ export declare namespace org {
5191
5285
  * enum: `active-active`, `active-standby`
5192
5286
  */
5193
5287
  mode?: pulumi.Input<string>;
5288
+ /**
5289
+ * networks reachable via this tunnel
5290
+ */
5291
+ networks?: pulumi.Input<pulumi.Input<string>[]>;
5194
5292
  primary?: pulumi.Input<inputs.org.GatewaytemplateTunnelConfigsPrimary>;
5195
5293
  /**
5196
5294
  * Only if `provider`== `custom-ipsec`
@@ -5221,10 +5319,6 @@ export declare namespace org {
5221
5319
  enable?: pulumi.Input<boolean>;
5222
5320
  latlng?: pulumi.Input<inputs.org.GatewaytemplateTunnelConfigsAutoProvisionLatlng>;
5223
5321
  primary?: pulumi.Input<inputs.org.GatewaytemplateTunnelConfigsAutoProvisionPrimary>;
5224
- /**
5225
- * enum: `APAC`, `Americas`, `EMEA`, `auto`
5226
- */
5227
- region?: pulumi.Input<string>;
5228
5322
  secondary?: pulumi.Input<inputs.org.GatewaytemplateTunnelConfigsAutoProvisionSecondary>;
5229
5323
  }
5230
5324
  interface GatewaytemplateTunnelConfigsAutoProvisionLatlng {
@@ -5660,7 +5754,7 @@ export declare namespace org {
5660
5754
  * enum: `allow`, `deny`
5661
5755
  */
5662
5756
  action?: pulumi.Input<string>;
5663
- dstTag?: pulumi.Input<string>;
5757
+ dstTag: pulumi.Input<string>;
5664
5758
  }
5665
5759
  interface NetworktemplateAclTags {
5666
5760
  /**
@@ -5877,6 +5971,10 @@ export declare namespace org {
5877
5971
  * Only if `mode`!=`dynamic` and `enableMacAuth`==`true`
5878
5972
  */
5879
5973
  macAuthOnly?: pulumi.Input<boolean>;
5974
+ /**
5975
+ * Only if `mode`!=`dynamic` + `enableMacAuth`==`true` + `macAuthOnly`==`false`, dot1x will be given priority then mac_auth. Enable this to prefer macAuth over dot1x.
5976
+ */
5977
+ macAuthPreferred?: pulumi.Input<boolean>;
5880
5978
  /**
5881
5979
  * Only if `mode`!=`dynamic` and `enableMacAuth` ==`true`. This type is ignored if mistNac is enabled. enum: `eap-md5`, `eap-peap`, `pap`
5882
5980
  */
@@ -5917,10 +6015,6 @@ export declare namespace org {
5917
6015
  * Only if `mode`!=`dynamic` and `portAuth`=`dot1x` reauthentication interval range
5918
6016
  */
5919
6017
  reauthInterval?: pulumi.Input<number>;
5920
- /**
5921
- * Only if `mode`!=`dynamic` and `portAuth`==`dot1x` when radius server reject / fails
5922
- */
5923
- rejectedNetwork?: pulumi.Input<string>;
5924
6018
  /**
5925
6019
  * Only if `mode`==`dynamic` Control when the DPC port should be changed to the default port usage. enum: `linkDown`, `none` (let the DPC port keep at the current port usage)
5926
6020
  */
@@ -5929,6 +6023,14 @@ export declare namespace org {
5929
6023
  * Only if `mode`==`dynamic`
5930
6024
  */
5931
6025
  rules?: pulumi.Input<pulumi.Input<inputs.org.NetworktemplatePortUsagesRule>[]>;
6026
+ /**
6027
+ * Only if `mode`!=`dynamic` and `portAuth`==`dot1x` sets server fail fallback vlan
6028
+ */
6029
+ serverFailNetwork?: pulumi.Input<string>;
6030
+ /**
6031
+ * Only if `mode`!=`dynamic` and `portAuth`==`dot1x` when radius server reject / fails
6032
+ */
6033
+ serverRejectNetwork?: pulumi.Input<string>;
5932
6034
  /**
5933
6035
  * Only if `mode`!=`dynamic` speed, default is auto to automatically negotiate speed
5934
6036
  */
@@ -6056,6 +6158,10 @@ export declare namespace org {
6056
6158
  * Auth port of RADIUS server
6057
6159
  */
6058
6160
  port?: pulumi.Input<number>;
6161
+ /**
6162
+ * whether to require Message-Authenticator in requests
6163
+ */
6164
+ requireMessageAuthenticator?: pulumi.Input<boolean>;
6059
6165
  /**
6060
6166
  * secret of RADIUS server
6061
6167
  */
@@ -6377,6 +6483,10 @@ export declare namespace org {
6377
6483
  * **Note**: no check is done
6378
6484
  */
6379
6485
  additionalConfigCmds?: pulumi.Input<pulumi.Input<string>[]>;
6486
+ /**
6487
+ * In-Band Management interface configuration
6488
+ */
6489
+ ipConfig?: pulumi.Input<inputs.org.NetworktemplateSwitchMatchingRuleIpConfig>;
6380
6490
  /**
6381
6491
  * role to match
6382
6492
  */
@@ -6387,6 +6497,10 @@ export declare namespace org {
6387
6497
  matchType?: pulumi.Input<string>;
6388
6498
  matchValue?: pulumi.Input<string>;
6389
6499
  name?: pulumi.Input<string>;
6500
+ /**
6501
+ * Out-of-Band Management interface configuration
6502
+ */
6503
+ oobIpConfig?: pulumi.Input<inputs.org.NetworktemplateSwitchMatchingRuleOobIpConfig>;
6390
6504
  /**
6391
6505
  * Propery key is the interface name or interface range
6392
6506
  */
@@ -6401,6 +6515,30 @@ export declare namespace org {
6401
6515
  [key: string]: pulumi.Input<inputs.org.NetworktemplateSwitchMatchingRulePortMirroring>;
6402
6516
  }>;
6403
6517
  }
6518
+ interface NetworktemplateSwitchMatchingRuleIpConfig {
6519
+ /**
6520
+ * VLAN Name for the management interface
6521
+ */
6522
+ network?: pulumi.Input<string>;
6523
+ /**
6524
+ * enum: `dhcp`, `static`
6525
+ */
6526
+ type?: pulumi.Input<string>;
6527
+ }
6528
+ interface NetworktemplateSwitchMatchingRuleOobIpConfig {
6529
+ /**
6530
+ * enum: `dhcp`, `static`
6531
+ */
6532
+ type?: pulumi.Input<string>;
6533
+ /**
6534
+ * f supported on the platform. If enabled, DNS will be using this routing-instance, too
6535
+ */
6536
+ useMgmtVrf?: pulumi.Input<boolean>;
6537
+ /**
6538
+ * for host-out traffic (NTP/TACPLUS/RADIUS/SYSLOG/SNMP), if alternative source network/ip is desired
6539
+ */
6540
+ useMgmtVrfForHostOut?: pulumi.Input<boolean>;
6541
+ }
6404
6542
  interface NetworktemplateSwitchMatchingRulePortConfig {
6405
6543
  /**
6406
6544
  * To disable LACP support for the AE interface
@@ -6496,6 +6634,7 @@ export declare namespace org {
6496
6634
  * Enable to provide the FQDN with DHCP option 81
6497
6635
  */
6498
6636
  dhcpOptionFqdn?: pulumi.Input<boolean>;
6637
+ disableOobDownAlarm?: pulumi.Input<boolean>;
6499
6638
  /**
6500
6639
  * Property key is the user name. For Local user authentication
6501
6640
  */
@@ -7033,6 +7172,10 @@ export declare namespace org {
7033
7172
  * use this IDP when no explicit realm present in the incoming username/CN OR when no IDP is explicitly mapped to the incoming realm.
7034
7173
  */
7035
7174
  defaultIdpId?: pulumi.Input<string>;
7175
+ /**
7176
+ * to disable RSAE_PSS_SHA256, RSAE_PSS_SHA384, RSAE_PSS_SHA512 from server side. see https://www.openssl.org/docs/man3.0/man1/openssl-ciphers.html
7177
+ */
7178
+ disableRsaeAlgorithms?: pulumi.Input<boolean>;
7036
7179
  /**
7037
7180
  * eap ssl security level
7038
7181
  * see https://www.openssl.org/docs/man1.1.1/man3/SSL_CTX_set_security_level.html#DEFAULT-CALLBACK-BEHAVIOUR
@@ -7043,6 +7186,14 @@ export declare namespace org {
7043
7186
  * For strict GDPR compliancy 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
7044
7187
  */
7045
7188
  euOnly?: pulumi.Input<boolean>;
7189
+ /**
7190
+ * allow customer to choose the EAP-TLS client certificate's field to use for IDP Machine Groups lookup
7191
+ */
7192
+ idpMachineCertLookupField?: pulumi.Input<string>;
7193
+ /**
7194
+ * allow customer to choose the EAP-TLS client certificate's field to use for IDP User Groups lookup
7195
+ */
7196
+ idpUserCertLookupField?: pulumi.Input<string>;
7046
7197
  idps?: pulumi.Input<pulumi.Input<inputs.org.SettingMistNacIdp>[]>;
7047
7198
  /**
7048
7199
  * radius server cert to be presented in EAP TLS
@@ -7099,9 +7250,9 @@ export declare namespace org {
7099
7250
  */
7100
7251
  enabled?: pulumi.Input<boolean>;
7101
7252
  /**
7102
- * days, required if password policy is enabled
7253
+ * password expiry in days
7103
7254
  */
7104
- freshness?: pulumi.Input<number>;
7255
+ expiryInDays?: pulumi.Input<number>;
7105
7256
  /**
7106
7257
  * required password length
7107
7258
  */
@@ -7122,6 +7273,15 @@ export declare namespace org {
7122
7273
  */
7123
7274
  maxPktLen?: pulumi.Input<number>;
7124
7275
  }
7276
+ interface SettingPortChannelization {
7277
+ /**
7278
+ * Property key is the interface name or range (e.g. `et-0/0/47`, `et-0/0/48-49`), Property value is the interface speed (e.g. `25g`, `50g`)
7279
+ */
7280
+ config?: pulumi.Input<{
7281
+ [key: string]: pulumi.Input<string>;
7282
+ }>;
7283
+ enabled?: pulumi.Input<boolean>;
7284
+ }
7125
7285
  interface SettingSecurity {
7126
7286
  /**
7127
7287
  * whether to disable local SSH (by default, local SSH is enabled with allowMist in Org is enabled
@@ -7949,6 +8109,10 @@ export declare namespace org {
7949
8109
  locales?: pulumi.Input<{
7950
8110
  [key: string]: pulumi.Input<inputs.org.WlanPortalTemplatePortalTemplateLocales>;
7951
8111
  }>;
8112
+ /**
8113
+ * path to the background image file. File must be a `png` image less than 100kB and image dimension must be less 500px x 200px (width x height).
8114
+ */
8115
+ logo?: pulumi.Input<string>;
7952
8116
  message?: pulumi.Input<string>;
7953
8117
  multiAuth?: pulumi.Input<boolean>;
7954
8118
  /**
@@ -8433,10 +8597,6 @@ export declare namespace org {
8433
8597
  * text of the Terms of Service
8434
8598
  */
8435
8599
  tosText?: pulumi.Input<string>;
8436
- /**
8437
- * label for Amazon auth button
8438
- */
8439
- uthButtonAmazon?: pulumi.Input<string>;
8440
8600
  }
8441
8601
  interface WlanQos {
8442
8602
  /**
@@ -8560,7 +8720,7 @@ export declare namespace site {
8560
8720
  * enum: `allow`, `deny`
8561
8721
  */
8562
8722
  action?: pulumi.Input<string>;
8563
- dstTag?: pulumi.Input<string>;
8723
+ dstTag: pulumi.Input<string>;
8564
8724
  }
8565
8725
  interface NetworktemplateAclTags {
8566
8726
  /**
@@ -8777,6 +8937,10 @@ export declare namespace site {
8777
8937
  * Only if `mode`!=`dynamic` and `enableMacAuth`==`true`
8778
8938
  */
8779
8939
  macAuthOnly?: pulumi.Input<boolean>;
8940
+ /**
8941
+ * Only if `mode`!=`dynamic` + `enableMacAuth`==`true` + `macAuthOnly`==`false`, dot1x will be given priority then mac_auth. Enable this to prefer macAuth over dot1x.
8942
+ */
8943
+ macAuthPreferred?: pulumi.Input<boolean>;
8780
8944
  /**
8781
8945
  * Only if `mode`!=`dynamic` and `enableMacAuth` ==`true`. This type is ignored if mistNac is enabled. enum: `eap-md5`, `eap-peap`, `pap`
8782
8946
  */
@@ -8817,10 +8981,6 @@ export declare namespace site {
8817
8981
  * Only if `mode`!=`dynamic` and `portAuth`=`dot1x` reauthentication interval range
8818
8982
  */
8819
8983
  reauthInterval?: pulumi.Input<number>;
8820
- /**
8821
- * Only if `mode`!=`dynamic` and `portAuth`==`dot1x` when radius server reject / fails
8822
- */
8823
- rejectedNetwork?: pulumi.Input<string>;
8824
8984
  /**
8825
8985
  * Only if `mode`==`dynamic` Control when the DPC port should be changed to the default port usage. enum: `linkDown`, `none` (let the DPC port keep at the current port usage)
8826
8986
  */
@@ -8829,6 +8989,14 @@ export declare namespace site {
8829
8989
  * Only if `mode`==`dynamic`
8830
8990
  */
8831
8991
  rules?: pulumi.Input<pulumi.Input<inputs.site.NetworktemplatePortUsagesRule>[]>;
8992
+ /**
8993
+ * Only if `mode`!=`dynamic` and `portAuth`==`dot1x` sets server fail fallback vlan
8994
+ */
8995
+ serverFailNetwork?: pulumi.Input<string>;
8996
+ /**
8997
+ * Only if `mode`!=`dynamic` and `portAuth`==`dot1x` when radius server reject / fails
8998
+ */
8999
+ serverRejectNetwork?: pulumi.Input<string>;
8832
9000
  /**
8833
9001
  * Only if `mode`!=`dynamic` speed, default is auto to automatically negotiate speed
8834
9002
  */
@@ -8956,6 +9124,10 @@ export declare namespace site {
8956
9124
  * Auth port of RADIUS server
8957
9125
  */
8958
9126
  port?: pulumi.Input<number>;
9127
+ /**
9128
+ * whether to require Message-Authenticator in requests
9129
+ */
9130
+ requireMessageAuthenticator?: pulumi.Input<boolean>;
8959
9131
  /**
8960
9132
  * secret of RADIUS server
8961
9133
  */
@@ -9277,6 +9449,10 @@ export declare namespace site {
9277
9449
  * **Note**: no check is done
9278
9450
  */
9279
9451
  additionalConfigCmds?: pulumi.Input<pulumi.Input<string>[]>;
9452
+ /**
9453
+ * In-Band Management interface configuration
9454
+ */
9455
+ ipConfig?: pulumi.Input<inputs.site.NetworktemplateSwitchMatchingRuleIpConfig>;
9280
9456
  /**
9281
9457
  * role to match
9282
9458
  */
@@ -9287,6 +9463,10 @@ export declare namespace site {
9287
9463
  matchType?: pulumi.Input<string>;
9288
9464
  matchValue?: pulumi.Input<string>;
9289
9465
  name?: pulumi.Input<string>;
9466
+ /**
9467
+ * Out-of-Band Management interface configuration
9468
+ */
9469
+ oobIpConfig?: pulumi.Input<inputs.site.NetworktemplateSwitchMatchingRuleOobIpConfig>;
9290
9470
  /**
9291
9471
  * Propery key is the interface name or interface range
9292
9472
  */
@@ -9301,6 +9481,30 @@ export declare namespace site {
9301
9481
  [key: string]: pulumi.Input<inputs.site.NetworktemplateSwitchMatchingRulePortMirroring>;
9302
9482
  }>;
9303
9483
  }
9484
+ interface NetworktemplateSwitchMatchingRuleIpConfig {
9485
+ /**
9486
+ * VLAN Name for the management interface
9487
+ */
9488
+ network?: pulumi.Input<string>;
9489
+ /**
9490
+ * enum: `dhcp`, `static`
9491
+ */
9492
+ type?: pulumi.Input<string>;
9493
+ }
9494
+ interface NetworktemplateSwitchMatchingRuleOobIpConfig {
9495
+ /**
9496
+ * enum: `dhcp`, `static`
9497
+ */
9498
+ type?: pulumi.Input<string>;
9499
+ /**
9500
+ * f supported on the platform. If enabled, DNS will be using this routing-instance, too
9501
+ */
9502
+ useMgmtVrf?: pulumi.Input<boolean>;
9503
+ /**
9504
+ * for host-out traffic (NTP/TACPLUS/RADIUS/SYSLOG/SNMP), if alternative source network/ip is desired
9505
+ */
9506
+ useMgmtVrfForHostOut?: pulumi.Input<boolean>;
9507
+ }
9304
9508
  interface NetworktemplateSwitchMatchingRulePortConfig {
9305
9509
  /**
9306
9510
  * To disable LACP support for the AE interface
@@ -9396,6 +9600,7 @@ export declare namespace site {
9396
9600
  * Enable to provide the FQDN with DHCP option 81
9397
9601
  */
9398
9602
  dhcpOptionFqdn?: pulumi.Input<boolean>;
9603
+ disableOobDownAlarm?: pulumi.Input<boolean>;
9399
9604
  /**
9400
9605
  * Property key is the user name. For Local user authentication
9401
9606
  */
@@ -9653,6 +9858,8 @@ export declare namespace site {
9653
9858
  enabled?: pulumi.Input<boolean>;
9654
9859
  /**
9655
9860
  * hours of operation filter, the available days (mon, tue, wed, thu, fri, sat, sun).
9861
+ *
9862
+ * **Note**: If the dow is not defined then it\u2019\ s treated as 00:00-23:59.
9656
9863
  */
9657
9864
  hours?: pulumi.Input<inputs.site.SettingConfigPushPolicyPushWindowHours>;
9658
9865
  }
@@ -9681,6 +9888,8 @@ export declare namespace site {
9681
9888
  dwellTags?: pulumi.Input<inputs.site.SettingEngagementDwellTags>;
9682
9889
  /**
9683
9890
  * hours of operation filter, the available days (mon, tue, wed, thu, fri, sat, sun).
9891
+ *
9892
+ * **Note**: If the dow is not defined then it\u2019\ s treated as 00:00-23:59.
9684
9893
  */
9685
9894
  hours?: pulumi.Input<inputs.site.SettingEngagementHours>;
9686
9895
  /**
@@ -9753,24 +9962,21 @@ export declare namespace site {
9753
9962
  enabled?: pulumi.Input<boolean>;
9754
9963
  }
9755
9964
  interface SettingGatewayMgmtAppProbingCustomApp {
9756
- /**
9757
- * if `protocol`==`icmp`
9758
- */
9759
9965
  address?: pulumi.Input<string>;
9760
9966
  appType?: pulumi.Input<string>;
9761
9967
  /**
9762
- * if `protocol`==`http`
9968
+ * Only 1 entry is allowed:
9969
+ * * if `protocol`==`http`: URL (e.g. `http://test.com` or `https://test.com`)
9970
+ * * if `protocol`==`icmp`: IP Address (e.g. `1.2.3.4`)
9763
9971
  */
9764
- hostnames?: pulumi.Input<pulumi.Input<string>[]>;
9765
- name?: pulumi.Input<string>;
9972
+ hostnames: pulumi.Input<pulumi.Input<string>[]>;
9973
+ key?: pulumi.Input<string>;
9974
+ name: pulumi.Input<string>;
9766
9975
  network?: pulumi.Input<string>;
9767
9976
  /**
9768
9977
  * enum: `http`, `icmp`
9769
9978
  */
9770
- protocol?: pulumi.Input<string>;
9771
- /**
9772
- * if `protocol`==`http`
9773
- */
9979
+ protocol: pulumi.Input<string>;
9774
9980
  url?: pulumi.Input<string>;
9775
9981
  vrf?: pulumi.Input<string>;
9776
9982
  }
@@ -10775,14 +10981,18 @@ export declare namespace site {
10775
10981
  field4required?: pulumi.Input<boolean>;
10776
10982
  /**
10777
10983
  * Can be used to localize the portal based on the User Agent. Allowed property key values are:
10778
- * "ar", "ca-ES", "cs-CZ", "da-DK", "de-DE", "el-GR", "en-GB", "en-US", "es-ES",
10779
- * "fi-FI", "fr-FR", "he-IL", "hi-IN", "hr-HR", "hu-HU", "id-ID", "it-IT", "ja-JP",
10780
- * "ko-KR", "ms-MY", "nb-NO", "nl-NL", "pl-PL", "pt-BR", "pt-PT", "ro-RO", "ru-RU",
10781
- * "sk-SK", "sv-SE", "th-TH", "tr-TR", "uk-UA", "vi-VN", "zh-Hans", "zh-Hant",
10984
+ * `ar`, `ca-ES`, `cs-CZ`, `da-DK`, `de-DE`, `el-GR`, `en-GB`, `en-US`, `es-ES`, `fi-FI`, `fr-FR`,
10985
+ * `he-IL`, `hi-IN`, `hr-HR`, `hu-HU`, `id-ID`, `it-IT`, `ja-J^`, `ko-KT`, `ms-MY`, `nb-NO`, `nl-NL`,
10986
+ * `pl-PL`, `pt-BR`, `pt-PT`, `ro-RO`, `ru-RU`, `sk-SK`, `sv-SE`, `th-TH`, `tr-TR`, `uk-UA`, `vi-VN`,
10987
+ * `zh-Hans`, `zh-Hant`
10782
10988
  */
10783
10989
  locales?: pulumi.Input<{
10784
10990
  [key: string]: pulumi.Input<inputs.site.WlanPortalTemplatePortalTemplateLocales>;
10785
10991
  }>;
10992
+ /**
10993
+ * path to the background image file. File must be a `png` image`
10994
+ */
10995
+ logo?: pulumi.Input<string>;
10786
10996
  message?: pulumi.Input<string>;
10787
10997
  multiAuth?: pulumi.Input<boolean>;
10788
10998
  /**
@@ -11267,10 +11477,6 @@ export declare namespace site {
11267
11477
  * text of the Terms of Service
11268
11478
  */
11269
11479
  tosText?: pulumi.Input<string>;
11270
- /**
11271
- * label for Amazon auth button
11272
- */
11273
- uthButtonAmazon?: pulumi.Input<string>;
11274
11480
  }
11275
11481
  interface WlanQos {
11276
11482
  /**