@pulumi/juniper-mist 0.9.0 → 0.10.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/device/ap.d.ts +12 -0
- package/device/ap.d.ts.map +1 -1
- package/device/ap.js +2 -0
- package/device/ap.js.map +1 -1
- package/device/gateway.d.ts +3 -3
- package/device/switch.d.ts +3 -3
- package/org/deviceprofileAp.d.ts +12 -0
- package/org/deviceprofileAp.d.ts.map +1 -1
- package/org/deviceprofileAp.js +2 -0
- package/org/deviceprofileAp.js.map +1 -1
- package/org/gatewaytemplate.d.ts +12 -0
- package/org/gatewaytemplate.d.ts.map +1 -1
- package/org/gatewaytemplate.js +2 -0
- package/org/gatewaytemplate.js.map +1 -1
- package/org/mxcluster.d.ts +0 -178
- package/org/mxcluster.d.ts.map +1 -1
- package/org/mxcluster.js +0 -178
- package/org/mxcluster.js.map +1 -1
- package/org/mxedge.d.ts +1 -9
- package/org/mxedge.d.ts.map +1 -1
- package/org/mxedge.js +0 -2
- package/org/mxedge.js.map +1 -1
- package/org/nacidp.d.ts.map +1 -1
- package/org/nacidp.js +5 -3
- package/org/nacidp.js.map +1 -1
- package/org/networktemplate.d.ts +3 -3
- package/org/psk.d.ts +12 -0
- package/org/psk.d.ts.map +1 -1
- package/org/psk.js +2 -0
- package/org/psk.js.map +1 -1
- package/org/webhook.d.ts +3 -3
- package/org/wlan.d.ts +8 -4
- package/org/wlan.d.ts.map +1 -1
- package/org/wlan.js +1 -1
- package/org/wlan.js.map +1 -1
- package/package.json +2 -2
- package/site/networktemplate.d.ts +8 -4
- package/site/networktemplate.d.ts.map +1 -1
- package/site/networktemplate.js +1 -1
- package/site/networktemplate.js.map +1 -1
- package/site/psk.d.ts +12 -0
- package/site/psk.d.ts.map +1 -1
- package/site/psk.js +2 -0
- package/site/psk.js.map +1 -1
- package/site/setting.d.ts +69 -15
- package/site/setting.d.ts.map +1 -1
- package/site/setting.js +10 -2
- package/site/setting.js.map +1 -1
- package/site/webhook.d.ts +3 -3
- package/site/wlan.d.ts +8 -4
- package/site/wlan.d.ts.map +1 -1
- package/site/wlan.js +1 -1
- package/site/wlan.js.map +1 -1
- package/types/input.d.ts +462 -30
- package/types/input.d.ts.map +1 -1
- package/types/output.d.ts +475 -43
- package/types/output.d.ts.map +1 -1
package/types/input.d.ts
CHANGED
|
@@ -260,6 +260,10 @@ export declare namespace device {
|
|
|
260
260
|
* enum: `base`, `remote`
|
|
261
261
|
*/
|
|
262
262
|
role?: pulumi.Input<string | undefined>;
|
|
263
|
+
/**
|
|
264
|
+
* Whether to use WPA3 on the 5 GHz band for mesh links
|
|
265
|
+
*/
|
|
266
|
+
useWpa3On5?: pulumi.Input<boolean | undefined>;
|
|
263
267
|
}
|
|
264
268
|
interface ApPortConfig {
|
|
265
269
|
disabled?: pulumi.Input<boolean | undefined>;
|
|
@@ -769,6 +773,28 @@ export declare namespace device {
|
|
|
769
773
|
*/
|
|
770
774
|
vlanId?: pulumi.Input<number | undefined>;
|
|
771
775
|
}
|
|
776
|
+
interface ApZigbeeConfig {
|
|
777
|
+
/**
|
|
778
|
+
* Controls whether new Zigbee devices are allowed to join the network. enum: `always`, `manual`
|
|
779
|
+
*/
|
|
780
|
+
allowJoin?: pulumi.Input<string | undefined>;
|
|
781
|
+
/**
|
|
782
|
+
* Zigbee channel (2.4 GHz). `0` means auto; valid fixed values are 11–26
|
|
783
|
+
*/
|
|
784
|
+
channel?: pulumi.Input<number | undefined>;
|
|
785
|
+
/**
|
|
786
|
+
* Whether to enable Zigbee on this AP
|
|
787
|
+
*/
|
|
788
|
+
enabled?: pulumi.Input<boolean | undefined>;
|
|
789
|
+
/**
|
|
790
|
+
* Extended PAN ID in hex string format; only applicable when `panId` is also specified
|
|
791
|
+
*/
|
|
792
|
+
extendedPanId?: pulumi.Input<string | undefined>;
|
|
793
|
+
/**
|
|
794
|
+
* PAN ID in hex string format; if not specified, assigned automatically
|
|
795
|
+
*/
|
|
796
|
+
panId?: pulumi.Input<string | undefined>;
|
|
797
|
+
}
|
|
772
798
|
interface BaseLatlng {
|
|
773
799
|
lat: pulumi.Input<number>;
|
|
774
800
|
lng: pulumi.Input<number>;
|
|
@@ -877,6 +903,10 @@ export declare namespace device {
|
|
|
877
903
|
* Neighbor AS. Value must be in range 1-4294967295 or a variable (e.g. `{{as_variable}}`)
|
|
878
904
|
*/
|
|
879
905
|
neighborAs: pulumi.Input<string>;
|
|
906
|
+
/**
|
|
907
|
+
* If `via`==`tunnel`, specifies which tunnel (primary/secondary) this neighbor is associated with. enum: `primary`, `secondary`
|
|
908
|
+
*/
|
|
909
|
+
tunnelVia?: pulumi.Input<string | undefined>;
|
|
880
910
|
}
|
|
881
911
|
interface GatewayClusterNode {
|
|
882
912
|
/**
|
|
@@ -999,10 +1029,125 @@ export declare namespace device {
|
|
|
999
1029
|
via: pulumi.Input<string>;
|
|
1000
1030
|
}
|
|
1001
1031
|
interface GatewayGatewayMgmt {
|
|
1032
|
+
/**
|
|
1033
|
+
* For SSR only, as direct root access is not allowed
|
|
1034
|
+
*/
|
|
1035
|
+
adminSshkeys?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
1036
|
+
appProbing?: pulumi.Input<inputs.device.GatewayGatewayMgmtAppProbing | undefined>;
|
|
1037
|
+
/**
|
|
1038
|
+
* Consumes uplink bandwidth, requires WA license
|
|
1039
|
+
*/
|
|
1040
|
+
appUsage?: pulumi.Input<boolean | undefined>;
|
|
1041
|
+
autoSignatureUpdate?: pulumi.Input<inputs.device.GatewayGatewayMgmtAutoSignatureUpdate | undefined>;
|
|
1002
1042
|
/**
|
|
1003
1043
|
* Rollback timer for commit confirmed
|
|
1004
1044
|
*/
|
|
1005
1045
|
configRevertTimer?: pulumi.Input<number | undefined>;
|
|
1046
|
+
/**
|
|
1047
|
+
* For SSR and SRX, disable console port
|
|
1048
|
+
*/
|
|
1049
|
+
disableConsole?: pulumi.Input<boolean | undefined>;
|
|
1050
|
+
/**
|
|
1051
|
+
* For SSR and SRX, disable management interface
|
|
1052
|
+
*/
|
|
1053
|
+
disableOob?: pulumi.Input<boolean | undefined>;
|
|
1054
|
+
/**
|
|
1055
|
+
* For SSR and SRX, disable usb interface
|
|
1056
|
+
*/
|
|
1057
|
+
disableUsb?: pulumi.Input<boolean | undefined>;
|
|
1058
|
+
fipsEnabled?: pulumi.Input<boolean | undefined>;
|
|
1059
|
+
probeHosts?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
1060
|
+
probeHostsv6s?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
1061
|
+
/**
|
|
1062
|
+
* Restrict inbound-traffic to host
|
|
1063
|
+
* when enabled, all traffic that is not essential to our operation will be dropped
|
|
1064
|
+
* e.g. ntp / dns / traffic to mist will be allowed by default, if dhcpd is enabled, we'll make sure it works
|
|
1065
|
+
*/
|
|
1066
|
+
protectRe?: pulumi.Input<inputs.device.GatewayGatewayMgmtProtectRe | undefined>;
|
|
1067
|
+
/**
|
|
1068
|
+
* SRX only
|
|
1069
|
+
*/
|
|
1070
|
+
rootPassword?: pulumi.Input<string | undefined>;
|
|
1071
|
+
securityLogSourceAddress?: pulumi.Input<string | undefined>;
|
|
1072
|
+
securityLogSourceInterface?: pulumi.Input<string | undefined>;
|
|
1073
|
+
}
|
|
1074
|
+
interface GatewayGatewayMgmtAppProbing {
|
|
1075
|
+
/**
|
|
1076
|
+
* APp-keys from List Applications
|
|
1077
|
+
*/
|
|
1078
|
+
apps?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
1079
|
+
customApps?: pulumi.Input<pulumi.Input<inputs.device.GatewayGatewayMgmtAppProbingCustomApp>[] | undefined>;
|
|
1080
|
+
enabled?: pulumi.Input<boolean | undefined>;
|
|
1081
|
+
}
|
|
1082
|
+
interface GatewayGatewayMgmtAppProbingCustomApp {
|
|
1083
|
+
/**
|
|
1084
|
+
* Required if `protocol`==`icmp`
|
|
1085
|
+
*/
|
|
1086
|
+
address?: pulumi.Input<string | undefined>;
|
|
1087
|
+
appType?: pulumi.Input<string | undefined>;
|
|
1088
|
+
/**
|
|
1089
|
+
* If `protocol`==`http`
|
|
1090
|
+
*/
|
|
1091
|
+
hostnames?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
1092
|
+
key?: pulumi.Input<string | undefined>;
|
|
1093
|
+
name?: pulumi.Input<string | undefined>;
|
|
1094
|
+
network?: pulumi.Input<string | undefined>;
|
|
1095
|
+
/**
|
|
1096
|
+
* If `protocol`==`icmp`
|
|
1097
|
+
*/
|
|
1098
|
+
packetSize?: pulumi.Input<number | undefined>;
|
|
1099
|
+
/**
|
|
1100
|
+
* enum: `http`, `icmp`
|
|
1101
|
+
*/
|
|
1102
|
+
protocol?: pulumi.Input<string | undefined>;
|
|
1103
|
+
/**
|
|
1104
|
+
* If `protocol`==`http`
|
|
1105
|
+
*/
|
|
1106
|
+
url?: pulumi.Input<string | undefined>;
|
|
1107
|
+
vrf?: pulumi.Input<string | undefined>;
|
|
1108
|
+
}
|
|
1109
|
+
interface GatewayGatewayMgmtAutoSignatureUpdate {
|
|
1110
|
+
/**
|
|
1111
|
+
* enum: `any`, `fri`, `mon`, `sat`, `sun`, `thu`, `tue`, `wed`
|
|
1112
|
+
*/
|
|
1113
|
+
dayOfWeek?: pulumi.Input<string | undefined>;
|
|
1114
|
+
enable?: pulumi.Input<boolean | undefined>;
|
|
1115
|
+
/**
|
|
1116
|
+
* Optional, Mist will decide the timing
|
|
1117
|
+
*/
|
|
1118
|
+
timeOfDay?: pulumi.Input<string | undefined>;
|
|
1119
|
+
}
|
|
1120
|
+
interface GatewayGatewayMgmtProtectRe {
|
|
1121
|
+
/**
|
|
1122
|
+
* Optionally, services we'll allow
|
|
1123
|
+
*/
|
|
1124
|
+
allowedServices?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
1125
|
+
customs?: pulumi.Input<pulumi.Input<inputs.device.GatewayGatewayMgmtProtectReCustom>[] | undefined>;
|
|
1126
|
+
/**
|
|
1127
|
+
* When enabled, all traffic that is not essential to our operation will be dropped
|
|
1128
|
+
* e.g. ntp / dns / traffic to mist will be allowed by default
|
|
1129
|
+
* if dhcpd is enabled, we'll make sure it works
|
|
1130
|
+
*/
|
|
1131
|
+
enabled?: pulumi.Input<boolean | undefined>;
|
|
1132
|
+
/**
|
|
1133
|
+
* Whether to enable hit count for Protect_RE policy
|
|
1134
|
+
*/
|
|
1135
|
+
hitCount?: pulumi.Input<boolean | undefined>;
|
|
1136
|
+
/**
|
|
1137
|
+
* host/subnets we'll allow traffic to/from
|
|
1138
|
+
*/
|
|
1139
|
+
trustedHosts?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
1140
|
+
}
|
|
1141
|
+
interface GatewayGatewayMgmtProtectReCustom {
|
|
1142
|
+
/**
|
|
1143
|
+
* Matched dst port, "0" means any
|
|
1144
|
+
*/
|
|
1145
|
+
portRange?: pulumi.Input<string | undefined>;
|
|
1146
|
+
/**
|
|
1147
|
+
* enum: `any`, `icmp`, `tcp`, `udp`
|
|
1148
|
+
*/
|
|
1149
|
+
protocol?: pulumi.Input<string | undefined>;
|
|
1150
|
+
subnets?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
1006
1151
|
}
|
|
1007
1152
|
interface GatewayIdpProfiles {
|
|
1008
1153
|
/**
|
|
@@ -1420,6 +1565,10 @@ export declare namespace device {
|
|
|
1420
1565
|
*/
|
|
1421
1566
|
outerVlanId?: pulumi.Input<number | undefined>;
|
|
1422
1567
|
poeDisabled?: pulumi.Input<boolean | undefined>;
|
|
1568
|
+
/**
|
|
1569
|
+
* Whether Perpetual PoE capabilities are enabled for a port
|
|
1570
|
+
*/
|
|
1571
|
+
poeKeepStateWhenReboot?: pulumi.Input<boolean | undefined>;
|
|
1423
1572
|
/**
|
|
1424
1573
|
* Only for SRX and if `usage`==`lan`, the name of the Network to be used as the Untagged VLAN
|
|
1425
1574
|
*/
|
|
@@ -1884,7 +2033,7 @@ export declare namespace device {
|
|
|
1884
2033
|
*/
|
|
1885
2034
|
ipsecLifetime?: pulumi.Input<number | undefined>;
|
|
1886
2035
|
/**
|
|
1887
|
-
* Only if
|
|
2036
|
+
* Only if `provider`==`custom-ipsec`
|
|
1888
2037
|
*/
|
|
1889
2038
|
ipsecProposals?: pulumi.Input<pulumi.Input<inputs.device.GatewayTunnelConfigsIpsecProposal>[] | undefined>;
|
|
1890
2039
|
/**
|
|
@@ -2034,7 +2183,7 @@ export declare namespace device {
|
|
|
2034
2183
|
internalIps?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
2035
2184
|
probeIps?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
2036
2185
|
/**
|
|
2037
|
-
* Only if
|
|
2186
|
+
* Only if `provider`==`jse-ipsec` or `provider`==`custom-ipsec`
|
|
2038
2187
|
*/
|
|
2039
2188
|
remoteIds?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
2040
2189
|
wanNames: pulumi.Input<pulumi.Input<string>[]>;
|
|
@@ -2065,7 +2214,7 @@ export declare namespace device {
|
|
|
2065
2214
|
internalIps?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
2066
2215
|
probeIps?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
2067
2216
|
/**
|
|
2068
|
-
* Only if
|
|
2217
|
+
* Only if `provider`==`jse-ipsec` or `provider`==`custom-ipsec`
|
|
2069
2218
|
*/
|
|
2070
2219
|
remoteIds?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
2071
2220
|
wanNames: pulumi.Input<pulumi.Input<string>[]>;
|
|
@@ -2410,7 +2559,7 @@ export declare namespace device {
|
|
|
2410
2559
|
[key: string]: pulumi.Input<inputs.device.SwitchDhcpdConfigConfigFixedBindings>;
|
|
2411
2560
|
} | undefined>;
|
|
2412
2561
|
/**
|
|
2413
|
-
* If `type`==`server`
|
|
2562
|
+
* If `type`==`server` - optional, `ip` will be used if not provided
|
|
2414
2563
|
*/
|
|
2415
2564
|
gateway?: pulumi.Input<string | undefined>;
|
|
2416
2565
|
/**
|
|
@@ -2500,7 +2649,7 @@ export declare namespace device {
|
|
|
2500
2649
|
noResolve?: pulumi.Input<boolean | undefined>;
|
|
2501
2650
|
preference?: pulumi.Input<number | undefined>;
|
|
2502
2651
|
/**
|
|
2503
|
-
* Next-hop IP Address
|
|
2652
|
+
* Next-hop IP Address. Can be a single IP address or an array of IP addresses for ECMP (Equal-Cost Multi-Path) load balancing across multiple next-hops.
|
|
2504
2653
|
*/
|
|
2505
2654
|
via: pulumi.Input<string>;
|
|
2506
2655
|
}
|
|
@@ -2516,7 +2665,7 @@ export declare namespace device {
|
|
|
2516
2665
|
noResolve?: pulumi.Input<boolean | undefined>;
|
|
2517
2666
|
preference?: pulumi.Input<number | undefined>;
|
|
2518
2667
|
/**
|
|
2519
|
-
* Next-hop IP Address
|
|
2668
|
+
* Next-hop IP Address. Can be a single IP address or an array of IP addresses for ECMP (Equal-Cost Multi-Path) load balancing across multiple next-hops.
|
|
2520
2669
|
*/
|
|
2521
2670
|
via: pulumi.Input<string>;
|
|
2522
2671
|
}
|
|
@@ -2873,7 +3022,11 @@ export declare namespace device {
|
|
|
2873
3022
|
*/
|
|
2874
3023
|
aeIdx?: pulumi.Input<number | undefined>;
|
|
2875
3024
|
/**
|
|
2876
|
-
*
|
|
3025
|
+
* 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
|
|
3026
|
+
*/
|
|
3027
|
+
aeLacpForceUp?: pulumi.Input<boolean | undefined>;
|
|
3028
|
+
/**
|
|
3029
|
+
* To use slow timeout
|
|
2877
3030
|
*/
|
|
2878
3031
|
aeLacpSlow?: pulumi.Input<boolean | undefined>;
|
|
2879
3032
|
aggregated?: pulumi.Input<boolean | undefined>;
|
|
@@ -2936,6 +3089,10 @@ export declare namespace device {
|
|
|
2936
3089
|
* Whether PoE capabilities are disabled for a port
|
|
2937
3090
|
*/
|
|
2938
3091
|
poeDisabled?: pulumi.Input<boolean | undefined>;
|
|
3092
|
+
/**
|
|
3093
|
+
* Whether Perpetual PoE is enabled; keeps PoE state across reboots
|
|
3094
|
+
*/
|
|
3095
|
+
poeKeepStateWhenReboot?: pulumi.Input<boolean | undefined>;
|
|
2939
3096
|
/**
|
|
2940
3097
|
* Native network/vlan for untagged traffic
|
|
2941
3098
|
*/
|
|
@@ -3076,6 +3233,10 @@ export declare namespace device {
|
|
|
3076
3233
|
* Only if `mode`!=`dynamic`. Whether PoE capabilities are disabled for a port
|
|
3077
3234
|
*/
|
|
3078
3235
|
poeDisabled?: pulumi.Input<boolean | undefined>;
|
|
3236
|
+
/**
|
|
3237
|
+
* Only if `mode`!=`dynamic`. Whether Perpetual PoE is enabled; keeps PoE state across reboots
|
|
3238
|
+
*/
|
|
3239
|
+
poeKeepStateWhenReboot?: pulumi.Input<boolean | undefined>;
|
|
3079
3240
|
/**
|
|
3080
3241
|
* PoE priority. enum: `low`, `high`
|
|
3081
3242
|
*/
|
|
@@ -4110,6 +4271,10 @@ export declare namespace org {
|
|
|
4110
4271
|
* enum: `base`, `remote`
|
|
4111
4272
|
*/
|
|
4112
4273
|
role?: pulumi.Input<string | undefined>;
|
|
4274
|
+
/**
|
|
4275
|
+
* Whether to use WPA3 on the 5 GHz band for mesh links
|
|
4276
|
+
*/
|
|
4277
|
+
useWpa3On5?: pulumi.Input<boolean | undefined>;
|
|
4113
4278
|
}
|
|
4114
4279
|
interface DeviceprofileApPortConfig {
|
|
4115
4280
|
disabled?: pulumi.Input<boolean | undefined>;
|
|
@@ -4619,6 +4784,28 @@ export declare namespace org {
|
|
|
4619
4784
|
*/
|
|
4620
4785
|
vlanId?: pulumi.Input<number | undefined>;
|
|
4621
4786
|
}
|
|
4787
|
+
interface DeviceprofileApZigbeeConfig {
|
|
4788
|
+
/**
|
|
4789
|
+
* Controls whether new Zigbee devices are allowed to join the network. enum: `always`, `manual`
|
|
4790
|
+
*/
|
|
4791
|
+
allowJoin?: pulumi.Input<string | undefined>;
|
|
4792
|
+
/**
|
|
4793
|
+
* Zigbee channel (2.4 GHz). `0` means auto; valid fixed values are 11–26
|
|
4794
|
+
*/
|
|
4795
|
+
channel?: pulumi.Input<number | undefined>;
|
|
4796
|
+
/**
|
|
4797
|
+
* Whether to enable Zigbee on this AP
|
|
4798
|
+
*/
|
|
4799
|
+
enabled?: pulumi.Input<boolean | undefined>;
|
|
4800
|
+
/**
|
|
4801
|
+
* Extended PAN ID in hex string format; only applicable when `panId` is also specified
|
|
4802
|
+
*/
|
|
4803
|
+
extendedPanId?: pulumi.Input<string | undefined>;
|
|
4804
|
+
/**
|
|
4805
|
+
* PAN ID in hex string format; if not specified, assigned automatically
|
|
4806
|
+
*/
|
|
4807
|
+
panId?: pulumi.Input<string | undefined>;
|
|
4808
|
+
}
|
|
4622
4809
|
interface DeviceprofileGatewayBgpConfig {
|
|
4623
4810
|
/**
|
|
4624
4811
|
* Optional if `via`==`lan`, `via`==`tunnel` or `via`==`wan`
|
|
@@ -4723,6 +4910,10 @@ export declare namespace org {
|
|
|
4723
4910
|
* Neighbor AS. Value must be in range 1-4294967295 or a variable (e.g. `{{as_variable}}`)
|
|
4724
4911
|
*/
|
|
4725
4912
|
neighborAs: pulumi.Input<string>;
|
|
4913
|
+
/**
|
|
4914
|
+
* If `via`==`tunnel`, specifies which tunnel (primary/secondary) this neighbor is associated with. enum: `primary`, `secondary`
|
|
4915
|
+
*/
|
|
4916
|
+
tunnelVia?: pulumi.Input<string | undefined>;
|
|
4726
4917
|
}
|
|
4727
4918
|
interface DeviceprofileGatewayDhcpdConfig {
|
|
4728
4919
|
/**
|
|
@@ -5250,6 +5441,10 @@ export declare namespace org {
|
|
|
5250
5441
|
*/
|
|
5251
5442
|
outerVlanId?: pulumi.Input<number | undefined>;
|
|
5252
5443
|
poeDisabled?: pulumi.Input<boolean | undefined>;
|
|
5444
|
+
/**
|
|
5445
|
+
* Whether Perpetual PoE capabilities are enabled for a port
|
|
5446
|
+
*/
|
|
5447
|
+
poeKeepStateWhenReboot?: pulumi.Input<boolean | undefined>;
|
|
5253
5448
|
/**
|
|
5254
5449
|
* Only for SRX and if `usage`==`lan`, the name of the Network to be used as the Untagged VLAN
|
|
5255
5450
|
*/
|
|
@@ -5704,7 +5899,7 @@ export declare namespace org {
|
|
|
5704
5899
|
*/
|
|
5705
5900
|
ipsecLifetime?: pulumi.Input<number | undefined>;
|
|
5706
5901
|
/**
|
|
5707
|
-
* Only if
|
|
5902
|
+
* Only if `provider`==`custom-ipsec`
|
|
5708
5903
|
*/
|
|
5709
5904
|
ipsecProposals?: pulumi.Input<pulumi.Input<inputs.org.DeviceprofileGatewayTunnelConfigsIpsecProposal>[] | undefined>;
|
|
5710
5905
|
/**
|
|
@@ -5854,7 +6049,7 @@ export declare namespace org {
|
|
|
5854
6049
|
internalIps?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
5855
6050
|
probeIps?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
5856
6051
|
/**
|
|
5857
|
-
* Only if
|
|
6052
|
+
* Only if `provider`==`jse-ipsec` or `provider`==`custom-ipsec`
|
|
5858
6053
|
*/
|
|
5859
6054
|
remoteIds?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
5860
6055
|
wanNames: pulumi.Input<pulumi.Input<string>[]>;
|
|
@@ -5885,7 +6080,7 @@ export declare namespace org {
|
|
|
5885
6080
|
internalIps?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
5886
6081
|
probeIps?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
5887
6082
|
/**
|
|
5888
|
-
* Only if
|
|
6083
|
+
* Only if `provider`==`jse-ipsec` or `provider`==`custom-ipsec`
|
|
5889
6084
|
*/
|
|
5890
6085
|
remoteIds?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
5891
6086
|
wanNames: pulumi.Input<pulumi.Input<string>[]>;
|
|
@@ -6058,6 +6253,10 @@ export declare namespace org {
|
|
|
6058
6253
|
* Optional, for ERB or CLOS, you can either use esilag to upstream routers or to also be the virtual-gateway. When `routedAt` != `core`, whether to do virtual-gateway at core as well
|
|
6059
6254
|
*/
|
|
6060
6255
|
coreAsBorder?: pulumi.Input<boolean | undefined>;
|
|
6256
|
+
/**
|
|
6257
|
+
* Whether to route management traffic inband; routes will be propagated to downstream switches
|
|
6258
|
+
*/
|
|
6259
|
+
enableInbandMgmt?: pulumi.Input<boolean | undefined>;
|
|
6061
6260
|
/**
|
|
6062
6261
|
* if the mangement traffic goes inbnd, during installation, only the border/core switches are connected to the Internet to allow initial configuration to be pushed down and leave the downstream access switches stay in the Factory Default state enabling inband-ztp allows upstream switches to use LLDP to assign IP and gives Internet to downstream switches in that state
|
|
6063
6262
|
*/
|
|
@@ -6241,6 +6440,10 @@ export declare namespace org {
|
|
|
6241
6440
|
* Neighbor AS. Value must be in range 1-4294967295 or a variable (e.g. `{{as_variable}}`)
|
|
6242
6441
|
*/
|
|
6243
6442
|
neighborAs: pulumi.Input<string>;
|
|
6443
|
+
/**
|
|
6444
|
+
* If `via`==`tunnel`, specifies which tunnel (primary/secondary) this neighbor is associated with. enum: `primary`, `secondary`
|
|
6445
|
+
*/
|
|
6446
|
+
tunnelVia?: pulumi.Input<string | undefined>;
|
|
6244
6447
|
}
|
|
6245
6448
|
interface GatewaytemplateDhcpdConfig {
|
|
6246
6449
|
/**
|
|
@@ -6356,6 +6559,127 @@ export declare namespace org {
|
|
|
6356
6559
|
interface GatewaytemplateExtraRoutes6 {
|
|
6357
6560
|
via: pulumi.Input<string>;
|
|
6358
6561
|
}
|
|
6562
|
+
interface GatewaytemplateGatewayMgmt {
|
|
6563
|
+
/**
|
|
6564
|
+
* For SSR only, as direct root access is not allowed
|
|
6565
|
+
*/
|
|
6566
|
+
adminSshkeys?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
6567
|
+
appProbing?: pulumi.Input<inputs.org.GatewaytemplateGatewayMgmtAppProbing | undefined>;
|
|
6568
|
+
/**
|
|
6569
|
+
* Consumes uplink bandwidth, requires WA license
|
|
6570
|
+
*/
|
|
6571
|
+
appUsage?: pulumi.Input<boolean | undefined>;
|
|
6572
|
+
autoSignatureUpdate?: pulumi.Input<inputs.org.GatewaytemplateGatewayMgmtAutoSignatureUpdate | undefined>;
|
|
6573
|
+
/**
|
|
6574
|
+
* Rollback timer for commit confirmed
|
|
6575
|
+
*/
|
|
6576
|
+
configRevertTimer?: pulumi.Input<number | undefined>;
|
|
6577
|
+
/**
|
|
6578
|
+
* For SSR and SRX, disable console port
|
|
6579
|
+
*/
|
|
6580
|
+
disableConsole?: pulumi.Input<boolean | undefined>;
|
|
6581
|
+
/**
|
|
6582
|
+
* For SSR and SRX, disable management interface
|
|
6583
|
+
*/
|
|
6584
|
+
disableOob?: pulumi.Input<boolean | undefined>;
|
|
6585
|
+
/**
|
|
6586
|
+
* For SSR and SRX, disable usb interface
|
|
6587
|
+
*/
|
|
6588
|
+
disableUsb?: pulumi.Input<boolean | undefined>;
|
|
6589
|
+
fipsEnabled?: pulumi.Input<boolean | undefined>;
|
|
6590
|
+
probeHosts?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
6591
|
+
probeHostsv6s?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
6592
|
+
/**
|
|
6593
|
+
* Restrict inbound-traffic to host
|
|
6594
|
+
* when enabled, all traffic that is not essential to our operation will be dropped
|
|
6595
|
+
* e.g. ntp / dns / traffic to mist will be allowed by default, if dhcpd is enabled, we'll make sure it works
|
|
6596
|
+
*/
|
|
6597
|
+
protectRe?: pulumi.Input<inputs.org.GatewaytemplateGatewayMgmtProtectRe | undefined>;
|
|
6598
|
+
/**
|
|
6599
|
+
* SRX only
|
|
6600
|
+
*/
|
|
6601
|
+
rootPassword?: pulumi.Input<string | undefined>;
|
|
6602
|
+
securityLogSourceAddress?: pulumi.Input<string | undefined>;
|
|
6603
|
+
securityLogSourceInterface?: pulumi.Input<string | undefined>;
|
|
6604
|
+
}
|
|
6605
|
+
interface GatewaytemplateGatewayMgmtAppProbing {
|
|
6606
|
+
/**
|
|
6607
|
+
* APp-keys from List Applications
|
|
6608
|
+
*/
|
|
6609
|
+
apps?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
6610
|
+
customApps?: pulumi.Input<pulumi.Input<inputs.org.GatewaytemplateGatewayMgmtAppProbingCustomApp>[] | undefined>;
|
|
6611
|
+
enabled?: pulumi.Input<boolean | undefined>;
|
|
6612
|
+
}
|
|
6613
|
+
interface GatewaytemplateGatewayMgmtAppProbingCustomApp {
|
|
6614
|
+
/**
|
|
6615
|
+
* Required if `protocol`==`icmp`
|
|
6616
|
+
*/
|
|
6617
|
+
address?: pulumi.Input<string | undefined>;
|
|
6618
|
+
appType?: pulumi.Input<string | undefined>;
|
|
6619
|
+
/**
|
|
6620
|
+
* If `protocol`==`http`
|
|
6621
|
+
*/
|
|
6622
|
+
hostnames?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
6623
|
+
key?: pulumi.Input<string | undefined>;
|
|
6624
|
+
name?: pulumi.Input<string | undefined>;
|
|
6625
|
+
network?: pulumi.Input<string | undefined>;
|
|
6626
|
+
/**
|
|
6627
|
+
* If `protocol`==`icmp`
|
|
6628
|
+
*/
|
|
6629
|
+
packetSize?: pulumi.Input<number | undefined>;
|
|
6630
|
+
/**
|
|
6631
|
+
* enum: `http`, `icmp`
|
|
6632
|
+
*/
|
|
6633
|
+
protocol?: pulumi.Input<string | undefined>;
|
|
6634
|
+
/**
|
|
6635
|
+
* If `protocol`==`http`
|
|
6636
|
+
*/
|
|
6637
|
+
url?: pulumi.Input<string | undefined>;
|
|
6638
|
+
vrf?: pulumi.Input<string | undefined>;
|
|
6639
|
+
}
|
|
6640
|
+
interface GatewaytemplateGatewayMgmtAutoSignatureUpdate {
|
|
6641
|
+
/**
|
|
6642
|
+
* enum: `any`, `fri`, `mon`, `sat`, `sun`, `thu`, `tue`, `wed`
|
|
6643
|
+
*/
|
|
6644
|
+
dayOfWeek?: pulumi.Input<string | undefined>;
|
|
6645
|
+
enable?: pulumi.Input<boolean | undefined>;
|
|
6646
|
+
/**
|
|
6647
|
+
* Optional, Mist will decide the timing
|
|
6648
|
+
*/
|
|
6649
|
+
timeOfDay?: pulumi.Input<string | undefined>;
|
|
6650
|
+
}
|
|
6651
|
+
interface GatewaytemplateGatewayMgmtProtectRe {
|
|
6652
|
+
/**
|
|
6653
|
+
* Optionally, services we'll allow
|
|
6654
|
+
*/
|
|
6655
|
+
allowedServices?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
6656
|
+
customs?: pulumi.Input<pulumi.Input<inputs.org.GatewaytemplateGatewayMgmtProtectReCustom>[] | undefined>;
|
|
6657
|
+
/**
|
|
6658
|
+
* When enabled, all traffic that is not essential to our operation will be dropped
|
|
6659
|
+
* e.g. ntp / dns / traffic to mist will be allowed by default
|
|
6660
|
+
* if dhcpd is enabled, we'll make sure it works
|
|
6661
|
+
*/
|
|
6662
|
+
enabled?: pulumi.Input<boolean | undefined>;
|
|
6663
|
+
/**
|
|
6664
|
+
* Whether to enable hit count for Protect_RE policy
|
|
6665
|
+
*/
|
|
6666
|
+
hitCount?: pulumi.Input<boolean | undefined>;
|
|
6667
|
+
/**
|
|
6668
|
+
* host/subnets we'll allow traffic to/from
|
|
6669
|
+
*/
|
|
6670
|
+
trustedHosts?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
6671
|
+
}
|
|
6672
|
+
interface GatewaytemplateGatewayMgmtProtectReCustom {
|
|
6673
|
+
/**
|
|
6674
|
+
* Matched dst port, "0" means any
|
|
6675
|
+
*/
|
|
6676
|
+
portRange?: pulumi.Input<string | undefined>;
|
|
6677
|
+
/**
|
|
6678
|
+
* enum: `any`, `icmp`, `tcp`, `udp`
|
|
6679
|
+
*/
|
|
6680
|
+
protocol?: pulumi.Input<string | undefined>;
|
|
6681
|
+
subnets?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
6682
|
+
}
|
|
6359
6683
|
interface GatewaytemplateIdpProfiles {
|
|
6360
6684
|
/**
|
|
6361
6685
|
* enum: `critical`, `standard`, `strict`
|
|
@@ -6768,6 +7092,10 @@ export declare namespace org {
|
|
|
6768
7092
|
*/
|
|
6769
7093
|
outerVlanId?: pulumi.Input<number | undefined>;
|
|
6770
7094
|
poeDisabled?: pulumi.Input<boolean | undefined>;
|
|
7095
|
+
/**
|
|
7096
|
+
* Whether Perpetual PoE capabilities are enabled for a port
|
|
7097
|
+
*/
|
|
7098
|
+
poeKeepStateWhenReboot?: pulumi.Input<boolean | undefined>;
|
|
6771
7099
|
/**
|
|
6772
7100
|
* Only for SRX and if `usage`==`lan`, the name of the Network to be used as the Untagged VLAN
|
|
6773
7101
|
*/
|
|
@@ -7222,7 +7550,7 @@ export declare namespace org {
|
|
|
7222
7550
|
*/
|
|
7223
7551
|
ipsecLifetime?: pulumi.Input<number | undefined>;
|
|
7224
7552
|
/**
|
|
7225
|
-
* Only if
|
|
7553
|
+
* Only if `provider`==`custom-ipsec`
|
|
7226
7554
|
*/
|
|
7227
7555
|
ipsecProposals?: pulumi.Input<pulumi.Input<inputs.org.GatewaytemplateTunnelConfigsIpsecProposal>[] | undefined>;
|
|
7228
7556
|
/**
|
|
@@ -7372,7 +7700,7 @@ export declare namespace org {
|
|
|
7372
7700
|
internalIps?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
7373
7701
|
probeIps?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
7374
7702
|
/**
|
|
7375
|
-
* Only if
|
|
7703
|
+
* Only if `provider`==`jse-ipsec` or `provider`==`custom-ipsec`
|
|
7376
7704
|
*/
|
|
7377
7705
|
remoteIds?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
7378
7706
|
wanNames: pulumi.Input<pulumi.Input<string>[]>;
|
|
@@ -7403,7 +7731,7 @@ export declare namespace org {
|
|
|
7403
7731
|
internalIps?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
7404
7732
|
probeIps?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
7405
7733
|
/**
|
|
7406
|
-
* Only if
|
|
7734
|
+
* Only if `provider`==`jse-ipsec` or `provider`==`custom-ipsec`
|
|
7407
7735
|
*/
|
|
7408
7736
|
remoteIds?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
7409
7737
|
wanNames: pulumi.Input<pulumi.Input<string>[]>;
|
|
@@ -8403,7 +8731,7 @@ export declare namespace org {
|
|
|
8403
8731
|
noResolve?: pulumi.Input<boolean | undefined>;
|
|
8404
8732
|
preference?: pulumi.Input<number | undefined>;
|
|
8405
8733
|
/**
|
|
8406
|
-
* Next-hop IP Address
|
|
8734
|
+
* Next-hop IP Address. Can be a single IP address or an array of IP addresses for ECMP (Equal-Cost Multi-Path) load balancing across multiple next-hops.
|
|
8407
8735
|
*/
|
|
8408
8736
|
via: pulumi.Input<string>;
|
|
8409
8737
|
}
|
|
@@ -8419,7 +8747,7 @@ export declare namespace org {
|
|
|
8419
8747
|
noResolve?: pulumi.Input<boolean | undefined>;
|
|
8420
8748
|
preference?: pulumi.Input<number | undefined>;
|
|
8421
8749
|
/**
|
|
8422
|
-
* Next-hop IP Address
|
|
8750
|
+
* Next-hop IP Address. Can be a single IP address or an array of IP addresses for ECMP (Equal-Cost Multi-Path) load balancing across multiple next-hops.
|
|
8423
8751
|
*/
|
|
8424
8752
|
via: pulumi.Input<string>;
|
|
8425
8753
|
}
|
|
@@ -8634,6 +8962,10 @@ export declare namespace org {
|
|
|
8634
8962
|
* Only if `mode`!=`dynamic`. Whether PoE capabilities are disabled for a port
|
|
8635
8963
|
*/
|
|
8636
8964
|
poeDisabled?: pulumi.Input<boolean | undefined>;
|
|
8965
|
+
/**
|
|
8966
|
+
* Only if `mode`!=`dynamic`. Whether Perpetual PoE is enabled; keeps PoE state across reboots
|
|
8967
|
+
*/
|
|
8968
|
+
poeKeepStateWhenReboot?: pulumi.Input<boolean | undefined>;
|
|
8637
8969
|
/**
|
|
8638
8970
|
* PoE priority. enum: `low`, `high`
|
|
8639
8971
|
*/
|
|
@@ -9282,7 +9614,11 @@ export declare namespace org {
|
|
|
9282
9614
|
*/
|
|
9283
9615
|
aeIdx?: pulumi.Input<number | undefined>;
|
|
9284
9616
|
/**
|
|
9285
|
-
*
|
|
9617
|
+
* 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
|
|
9618
|
+
*/
|
|
9619
|
+
aeLacpForceUp?: pulumi.Input<boolean | undefined>;
|
|
9620
|
+
/**
|
|
9621
|
+
* To use slow timeout
|
|
9286
9622
|
*/
|
|
9287
9623
|
aeLacpSlow?: pulumi.Input<boolean | undefined>;
|
|
9288
9624
|
aggregated?: pulumi.Input<boolean | undefined>;
|
|
@@ -10009,18 +10345,24 @@ export declare namespace org {
|
|
|
10009
10345
|
write?: pulumi.Input<string | undefined>;
|
|
10010
10346
|
}
|
|
10011
10347
|
interface SettingMarvis {
|
|
10012
|
-
|
|
10348
|
+
/**
|
|
10349
|
+
* Self-driving network automation settings per domain
|
|
10350
|
+
*/
|
|
10351
|
+
selfDriving?: pulumi.Input<inputs.org.SettingMarvisSelfDriving | undefined>;
|
|
10013
10352
|
}
|
|
10014
|
-
interface
|
|
10015
|
-
|
|
10016
|
-
|
|
10017
|
-
|
|
10018
|
-
|
|
10019
|
-
|
|
10020
|
-
|
|
10021
|
-
|
|
10022
|
-
|
|
10023
|
-
|
|
10353
|
+
interface SettingMarvisSelfDriving {
|
|
10354
|
+
wan?: pulumi.Input<inputs.org.SettingMarvisSelfDrivingWan | undefined>;
|
|
10355
|
+
wired?: pulumi.Input<inputs.org.SettingMarvisSelfDrivingWired | undefined>;
|
|
10356
|
+
wireless?: pulumi.Input<inputs.org.SettingMarvisSelfDrivingWireless | undefined>;
|
|
10357
|
+
}
|
|
10358
|
+
interface SettingMarvisSelfDrivingWan {
|
|
10359
|
+
enabled?: pulumi.Input<boolean | undefined>;
|
|
10360
|
+
}
|
|
10361
|
+
interface SettingMarvisSelfDrivingWired {
|
|
10362
|
+
enabled?: pulumi.Input<boolean | undefined>;
|
|
10363
|
+
}
|
|
10364
|
+
interface SettingMarvisSelfDrivingWireless {
|
|
10365
|
+
enabled?: pulumi.Input<boolean | undefined>;
|
|
10024
10366
|
}
|
|
10025
10367
|
interface SettingMgmt {
|
|
10026
10368
|
/**
|
|
@@ -10037,6 +10379,10 @@ export declare namespace org {
|
|
|
10037
10379
|
useWxtunnel?: pulumi.Input<boolean | undefined>;
|
|
10038
10380
|
}
|
|
10039
10381
|
interface SettingMistNac {
|
|
10382
|
+
/**
|
|
10383
|
+
* allow clients to connect even when the user cert failed. TEAP authenticates both Machine Cert and User Cert. When enabled, clients who only succeed Machine Cert authentication will be accepted.
|
|
10384
|
+
*/
|
|
10385
|
+
allowTeapMachineAuthOnly?: pulumi.Input<boolean | undefined>;
|
|
10040
10386
|
/**
|
|
10041
10387
|
* List of PEM-encoded ca certs
|
|
10042
10388
|
*/
|
|
@@ -10070,6 +10416,10 @@ export declare namespace org {
|
|
|
10070
10416
|
*/
|
|
10071
10417
|
idpUserCertLookupField?: pulumi.Input<string | undefined>;
|
|
10072
10418
|
idps?: pulumi.Input<pulumi.Input<inputs.org.SettingMistNacIdp>[] | undefined>;
|
|
10419
|
+
/**
|
|
10420
|
+
* MDM (Mobile Device Management) CoA configuration
|
|
10421
|
+
*/
|
|
10422
|
+
mdm?: pulumi.Input<inputs.org.SettingMistNacMdm | undefined>;
|
|
10073
10423
|
/**
|
|
10074
10424
|
* radius server cert to be presented in EAP TLS
|
|
10075
10425
|
*/
|
|
@@ -10121,6 +10471,12 @@ export declare namespace org {
|
|
|
10121
10471
|
*/
|
|
10122
10472
|
userRealms: pulumi.Input<pulumi.Input<string>[]>;
|
|
10123
10473
|
}
|
|
10474
|
+
interface SettingMistNacMdm {
|
|
10475
|
+
/**
|
|
10476
|
+
* CoA type to send. enum: `reauth`, `disconnect`
|
|
10477
|
+
*/
|
|
10478
|
+
coaType?: pulumi.Input<string | undefined>;
|
|
10479
|
+
}
|
|
10124
10480
|
interface SettingMistNacServerCert {
|
|
10125
10481
|
cert?: pulumi.Input<string | undefined>;
|
|
10126
10482
|
key?: pulumi.Input<string | undefined>;
|
|
@@ -10517,6 +10873,14 @@ export declare namespace org {
|
|
|
10517
10873
|
* Whether to trigger EAP reauth when the session ends
|
|
10518
10874
|
*/
|
|
10519
10875
|
eapReauth?: pulumi.Input<boolean | undefined>;
|
|
10876
|
+
/**
|
|
10877
|
+
* Enable Beacon Protection; default is false for better compatibility
|
|
10878
|
+
*/
|
|
10879
|
+
enableBeaconProtection?: pulumi.Input<boolean | undefined>;
|
|
10880
|
+
/**
|
|
10881
|
+
* Enable GCMP-256 encryption suite; default is false for better compatibility
|
|
10882
|
+
*/
|
|
10883
|
+
enableGcmp256?: pulumi.Input<boolean | undefined>;
|
|
10520
10884
|
/**
|
|
10521
10885
|
* Whether to enable MAC Auth, uses the same auth_servers
|
|
10522
10886
|
*/
|
|
@@ -11945,6 +12309,10 @@ export declare namespace site {
|
|
|
11945
12309
|
* Optional, for ERB or CLOS, you can either use esilag to upstream routers or to also be the virtual-gateway. When `routedAt` != `core`, whether to do virtual-gateway at core as well
|
|
11946
12310
|
*/
|
|
11947
12311
|
coreAsBorder?: pulumi.Input<boolean | undefined>;
|
|
12312
|
+
/**
|
|
12313
|
+
* Whether to route management traffic inband; routes will be propagated to downstream switches
|
|
12314
|
+
*/
|
|
12315
|
+
enableInbandMgmt?: pulumi.Input<boolean | undefined>;
|
|
11948
12316
|
/**
|
|
11949
12317
|
* if the mangement traffic goes inbnd, during installation, only the border/core switches are connected to the Internet to allow initial configuration to be pushed down and leave the downstream access switches stay in the Factory Default state enabling inband-ztp allows upstream switches to use LLDP to assign IP and gives Internet to downstream switches in that state
|
|
11950
12318
|
*/
|
|
@@ -12148,7 +12516,7 @@ export declare namespace site {
|
|
|
12148
12516
|
noResolve?: pulumi.Input<boolean | undefined>;
|
|
12149
12517
|
preference?: pulumi.Input<number | undefined>;
|
|
12150
12518
|
/**
|
|
12151
|
-
* Next-hop IP Address
|
|
12519
|
+
* Next-hop IP Address. Can be a single IP address or an array of IP addresses for ECMP (Equal-Cost Multi-Path) load balancing across multiple next-hops.
|
|
12152
12520
|
*/
|
|
12153
12521
|
via: pulumi.Input<string>;
|
|
12154
12522
|
}
|
|
@@ -12164,7 +12532,7 @@ export declare namespace site {
|
|
|
12164
12532
|
noResolve?: pulumi.Input<boolean | undefined>;
|
|
12165
12533
|
preference?: pulumi.Input<number | undefined>;
|
|
12166
12534
|
/**
|
|
12167
|
-
* Next-hop IP Address
|
|
12535
|
+
* Next-hop IP Address. Can be a single IP address or an array of IP addresses for ECMP (Equal-Cost Multi-Path) load balancing across multiple next-hops.
|
|
12168
12536
|
*/
|
|
12169
12537
|
via: pulumi.Input<string>;
|
|
12170
12538
|
}
|
|
@@ -12379,6 +12747,10 @@ export declare namespace site {
|
|
|
12379
12747
|
* Only if `mode`!=`dynamic`. Whether PoE capabilities are disabled for a port
|
|
12380
12748
|
*/
|
|
12381
12749
|
poeDisabled?: pulumi.Input<boolean | undefined>;
|
|
12750
|
+
/**
|
|
12751
|
+
* Only if `mode`!=`dynamic`. Whether Perpetual PoE is enabled; keeps PoE state across reboots
|
|
12752
|
+
*/
|
|
12753
|
+
poeKeepStateWhenReboot?: pulumi.Input<boolean | undefined>;
|
|
12382
12754
|
/**
|
|
12383
12755
|
* PoE priority. enum: `low`, `high`
|
|
12384
12756
|
*/
|
|
@@ -13027,7 +13399,11 @@ export declare namespace site {
|
|
|
13027
13399
|
*/
|
|
13028
13400
|
aeIdx?: pulumi.Input<number | undefined>;
|
|
13029
13401
|
/**
|
|
13030
|
-
*
|
|
13402
|
+
* 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
|
|
13403
|
+
*/
|
|
13404
|
+
aeLacpForceUp?: pulumi.Input<boolean | undefined>;
|
|
13405
|
+
/**
|
|
13406
|
+
* To use slow timeout
|
|
13031
13407
|
*/
|
|
13032
13408
|
aeLacpSlow?: pulumi.Input<boolean | undefined>;
|
|
13033
13409
|
aggregated?: pulumi.Input<boolean | undefined>;
|
|
@@ -13266,6 +13642,12 @@ export declare namespace site {
|
|
|
13266
13642
|
*/
|
|
13267
13643
|
enabled?: pulumi.Input<boolean | undefined>;
|
|
13268
13644
|
}
|
|
13645
|
+
interface SettingApSyntheticTest {
|
|
13646
|
+
/**
|
|
13647
|
+
* List or Comma separated list of additional VLAN IDs (on the LAN side or from other WLANs) should we be forwarding bonjour queries/responses
|
|
13648
|
+
*/
|
|
13649
|
+
additionalVlanIds?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
13650
|
+
}
|
|
13269
13651
|
interface SettingAutoUpgrade {
|
|
13270
13652
|
/**
|
|
13271
13653
|
* Custom versions for different models. Property key is the model name (e.g. "AP41")
|
|
@@ -13676,6 +14058,36 @@ export declare namespace site {
|
|
|
13676
14058
|
protocol?: pulumi.Input<string | undefined>;
|
|
13677
14059
|
subnets: pulumi.Input<pulumi.Input<string>[]>;
|
|
13678
14060
|
}
|
|
14061
|
+
interface SettingIotproxy {
|
|
14062
|
+
enabled?: pulumi.Input<boolean | undefined>;
|
|
14063
|
+
/**
|
|
14064
|
+
* Visionline integration settings for IoT proxy
|
|
14065
|
+
*/
|
|
14066
|
+
visionline?: pulumi.Input<inputs.site.SettingIotproxyVisionline | undefined>;
|
|
14067
|
+
}
|
|
14068
|
+
interface SettingIotproxyVisionline {
|
|
14069
|
+
/**
|
|
14070
|
+
* Access ID for the Visionline service
|
|
14071
|
+
*/
|
|
14072
|
+
accessId?: pulumi.Input<string | undefined>;
|
|
14073
|
+
enabled?: pulumi.Input<boolean | undefined>;
|
|
14074
|
+
/**
|
|
14075
|
+
* Hostname or IP of the Visionline collector
|
|
14076
|
+
*/
|
|
14077
|
+
host?: pulumi.Input<string | undefined>;
|
|
14078
|
+
/**
|
|
14079
|
+
* Password for the Visionline service
|
|
14080
|
+
*/
|
|
14081
|
+
password?: pulumi.Input<string | undefined>;
|
|
14082
|
+
/**
|
|
14083
|
+
* TCP port of the Visionline collector
|
|
14084
|
+
*/
|
|
14085
|
+
port?: pulumi.Input<number | undefined>;
|
|
14086
|
+
/**
|
|
14087
|
+
* Username for the Visionline service
|
|
14088
|
+
*/
|
|
14089
|
+
username?: pulumi.Input<string | undefined>;
|
|
14090
|
+
}
|
|
13679
14091
|
interface SettingJuniperSrx {
|
|
13680
14092
|
/**
|
|
13681
14093
|
* auto_upgrade device first time it is onboarded
|
|
@@ -13977,6 +14389,18 @@ export declare namespace site {
|
|
|
13977
14389
|
*/
|
|
13978
14390
|
keepWlansUpIfDown?: pulumi.Input<boolean | undefined>;
|
|
13979
14391
|
}
|
|
14392
|
+
interface SettingVarsAnnotations {
|
|
14393
|
+
/**
|
|
14394
|
+
* User-provided note to describe what this var was created for
|
|
14395
|
+
*/
|
|
14396
|
+
note?: pulumi.Input<string | undefined>;
|
|
14397
|
+
/**
|
|
14398
|
+
* Used to identify where to enumerate / auto-complete the field from. Default is `generic` (plain string, no special handling).
|
|
14399
|
+
*
|
|
14400
|
+
* enum: `generic`, `mxtunnelId`
|
|
14401
|
+
*/
|
|
14402
|
+
type?: pulumi.Input<string | undefined>;
|
|
14403
|
+
}
|
|
13980
14404
|
interface SettingVna {
|
|
13981
14405
|
/**
|
|
13982
14406
|
* Enable Virtual Network Assistant (using SUB-VNA license). This applied to AP / Switch / Gateway
|
|
@@ -14158,6 +14582,14 @@ export declare namespace site {
|
|
|
14158
14582
|
* Whether to trigger EAP reauth when the session ends
|
|
14159
14583
|
*/
|
|
14160
14584
|
eapReauth?: pulumi.Input<boolean | undefined>;
|
|
14585
|
+
/**
|
|
14586
|
+
* Enable Beacon Protection; default is false for better compatibility
|
|
14587
|
+
*/
|
|
14588
|
+
enableBeaconProtection?: pulumi.Input<boolean | undefined>;
|
|
14589
|
+
/**
|
|
14590
|
+
* Enable GCMP-256 encryption suite; default is false for better compatibility
|
|
14591
|
+
*/
|
|
14592
|
+
enableGcmp256?: pulumi.Input<boolean | undefined>;
|
|
14161
14593
|
/**
|
|
14162
14594
|
* Whether to enable MAC Auth, uses the same auth_servers
|
|
14163
14595
|
*/
|