@pulumi/juniper-mist 0.0.16 → 0.0.18
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/index.d.ts +3 -0
- package/org/index.js +6 -1
- package/org/index.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 +66 -0
- package/org/wlanPortalImage.js +65 -0
- package/org/wlanPortalImage.js.map +1 -0
- package/org/wlanPortalTemplate.d.ts +3 -3
- package/package.json +2 -2
- package/site/index.d.ts +3 -0
- package/site/index.js +6 -1
- package/site/index.js.map +1 -1
- package/site/networktemplate.d.ts +2 -2
- package/site/networktemplate.js +3 -0
- package/site/networktemplate.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 +79 -0
- package/site/wlanPortalImage.js +78 -0
- package/site/wlanPortalImage.js.map +1 -0
- package/types/input.d.ts +168 -23
- package/types/output.d.ts +175 -30
package/types/output.d.ts
CHANGED
|
@@ -714,6 +714,9 @@ export declare namespace device {
|
|
|
714
714
|
mac: string;
|
|
715
715
|
}
|
|
716
716
|
interface GatewayDhcpdConfig {
|
|
717
|
+
/**
|
|
718
|
+
* Property key is the network name
|
|
719
|
+
*/
|
|
717
720
|
config?: {
|
|
718
721
|
[key: string]: outputs.device.GatewayDhcpdConfigConfig;
|
|
719
722
|
};
|
|
@@ -726,7 +729,7 @@ export declare namespace device {
|
|
|
726
729
|
/**
|
|
727
730
|
* if `type`==`local` - optional, if not defined, system one will be used
|
|
728
731
|
*/
|
|
729
|
-
dnsServers
|
|
732
|
+
dnsServers: string[];
|
|
730
733
|
/**
|
|
731
734
|
* if `type`==`local` - optional, if not defined, system one will be used
|
|
732
735
|
*/
|
|
@@ -1045,7 +1048,7 @@ export declare namespace device {
|
|
|
1045
1048
|
*/
|
|
1046
1049
|
useMgmtVrf: boolean;
|
|
1047
1050
|
/**
|
|
1048
|
-
* for host-out traffic (NTP/TACPLUS/RADIUS/SYSLOG/SNMP), if alternative source network/ip is desired
|
|
1051
|
+
* for host-out traffic (NTP/TACPLUS/RADIUS/SYSLOG/SNMP), if alternative source network/ip is desired
|
|
1049
1052
|
*/
|
|
1050
1053
|
useMgmtVrfForHostOut: boolean;
|
|
1051
1054
|
vlanId?: string;
|
|
@@ -1114,11 +1117,30 @@ export declare namespace device {
|
|
|
1114
1117
|
*/
|
|
1115
1118
|
type?: string;
|
|
1116
1119
|
/**
|
|
1117
|
-
*
|
|
1120
|
+
* optional if `type`==`vpn`
|
|
1118
1121
|
*/
|
|
1119
1122
|
wanName?: string;
|
|
1120
1123
|
}
|
|
1121
1124
|
interface GatewayPortConfig {
|
|
1125
|
+
/**
|
|
1126
|
+
* if `aggregated`==`true`. To disable LCP support for the AE interface
|
|
1127
|
+
*/
|
|
1128
|
+
aeDisableLacp: boolean;
|
|
1129
|
+
/**
|
|
1130
|
+
* if `aggregated`==`true`. Users could force to use the designated AE name (must be an integer between 0 and 127)
|
|
1131
|
+
*/
|
|
1132
|
+
aeIdx?: string;
|
|
1133
|
+
/**
|
|
1134
|
+
* For SRX Only, if `aggregated`==`true`.Sets the state of the interface as UP when the peer has limited LACP capability.\n
|
|
1135
|
+
* 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
|
|
1136
|
+
* Note: Turning this on will enable force-up on one of the interfaces in the bundle only
|
|
1137
|
+
*/
|
|
1138
|
+
aeLacpForceUp: boolean;
|
|
1139
|
+
aggregated: boolean;
|
|
1140
|
+
/**
|
|
1141
|
+
* if want to generate port up/down alarm, set it to true
|
|
1142
|
+
*/
|
|
1143
|
+
critical: boolean;
|
|
1122
1144
|
description?: string;
|
|
1123
1145
|
disableAutoneg: boolean;
|
|
1124
1146
|
/**
|
|
@@ -1504,6 +1526,10 @@ export declare namespace device {
|
|
|
1504
1526
|
* enum: `active-active`, `active-standby`
|
|
1505
1527
|
*/
|
|
1506
1528
|
mode: string;
|
|
1529
|
+
/**
|
|
1530
|
+
* networks reachable via this tunnel
|
|
1531
|
+
*/
|
|
1532
|
+
networks?: string[];
|
|
1507
1533
|
primary?: outputs.device.GatewayTunnelConfigsPrimary;
|
|
1508
1534
|
/**
|
|
1509
1535
|
* Only if `provider`== `custom-ipsec`
|
|
@@ -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
|
};
|
|
@@ -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
|
}
|
|
@@ -4888,6 +4917,9 @@ export declare namespace org {
|
|
|
4888
4917
|
neighborAs?: number;
|
|
4889
4918
|
}
|
|
4890
4919
|
interface DeviceprofileGatewayDhcpdConfig {
|
|
4920
|
+
/**
|
|
4921
|
+
* Property key is the network name
|
|
4922
|
+
*/
|
|
4891
4923
|
config?: {
|
|
4892
4924
|
[key: string]: outputs.org.DeviceprofileGatewayDhcpdConfigConfig;
|
|
4893
4925
|
};
|
|
@@ -4900,7 +4932,7 @@ export declare namespace org {
|
|
|
4900
4932
|
/**
|
|
4901
4933
|
* if `type`==`local` - optional, if not defined, system one will be used
|
|
4902
4934
|
*/
|
|
4903
|
-
dnsServers
|
|
4935
|
+
dnsServers: string[];
|
|
4904
4936
|
/**
|
|
4905
4937
|
* if `type`==`local` - optional, if not defined, system one will be used
|
|
4906
4938
|
*/
|
|
@@ -5212,7 +5244,7 @@ export declare namespace org {
|
|
|
5212
5244
|
*/
|
|
5213
5245
|
useMgmtVrf: boolean;
|
|
5214
5246
|
/**
|
|
5215
|
-
* for host-out traffic (NTP/TACPLUS/RADIUS/SYSLOG/SNMP), if alternative source network/ip is desired
|
|
5247
|
+
* for host-out traffic (NTP/TACPLUS/RADIUS/SYSLOG/SNMP), if alternative source network/ip is desired
|
|
5216
5248
|
*/
|
|
5217
5249
|
useMgmtVrfForHostOut: boolean;
|
|
5218
5250
|
vlanId?: string;
|
|
@@ -5281,11 +5313,30 @@ export declare namespace org {
|
|
|
5281
5313
|
*/
|
|
5282
5314
|
type?: string;
|
|
5283
5315
|
/**
|
|
5284
|
-
*
|
|
5316
|
+
* optional if `type`==`vpn`
|
|
5285
5317
|
*/
|
|
5286
5318
|
wanName?: string;
|
|
5287
5319
|
}
|
|
5288
5320
|
interface DeviceprofileGatewayPortConfig {
|
|
5321
|
+
/**
|
|
5322
|
+
* if `aggregated`==`true`. To disable LCP support for the AE interface
|
|
5323
|
+
*/
|
|
5324
|
+
aeDisableLacp: boolean;
|
|
5325
|
+
/**
|
|
5326
|
+
* if `aggregated`==`true`. Users could force to use the designated AE name (must be an integer between 0 and 127)
|
|
5327
|
+
*/
|
|
5328
|
+
aeIdx?: string;
|
|
5329
|
+
/**
|
|
5330
|
+
* For SRX Only, if `aggregated`==`true`.Sets the state of the interface as UP when the peer has limited LACP capability.\n
|
|
5331
|
+
* 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
|
|
5332
|
+
* Note: Turning this on will enable force-up on one of the interfaces in the bundle only
|
|
5333
|
+
*/
|
|
5334
|
+
aeLacpForceUp: boolean;
|
|
5335
|
+
aggregated: boolean;
|
|
5336
|
+
/**
|
|
5337
|
+
* if want to generate port up/down alarm, set it to true
|
|
5338
|
+
*/
|
|
5339
|
+
critical: boolean;
|
|
5289
5340
|
description?: string;
|
|
5290
5341
|
disableAutoneg: boolean;
|
|
5291
5342
|
/**
|
|
@@ -5661,6 +5712,10 @@ export declare namespace org {
|
|
|
5661
5712
|
* enum: `active-active`, `active-standby`
|
|
5662
5713
|
*/
|
|
5663
5714
|
mode: string;
|
|
5715
|
+
/**
|
|
5716
|
+
* networks reachable via this tunnel
|
|
5717
|
+
*/
|
|
5718
|
+
networks?: string[];
|
|
5664
5719
|
primary?: outputs.org.DeviceprofileGatewayTunnelConfigsPrimary;
|
|
5665
5720
|
/**
|
|
5666
5721
|
* Only if `provider`== `custom-ipsec`
|
|
@@ -5987,6 +6042,9 @@ export declare namespace org {
|
|
|
5987
6042
|
neighborAs?: number;
|
|
5988
6043
|
}
|
|
5989
6044
|
interface GatewaytemplateDhcpdConfig {
|
|
6045
|
+
/**
|
|
6046
|
+
* Property key is the network name
|
|
6047
|
+
*/
|
|
5990
6048
|
config?: {
|
|
5991
6049
|
[key: string]: outputs.org.GatewaytemplateDhcpdConfigConfig;
|
|
5992
6050
|
};
|
|
@@ -5999,7 +6057,7 @@ export declare namespace org {
|
|
|
5999
6057
|
/**
|
|
6000
6058
|
* if `type`==`local` - optional, if not defined, system one will be used
|
|
6001
6059
|
*/
|
|
6002
|
-
dnsServers
|
|
6060
|
+
dnsServers: string[];
|
|
6003
6061
|
/**
|
|
6004
6062
|
* if `type`==`local` - optional, if not defined, system one will be used
|
|
6005
6063
|
*/
|
|
@@ -6311,7 +6369,7 @@ export declare namespace org {
|
|
|
6311
6369
|
*/
|
|
6312
6370
|
useMgmtVrf: boolean;
|
|
6313
6371
|
/**
|
|
6314
|
-
* for host-out traffic (NTP/TACPLUS/RADIUS/SYSLOG/SNMP), if alternative source network/ip is desired
|
|
6372
|
+
* for host-out traffic (NTP/TACPLUS/RADIUS/SYSLOG/SNMP), if alternative source network/ip is desired
|
|
6315
6373
|
*/
|
|
6316
6374
|
useMgmtVrfForHostOut: boolean;
|
|
6317
6375
|
vlanId?: string;
|
|
@@ -6380,11 +6438,30 @@ export declare namespace org {
|
|
|
6380
6438
|
*/
|
|
6381
6439
|
type?: string;
|
|
6382
6440
|
/**
|
|
6383
|
-
*
|
|
6441
|
+
* optional if `type`==`vpn`
|
|
6384
6442
|
*/
|
|
6385
6443
|
wanName?: string;
|
|
6386
6444
|
}
|
|
6387
6445
|
interface GatewaytemplatePortConfig {
|
|
6446
|
+
/**
|
|
6447
|
+
* if `aggregated`==`true`. To disable LCP support for the AE interface
|
|
6448
|
+
*/
|
|
6449
|
+
aeDisableLacp: boolean;
|
|
6450
|
+
/**
|
|
6451
|
+
* if `aggregated`==`true`. Users could force to use the designated AE name (must be an integer between 0 and 127)
|
|
6452
|
+
*/
|
|
6453
|
+
aeIdx?: string;
|
|
6454
|
+
/**
|
|
6455
|
+
* For SRX Only, if `aggregated`==`true`.Sets the state of the interface as UP when the peer has limited LACP capability.\n
|
|
6456
|
+
* 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
|
|
6457
|
+
* Note: Turning this on will enable force-up on one of the interfaces in the bundle only
|
|
6458
|
+
*/
|
|
6459
|
+
aeLacpForceUp: boolean;
|
|
6460
|
+
aggregated: boolean;
|
|
6461
|
+
/**
|
|
6462
|
+
* if want to generate port up/down alarm, set it to true
|
|
6463
|
+
*/
|
|
6464
|
+
critical: boolean;
|
|
6388
6465
|
description?: string;
|
|
6389
6466
|
disableAutoneg: boolean;
|
|
6390
6467
|
/**
|
|
@@ -6760,6 +6837,10 @@ export declare namespace org {
|
|
|
6760
6837
|
* enum: `active-active`, `active-standby`
|
|
6761
6838
|
*/
|
|
6762
6839
|
mode: string;
|
|
6840
|
+
/**
|
|
6841
|
+
* networks reachable via this tunnel
|
|
6842
|
+
*/
|
|
6843
|
+
networks?: string[];
|
|
6763
6844
|
primary?: outputs.org.GatewaytemplateTunnelConfigsPrimary;
|
|
6764
6845
|
/**
|
|
6765
6846
|
* Only if `provider`== `custom-ipsec`
|
|
@@ -7673,7 +7754,7 @@ export declare namespace org {
|
|
|
7673
7754
|
* enum: `allow`, `deny`
|
|
7674
7755
|
*/
|
|
7675
7756
|
action: string;
|
|
7676
|
-
dstTag
|
|
7757
|
+
dstTag: string;
|
|
7677
7758
|
}
|
|
7678
7759
|
interface NetworktemplateAclTags {
|
|
7679
7760
|
/**
|
|
@@ -7715,7 +7796,7 @@ export declare namespace org {
|
|
|
7715
7796
|
* - `type`==`resource` (optional. default is `any`)
|
|
7716
7797
|
* - `type`==`staticGbp` if from matching subnet
|
|
7717
7798
|
*/
|
|
7718
|
-
subnets
|
|
7799
|
+
subnets: string[];
|
|
7719
7800
|
/**
|
|
7720
7801
|
* enum: `any`, `dynamicGbp`, `mac`, `network`, `radiusGroup`, `resource`, `staticGbp`, `subnet`
|
|
7721
7802
|
*/
|
|
@@ -8390,6 +8471,10 @@ export declare namespace org {
|
|
|
8390
8471
|
* **Note**: no check is done
|
|
8391
8472
|
*/
|
|
8392
8473
|
additionalConfigCmds?: string[];
|
|
8474
|
+
/**
|
|
8475
|
+
* In-Band Management interface configuration
|
|
8476
|
+
*/
|
|
8477
|
+
ipConfig?: outputs.org.NetworktemplateSwitchMatchingRuleIpConfig;
|
|
8393
8478
|
/**
|
|
8394
8479
|
* role to match
|
|
8395
8480
|
*/
|
|
@@ -8400,6 +8485,10 @@ export declare namespace org {
|
|
|
8400
8485
|
matchType?: string;
|
|
8401
8486
|
matchValue?: string;
|
|
8402
8487
|
name?: string;
|
|
8488
|
+
/**
|
|
8489
|
+
* Out-of-Band Management interface configuration
|
|
8490
|
+
*/
|
|
8491
|
+
oobIpConfig?: outputs.org.NetworktemplateSwitchMatchingRuleOobIpConfig;
|
|
8403
8492
|
/**
|
|
8404
8493
|
* Propery key is the interface name or interface range
|
|
8405
8494
|
*/
|
|
@@ -8414,6 +8503,30 @@ export declare namespace org {
|
|
|
8414
8503
|
[key: string]: outputs.org.NetworktemplateSwitchMatchingRulePortMirroring;
|
|
8415
8504
|
};
|
|
8416
8505
|
}
|
|
8506
|
+
interface NetworktemplateSwitchMatchingRuleIpConfig {
|
|
8507
|
+
/**
|
|
8508
|
+
* VLAN Name for the management interface
|
|
8509
|
+
*/
|
|
8510
|
+
network?: string;
|
|
8511
|
+
/**
|
|
8512
|
+
* enum: `dhcp`, `static`
|
|
8513
|
+
*/
|
|
8514
|
+
type: string;
|
|
8515
|
+
}
|
|
8516
|
+
interface NetworktemplateSwitchMatchingRuleOobIpConfig {
|
|
8517
|
+
/**
|
|
8518
|
+
* enum: `dhcp`, `static`
|
|
8519
|
+
*/
|
|
8520
|
+
type: string;
|
|
8521
|
+
/**
|
|
8522
|
+
* f supported on the platform. If enabled, DNS will be using this routing-instance, too
|
|
8523
|
+
*/
|
|
8524
|
+
useMgmtVrf: boolean;
|
|
8525
|
+
/**
|
|
8526
|
+
* for host-out traffic (NTP/TACPLUS/RADIUS/SYSLOG/SNMP), if alternative source network/ip is desired
|
|
8527
|
+
*/
|
|
8528
|
+
useMgmtVrfForHostOut: boolean;
|
|
8529
|
+
}
|
|
8417
8530
|
interface NetworktemplateSwitchMatchingRulePortConfig {
|
|
8418
8531
|
/**
|
|
8419
8532
|
* To disable LACP support for the AE interface
|
|
@@ -8563,7 +8676,7 @@ export declare namespace org {
|
|
|
8563
8676
|
* enum: `any`, `icmp`, `tcp`, `udp`
|
|
8564
8677
|
*/
|
|
8565
8678
|
protocol: string;
|
|
8566
|
-
subnets
|
|
8679
|
+
subnets: string[];
|
|
8567
8680
|
}
|
|
8568
8681
|
interface NetworktemplateSwitchMgmtTacacs {
|
|
8569
8682
|
acctServers?: outputs.org.NetworktemplateSwitchMgmtTacacsAcctServer[];
|
|
@@ -9962,6 +10075,10 @@ export declare namespace org {
|
|
|
9962
10075
|
locales?: {
|
|
9963
10076
|
[key: string]: outputs.org.WlanPortalTemplatePortalTemplateLocales;
|
|
9964
10077
|
};
|
|
10078
|
+
/**
|
|
10079
|
+
* 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).
|
|
10080
|
+
*/
|
|
10081
|
+
logo: string;
|
|
9965
10082
|
message: string;
|
|
9966
10083
|
multiAuth: boolean;
|
|
9967
10084
|
/**
|
|
@@ -10446,10 +10563,6 @@ export declare namespace org {
|
|
|
10446
10563
|
* text of the Terms of Service
|
|
10447
10564
|
*/
|
|
10448
10565
|
tosText?: string;
|
|
10449
|
-
/**
|
|
10450
|
-
* label for Amazon auth button
|
|
10451
|
-
*/
|
|
10452
|
-
uthButtonAmazon?: string;
|
|
10453
10566
|
}
|
|
10454
10567
|
interface WlanQos {
|
|
10455
10568
|
/**
|
|
@@ -10700,7 +10813,7 @@ export declare namespace site {
|
|
|
10700
10813
|
* enum: `allow`, `deny`
|
|
10701
10814
|
*/
|
|
10702
10815
|
action: string;
|
|
10703
|
-
dstTag
|
|
10816
|
+
dstTag: string;
|
|
10704
10817
|
}
|
|
10705
10818
|
interface NetworktemplateAclTags {
|
|
10706
10819
|
/**
|
|
@@ -10742,7 +10855,7 @@ export declare namespace site {
|
|
|
10742
10855
|
* - `type`==`resource` (optional. default is `any`)
|
|
10743
10856
|
* - `type`==`staticGbp` if from matching subnet
|
|
10744
10857
|
*/
|
|
10745
|
-
subnets
|
|
10858
|
+
subnets: string[];
|
|
10746
10859
|
/**
|
|
10747
10860
|
* enum: `any`, `dynamicGbp`, `mac`, `network`, `radiusGroup`, `resource`, `staticGbp`, `subnet`
|
|
10748
10861
|
*/
|
|
@@ -11417,6 +11530,10 @@ export declare namespace site {
|
|
|
11417
11530
|
* **Note**: no check is done
|
|
11418
11531
|
*/
|
|
11419
11532
|
additionalConfigCmds?: string[];
|
|
11533
|
+
/**
|
|
11534
|
+
* In-Band Management interface configuration
|
|
11535
|
+
*/
|
|
11536
|
+
ipConfig?: outputs.site.NetworktemplateSwitchMatchingRuleIpConfig;
|
|
11420
11537
|
/**
|
|
11421
11538
|
* role to match
|
|
11422
11539
|
*/
|
|
@@ -11427,6 +11544,10 @@ export declare namespace site {
|
|
|
11427
11544
|
matchType?: string;
|
|
11428
11545
|
matchValue?: string;
|
|
11429
11546
|
name?: string;
|
|
11547
|
+
/**
|
|
11548
|
+
* Out-of-Band Management interface configuration
|
|
11549
|
+
*/
|
|
11550
|
+
oobIpConfig?: outputs.site.NetworktemplateSwitchMatchingRuleOobIpConfig;
|
|
11430
11551
|
/**
|
|
11431
11552
|
* Propery key is the interface name or interface range
|
|
11432
11553
|
*/
|
|
@@ -11441,6 +11562,30 @@ export declare namespace site {
|
|
|
11441
11562
|
[key: string]: outputs.site.NetworktemplateSwitchMatchingRulePortMirroring;
|
|
11442
11563
|
};
|
|
11443
11564
|
}
|
|
11565
|
+
interface NetworktemplateSwitchMatchingRuleIpConfig {
|
|
11566
|
+
/**
|
|
11567
|
+
* VLAN Name for the management interface
|
|
11568
|
+
*/
|
|
11569
|
+
network?: string;
|
|
11570
|
+
/**
|
|
11571
|
+
* enum: `dhcp`, `static`
|
|
11572
|
+
*/
|
|
11573
|
+
type: string;
|
|
11574
|
+
}
|
|
11575
|
+
interface NetworktemplateSwitchMatchingRuleOobIpConfig {
|
|
11576
|
+
/**
|
|
11577
|
+
* enum: `dhcp`, `static`
|
|
11578
|
+
*/
|
|
11579
|
+
type: string;
|
|
11580
|
+
/**
|
|
11581
|
+
* f supported on the platform. If enabled, DNS will be using this routing-instance, too
|
|
11582
|
+
*/
|
|
11583
|
+
useMgmtVrf: boolean;
|
|
11584
|
+
/**
|
|
11585
|
+
* for host-out traffic (NTP/TACPLUS/RADIUS/SYSLOG/SNMP), if alternative source network/ip is desired
|
|
11586
|
+
*/
|
|
11587
|
+
useMgmtVrfForHostOut: boolean;
|
|
11588
|
+
}
|
|
11444
11589
|
interface NetworktemplateSwitchMatchingRulePortConfig {
|
|
11445
11590
|
/**
|
|
11446
11591
|
* To disable LACP support for the AE interface
|
|
@@ -11905,7 +12050,7 @@ export declare namespace site {
|
|
|
11905
12050
|
name?: string;
|
|
11906
12051
|
network?: string;
|
|
11907
12052
|
/**
|
|
11908
|
-
* enum: `http`, `
|
|
12053
|
+
* enum: `http`, `icmp`
|
|
11909
12054
|
*/
|
|
11910
12055
|
protocol: string;
|
|
11911
12056
|
/**
|
|
@@ -12915,14 +13060,18 @@ export declare namespace site {
|
|
|
12915
13060
|
field4required?: boolean;
|
|
12916
13061
|
/**
|
|
12917
13062
|
* Can be used to localize the portal based on the User Agent. Allowed property key values are:
|
|
12918
|
-
*
|
|
12919
|
-
*
|
|
12920
|
-
*
|
|
12921
|
-
*
|
|
13063
|
+
* `ar`, `ca-ES`, `cs-CZ`, `da-DK`, `de-DE`, `el-GR`, `en-GB`, `en-US`, `es-ES`, `fi-FI`, `fr-FR`,
|
|
13064
|
+
* `he-IL`, `hi-IN`, `hr-HR`, `hu-HU`, `id-ID`, `it-IT`, `ja-J^`, `ko-KT`, `ms-MY`, `nb-NO`, `nl-NL`,
|
|
13065
|
+
* `pl-PL`, `pt-BR`, `pt-PT`, `ro-RO`, `ru-RU`, `sk-SK`, `sv-SE`, `th-TH`, `tr-TR`, `uk-UA`, `vi-VN`,
|
|
13066
|
+
* `zh-Hans`, `zh-Hant`
|
|
12922
13067
|
*/
|
|
12923
13068
|
locales?: {
|
|
12924
13069
|
[key: string]: outputs.site.WlanPortalTemplatePortalTemplateLocales;
|
|
12925
13070
|
};
|
|
13071
|
+
/**
|
|
13072
|
+
* path to the background image file. File must be a `png` image`
|
|
13073
|
+
*/
|
|
13074
|
+
logo: string;
|
|
12926
13075
|
message: string;
|
|
12927
13076
|
multiAuth: boolean;
|
|
12928
13077
|
/**
|
|
@@ -13407,10 +13556,6 @@ export declare namespace site {
|
|
|
13407
13556
|
* text of the Terms of Service
|
|
13408
13557
|
*/
|
|
13409
13558
|
tosText?: string;
|
|
13410
|
-
/**
|
|
13411
|
-
* label for Amazon auth button
|
|
13412
|
-
*/
|
|
13413
|
-
uthButtonAmazon?: string;
|
|
13414
13559
|
}
|
|
13415
13560
|
interface WlanQos {
|
|
13416
13561
|
/**
|