@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/README.md +1 -1
- package/org/setting.d.ts +3 -0
- package/org/setting.js +2 -0
- package/org/setting.js.map +1 -1
- package/org/wlan.d.ts +7 -6
- package/org/wlan.js +1 -0
- package/org/wlan.js.map +1 -1
- package/org/wlanPortalImage.d.ts +16 -7
- package/org/wlanPortalImage.js +6 -0
- package/org/wlanPortalImage.js.map +1 -1
- package/org/wlanPortalTemplate.d.ts +3 -3
- package/package.json +2 -2
- package/site/networktemplate.d.ts +2 -2
- package/site/networktemplate.js +3 -0
- package/site/networktemplate.js.map +1 -1
- package/site/setting.d.ts +24 -9
- package/site/setting.js.map +1 -1
- package/site/wlan.d.ts +7 -6
- package/site/wlan.js +1 -0
- package/site/wlan.js.map +1 -1
- package/site/wlanPortalImage.d.ts +16 -7
- package/site/wlanPortalImage.js +6 -0
- package/site/wlanPortalImage.js.map +1 -1
- package/types/input.d.ts +269 -63
- package/types/output.d.ts +278 -72
package/types/output.d.ts
CHANGED
|
@@ -674,12 +674,16 @@ export declare namespace device {
|
|
|
674
674
|
* by default, we'll re-advertise all learned BGP routers toward overlay
|
|
675
675
|
*/
|
|
676
676
|
noReadvertiseToOverlay: boolean;
|
|
677
|
+
/**
|
|
678
|
+
* if `type`==`tunnel`
|
|
679
|
+
*/
|
|
680
|
+
tunnelName?: string;
|
|
677
681
|
/**
|
|
678
682
|
* enum: `external`, `internal`
|
|
679
683
|
*/
|
|
680
684
|
type?: string;
|
|
681
685
|
/**
|
|
682
|
-
* network name. enum: `lan`, `vpn`, `wan`
|
|
686
|
+
* network name. enum: `lan`, `tunnel`, `vpn`, `wan`
|
|
683
687
|
*/
|
|
684
688
|
via: string;
|
|
685
689
|
vpnName?: string;
|
|
@@ -714,6 +718,9 @@ export declare namespace device {
|
|
|
714
718
|
mac: string;
|
|
715
719
|
}
|
|
716
720
|
interface GatewayDhcpdConfig {
|
|
721
|
+
/**
|
|
722
|
+
* Property key is the network name
|
|
723
|
+
*/
|
|
717
724
|
config?: {
|
|
718
725
|
[key: string]: outputs.device.GatewayDhcpdConfigConfig;
|
|
719
726
|
};
|
|
@@ -726,7 +733,7 @@ export declare namespace device {
|
|
|
726
733
|
/**
|
|
727
734
|
* if `type`==`local` - optional, if not defined, system one will be used
|
|
728
735
|
*/
|
|
729
|
-
dnsServers
|
|
736
|
+
dnsServers: string[];
|
|
730
737
|
/**
|
|
731
738
|
* if `type`==`local` - optional, if not defined, system one will be used
|
|
732
739
|
*/
|
|
@@ -1045,7 +1052,7 @@ export declare namespace device {
|
|
|
1045
1052
|
*/
|
|
1046
1053
|
useMgmtVrf: boolean;
|
|
1047
1054
|
/**
|
|
1048
|
-
* for host-out traffic (NTP/TACPLUS/RADIUS/SYSLOG/SNMP), if alternative source network/ip is desired
|
|
1055
|
+
* for host-out traffic (NTP/TACPLUS/RADIUS/SYSLOG/SNMP), if alternative source network/ip is desired
|
|
1049
1056
|
*/
|
|
1050
1057
|
useMgmtVrfForHostOut: boolean;
|
|
1051
1058
|
vlanId?: string;
|
|
@@ -1114,11 +1121,30 @@ export declare namespace device {
|
|
|
1114
1121
|
*/
|
|
1115
1122
|
type?: string;
|
|
1116
1123
|
/**
|
|
1117
|
-
*
|
|
1124
|
+
* optional if `type`==`vpn`
|
|
1118
1125
|
*/
|
|
1119
1126
|
wanName?: string;
|
|
1120
1127
|
}
|
|
1121
1128
|
interface GatewayPortConfig {
|
|
1129
|
+
/**
|
|
1130
|
+
* if `aggregated`==`true`. To disable LCP support for the AE interface
|
|
1131
|
+
*/
|
|
1132
|
+
aeDisableLacp: boolean;
|
|
1133
|
+
/**
|
|
1134
|
+
* if `aggregated`==`true`. Users could force to use the designated AE name (must be an integer between 0 and 127)
|
|
1135
|
+
*/
|
|
1136
|
+
aeIdx?: string;
|
|
1137
|
+
/**
|
|
1138
|
+
* For SRX Only, if `aggregated`==`true`.Sets the state of the interface as UP when the peer has limited LACP capability.\n
|
|
1139
|
+
* 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
|
|
1140
|
+
* Note: Turning this on will enable force-up on one of the interfaces in the bundle only
|
|
1141
|
+
*/
|
|
1142
|
+
aeLacpForceUp: boolean;
|
|
1143
|
+
aggregated: boolean;
|
|
1144
|
+
/**
|
|
1145
|
+
* if want to generate port up/down alarm, set it to true
|
|
1146
|
+
*/
|
|
1147
|
+
critical: boolean;
|
|
1122
1148
|
description?: string;
|
|
1123
1149
|
disableAutoneg: boolean;
|
|
1124
1150
|
/**
|
|
@@ -1504,6 +1530,10 @@ export declare namespace device {
|
|
|
1504
1530
|
* enum: `active-active`, `active-standby`
|
|
1505
1531
|
*/
|
|
1506
1532
|
mode: string;
|
|
1533
|
+
/**
|
|
1534
|
+
* networks reachable via this tunnel
|
|
1535
|
+
*/
|
|
1536
|
+
networks: string[];
|
|
1507
1537
|
primary?: outputs.device.GatewayTunnelConfigsPrimary;
|
|
1508
1538
|
/**
|
|
1509
1539
|
* Only if `provider`== `custom-ipsec`
|
|
@@ -1534,10 +1564,6 @@ export declare namespace device {
|
|
|
1534
1564
|
enable?: boolean;
|
|
1535
1565
|
latlng?: outputs.device.GatewayTunnelConfigsAutoProvisionLatlng;
|
|
1536
1566
|
primary?: outputs.device.GatewayTunnelConfigsAutoProvisionPrimary;
|
|
1537
|
-
/**
|
|
1538
|
-
* enum: `APAC`, `Americas`, `EMEA`, `auto`
|
|
1539
|
-
*/
|
|
1540
|
-
region: string;
|
|
1541
1567
|
secondary?: outputs.device.GatewayTunnelConfigsAutoProvisionSecondary;
|
|
1542
1568
|
}
|
|
1543
1569
|
interface GatewayTunnelConfigsAutoProvisionLatlng {
|
|
@@ -3205,7 +3231,7 @@ export declare namespace device {
|
|
|
3205
3231
|
* enum: `allow`, `deny`
|
|
3206
3232
|
*/
|
|
3207
3233
|
action: string;
|
|
3208
|
-
dstTag
|
|
3234
|
+
dstTag: string;
|
|
3209
3235
|
}
|
|
3210
3236
|
interface SwitchAclTags {
|
|
3211
3237
|
/**
|
|
@@ -3247,7 +3273,7 @@ export declare namespace device {
|
|
|
3247
3273
|
* - `type`==`resource` (optional. default is `any`)
|
|
3248
3274
|
* - `type`==`staticGbp` if from matching subnet
|
|
3249
3275
|
*/
|
|
3250
|
-
subnets
|
|
3276
|
+
subnets: string[];
|
|
3251
3277
|
/**
|
|
3252
3278
|
* enum: `any`, `dynamicGbp`, `mac`, `network`, `radiusGroup`, `resource`, `staticGbp`, `subnet`
|
|
3253
3279
|
*/
|
|
@@ -3280,6 +3306,9 @@ export declare namespace device {
|
|
|
3280
3306
|
networks?: string[];
|
|
3281
3307
|
}
|
|
3282
3308
|
interface SwitchDhcpdConfig {
|
|
3309
|
+
/**
|
|
3310
|
+
* Property key is the network name
|
|
3311
|
+
*/
|
|
3283
3312
|
config?: {
|
|
3284
3313
|
[key: string]: outputs.device.SwitchDhcpdConfigConfig;
|
|
3285
3314
|
};
|
|
@@ -3292,11 +3321,11 @@ export declare namespace device {
|
|
|
3292
3321
|
/**
|
|
3293
3322
|
* if `type`==`local` - optional, if not defined, system one will be used
|
|
3294
3323
|
*/
|
|
3295
|
-
dnsServers
|
|
3324
|
+
dnsServers: string[];
|
|
3296
3325
|
/**
|
|
3297
3326
|
* if `type`==`local` - optional, if not defined, system one will be used
|
|
3298
3327
|
*/
|
|
3299
|
-
dnsSuffixes
|
|
3328
|
+
dnsSuffixes: string[];
|
|
3300
3329
|
/**
|
|
3301
3330
|
* Property key is the MAC Address. Format is `[0-9a-f]{12}` (e.g "5684dae9ac8b")
|
|
3302
3331
|
*/
|
|
@@ -3483,7 +3512,7 @@ export declare namespace device {
|
|
|
3483
3512
|
*/
|
|
3484
3513
|
useMgmtVrf: boolean;
|
|
3485
3514
|
/**
|
|
3486
|
-
* for host-out traffic (NTP/TACPLUS/RADIUS/SYSLOG/SNMP), if alternative source network/ip is desired
|
|
3515
|
+
* for host-out traffic (NTP/TACPLUS/RADIUS/SYSLOG/SNMP), if alternative source network/ip is desired
|
|
3487
3516
|
*/
|
|
3488
3517
|
useMgmtVrfForHostOut: boolean;
|
|
3489
3518
|
}
|
|
@@ -3677,6 +3706,10 @@ export declare namespace device {
|
|
|
3677
3706
|
* Only if `mode`!=`dynamic` and `enableMacAuth`==`true`
|
|
3678
3707
|
*/
|
|
3679
3708
|
macAuthOnly?: boolean;
|
|
3709
|
+
/**
|
|
3710
|
+
* Only if `mode`!=`dynamic` + `enableMacAuth`==`true` + `macAuthOnly`==`false`, dot1x will be given priority then mac_auth. Enable this to prefer macAuth over dot1x.
|
|
3711
|
+
*/
|
|
3712
|
+
macAuthPreferred?: boolean;
|
|
3680
3713
|
/**
|
|
3681
3714
|
* Only if `mode`!=`dynamic` and `enableMacAuth` ==`true`. This type is ignored if mistNac is enabled. enum: `eap-md5`, `eap-peap`, `pap`
|
|
3682
3715
|
*/
|
|
@@ -3717,10 +3750,6 @@ export declare namespace device {
|
|
|
3717
3750
|
* Only if `mode`!=`dynamic` and `portAuth`=`dot1x` reauthentication interval range
|
|
3718
3751
|
*/
|
|
3719
3752
|
reauthInterval: number;
|
|
3720
|
-
/**
|
|
3721
|
-
* Only if `mode`!=`dynamic` and `portAuth`==`dot1x` when radius server reject / fails
|
|
3722
|
-
*/
|
|
3723
|
-
rejectedNetwork?: string;
|
|
3724
3753
|
/**
|
|
3725
3754
|
* 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)
|
|
3726
3755
|
*/
|
|
@@ -3729,6 +3758,14 @@ export declare namespace device {
|
|
|
3729
3758
|
* Only if `mode`==`dynamic`
|
|
3730
3759
|
*/
|
|
3731
3760
|
rules?: outputs.device.SwitchPortUsagesRule[];
|
|
3761
|
+
/**
|
|
3762
|
+
* Only if `mode`!=`dynamic` and `portAuth`==`dot1x` sets server fail fallback vlan
|
|
3763
|
+
*/
|
|
3764
|
+
serverFailNetwork?: string;
|
|
3765
|
+
/**
|
|
3766
|
+
* Only if `mode`!=`dynamic` and `portAuth`==`dot1x` when radius server reject / fails
|
|
3767
|
+
*/
|
|
3768
|
+
serverRejectNetwork?: string;
|
|
3732
3769
|
/**
|
|
3733
3770
|
* Only if `mode`!=`dynamic` speed, default is auto to automatically negotiate speed
|
|
3734
3771
|
*/
|
|
@@ -3856,6 +3893,10 @@ export declare namespace device {
|
|
|
3856
3893
|
* Auth port of RADIUS server
|
|
3857
3894
|
*/
|
|
3858
3895
|
port: number;
|
|
3896
|
+
/**
|
|
3897
|
+
* whether to require Message-Authenticator in requests
|
|
3898
|
+
*/
|
|
3899
|
+
requireMessageAuthenticator: boolean;
|
|
3859
3900
|
/**
|
|
3860
3901
|
* secret of RADIUS server
|
|
3861
3902
|
*/
|
|
@@ -4168,9 +4209,9 @@ export declare namespace device {
|
|
|
4168
4209
|
}
|
|
4169
4210
|
interface SwitchStpConfig {
|
|
4170
4211
|
/**
|
|
4171
|
-
*
|
|
4212
|
+
* ignored for switches participating in EVPN
|
|
4172
4213
|
*/
|
|
4173
|
-
|
|
4214
|
+
vstpEnabled: boolean;
|
|
4174
4215
|
}
|
|
4175
4216
|
interface SwitchSwitchMgmt {
|
|
4176
4217
|
/**
|
|
@@ -4193,6 +4234,7 @@ export declare namespace device {
|
|
|
4193
4234
|
* Enable to provide the FQDN with DHCP option 81
|
|
4194
4235
|
*/
|
|
4195
4236
|
dhcpOptionFqdn: boolean;
|
|
4237
|
+
disableOobDownAlarm?: boolean;
|
|
4196
4238
|
/**
|
|
4197
4239
|
* Property key is the user name. For Local user authentication
|
|
4198
4240
|
*/
|
|
@@ -4854,12 +4896,16 @@ export declare namespace org {
|
|
|
4854
4896
|
* by default, we'll re-advertise all learned BGP routers toward overlay
|
|
4855
4897
|
*/
|
|
4856
4898
|
noReadvertiseToOverlay: boolean;
|
|
4899
|
+
/**
|
|
4900
|
+
* if `type`==`tunnel`
|
|
4901
|
+
*/
|
|
4902
|
+
tunnelName?: string;
|
|
4857
4903
|
/**
|
|
4858
4904
|
* enum: `external`, `internal`
|
|
4859
4905
|
*/
|
|
4860
4906
|
type?: string;
|
|
4861
4907
|
/**
|
|
4862
|
-
* network name. enum: `lan`, `vpn`, `wan`
|
|
4908
|
+
* network name. enum: `lan`, `tunnel`, `vpn`, `wan`
|
|
4863
4909
|
*/
|
|
4864
4910
|
via: string;
|
|
4865
4911
|
vpnName?: string;
|
|
@@ -4888,6 +4934,9 @@ export declare namespace org {
|
|
|
4888
4934
|
neighborAs?: number;
|
|
4889
4935
|
}
|
|
4890
4936
|
interface DeviceprofileGatewayDhcpdConfig {
|
|
4937
|
+
/**
|
|
4938
|
+
* Property key is the network name
|
|
4939
|
+
*/
|
|
4891
4940
|
config?: {
|
|
4892
4941
|
[key: string]: outputs.org.DeviceprofileGatewayDhcpdConfigConfig;
|
|
4893
4942
|
};
|
|
@@ -4900,7 +4949,7 @@ export declare namespace org {
|
|
|
4900
4949
|
/**
|
|
4901
4950
|
* if `type`==`local` - optional, if not defined, system one will be used
|
|
4902
4951
|
*/
|
|
4903
|
-
dnsServers
|
|
4952
|
+
dnsServers: string[];
|
|
4904
4953
|
/**
|
|
4905
4954
|
* if `type`==`local` - optional, if not defined, system one will be used
|
|
4906
4955
|
*/
|
|
@@ -5212,7 +5261,7 @@ export declare namespace org {
|
|
|
5212
5261
|
*/
|
|
5213
5262
|
useMgmtVrf: boolean;
|
|
5214
5263
|
/**
|
|
5215
|
-
* for host-out traffic (NTP/TACPLUS/RADIUS/SYSLOG/SNMP), if alternative source network/ip is desired
|
|
5264
|
+
* for host-out traffic (NTP/TACPLUS/RADIUS/SYSLOG/SNMP), if alternative source network/ip is desired
|
|
5216
5265
|
*/
|
|
5217
5266
|
useMgmtVrfForHostOut: boolean;
|
|
5218
5267
|
vlanId?: string;
|
|
@@ -5281,11 +5330,30 @@ export declare namespace org {
|
|
|
5281
5330
|
*/
|
|
5282
5331
|
type?: string;
|
|
5283
5332
|
/**
|
|
5284
|
-
*
|
|
5333
|
+
* optional if `type`==`vpn`
|
|
5285
5334
|
*/
|
|
5286
5335
|
wanName?: string;
|
|
5287
5336
|
}
|
|
5288
5337
|
interface DeviceprofileGatewayPortConfig {
|
|
5338
|
+
/**
|
|
5339
|
+
* if `aggregated`==`true`. To disable LCP support for the AE interface
|
|
5340
|
+
*/
|
|
5341
|
+
aeDisableLacp: boolean;
|
|
5342
|
+
/**
|
|
5343
|
+
* if `aggregated`==`true`. Users could force to use the designated AE name (must be an integer between 0 and 127)
|
|
5344
|
+
*/
|
|
5345
|
+
aeIdx?: string;
|
|
5346
|
+
/**
|
|
5347
|
+
* For SRX Only, if `aggregated`==`true`.Sets the state of the interface as UP when the peer has limited LACP capability.\n
|
|
5348
|
+
* 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
|
|
5349
|
+
* Note: Turning this on will enable force-up on one of the interfaces in the bundle only
|
|
5350
|
+
*/
|
|
5351
|
+
aeLacpForceUp: boolean;
|
|
5352
|
+
aggregated: boolean;
|
|
5353
|
+
/**
|
|
5354
|
+
* if want to generate port up/down alarm, set it to true
|
|
5355
|
+
*/
|
|
5356
|
+
critical: boolean;
|
|
5289
5357
|
description?: string;
|
|
5290
5358
|
disableAutoneg: boolean;
|
|
5291
5359
|
/**
|
|
@@ -5661,6 +5729,10 @@ export declare namespace org {
|
|
|
5661
5729
|
* enum: `active-active`, `active-standby`
|
|
5662
5730
|
*/
|
|
5663
5731
|
mode: string;
|
|
5732
|
+
/**
|
|
5733
|
+
* networks reachable via this tunnel
|
|
5734
|
+
*/
|
|
5735
|
+
networks: string[];
|
|
5664
5736
|
primary?: outputs.org.DeviceprofileGatewayTunnelConfigsPrimary;
|
|
5665
5737
|
/**
|
|
5666
5738
|
* Only if `provider`== `custom-ipsec`
|
|
@@ -5691,10 +5763,6 @@ export declare namespace org {
|
|
|
5691
5763
|
enable?: boolean;
|
|
5692
5764
|
latlng?: outputs.org.DeviceprofileGatewayTunnelConfigsAutoProvisionLatlng;
|
|
5693
5765
|
primary?: outputs.org.DeviceprofileGatewayTunnelConfigsAutoProvisionPrimary;
|
|
5694
|
-
/**
|
|
5695
|
-
* enum: `APAC`, `Americas`, `EMEA`, `auto`
|
|
5696
|
-
*/
|
|
5697
|
-
region: string;
|
|
5698
5766
|
secondary?: outputs.org.DeviceprofileGatewayTunnelConfigsAutoProvisionSecondary;
|
|
5699
5767
|
}
|
|
5700
5768
|
interface DeviceprofileGatewayTunnelConfigsAutoProvisionLatlng {
|
|
@@ -5953,12 +6021,16 @@ export declare namespace org {
|
|
|
5953
6021
|
* by default, we'll re-advertise all learned BGP routers toward overlay
|
|
5954
6022
|
*/
|
|
5955
6023
|
noReadvertiseToOverlay: boolean;
|
|
6024
|
+
/**
|
|
6025
|
+
* if `type`==`tunnel`
|
|
6026
|
+
*/
|
|
6027
|
+
tunnelName?: string;
|
|
5956
6028
|
/**
|
|
5957
6029
|
* enum: `external`, `internal`
|
|
5958
6030
|
*/
|
|
5959
6031
|
type?: string;
|
|
5960
6032
|
/**
|
|
5961
|
-
* network name. enum: `lan`, `vpn`, `wan`
|
|
6033
|
+
* network name. enum: `lan`, `tunnel`, `vpn`, `wan`
|
|
5962
6034
|
*/
|
|
5963
6035
|
via: string;
|
|
5964
6036
|
vpnName?: string;
|
|
@@ -5987,6 +6059,9 @@ export declare namespace org {
|
|
|
5987
6059
|
neighborAs?: number;
|
|
5988
6060
|
}
|
|
5989
6061
|
interface GatewaytemplateDhcpdConfig {
|
|
6062
|
+
/**
|
|
6063
|
+
* Property key is the network name
|
|
6064
|
+
*/
|
|
5990
6065
|
config?: {
|
|
5991
6066
|
[key: string]: outputs.org.GatewaytemplateDhcpdConfigConfig;
|
|
5992
6067
|
};
|
|
@@ -5999,7 +6074,7 @@ export declare namespace org {
|
|
|
5999
6074
|
/**
|
|
6000
6075
|
* if `type`==`local` - optional, if not defined, system one will be used
|
|
6001
6076
|
*/
|
|
6002
|
-
dnsServers
|
|
6077
|
+
dnsServers: string[];
|
|
6003
6078
|
/**
|
|
6004
6079
|
* if `type`==`local` - optional, if not defined, system one will be used
|
|
6005
6080
|
*/
|
|
@@ -6311,7 +6386,7 @@ export declare namespace org {
|
|
|
6311
6386
|
*/
|
|
6312
6387
|
useMgmtVrf: boolean;
|
|
6313
6388
|
/**
|
|
6314
|
-
* for host-out traffic (NTP/TACPLUS/RADIUS/SYSLOG/SNMP), if alternative source network/ip is desired
|
|
6389
|
+
* for host-out traffic (NTP/TACPLUS/RADIUS/SYSLOG/SNMP), if alternative source network/ip is desired
|
|
6315
6390
|
*/
|
|
6316
6391
|
useMgmtVrfForHostOut: boolean;
|
|
6317
6392
|
vlanId?: string;
|
|
@@ -6380,11 +6455,30 @@ export declare namespace org {
|
|
|
6380
6455
|
*/
|
|
6381
6456
|
type?: string;
|
|
6382
6457
|
/**
|
|
6383
|
-
*
|
|
6458
|
+
* optional if `type`==`vpn`
|
|
6384
6459
|
*/
|
|
6385
6460
|
wanName?: string;
|
|
6386
6461
|
}
|
|
6387
6462
|
interface GatewaytemplatePortConfig {
|
|
6463
|
+
/**
|
|
6464
|
+
* if `aggregated`==`true`. To disable LCP support for the AE interface
|
|
6465
|
+
*/
|
|
6466
|
+
aeDisableLacp: boolean;
|
|
6467
|
+
/**
|
|
6468
|
+
* if `aggregated`==`true`. Users could force to use the designated AE name (must be an integer between 0 and 127)
|
|
6469
|
+
*/
|
|
6470
|
+
aeIdx?: string;
|
|
6471
|
+
/**
|
|
6472
|
+
* For SRX Only, if `aggregated`==`true`.Sets the state of the interface as UP when the peer has limited LACP capability.\n
|
|
6473
|
+
* 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
|
|
6474
|
+
* Note: Turning this on will enable force-up on one of the interfaces in the bundle only
|
|
6475
|
+
*/
|
|
6476
|
+
aeLacpForceUp: boolean;
|
|
6477
|
+
aggregated: boolean;
|
|
6478
|
+
/**
|
|
6479
|
+
* if want to generate port up/down alarm, set it to true
|
|
6480
|
+
*/
|
|
6481
|
+
critical: boolean;
|
|
6388
6482
|
description?: string;
|
|
6389
6483
|
disableAutoneg: boolean;
|
|
6390
6484
|
/**
|
|
@@ -6760,6 +6854,10 @@ export declare namespace org {
|
|
|
6760
6854
|
* enum: `active-active`, `active-standby`
|
|
6761
6855
|
*/
|
|
6762
6856
|
mode: string;
|
|
6857
|
+
/**
|
|
6858
|
+
* networks reachable via this tunnel
|
|
6859
|
+
*/
|
|
6860
|
+
networks: string[];
|
|
6763
6861
|
primary?: outputs.org.GatewaytemplateTunnelConfigsPrimary;
|
|
6764
6862
|
/**
|
|
6765
6863
|
* Only if `provider`== `custom-ipsec`
|
|
@@ -6790,10 +6888,6 @@ export declare namespace org {
|
|
|
6790
6888
|
enable?: boolean;
|
|
6791
6889
|
latlng?: outputs.org.GatewaytemplateTunnelConfigsAutoProvisionLatlng;
|
|
6792
6890
|
primary?: outputs.org.GatewaytemplateTunnelConfigsAutoProvisionPrimary;
|
|
6793
|
-
/**
|
|
6794
|
-
* enum: `APAC`, `Americas`, `EMEA`, `auto`
|
|
6795
|
-
*/
|
|
6796
|
-
region: string;
|
|
6797
6891
|
secondary?: outputs.org.GatewaytemplateTunnelConfigsAutoProvisionSecondary;
|
|
6798
6892
|
}
|
|
6799
6893
|
interface GatewaytemplateTunnelConfigsAutoProvisionLatlng {
|
|
@@ -7673,7 +7767,7 @@ export declare namespace org {
|
|
|
7673
7767
|
* enum: `allow`, `deny`
|
|
7674
7768
|
*/
|
|
7675
7769
|
action: string;
|
|
7676
|
-
dstTag
|
|
7770
|
+
dstTag: string;
|
|
7677
7771
|
}
|
|
7678
7772
|
interface NetworktemplateAclTags {
|
|
7679
7773
|
/**
|
|
@@ -7715,7 +7809,7 @@ export declare namespace org {
|
|
|
7715
7809
|
* - `type`==`resource` (optional. default is `any`)
|
|
7716
7810
|
* - `type`==`staticGbp` if from matching subnet
|
|
7717
7811
|
*/
|
|
7718
|
-
subnets
|
|
7812
|
+
subnets: string[];
|
|
7719
7813
|
/**
|
|
7720
7814
|
* enum: `any`, `dynamicGbp`, `mac`, `network`, `radiusGroup`, `resource`, `staticGbp`, `subnet`
|
|
7721
7815
|
*/
|
|
@@ -7890,6 +7984,10 @@ export declare namespace org {
|
|
|
7890
7984
|
* Only if `mode`!=`dynamic` and `enableMacAuth`==`true`
|
|
7891
7985
|
*/
|
|
7892
7986
|
macAuthOnly?: boolean;
|
|
7987
|
+
/**
|
|
7988
|
+
* Only if `mode`!=`dynamic` + `enableMacAuth`==`true` + `macAuthOnly`==`false`, dot1x will be given priority then mac_auth. Enable this to prefer macAuth over dot1x.
|
|
7989
|
+
*/
|
|
7990
|
+
macAuthPreferred?: boolean;
|
|
7893
7991
|
/**
|
|
7894
7992
|
* Only if `mode`!=`dynamic` and `enableMacAuth` ==`true`. This type is ignored if mistNac is enabled. enum: `eap-md5`, `eap-peap`, `pap`
|
|
7895
7993
|
*/
|
|
@@ -7930,10 +8028,6 @@ export declare namespace org {
|
|
|
7930
8028
|
* Only if `mode`!=`dynamic` and `portAuth`=`dot1x` reauthentication interval range
|
|
7931
8029
|
*/
|
|
7932
8030
|
reauthInterval: number;
|
|
7933
|
-
/**
|
|
7934
|
-
* Only if `mode`!=`dynamic` and `portAuth`==`dot1x` when radius server reject / fails
|
|
7935
|
-
*/
|
|
7936
|
-
rejectedNetwork?: string;
|
|
7937
8031
|
/**
|
|
7938
8032
|
* 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)
|
|
7939
8033
|
*/
|
|
@@ -7942,6 +8036,14 @@ export declare namespace org {
|
|
|
7942
8036
|
* Only if `mode`==`dynamic`
|
|
7943
8037
|
*/
|
|
7944
8038
|
rules?: outputs.org.NetworktemplatePortUsagesRule[];
|
|
8039
|
+
/**
|
|
8040
|
+
* Only if `mode`!=`dynamic` and `portAuth`==`dot1x` sets server fail fallback vlan
|
|
8041
|
+
*/
|
|
8042
|
+
serverFailNetwork?: string;
|
|
8043
|
+
/**
|
|
8044
|
+
* Only if `mode`!=`dynamic` and `portAuth`==`dot1x` when radius server reject / fails
|
|
8045
|
+
*/
|
|
8046
|
+
serverRejectNetwork?: string;
|
|
7945
8047
|
/**
|
|
7946
8048
|
* Only if `mode`!=`dynamic` speed, default is auto to automatically negotiate speed
|
|
7947
8049
|
*/
|
|
@@ -8069,6 +8171,10 @@ export declare namespace org {
|
|
|
8069
8171
|
* Auth port of RADIUS server
|
|
8070
8172
|
*/
|
|
8071
8173
|
port: number;
|
|
8174
|
+
/**
|
|
8175
|
+
* whether to require Message-Authenticator in requests
|
|
8176
|
+
*/
|
|
8177
|
+
requireMessageAuthenticator: boolean;
|
|
8072
8178
|
/**
|
|
8073
8179
|
* secret of RADIUS server
|
|
8074
8180
|
*/
|
|
@@ -8390,6 +8496,10 @@ export declare namespace org {
|
|
|
8390
8496
|
* **Note**: no check is done
|
|
8391
8497
|
*/
|
|
8392
8498
|
additionalConfigCmds?: string[];
|
|
8499
|
+
/**
|
|
8500
|
+
* In-Band Management interface configuration
|
|
8501
|
+
*/
|
|
8502
|
+
ipConfig?: outputs.org.NetworktemplateSwitchMatchingRuleIpConfig;
|
|
8393
8503
|
/**
|
|
8394
8504
|
* role to match
|
|
8395
8505
|
*/
|
|
@@ -8400,6 +8510,10 @@ export declare namespace org {
|
|
|
8400
8510
|
matchType?: string;
|
|
8401
8511
|
matchValue?: string;
|
|
8402
8512
|
name?: string;
|
|
8513
|
+
/**
|
|
8514
|
+
* Out-of-Band Management interface configuration
|
|
8515
|
+
*/
|
|
8516
|
+
oobIpConfig?: outputs.org.NetworktemplateSwitchMatchingRuleOobIpConfig;
|
|
8403
8517
|
/**
|
|
8404
8518
|
* Propery key is the interface name or interface range
|
|
8405
8519
|
*/
|
|
@@ -8414,6 +8528,30 @@ export declare namespace org {
|
|
|
8414
8528
|
[key: string]: outputs.org.NetworktemplateSwitchMatchingRulePortMirroring;
|
|
8415
8529
|
};
|
|
8416
8530
|
}
|
|
8531
|
+
interface NetworktemplateSwitchMatchingRuleIpConfig {
|
|
8532
|
+
/**
|
|
8533
|
+
* VLAN Name for the management interface
|
|
8534
|
+
*/
|
|
8535
|
+
network?: string;
|
|
8536
|
+
/**
|
|
8537
|
+
* enum: `dhcp`, `static`
|
|
8538
|
+
*/
|
|
8539
|
+
type: string;
|
|
8540
|
+
}
|
|
8541
|
+
interface NetworktemplateSwitchMatchingRuleOobIpConfig {
|
|
8542
|
+
/**
|
|
8543
|
+
* enum: `dhcp`, `static`
|
|
8544
|
+
*/
|
|
8545
|
+
type: string;
|
|
8546
|
+
/**
|
|
8547
|
+
* f supported on the platform. If enabled, DNS will be using this routing-instance, too
|
|
8548
|
+
*/
|
|
8549
|
+
useMgmtVrf: boolean;
|
|
8550
|
+
/**
|
|
8551
|
+
* for host-out traffic (NTP/TACPLUS/RADIUS/SYSLOG/SNMP), if alternative source network/ip is desired
|
|
8552
|
+
*/
|
|
8553
|
+
useMgmtVrfForHostOut: boolean;
|
|
8554
|
+
}
|
|
8417
8555
|
interface NetworktemplateSwitchMatchingRulePortConfig {
|
|
8418
8556
|
/**
|
|
8419
8557
|
* To disable LACP support for the AE interface
|
|
@@ -8509,6 +8647,7 @@ export declare namespace org {
|
|
|
8509
8647
|
* Enable to provide the FQDN with DHCP option 81
|
|
8510
8648
|
*/
|
|
8511
8649
|
dhcpOptionFqdn: boolean;
|
|
8650
|
+
disableOobDownAlarm?: boolean;
|
|
8512
8651
|
/**
|
|
8513
8652
|
* Property key is the user name. For Local user authentication
|
|
8514
8653
|
*/
|
|
@@ -8563,7 +8702,7 @@ export declare namespace org {
|
|
|
8563
8702
|
* enum: `any`, `icmp`, `tcp`, `udp`
|
|
8564
8703
|
*/
|
|
8565
8704
|
protocol: string;
|
|
8566
|
-
subnets
|
|
8705
|
+
subnets: string[];
|
|
8567
8706
|
}
|
|
8568
8707
|
interface NetworktemplateSwitchMgmtTacacs {
|
|
8569
8708
|
acctServers?: outputs.org.NetworktemplateSwitchMgmtTacacsAcctServer[];
|
|
@@ -9046,6 +9185,10 @@ export declare namespace org {
|
|
|
9046
9185
|
* use this IDP when no explicit realm present in the incoming username/CN OR when no IDP is explicitly mapped to the incoming realm.
|
|
9047
9186
|
*/
|
|
9048
9187
|
defaultIdpId?: string;
|
|
9188
|
+
/**
|
|
9189
|
+
* 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
|
|
9190
|
+
*/
|
|
9191
|
+
disableRsaeAlgorithms: boolean;
|
|
9049
9192
|
/**
|
|
9050
9193
|
* eap ssl security level
|
|
9051
9194
|
* see https://www.openssl.org/docs/man1.1.1/man3/SSL_CTX_set_security_level.html#DEFAULT-CALLBACK-BEHAVIOUR
|
|
@@ -9056,6 +9199,14 @@ export declare namespace org {
|
|
|
9056
9199
|
* 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
|
|
9057
9200
|
*/
|
|
9058
9201
|
euOnly: boolean;
|
|
9202
|
+
/**
|
|
9203
|
+
* allow customer to choose the EAP-TLS client certificate's field to use for IDP Machine Groups lookup
|
|
9204
|
+
*/
|
|
9205
|
+
idpMachineCertLookupField: string;
|
|
9206
|
+
/**
|
|
9207
|
+
* allow customer to choose the EAP-TLS client certificate's field to use for IDP User Groups lookup
|
|
9208
|
+
*/
|
|
9209
|
+
idpUserCertLookupField: string;
|
|
9059
9210
|
idps: outputs.org.SettingMistNacIdp[];
|
|
9060
9211
|
/**
|
|
9061
9212
|
* radius server cert to be presented in EAP TLS
|
|
@@ -9112,9 +9263,9 @@ export declare namespace org {
|
|
|
9112
9263
|
*/
|
|
9113
9264
|
enabled: boolean;
|
|
9114
9265
|
/**
|
|
9115
|
-
*
|
|
9266
|
+
* password expiry in days
|
|
9116
9267
|
*/
|
|
9117
|
-
|
|
9268
|
+
expiryInDays?: number;
|
|
9118
9269
|
/**
|
|
9119
9270
|
* required password length
|
|
9120
9271
|
*/
|
|
@@ -9135,6 +9286,15 @@ export declare namespace org {
|
|
|
9135
9286
|
*/
|
|
9136
9287
|
maxPktLen: number;
|
|
9137
9288
|
}
|
|
9289
|
+
interface SettingPortChannelization {
|
|
9290
|
+
/**
|
|
9291
|
+
* 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`)
|
|
9292
|
+
*/
|
|
9293
|
+
config?: {
|
|
9294
|
+
[key: string]: string;
|
|
9295
|
+
};
|
|
9296
|
+
enabled: boolean;
|
|
9297
|
+
}
|
|
9138
9298
|
interface SettingSecurity {
|
|
9139
9299
|
/**
|
|
9140
9300
|
* whether to disable local SSH (by default, local SSH is enabled with allowMist in Org is enabled
|
|
@@ -9962,6 +10122,10 @@ export declare namespace org {
|
|
|
9962
10122
|
locales?: {
|
|
9963
10123
|
[key: string]: outputs.org.WlanPortalTemplatePortalTemplateLocales;
|
|
9964
10124
|
};
|
|
10125
|
+
/**
|
|
10126
|
+
* 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).
|
|
10127
|
+
*/
|
|
10128
|
+
logo: string;
|
|
9965
10129
|
message: string;
|
|
9966
10130
|
multiAuth: boolean;
|
|
9967
10131
|
/**
|
|
@@ -10446,10 +10610,6 @@ export declare namespace org {
|
|
|
10446
10610
|
* text of the Terms of Service
|
|
10447
10611
|
*/
|
|
10448
10612
|
tosText?: string;
|
|
10449
|
-
/**
|
|
10450
|
-
* label for Amazon auth button
|
|
10451
|
-
*/
|
|
10452
|
-
uthButtonAmazon?: string;
|
|
10453
10613
|
}
|
|
10454
10614
|
interface WlanQos {
|
|
10455
10615
|
/**
|
|
@@ -10700,7 +10860,7 @@ export declare namespace site {
|
|
|
10700
10860
|
* enum: `allow`, `deny`
|
|
10701
10861
|
*/
|
|
10702
10862
|
action: string;
|
|
10703
|
-
dstTag
|
|
10863
|
+
dstTag: string;
|
|
10704
10864
|
}
|
|
10705
10865
|
interface NetworktemplateAclTags {
|
|
10706
10866
|
/**
|
|
@@ -10742,7 +10902,7 @@ export declare namespace site {
|
|
|
10742
10902
|
* - `type`==`resource` (optional. default is `any`)
|
|
10743
10903
|
* - `type`==`staticGbp` if from matching subnet
|
|
10744
10904
|
*/
|
|
10745
|
-
subnets
|
|
10905
|
+
subnets: string[];
|
|
10746
10906
|
/**
|
|
10747
10907
|
* enum: `any`, `dynamicGbp`, `mac`, `network`, `radiusGroup`, `resource`, `staticGbp`, `subnet`
|
|
10748
10908
|
*/
|
|
@@ -10917,6 +11077,10 @@ export declare namespace site {
|
|
|
10917
11077
|
* Only if `mode`!=`dynamic` and `enableMacAuth`==`true`
|
|
10918
11078
|
*/
|
|
10919
11079
|
macAuthOnly?: boolean;
|
|
11080
|
+
/**
|
|
11081
|
+
* Only if `mode`!=`dynamic` + `enableMacAuth`==`true` + `macAuthOnly`==`false`, dot1x will be given priority then mac_auth. Enable this to prefer macAuth over dot1x.
|
|
11082
|
+
*/
|
|
11083
|
+
macAuthPreferred?: boolean;
|
|
10920
11084
|
/**
|
|
10921
11085
|
* Only if `mode`!=`dynamic` and `enableMacAuth` ==`true`. This type is ignored if mistNac is enabled. enum: `eap-md5`, `eap-peap`, `pap`
|
|
10922
11086
|
*/
|
|
@@ -10957,10 +11121,6 @@ export declare namespace site {
|
|
|
10957
11121
|
* Only if `mode`!=`dynamic` and `portAuth`=`dot1x` reauthentication interval range
|
|
10958
11122
|
*/
|
|
10959
11123
|
reauthInterval: number;
|
|
10960
|
-
/**
|
|
10961
|
-
* Only if `mode`!=`dynamic` and `portAuth`==`dot1x` when radius server reject / fails
|
|
10962
|
-
*/
|
|
10963
|
-
rejectedNetwork?: string;
|
|
10964
11124
|
/**
|
|
10965
11125
|
* 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)
|
|
10966
11126
|
*/
|
|
@@ -10969,6 +11129,14 @@ export declare namespace site {
|
|
|
10969
11129
|
* Only if `mode`==`dynamic`
|
|
10970
11130
|
*/
|
|
10971
11131
|
rules?: outputs.site.NetworktemplatePortUsagesRule[];
|
|
11132
|
+
/**
|
|
11133
|
+
* Only if `mode`!=`dynamic` and `portAuth`==`dot1x` sets server fail fallback vlan
|
|
11134
|
+
*/
|
|
11135
|
+
serverFailNetwork?: string;
|
|
11136
|
+
/**
|
|
11137
|
+
* Only if `mode`!=`dynamic` and `portAuth`==`dot1x` when radius server reject / fails
|
|
11138
|
+
*/
|
|
11139
|
+
serverRejectNetwork?: string;
|
|
10972
11140
|
/**
|
|
10973
11141
|
* Only if `mode`!=`dynamic` speed, default is auto to automatically negotiate speed
|
|
10974
11142
|
*/
|
|
@@ -11096,6 +11264,10 @@ export declare namespace site {
|
|
|
11096
11264
|
* Auth port of RADIUS server
|
|
11097
11265
|
*/
|
|
11098
11266
|
port: number;
|
|
11267
|
+
/**
|
|
11268
|
+
* whether to require Message-Authenticator in requests
|
|
11269
|
+
*/
|
|
11270
|
+
requireMessageAuthenticator: boolean;
|
|
11099
11271
|
/**
|
|
11100
11272
|
* secret of RADIUS server
|
|
11101
11273
|
*/
|
|
@@ -11417,6 +11589,10 @@ export declare namespace site {
|
|
|
11417
11589
|
* **Note**: no check is done
|
|
11418
11590
|
*/
|
|
11419
11591
|
additionalConfigCmds?: string[];
|
|
11592
|
+
/**
|
|
11593
|
+
* In-Band Management interface configuration
|
|
11594
|
+
*/
|
|
11595
|
+
ipConfig?: outputs.site.NetworktemplateSwitchMatchingRuleIpConfig;
|
|
11420
11596
|
/**
|
|
11421
11597
|
* role to match
|
|
11422
11598
|
*/
|
|
@@ -11427,6 +11603,10 @@ export declare namespace site {
|
|
|
11427
11603
|
matchType?: string;
|
|
11428
11604
|
matchValue?: string;
|
|
11429
11605
|
name?: string;
|
|
11606
|
+
/**
|
|
11607
|
+
* Out-of-Band Management interface configuration
|
|
11608
|
+
*/
|
|
11609
|
+
oobIpConfig?: outputs.site.NetworktemplateSwitchMatchingRuleOobIpConfig;
|
|
11430
11610
|
/**
|
|
11431
11611
|
* Propery key is the interface name or interface range
|
|
11432
11612
|
*/
|
|
@@ -11441,6 +11621,30 @@ export declare namespace site {
|
|
|
11441
11621
|
[key: string]: outputs.site.NetworktemplateSwitchMatchingRulePortMirroring;
|
|
11442
11622
|
};
|
|
11443
11623
|
}
|
|
11624
|
+
interface NetworktemplateSwitchMatchingRuleIpConfig {
|
|
11625
|
+
/**
|
|
11626
|
+
* VLAN Name for the management interface
|
|
11627
|
+
*/
|
|
11628
|
+
network?: string;
|
|
11629
|
+
/**
|
|
11630
|
+
* enum: `dhcp`, `static`
|
|
11631
|
+
*/
|
|
11632
|
+
type: string;
|
|
11633
|
+
}
|
|
11634
|
+
interface NetworktemplateSwitchMatchingRuleOobIpConfig {
|
|
11635
|
+
/**
|
|
11636
|
+
* enum: `dhcp`, `static`
|
|
11637
|
+
*/
|
|
11638
|
+
type: string;
|
|
11639
|
+
/**
|
|
11640
|
+
* f supported on the platform. If enabled, DNS will be using this routing-instance, too
|
|
11641
|
+
*/
|
|
11642
|
+
useMgmtVrf: boolean;
|
|
11643
|
+
/**
|
|
11644
|
+
* for host-out traffic (NTP/TACPLUS/RADIUS/SYSLOG/SNMP), if alternative source network/ip is desired
|
|
11645
|
+
*/
|
|
11646
|
+
useMgmtVrfForHostOut: boolean;
|
|
11647
|
+
}
|
|
11444
11648
|
interface NetworktemplateSwitchMatchingRulePortConfig {
|
|
11445
11649
|
/**
|
|
11446
11650
|
* To disable LACP support for the AE interface
|
|
@@ -11536,6 +11740,7 @@ export declare namespace site {
|
|
|
11536
11740
|
* Enable to provide the FQDN with DHCP option 81
|
|
11537
11741
|
*/
|
|
11538
11742
|
dhcpOptionFqdn: boolean;
|
|
11743
|
+
disableOobDownAlarm?: boolean;
|
|
11539
11744
|
/**
|
|
11540
11745
|
* Property key is the user name. For Local user authentication
|
|
11541
11746
|
*/
|
|
@@ -11590,7 +11795,7 @@ export declare namespace site {
|
|
|
11590
11795
|
* enum: `any`, `icmp`, `tcp`, `udp`
|
|
11591
11796
|
*/
|
|
11592
11797
|
protocol: string;
|
|
11593
|
-
subnets
|
|
11798
|
+
subnets: string[];
|
|
11594
11799
|
}
|
|
11595
11800
|
interface NetworktemplateSwitchMgmtTacacs {
|
|
11596
11801
|
acctServers?: outputs.site.NetworktemplateSwitchMgmtTacacsAcctServer[];
|
|
@@ -11793,6 +11998,8 @@ export declare namespace site {
|
|
|
11793
11998
|
enabled: boolean;
|
|
11794
11999
|
/**
|
|
11795
12000
|
* hours of operation filter, the available days (mon, tue, wed, thu, fri, sat, sun).
|
|
12001
|
+
*
|
|
12002
|
+
* **Note**: If the dow is not defined then it\u2019\ s treated as 00:00-23:59.
|
|
11796
12003
|
*/
|
|
11797
12004
|
hours?: outputs.site.SettingConfigPushPolicyPushWindowHours;
|
|
11798
12005
|
}
|
|
@@ -11821,6 +12028,8 @@ export declare namespace site {
|
|
|
11821
12028
|
dwellTags?: outputs.site.SettingEngagementDwellTags;
|
|
11822
12029
|
/**
|
|
11823
12030
|
* hours of operation filter, the available days (mon, tue, wed, thu, fri, sat, sun).
|
|
12031
|
+
*
|
|
12032
|
+
* **Note**: If the dow is not defined then it\u2019\ s treated as 00:00-23:59.
|
|
11824
12033
|
*/
|
|
11825
12034
|
hours?: outputs.site.SettingEngagementHours;
|
|
11826
12035
|
/**
|
|
@@ -11893,25 +12102,22 @@ export declare namespace site {
|
|
|
11893
12102
|
enabled?: boolean;
|
|
11894
12103
|
}
|
|
11895
12104
|
interface SettingGatewayMgmtAppProbingCustomApp {
|
|
11896
|
-
/**
|
|
11897
|
-
* if `protocol`==`icmp`
|
|
11898
|
-
*/
|
|
11899
12105
|
address: string;
|
|
11900
12106
|
appType?: string;
|
|
11901
12107
|
/**
|
|
11902
|
-
*
|
|
12108
|
+
* Only 1 entry is allowed:
|
|
12109
|
+
* * if `protocol`==`http`: URL (e.g. `http://test.com` or `https://test.com`)
|
|
12110
|
+
* * if `protocol`==`icmp`: IP Address (e.g. `1.2.3.4`)
|
|
11903
12111
|
*/
|
|
11904
12112
|
hostnames: string[];
|
|
11905
|
-
|
|
12113
|
+
key: string;
|
|
12114
|
+
name: string;
|
|
11906
12115
|
network?: string;
|
|
11907
12116
|
/**
|
|
11908
12117
|
* enum: `http`, `icmp`
|
|
11909
12118
|
*/
|
|
11910
12119
|
protocol: string;
|
|
11911
|
-
|
|
11912
|
-
* if `protocol`==`http`
|
|
11913
|
-
*/
|
|
11914
|
-
url?: string;
|
|
12120
|
+
url: string;
|
|
11915
12121
|
vrf?: string;
|
|
11916
12122
|
}
|
|
11917
12123
|
interface SettingGatewayMgmtAutoSignatureUpdate {
|
|
@@ -12915,14 +13121,18 @@ export declare namespace site {
|
|
|
12915
13121
|
field4required?: boolean;
|
|
12916
13122
|
/**
|
|
12917
13123
|
* Can be used to localize the portal based on the User Agent. Allowed property key values are:
|
|
12918
|
-
*
|
|
12919
|
-
*
|
|
12920
|
-
*
|
|
12921
|
-
*
|
|
13124
|
+
* `ar`, `ca-ES`, `cs-CZ`, `da-DK`, `de-DE`, `el-GR`, `en-GB`, `en-US`, `es-ES`, `fi-FI`, `fr-FR`,
|
|
13125
|
+
* `he-IL`, `hi-IN`, `hr-HR`, `hu-HU`, `id-ID`, `it-IT`, `ja-J^`, `ko-KT`, `ms-MY`, `nb-NO`, `nl-NL`,
|
|
13126
|
+
* `pl-PL`, `pt-BR`, `pt-PT`, `ro-RO`, `ru-RU`, `sk-SK`, `sv-SE`, `th-TH`, `tr-TR`, `uk-UA`, `vi-VN`,
|
|
13127
|
+
* `zh-Hans`, `zh-Hant`
|
|
12922
13128
|
*/
|
|
12923
13129
|
locales?: {
|
|
12924
13130
|
[key: string]: outputs.site.WlanPortalTemplatePortalTemplateLocales;
|
|
12925
13131
|
};
|
|
13132
|
+
/**
|
|
13133
|
+
* path to the background image file. File must be a `png` image`
|
|
13134
|
+
*/
|
|
13135
|
+
logo: string;
|
|
12926
13136
|
message: string;
|
|
12927
13137
|
multiAuth: boolean;
|
|
12928
13138
|
/**
|
|
@@ -13407,10 +13617,6 @@ export declare namespace site {
|
|
|
13407
13617
|
* text of the Terms of Service
|
|
13408
13618
|
*/
|
|
13409
13619
|
tosText?: string;
|
|
13410
|
-
/**
|
|
13411
|
-
* label for Amazon auth button
|
|
13412
|
-
*/
|
|
13413
|
-
uthButtonAmazon?: string;
|
|
13414
13620
|
}
|
|
13415
13621
|
interface WlanQos {
|
|
13416
13622
|
/**
|