@pulumi/juniper-mist 0.11.1 → 0.11.2
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/package.json +2 -2
- package/site/setting.d.ts +3 -3
- package/site/setting.d.ts.map +1 -1
- package/site/setting.js +2 -2
- package/site/setting.js.map +1 -1
- package/types/input.d.ts +15 -15
- package/types/input.d.ts.map +1 -1
- package/types/output.d.ts +19 -19
- package/types/output.d.ts.map +1 -1
package/types/output.d.ts
CHANGED
|
@@ -25889,12 +25889,12 @@ export declare namespace site {
|
|
|
25889
25889
|
*/
|
|
25890
25890
|
rootPassword?: string;
|
|
25891
25891
|
}
|
|
25892
|
-
interface
|
|
25892
|
+
interface SettingMxtunnel {
|
|
25893
25893
|
/**
|
|
25894
25894
|
* Additional named Mist Tunnel definitions configured for the site
|
|
25895
25895
|
*/
|
|
25896
25896
|
additionalMxtunnels?: {
|
|
25897
|
-
[key: string]: outputs.site.
|
|
25897
|
+
[key: string]: outputs.site.SettingMxtunnelAdditionalMxtunnels;
|
|
25898
25898
|
};
|
|
25899
25899
|
/**
|
|
25900
25900
|
* AP source subnets allowed to establish Mist Tunnels
|
|
@@ -25903,11 +25903,11 @@ export declare namespace site {
|
|
|
25903
25903
|
/**
|
|
25904
25904
|
* Preemption behavior for restoring preferred tunnel peers after failover
|
|
25905
25905
|
*/
|
|
25906
|
-
autoPreemption?: outputs.site.
|
|
25906
|
+
autoPreemption?: outputs.site.SettingMxtunnelAutoPreemption;
|
|
25907
25907
|
/**
|
|
25908
25908
|
* Tunnel peer clusters used by APs for this site Mist Tunnel
|
|
25909
25909
|
*/
|
|
25910
|
-
clusters?: outputs.site.
|
|
25910
|
+
clusters?: outputs.site.SettingMxtunnelCluster[];
|
|
25911
25911
|
/**
|
|
25912
25912
|
* Timestamp when the site Mist Tunnel configuration was created
|
|
25913
25913
|
*/
|
|
@@ -25923,11 +25923,11 @@ export declare namespace site {
|
|
|
25923
25923
|
/**
|
|
25924
25924
|
* In seconds, used as heartbeat to detect if a tunnel is alive. AP will try another peer after missing N hellos specified by hello_retries
|
|
25925
25925
|
*/
|
|
25926
|
-
helloInterval
|
|
25926
|
+
helloInterval: number;
|
|
25927
25927
|
/**
|
|
25928
25928
|
* Number of missed hello heartbeats before an AP tries another tunnel peer
|
|
25929
25929
|
*/
|
|
25930
|
-
helloRetries
|
|
25930
|
+
helloRetries: number;
|
|
25931
25931
|
/**
|
|
25932
25932
|
* Tunnel peer hostnames or IP addresses reachable from APs
|
|
25933
25933
|
*/
|
|
@@ -25943,7 +25943,7 @@ export declare namespace site {
|
|
|
25943
25943
|
/**
|
|
25944
25944
|
* 0 to enable MTU, 552-1500 to start MTU with a lower MTU
|
|
25945
25945
|
*/
|
|
25946
|
-
mtu
|
|
25946
|
+
mtu: number;
|
|
25947
25947
|
/**
|
|
25948
25948
|
* Identifier of the org that owns the site Mist Tunnel configuration
|
|
25949
25949
|
*/
|
|
@@ -25955,7 +25955,7 @@ export declare namespace site {
|
|
|
25955
25955
|
/**
|
|
25956
25956
|
* TLS-secured RADIUS proxy settings for the site Mist Tunnel
|
|
25957
25957
|
*/
|
|
25958
|
-
radsec?: outputs.site.
|
|
25958
|
+
radsec?: outputs.site.SettingMxtunnelRadsec;
|
|
25959
25959
|
/**
|
|
25960
25960
|
* Identifier of the site that owns this Mist Tunnel configuration
|
|
25961
25961
|
*/
|
|
@@ -25965,7 +25965,7 @@ export declare namespace site {
|
|
|
25965
25965
|
*/
|
|
25966
25966
|
vlanIds?: number[];
|
|
25967
25967
|
}
|
|
25968
|
-
interface
|
|
25968
|
+
interface SettingMxtunnelAdditionalMxtunnels {
|
|
25969
25969
|
/**
|
|
25970
25970
|
* In seconds, used as heartbeat to detect if a tunnel is alive. AP will try another peer after missing N hellos specified by hello_retries
|
|
25971
25971
|
*/
|
|
@@ -25981,13 +25981,13 @@ export declare namespace site {
|
|
|
25981
25981
|
/**
|
|
25982
25982
|
* Tunnel peer clusters used by APs for this additional Mist Tunnel
|
|
25983
25983
|
*/
|
|
25984
|
-
tuntermClusters?: outputs.site.
|
|
25984
|
+
tuntermClusters?: outputs.site.SettingMxtunnelAdditionalMxtunnelsTuntermCluster[];
|
|
25985
25985
|
/**
|
|
25986
25986
|
* List of VLAN IDs carried by this additional Mist Tunnel
|
|
25987
25987
|
*/
|
|
25988
25988
|
vlanIds?: number[];
|
|
25989
25989
|
}
|
|
25990
|
-
interface
|
|
25990
|
+
interface SettingMxtunnelAdditionalMxtunnelsTuntermCluster {
|
|
25991
25991
|
/**
|
|
25992
25992
|
* Peer cluster name used in the site Mist Tunnel configuration
|
|
25993
25993
|
*/
|
|
@@ -25997,7 +25997,7 @@ export declare namespace site {
|
|
|
25997
25997
|
*/
|
|
25998
25998
|
tuntermHosts?: string[];
|
|
25999
25999
|
}
|
|
26000
|
-
interface
|
|
26000
|
+
interface SettingMxtunnelAutoPreemption {
|
|
26001
26001
|
/**
|
|
26002
26002
|
* Scheduled weekday for auto preemption
|
|
26003
26003
|
*/
|
|
@@ -26005,13 +26005,13 @@ export declare namespace site {
|
|
|
26005
26005
|
/**
|
|
26006
26006
|
* Whether auto preemption is enabled
|
|
26007
26007
|
*/
|
|
26008
|
-
enabled
|
|
26008
|
+
enabled: boolean;
|
|
26009
26009
|
/**
|
|
26010
26010
|
* Scheduled time of day for auto preemption
|
|
26011
26011
|
*/
|
|
26012
26012
|
timeOfDay: string;
|
|
26013
26013
|
}
|
|
26014
|
-
interface
|
|
26014
|
+
interface SettingMxtunnelCluster {
|
|
26015
26015
|
/**
|
|
26016
26016
|
* Peer cluster name used in the site Mist Tunnel configuration
|
|
26017
26017
|
*/
|
|
@@ -26021,15 +26021,15 @@ export declare namespace site {
|
|
|
26021
26021
|
*/
|
|
26022
26022
|
tuntermHosts?: string[];
|
|
26023
26023
|
}
|
|
26024
|
-
interface
|
|
26024
|
+
interface SettingMxtunnelRadsec {
|
|
26025
26025
|
/**
|
|
26026
26026
|
* RADIUS accounting servers used by the site Mist Tunnel RadSec proxy
|
|
26027
26027
|
*/
|
|
26028
|
-
acctServers?: outputs.site.
|
|
26028
|
+
acctServers?: outputs.site.SettingMxtunnelRadsecAcctServer[];
|
|
26029
26029
|
/**
|
|
26030
26030
|
* RADIUS authentication servers used by the site Mist Tunnel RadSec proxy
|
|
26031
26031
|
*/
|
|
26032
|
-
authServers?: outputs.site.
|
|
26032
|
+
authServers?: outputs.site.SettingMxtunnelRadsecAuthServer[];
|
|
26033
26033
|
/**
|
|
26034
26034
|
* Whether RadSec proxying is enabled for this site Mist Tunnel
|
|
26035
26035
|
*/
|
|
@@ -26039,7 +26039,7 @@ export declare namespace site {
|
|
|
26039
26039
|
*/
|
|
26040
26040
|
useMxedge?: boolean;
|
|
26041
26041
|
}
|
|
26042
|
-
interface
|
|
26042
|
+
interface SettingMxtunnelRadsecAcctServer {
|
|
26043
26043
|
/**
|
|
26044
26044
|
* Address or hostname of the RADIUS accounting server
|
|
26045
26045
|
*/
|
|
@@ -26069,7 +26069,7 @@ export declare namespace site {
|
|
|
26069
26069
|
*/
|
|
26070
26070
|
secret: string;
|
|
26071
26071
|
}
|
|
26072
|
-
interface
|
|
26072
|
+
interface SettingMxtunnelRadsecAuthServer {
|
|
26073
26073
|
/**
|
|
26074
26074
|
* Address or hostname of the RADIUS authentication server
|
|
26075
26075
|
*/
|