@pulumi/juniper-mist 0.7.1 → 0.7.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/device/getApStats.d.ts +46 -10
- package/device/getApStats.js +4 -4
- package/device/getApStats.js.map +1 -1
- package/device/getGatewayStats.d.ts +16 -16
- package/device/getGatewayStats.js +4 -4
- package/device/getSwitchStats.d.ts +16 -16
- package/device/getSwitchStats.js +4 -4
- package/device/switch.d.ts +27 -0
- package/device/switch.js +4 -0
- package/device/switch.js.map +1 -1
- package/org/nactag.d.ts +3 -3
- package/org/networktemplate.d.ts +27 -0
- package/org/networktemplate.js +4 -0
- package/org/networktemplate.js.map +1 -1
- package/org/wlan.d.ts +3 -3
- package/package.json +2 -2
- package/site/networktemplate.d.ts +18 -0
- package/site/networktemplate.js +2 -0
- package/site/networktemplate.js.map +1 -1
- package/site/wlan.d.ts +3 -3
- package/types/input.d.ts +299 -23
- package/types/output.d.ts +713 -69
- package/upgradeDevice.d.ts +12 -0
- package/upgradeDevice.js +12 -0
- package/upgradeDevice.js.map +1 -1
package/device/getApStats.d.ts
CHANGED
|
@@ -15,8 +15,8 @@ import * as outputs from "../types/output";
|
|
|
15
15
|
* siteId: "4a422ae5-7ca0-4599-87a3-8e49aa63685f",
|
|
16
16
|
* status: "connected",
|
|
17
17
|
* duration: "1d",
|
|
18
|
-
* start: 1736031600,
|
|
19
|
-
* end: 1736175934,
|
|
18
|
+
* start: "1736031600",
|
|
19
|
+
* end: "1736175934",
|
|
20
20
|
* });
|
|
21
21
|
* ```
|
|
22
22
|
*/
|
|
@@ -25,12 +25,24 @@ export declare function getApStats(args: GetApStatsArgs, opts?: pulumi.InvokeOpt
|
|
|
25
25
|
* A collection of arguments for invoking getApStats.
|
|
26
26
|
*/
|
|
27
27
|
export interface GetApStatsArgs {
|
|
28
|
+
/**
|
|
29
|
+
* Duration like 7d, 2w
|
|
30
|
+
*/
|
|
28
31
|
duration?: string;
|
|
29
|
-
|
|
32
|
+
/**
|
|
33
|
+
* End time (epoch timestamp in seconds, or relative string like "-1d", "-2h", "now")
|
|
34
|
+
*/
|
|
35
|
+
end?: string;
|
|
30
36
|
mac?: string;
|
|
31
37
|
orgId: string;
|
|
32
38
|
siteId?: string;
|
|
33
|
-
|
|
39
|
+
/**
|
|
40
|
+
* Start time (epoch timestamp in seconds, or relative string like "-1d", "-1w")
|
|
41
|
+
*/
|
|
42
|
+
start?: string;
|
|
43
|
+
/**
|
|
44
|
+
* enum: `all`, `connected`, `disconnected`
|
|
45
|
+
*/
|
|
34
46
|
status?: string;
|
|
35
47
|
}
|
|
36
48
|
/**
|
|
@@ -38,8 +50,14 @@ export interface GetApStatsArgs {
|
|
|
38
50
|
*/
|
|
39
51
|
export interface GetApStatsResult {
|
|
40
52
|
readonly deviceApStats: outputs.device.GetApStatsDeviceApStat[];
|
|
53
|
+
/**
|
|
54
|
+
* Duration like 7d, 2w
|
|
55
|
+
*/
|
|
41
56
|
readonly duration?: string;
|
|
42
|
-
|
|
57
|
+
/**
|
|
58
|
+
* End time (epoch timestamp in seconds, or relative string like "-1d", "-2h", "now")
|
|
59
|
+
*/
|
|
60
|
+
readonly end?: string;
|
|
43
61
|
/**
|
|
44
62
|
* The provider-assigned unique ID for this managed resource.
|
|
45
63
|
*/
|
|
@@ -47,7 +65,13 @@ export interface GetApStatsResult {
|
|
|
47
65
|
readonly mac?: string;
|
|
48
66
|
readonly orgId: string;
|
|
49
67
|
readonly siteId?: string;
|
|
50
|
-
|
|
68
|
+
/**
|
|
69
|
+
* Start time (epoch timestamp in seconds, or relative string like "-1d", "-1w")
|
|
70
|
+
*/
|
|
71
|
+
readonly start?: string;
|
|
72
|
+
/**
|
|
73
|
+
* enum: `all`, `connected`, `disconnected`
|
|
74
|
+
*/
|
|
51
75
|
readonly status?: string;
|
|
52
76
|
}
|
|
53
77
|
/**
|
|
@@ -65,8 +89,8 @@ export interface GetApStatsResult {
|
|
|
65
89
|
* siteId: "4a422ae5-7ca0-4599-87a3-8e49aa63685f",
|
|
66
90
|
* status: "connected",
|
|
67
91
|
* duration: "1d",
|
|
68
|
-
* start: 1736031600,
|
|
69
|
-
* end: 1736175934,
|
|
92
|
+
* start: "1736031600",
|
|
93
|
+
* end: "1736175934",
|
|
70
94
|
* });
|
|
71
95
|
* ```
|
|
72
96
|
*/
|
|
@@ -75,11 +99,23 @@ export declare function getApStatsOutput(args: GetApStatsOutputArgs, opts?: pulu
|
|
|
75
99
|
* A collection of arguments for invoking getApStats.
|
|
76
100
|
*/
|
|
77
101
|
export interface GetApStatsOutputArgs {
|
|
102
|
+
/**
|
|
103
|
+
* Duration like 7d, 2w
|
|
104
|
+
*/
|
|
78
105
|
duration?: pulumi.Input<string>;
|
|
79
|
-
|
|
106
|
+
/**
|
|
107
|
+
* End time (epoch timestamp in seconds, or relative string like "-1d", "-2h", "now")
|
|
108
|
+
*/
|
|
109
|
+
end?: pulumi.Input<string>;
|
|
80
110
|
mac?: pulumi.Input<string>;
|
|
81
111
|
orgId: pulumi.Input<string>;
|
|
82
112
|
siteId?: pulumi.Input<string>;
|
|
83
|
-
|
|
113
|
+
/**
|
|
114
|
+
* Start time (epoch timestamp in seconds, or relative string like "-1d", "-1w")
|
|
115
|
+
*/
|
|
116
|
+
start?: pulumi.Input<string>;
|
|
117
|
+
/**
|
|
118
|
+
* enum: `all`, `connected`, `disconnected`
|
|
119
|
+
*/
|
|
84
120
|
status?: pulumi.Input<string>;
|
|
85
121
|
}
|
package/device/getApStats.js
CHANGED
|
@@ -20,8 +20,8 @@ const utilities = require("../utilities");
|
|
|
20
20
|
* siteId: "4a422ae5-7ca0-4599-87a3-8e49aa63685f",
|
|
21
21
|
* status: "connected",
|
|
22
22
|
* duration: "1d",
|
|
23
|
-
* start: 1736031600,
|
|
24
|
-
* end: 1736175934,
|
|
23
|
+
* start: "1736031600",
|
|
24
|
+
* end: "1736175934",
|
|
25
25
|
* });
|
|
26
26
|
* ```
|
|
27
27
|
*/
|
|
@@ -53,8 +53,8 @@ exports.getApStats = getApStats;
|
|
|
53
53
|
* siteId: "4a422ae5-7ca0-4599-87a3-8e49aa63685f",
|
|
54
54
|
* status: "connected",
|
|
55
55
|
* duration: "1d",
|
|
56
|
-
* start: 1736031600,
|
|
57
|
-
* end: 1736175934,
|
|
56
|
+
* start: "1736031600",
|
|
57
|
+
* end: "1736175934",
|
|
58
58
|
* });
|
|
59
59
|
* ```
|
|
60
60
|
*/
|
package/device/getApStats.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getApStats.js","sourceRoot":"","sources":["../../device/getApStats.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;GAmBG;AACH,SAAgB,UAAU,CAAC,IAAoB,EAAE,IAA2B;IACxE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,0CAA0C,EAAE;QACrE,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,KAAK,EAAE,IAAI,CAAC,GAAG;QACf,KAAK,EAAE,IAAI,CAAC,GAAG;QACf,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAXD,gCAWC;
|
|
1
|
+
{"version":3,"file":"getApStats.js","sourceRoot":"","sources":["../../device/getApStats.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;GAmBG;AACH,SAAgB,UAAU,CAAC,IAAoB,EAAE,IAA2B;IACxE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,0CAA0C,EAAE;QACrE,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,KAAK,EAAE,IAAI,CAAC,GAAG;QACf,KAAK,EAAE,IAAI,CAAC,GAAG;QACf,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAXD,gCAWC;AAwDD;;;;;;;;;;;;;;;;;;;GAmBG;AACH,SAAgB,gBAAgB,CAAC,IAA0B,EAAE,IAAiC;IAC1F,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,0CAA0C,EAAE;QAC3E,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,KAAK,EAAE,IAAI,CAAC,GAAG;QACf,KAAK,EAAE,IAAI,CAAC,GAAG;QACf,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAXD,4CAWC"}
|
|
@@ -15,8 +15,8 @@ import * as outputs from "../types/output";
|
|
|
15
15
|
* siteId: "4a422ae5-7ca0-4599-87a3-8e49aa63685f",
|
|
16
16
|
* status: "connected",
|
|
17
17
|
* duration: "1d",
|
|
18
|
-
* start: 1736031600,
|
|
19
|
-
* end: 1736175934,
|
|
18
|
+
* start: "1736031600",
|
|
19
|
+
* end: "1736175934",
|
|
20
20
|
* });
|
|
21
21
|
* ```
|
|
22
22
|
*/
|
|
@@ -30,16 +30,16 @@ export interface GetGatewayStatsArgs {
|
|
|
30
30
|
*/
|
|
31
31
|
duration?: string;
|
|
32
32
|
/**
|
|
33
|
-
* End
|
|
33
|
+
* End time (epoch timestamp in seconds, or relative string like "-1d", "-2h", "now")
|
|
34
34
|
*/
|
|
35
|
-
end?:
|
|
35
|
+
end?: string;
|
|
36
36
|
mac?: string;
|
|
37
37
|
orgId: string;
|
|
38
38
|
siteId?: string;
|
|
39
39
|
/**
|
|
40
|
-
* Start
|
|
40
|
+
* Start time (epoch timestamp in seconds, or relative string like "-1d", "-1w")
|
|
41
41
|
*/
|
|
42
|
-
start?:
|
|
42
|
+
start?: string;
|
|
43
43
|
/**
|
|
44
44
|
* enum: `all`, `connected`, `disconnected`
|
|
45
45
|
*/
|
|
@@ -55,9 +55,9 @@ export interface GetGatewayStatsResult {
|
|
|
55
55
|
*/
|
|
56
56
|
readonly duration?: string;
|
|
57
57
|
/**
|
|
58
|
-
* End
|
|
58
|
+
* End time (epoch timestamp in seconds, or relative string like "-1d", "-2h", "now")
|
|
59
59
|
*/
|
|
60
|
-
readonly end?:
|
|
60
|
+
readonly end?: string;
|
|
61
61
|
/**
|
|
62
62
|
* The provider-assigned unique ID for this managed resource.
|
|
63
63
|
*/
|
|
@@ -66,9 +66,9 @@ export interface GetGatewayStatsResult {
|
|
|
66
66
|
readonly orgId: string;
|
|
67
67
|
readonly siteId?: string;
|
|
68
68
|
/**
|
|
69
|
-
* Start
|
|
69
|
+
* Start time (epoch timestamp in seconds, or relative string like "-1d", "-1w")
|
|
70
70
|
*/
|
|
71
|
-
readonly start?:
|
|
71
|
+
readonly start?: string;
|
|
72
72
|
/**
|
|
73
73
|
* enum: `all`, `connected`, `disconnected`
|
|
74
74
|
*/
|
|
@@ -89,8 +89,8 @@ export interface GetGatewayStatsResult {
|
|
|
89
89
|
* siteId: "4a422ae5-7ca0-4599-87a3-8e49aa63685f",
|
|
90
90
|
* status: "connected",
|
|
91
91
|
* duration: "1d",
|
|
92
|
-
* start: 1736031600,
|
|
93
|
-
* end: 1736175934,
|
|
92
|
+
* start: "1736031600",
|
|
93
|
+
* end: "1736175934",
|
|
94
94
|
* });
|
|
95
95
|
* ```
|
|
96
96
|
*/
|
|
@@ -104,16 +104,16 @@ export interface GetGatewayStatsOutputArgs {
|
|
|
104
104
|
*/
|
|
105
105
|
duration?: pulumi.Input<string>;
|
|
106
106
|
/**
|
|
107
|
-
* End
|
|
107
|
+
* End time (epoch timestamp in seconds, or relative string like "-1d", "-2h", "now")
|
|
108
108
|
*/
|
|
109
|
-
end?: pulumi.Input<
|
|
109
|
+
end?: pulumi.Input<string>;
|
|
110
110
|
mac?: pulumi.Input<string>;
|
|
111
111
|
orgId: pulumi.Input<string>;
|
|
112
112
|
siteId?: pulumi.Input<string>;
|
|
113
113
|
/**
|
|
114
|
-
* Start
|
|
114
|
+
* Start time (epoch timestamp in seconds, or relative string like "-1d", "-1w")
|
|
115
115
|
*/
|
|
116
|
-
start?: pulumi.Input<
|
|
116
|
+
start?: pulumi.Input<string>;
|
|
117
117
|
/**
|
|
118
118
|
* enum: `all`, `connected`, `disconnected`
|
|
119
119
|
*/
|
|
@@ -20,8 +20,8 @@ const utilities = require("../utilities");
|
|
|
20
20
|
* siteId: "4a422ae5-7ca0-4599-87a3-8e49aa63685f",
|
|
21
21
|
* status: "connected",
|
|
22
22
|
* duration: "1d",
|
|
23
|
-
* start: 1736031600,
|
|
24
|
-
* end: 1736175934,
|
|
23
|
+
* start: "1736031600",
|
|
24
|
+
* end: "1736175934",
|
|
25
25
|
* });
|
|
26
26
|
* ```
|
|
27
27
|
*/
|
|
@@ -53,8 +53,8 @@ exports.getGatewayStats = getGatewayStats;
|
|
|
53
53
|
* siteId: "4a422ae5-7ca0-4599-87a3-8e49aa63685f",
|
|
54
54
|
* status: "connected",
|
|
55
55
|
* duration: "1d",
|
|
56
|
-
* start: 1736031600,
|
|
57
|
-
* end: 1736175934,
|
|
56
|
+
* start: "1736031600",
|
|
57
|
+
* end: "1736175934",
|
|
58
58
|
* });
|
|
59
59
|
* ```
|
|
60
60
|
*/
|
|
@@ -17,8 +17,8 @@ import * as outputs from "../types/output";
|
|
|
17
17
|
* evpnUnused: "true",
|
|
18
18
|
* evpntopoId: "92984e2f-94db-4cd8-9763-9cf83fbd079e",
|
|
19
19
|
* duration: "1d",
|
|
20
|
-
* start: 1736031600,
|
|
21
|
-
* end: 1736175934,
|
|
20
|
+
* start: "1736031600",
|
|
21
|
+
* end: "1736175934",
|
|
22
22
|
* });
|
|
23
23
|
* ```
|
|
24
24
|
*/
|
|
@@ -32,9 +32,9 @@ export interface GetSwitchStatsArgs {
|
|
|
32
32
|
*/
|
|
33
33
|
duration?: string;
|
|
34
34
|
/**
|
|
35
|
-
* End
|
|
35
|
+
* End time (epoch timestamp in seconds, or relative string like "-1d", "-2h", "now")
|
|
36
36
|
*/
|
|
37
|
-
end?:
|
|
37
|
+
end?: string;
|
|
38
38
|
/**
|
|
39
39
|
* If `evpnUnused`==`true`, find EVPN eligible switches which don’t belong to any EVPN Topology yet
|
|
40
40
|
*/
|
|
@@ -47,9 +47,9 @@ export interface GetSwitchStatsArgs {
|
|
|
47
47
|
orgId: string;
|
|
48
48
|
siteId?: string;
|
|
49
49
|
/**
|
|
50
|
-
* Start
|
|
50
|
+
* Start time (epoch timestamp in seconds, or relative string like "-1d", "-1w")
|
|
51
51
|
*/
|
|
52
|
-
start?:
|
|
52
|
+
start?: string;
|
|
53
53
|
/**
|
|
54
54
|
* enum: `all`, `connected`, `disconnected`
|
|
55
55
|
*/
|
|
@@ -65,9 +65,9 @@ export interface GetSwitchStatsResult {
|
|
|
65
65
|
*/
|
|
66
66
|
readonly duration?: string;
|
|
67
67
|
/**
|
|
68
|
-
* End
|
|
68
|
+
* End time (epoch timestamp in seconds, or relative string like "-1d", "-2h", "now")
|
|
69
69
|
*/
|
|
70
|
-
readonly end?:
|
|
70
|
+
readonly end?: string;
|
|
71
71
|
/**
|
|
72
72
|
* If `evpnUnused`==`true`, find EVPN eligible switches which don’t belong to any EVPN Topology yet
|
|
73
73
|
*/
|
|
@@ -84,9 +84,9 @@ export interface GetSwitchStatsResult {
|
|
|
84
84
|
readonly orgId: string;
|
|
85
85
|
readonly siteId?: string;
|
|
86
86
|
/**
|
|
87
|
-
* Start
|
|
87
|
+
* Start time (epoch timestamp in seconds, or relative string like "-1d", "-1w")
|
|
88
88
|
*/
|
|
89
|
-
readonly start?:
|
|
89
|
+
readonly start?: string;
|
|
90
90
|
/**
|
|
91
91
|
* enum: `all`, `connected`, `disconnected`
|
|
92
92
|
*/
|
|
@@ -109,8 +109,8 @@ export interface GetSwitchStatsResult {
|
|
|
109
109
|
* evpnUnused: "true",
|
|
110
110
|
* evpntopoId: "92984e2f-94db-4cd8-9763-9cf83fbd079e",
|
|
111
111
|
* duration: "1d",
|
|
112
|
-
* start: 1736031600,
|
|
113
|
-
* end: 1736175934,
|
|
112
|
+
* start: "1736031600",
|
|
113
|
+
* end: "1736175934",
|
|
114
114
|
* });
|
|
115
115
|
* ```
|
|
116
116
|
*/
|
|
@@ -124,9 +124,9 @@ export interface GetSwitchStatsOutputArgs {
|
|
|
124
124
|
*/
|
|
125
125
|
duration?: pulumi.Input<string>;
|
|
126
126
|
/**
|
|
127
|
-
* End
|
|
127
|
+
* End time (epoch timestamp in seconds, or relative string like "-1d", "-2h", "now")
|
|
128
128
|
*/
|
|
129
|
-
end?: pulumi.Input<
|
|
129
|
+
end?: pulumi.Input<string>;
|
|
130
130
|
/**
|
|
131
131
|
* If `evpnUnused`==`true`, find EVPN eligible switches which don’t belong to any EVPN Topology yet
|
|
132
132
|
*/
|
|
@@ -139,9 +139,9 @@ export interface GetSwitchStatsOutputArgs {
|
|
|
139
139
|
orgId: pulumi.Input<string>;
|
|
140
140
|
siteId?: pulumi.Input<string>;
|
|
141
141
|
/**
|
|
142
|
-
* Start
|
|
142
|
+
* Start time (epoch timestamp in seconds, or relative string like "-1d", "-1w")
|
|
143
143
|
*/
|
|
144
|
-
start?: pulumi.Input<
|
|
144
|
+
start?: pulumi.Input<string>;
|
|
145
145
|
/**
|
|
146
146
|
* enum: `all`, `connected`, `disconnected`
|
|
147
147
|
*/
|
package/device/getSwitchStats.js
CHANGED
|
@@ -22,8 +22,8 @@ const utilities = require("../utilities");
|
|
|
22
22
|
* evpnUnused: "true",
|
|
23
23
|
* evpntopoId: "92984e2f-94db-4cd8-9763-9cf83fbd079e",
|
|
24
24
|
* duration: "1d",
|
|
25
|
-
* start: 1736031600,
|
|
26
|
-
* end: 1736175934,
|
|
25
|
+
* start: "1736031600",
|
|
26
|
+
* end: "1736175934",
|
|
27
27
|
* });
|
|
28
28
|
* ```
|
|
29
29
|
*/
|
|
@@ -59,8 +59,8 @@ exports.getSwitchStats = getSwitchStats;
|
|
|
59
59
|
* evpnUnused: "true",
|
|
60
60
|
* evpntopoId: "92984e2f-94db-4cd8-9763-9cf83fbd079e",
|
|
61
61
|
* duration: "1d",
|
|
62
|
-
* start: 1736031600,
|
|
63
|
-
* end: 1736175934,
|
|
62
|
+
* start: "1736031600",
|
|
63
|
+
* end: "1736175934",
|
|
64
64
|
* });
|
|
65
65
|
* ```
|
|
66
66
|
*/
|
package/device/switch.d.ts
CHANGED
|
@@ -45,6 +45,9 @@ export declare class Switch extends pulumi.CustomResource {
|
|
|
45
45
|
* additional CLI commands to append to the generated Junos config. **Note**: no check is done
|
|
46
46
|
*/
|
|
47
47
|
readonly additionalConfigCmds: pulumi.Output<string[] | undefined>;
|
|
48
|
+
readonly bgpConfig: pulumi.Output<{
|
|
49
|
+
[key: string]: outputs.device.SwitchBgpConfig;
|
|
50
|
+
} | undefined>;
|
|
48
51
|
readonly deviceId: pulumi.Output<string>;
|
|
49
52
|
readonly dhcpSnooping: pulumi.Output<outputs.device.SwitchDhcpSnooping | undefined>;
|
|
50
53
|
readonly dhcpdConfig: pulumi.Output<outputs.device.SwitchDhcpdConfig | undefined>;
|
|
@@ -171,6 +174,12 @@ export declare class Switch extends pulumi.CustomResource {
|
|
|
171
174
|
* Used for OSPF / BGP / EVPN
|
|
172
175
|
*/
|
|
173
176
|
readonly routerId: pulumi.Output<string>;
|
|
177
|
+
/**
|
|
178
|
+
* Property key is the routing policy name
|
|
179
|
+
*/
|
|
180
|
+
readonly routingPolicies: pulumi.Output<{
|
|
181
|
+
[key: string]: outputs.device.SwitchRoutingPolicies;
|
|
182
|
+
} | undefined>;
|
|
174
183
|
/**
|
|
175
184
|
* Device Serial
|
|
176
185
|
*/
|
|
@@ -243,6 +252,9 @@ export interface SwitchState {
|
|
|
243
252
|
* additional CLI commands to append to the generated Junos config. **Note**: no check is done
|
|
244
253
|
*/
|
|
245
254
|
additionalConfigCmds?: pulumi.Input<pulumi.Input<string>[]>;
|
|
255
|
+
bgpConfig?: pulumi.Input<{
|
|
256
|
+
[key: string]: pulumi.Input<inputs.device.SwitchBgpConfig>;
|
|
257
|
+
}>;
|
|
246
258
|
deviceId?: pulumi.Input<string>;
|
|
247
259
|
dhcpSnooping?: pulumi.Input<inputs.device.SwitchDhcpSnooping>;
|
|
248
260
|
dhcpdConfig?: pulumi.Input<inputs.device.SwitchDhcpdConfig>;
|
|
@@ -369,6 +381,12 @@ export interface SwitchState {
|
|
|
369
381
|
* Used for OSPF / BGP / EVPN
|
|
370
382
|
*/
|
|
371
383
|
routerId?: pulumi.Input<string>;
|
|
384
|
+
/**
|
|
385
|
+
* Property key is the routing policy name
|
|
386
|
+
*/
|
|
387
|
+
routingPolicies?: pulumi.Input<{
|
|
388
|
+
[key: string]: pulumi.Input<inputs.device.SwitchRoutingPolicies>;
|
|
389
|
+
}>;
|
|
372
390
|
/**
|
|
373
391
|
* Device Serial
|
|
374
392
|
*/
|
|
@@ -433,6 +451,9 @@ export interface SwitchArgs {
|
|
|
433
451
|
* additional CLI commands to append to the generated Junos config. **Note**: no check is done
|
|
434
452
|
*/
|
|
435
453
|
additionalConfigCmds?: pulumi.Input<pulumi.Input<string>[]>;
|
|
454
|
+
bgpConfig?: pulumi.Input<{
|
|
455
|
+
[key: string]: pulumi.Input<inputs.device.SwitchBgpConfig>;
|
|
456
|
+
}>;
|
|
436
457
|
deviceId: pulumi.Input<string>;
|
|
437
458
|
dhcpSnooping?: pulumi.Input<inputs.device.SwitchDhcpSnooping>;
|
|
438
459
|
dhcpdConfig?: pulumi.Input<inputs.device.SwitchDhcpdConfig>;
|
|
@@ -547,6 +568,12 @@ export interface SwitchArgs {
|
|
|
547
568
|
* Used for OSPF / BGP / EVPN
|
|
548
569
|
*/
|
|
549
570
|
routerId?: pulumi.Input<string>;
|
|
571
|
+
/**
|
|
572
|
+
* Property key is the routing policy name
|
|
573
|
+
*/
|
|
574
|
+
routingPolicies?: pulumi.Input<{
|
|
575
|
+
[key: string]: pulumi.Input<inputs.device.SwitchRoutingPolicies>;
|
|
576
|
+
}>;
|
|
550
577
|
siteId: pulumi.Input<string>;
|
|
551
578
|
snmpConfig?: pulumi.Input<inputs.device.SwitchSnmpConfig>;
|
|
552
579
|
stpConfig?: pulumi.Input<inputs.device.SwitchStpConfig>;
|
package/device/switch.js
CHANGED
|
@@ -53,6 +53,7 @@ class Switch extends pulumi.CustomResource {
|
|
|
53
53
|
resourceInputs["aclPolicies"] = state?.aclPolicies;
|
|
54
54
|
resourceInputs["aclTags"] = state?.aclTags;
|
|
55
55
|
resourceInputs["additionalConfigCmds"] = state?.additionalConfigCmds;
|
|
56
|
+
resourceInputs["bgpConfig"] = state?.bgpConfig;
|
|
56
57
|
resourceInputs["deviceId"] = state?.deviceId;
|
|
57
58
|
resourceInputs["dhcpSnooping"] = state?.dhcpSnooping;
|
|
58
59
|
resourceInputs["dhcpdConfig"] = state?.dhcpdConfig;
|
|
@@ -88,6 +89,7 @@ class Switch extends pulumi.CustomResource {
|
|
|
88
89
|
resourceInputs["remoteSyslog"] = state?.remoteSyslog;
|
|
89
90
|
resourceInputs["role"] = state?.role;
|
|
90
91
|
resourceInputs["routerId"] = state?.routerId;
|
|
92
|
+
resourceInputs["routingPolicies"] = state?.routingPolicies;
|
|
91
93
|
resourceInputs["serial"] = state?.serial;
|
|
92
94
|
resourceInputs["siteId"] = state?.siteId;
|
|
93
95
|
resourceInputs["snmpConfig"] = state?.snmpConfig;
|
|
@@ -114,6 +116,7 @@ class Switch extends pulumi.CustomResource {
|
|
|
114
116
|
resourceInputs["aclPolicies"] = args?.aclPolicies;
|
|
115
117
|
resourceInputs["aclTags"] = args?.aclTags;
|
|
116
118
|
resourceInputs["additionalConfigCmds"] = args?.additionalConfigCmds;
|
|
119
|
+
resourceInputs["bgpConfig"] = args?.bgpConfig;
|
|
117
120
|
resourceInputs["deviceId"] = args?.deviceId;
|
|
118
121
|
resourceInputs["dhcpSnooping"] = args?.dhcpSnooping;
|
|
119
122
|
resourceInputs["dhcpdConfig"] = args?.dhcpdConfig;
|
|
@@ -143,6 +146,7 @@ class Switch extends pulumi.CustomResource {
|
|
|
143
146
|
resourceInputs["remoteSyslog"] = args?.remoteSyslog;
|
|
144
147
|
resourceInputs["role"] = args?.role;
|
|
145
148
|
resourceInputs["routerId"] = args?.routerId;
|
|
149
|
+
resourceInputs["routingPolicies"] = args?.routingPolicies;
|
|
146
150
|
resourceInputs["siteId"] = args?.siteId;
|
|
147
151
|
resourceInputs["snmpConfig"] = args?.snmpConfig;
|
|
148
152
|
resourceInputs["stpConfig"] = args?.stpConfig;
|
package/device/switch.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"switch.js","sourceRoot":"","sources":["../../device/switch.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;GAgBG;AACH,MAAa,MAAO,SAAQ,MAAM,CAAC,cAAc;IAC7C;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAmB,EAAE,IAAmC;QACjH,OAAO,IAAI,MAAM,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IAC7D,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,MAAM,CAAC,YAAY,CAAC;IACvD,CAAC;
|
|
1
|
+
{"version":3,"file":"switch.js","sourceRoot":"","sources":["../../device/switch.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;GAgBG;AACH,MAAa,MAAO,SAAQ,MAAM,CAAC,cAAc;IAC7C;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAmB,EAAE,IAAmC;QACjH,OAAO,IAAI,MAAM,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IAC7D,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,MAAM,CAAC,YAAY,CAAC;IACvD,CAAC;IA+KD,YAAY,IAAY,EAAE,WAAsC,EAAE,IAAmC;QACjG,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAsC,CAAC;YACrD,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,EAAE,WAAW,CAAC;YACnD,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,EAAE,OAAO,CAAC;YAC3C,cAAc,CAAC,sBAAsB,CAAC,GAAG,KAAK,EAAE,oBAAoB,CAAC;YACrE,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,EAAE,SAAS,CAAC;YAC/C,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,EAAE,QAAQ,CAAC;YAC7C,cAAc,CAAC,cAAc,CAAC,GAAG,KAAK,EAAE,YAAY,CAAC;YACrD,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,EAAE,WAAW,CAAC;YACnD,cAAc,CAAC,mBAAmB,CAAC,GAAG,KAAK,EAAE,iBAAiB,CAAC;YAC/D,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,EAAE,UAAU,CAAC;YACjD,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,EAAE,WAAW,CAAC;YACnD,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,EAAE,WAAW,CAAC;YACnD,cAAc,CAAC,cAAc,CAAC,GAAG,KAAK,EAAE,YAAY,CAAC;YACrD,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,EAAE,SAAS,CAAC;YAC/C,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,EAAE,SAAS,CAAC;YAC/C,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,EAAE,SAAS,CAAC;YAC/C,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,EAAE,QAAQ,CAAC;YAC7C,cAAc,CAAC,iBAAiB,CAAC,GAAG,KAAK,EAAE,eAAe,CAAC;YAC3D,cAAc,CAAC,KAAK,CAAC,GAAG,KAAK,EAAE,GAAG,CAAC;YACnC,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,EAAE,OAAO,CAAC;YAC3C,cAAc,CAAC,OAAO,CAAC,GAAG,KAAK,EAAE,KAAK,CAAC;YACvC,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,EAAE,OAAO,CAAC;YAC3C,cAAc,CAAC,OAAO,CAAC,GAAG,KAAK,EAAE,KAAK,CAAC;YACvC,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;YACrC,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,EAAE,QAAQ,CAAC;YAC7C,cAAc,CAAC,OAAO,CAAC,GAAG,KAAK,EAAE,KAAK,CAAC;YACvC,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,EAAE,UAAU,CAAC;YACjD,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,EAAE,WAAW,CAAC;YACnD,cAAc,CAAC,OAAO,CAAC,GAAG,KAAK,EAAE,KAAK,CAAC;YACvC,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,EAAE,SAAS,CAAC;YAC/C,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,EAAE,UAAU,CAAC;YACjD,cAAc,CAAC,gBAAgB,CAAC,GAAG,KAAK,EAAE,cAAc,CAAC;YACzD,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,EAAE,UAAU,CAAC;YACjD,cAAc,CAAC,qBAAqB,CAAC,GAAG,KAAK,EAAE,mBAAmB,CAAC;YACnE,cAAc,CAAC,eAAe,CAAC,GAAG,KAAK,EAAE,aAAa,CAAC;YACvD,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,EAAE,UAAU,CAAC;YACjD,cAAc,CAAC,cAAc,CAAC,GAAG,KAAK,EAAE,YAAY,CAAC;YACrD,cAAc,CAAC,cAAc,CAAC,GAAG,KAAK,EAAE,YAAY,CAAC;YACrD,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;YACrC,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,EAAE,QAAQ,CAAC;YAC7C,cAAc,CAAC,iBAAiB,CAAC,GAAG,KAAK,EAAE,eAAe,CAAC;YAC3D,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,EAAE,MAAM,CAAC;YACzC,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,EAAE,MAAM,CAAC;YACzC,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,EAAE,UAAU,CAAC;YACjD,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,EAAE,SAAS,CAAC;YAC/C,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,EAAE,UAAU,CAAC;YACjD,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;YACrC,cAAc,CAAC,uBAAuB,CAAC,GAAG,KAAK,EAAE,qBAAqB,CAAC;YACvE,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;YACrC,cAAc,CAAC,gBAAgB,CAAC,GAAG,KAAK,EAAE,cAAc,CAAC;YACzD,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,EAAE,SAAS,CAAC;YAC/C,cAAc,CAAC,cAAc,CAAC,GAAG,KAAK,EAAE,YAAY,CAAC;YACrD,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,EAAE,UAAU,CAAC;YACjD,cAAc,CAAC,GAAG,CAAC,GAAG,KAAK,EAAE,CAAC,CAAC;YAC/B,cAAc,CAAC,GAAG,CAAC,GAAG,KAAK,EAAE,CAAC,CAAC;SAClC;aAAM;YACH,MAAM,IAAI,GAAG,WAAqC,CAAC;YACnD,IAAI,IAAI,EAAE,QAAQ,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC3C,MAAM,IAAI,KAAK,CAAC,sCAAsC,CAAC,CAAC;aAC3D;YACD,IAAI,IAAI,EAAE,MAAM,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACzC,MAAM,IAAI,KAAK,CAAC,oCAAoC,CAAC,CAAC;aACzD;YACD,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,EAAE,WAAW,CAAC;YAClD,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,EAAE,OAAO,CAAC;YAC1C,cAAc,CAAC,sBAAsB,CAAC,GAAG,IAAI,EAAE,oBAAoB,CAAC;YACpE,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,EAAE,SAAS,CAAC;YAC9C,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,EAAE,QAAQ,CAAC;YAC5C,cAAc,CAAC,cAAc,CAAC,GAAG,IAAI,EAAE,YAAY,CAAC;YACpD,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,EAAE,WAAW,CAAC;YAClD,cAAc,CAAC,mBAAmB,CAAC,GAAG,IAAI,EAAE,iBAAiB,CAAC;YAC9D,cAAc,CAAC,YAAY,CAAC,GAAG,IAAI,EAAE,UAAU,CAAC;YAChD,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,EAAE,WAAW,CAAC;YAClD,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,EAAE,WAAW,CAAC;YAClD,cAAc,CAAC,cAAc,CAAC,GAAG,IAAI,EAAE,YAAY,CAAC;YACpD,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,EAAE,QAAQ,CAAC;YAC5C,cAAc,CAAC,iBAAiB,CAAC,GAAG,IAAI,EAAE,eAAe,CAAC;YAC1D,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,EAAE,OAAO,CAAC;YAC1C,cAAc,CAAC,OAAO,CAAC,GAAG,IAAI,EAAE,KAAK,CAAC;YACtC,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,EAAE,OAAO,CAAC;YAC1C,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,EAAE,IAAI,CAAC;YACpC,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,EAAE,QAAQ,CAAC;YAC5C,cAAc,CAAC,OAAO,CAAC,GAAG,IAAI,EAAE,KAAK,CAAC;YACtC,cAAc,CAAC,YAAY,CAAC,GAAG,IAAI,EAAE,UAAU,CAAC;YAChD,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,EAAE,WAAW,CAAC;YAClD,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,EAAE,SAAS,CAAC;YAC9C,cAAc,CAAC,YAAY,CAAC,GAAG,IAAI,EAAE,UAAU,CAAC;YAChD,cAAc,CAAC,gBAAgB,CAAC,GAAG,IAAI,EAAE,cAAc,CAAC;YACxD,cAAc,CAAC,YAAY,CAAC,GAAG,IAAI,EAAE,UAAU,CAAC;YAChD,cAAc,CAAC,qBAAqB,CAAC,GAAG,IAAI,EAAE,mBAAmB,CAAC;YAClE,cAAc,CAAC,eAAe,CAAC,GAAG,IAAI,EAAE,aAAa,CAAC;YACtD,cAAc,CAAC,YAAY,CAAC,GAAG,IAAI,EAAE,UAAU,CAAC;YAChD,cAAc,CAAC,cAAc,CAAC,GAAG,IAAI,EAAE,YAAY,CAAC;YACpD,cAAc,CAAC,cAAc,CAAC,GAAG,IAAI,EAAE,YAAY,CAAC;YACpD,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,EAAE,IAAI,CAAC;YACpC,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,EAAE,QAAQ,CAAC;YAC5C,cAAc,CAAC,iBAAiB,CAAC,GAAG,IAAI,EAAE,eAAe,CAAC;YAC1D,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,EAAE,MAAM,CAAC;YACxC,cAAc,CAAC,YAAY,CAAC,GAAG,IAAI,EAAE,UAAU,CAAC;YAChD,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,EAAE,SAAS,CAAC;YAC9C,cAAc,CAAC,YAAY,CAAC,GAAG,IAAI,EAAE,UAAU,CAAC;YAChD,cAAc,CAAC,uBAAuB,CAAC,GAAG,IAAI,EAAE,qBAAqB,CAAC;YACtE,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,EAAE,IAAI,CAAC;YACpC,cAAc,CAAC,gBAAgB,CAAC,GAAG,IAAI,EAAE,cAAc,CAAC;YACxD,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,EAAE,SAAS,CAAC;YAC9C,cAAc,CAAC,cAAc,CAAC,GAAG,IAAI,EAAE,YAAY,CAAC;YACpD,cAAc,CAAC,YAAY,CAAC,GAAG,IAAI,EAAE,UAAU,CAAC;YAChD,cAAc,CAAC,GAAG,CAAC,GAAG,IAAI,EAAE,CAAC,CAAC;YAC9B,cAAc,CAAC,GAAG,CAAC,GAAG,IAAI,EAAE,CAAC,CAAC;YAC9B,cAAc,CAAC,WAAW,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAChD,cAAc,CAAC,WAAW,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAChD,cAAc,CAAC,WAAW,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAChD,cAAc,CAAC,KAAK,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAC1C,cAAc,CAAC,OAAO,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAC5C,cAAc,CAAC,OAAO,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAC5C,cAAc,CAAC,QAAQ,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAC7C,cAAc,CAAC,MAAM,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SAC9C;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,MAAM,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC3D,CAAC;;AArUL,wBAsUC;AAxTG,gBAAgB;AACO,mBAAY,GAAG,kCAAkC,CAAC"}
|
package/org/nactag.d.ts
CHANGED
|
@@ -55,7 +55,7 @@ export declare class Nactag extends pulumi.CustomResource {
|
|
|
55
55
|
readonly egressVlanNames: pulumi.Output<string[] | undefined>;
|
|
56
56
|
readonly gbpTag: pulumi.Output<string | undefined>;
|
|
57
57
|
/**
|
|
58
|
-
* if `type`==`match`. enum: `certCn`, `certEku`, `certIssuer`, `certSan`, `certSerial`, `certSub`, `certTemplate`, `clientMac`, `
|
|
58
|
+
* if `type`==`match`. enum: `certCn`, `certEku`, `certIssuer`, `certSan`, `certSerial`, `certSub`, `certTemplate`, `clientMac`, `edrStatus`, `gbpTag`, `hostname`, `idpRole`, `ingressVlan`, `mdmStatus`, `nasIp`, `radiusGroup`, `realm`, `ssid`, `userName`, `usermacLabel`
|
|
59
59
|
*/
|
|
60
60
|
readonly match: pulumi.Output<string | undefined>;
|
|
61
61
|
/**
|
|
@@ -132,7 +132,7 @@ export interface NactagState {
|
|
|
132
132
|
egressVlanNames?: pulumi.Input<pulumi.Input<string>[]>;
|
|
133
133
|
gbpTag?: pulumi.Input<string>;
|
|
134
134
|
/**
|
|
135
|
-
* if `type`==`match`. enum: `certCn`, `certEku`, `certIssuer`, `certSan`, `certSerial`, `certSub`, `certTemplate`, `clientMac`, `
|
|
135
|
+
* if `type`==`match`. enum: `certCn`, `certEku`, `certIssuer`, `certSan`, `certSerial`, `certSub`, `certTemplate`, `clientMac`, `edrStatus`, `gbpTag`, `hostname`, `idpRole`, `ingressVlan`, `mdmStatus`, `nasIp`, `radiusGroup`, `realm`, `ssid`, `userName`, `usermacLabel`
|
|
136
136
|
*/
|
|
137
137
|
match?: pulumi.Input<string>;
|
|
138
138
|
/**
|
|
@@ -201,7 +201,7 @@ export interface NactagArgs {
|
|
|
201
201
|
egressVlanNames?: pulumi.Input<pulumi.Input<string>[]>;
|
|
202
202
|
gbpTag?: pulumi.Input<string>;
|
|
203
203
|
/**
|
|
204
|
-
* if `type`==`match`. enum: `certCn`, `certEku`, `certIssuer`, `certSan`, `certSerial`, `certSub`, `certTemplate`, `clientMac`, `
|
|
204
|
+
* if `type`==`match`. enum: `certCn`, `certEku`, `certIssuer`, `certSan`, `certSerial`, `certSub`, `certTemplate`, `clientMac`, `edrStatus`, `gbpTag`, `hostname`, `idpRole`, `ingressVlan`, `mdmStatus`, `nasIp`, `radiusGroup`, `realm`, `ssid`, `userName`, `usermacLabel`
|
|
205
205
|
*/
|
|
206
206
|
match?: pulumi.Input<string>;
|
|
207
207
|
/**
|
package/org/networktemplate.d.ts
CHANGED
|
@@ -109,6 +109,9 @@ export declare class Networktemplate extends pulumi.CustomResource {
|
|
|
109
109
|
* additional CLI commands to append to the generated Junos config. **Note**: no check is done
|
|
110
110
|
*/
|
|
111
111
|
readonly additionalConfigCmds: pulumi.Output<string[] | undefined>;
|
|
112
|
+
readonly bgpConfig: pulumi.Output<{
|
|
113
|
+
[key: string]: outputs.org.NetworktemplateBgpConfig;
|
|
114
|
+
} | undefined>;
|
|
112
115
|
readonly dhcpSnooping: pulumi.Output<outputs.org.NetworktemplateDhcpSnooping | undefined>;
|
|
113
116
|
/**
|
|
114
117
|
* Global dns settings. To keep compatibility, dns settings in `ipConfig` and `oobIpConfig` will overwrite this setting
|
|
@@ -173,6 +176,12 @@ export declare class Networktemplate extends pulumi.CustomResource {
|
|
|
173
176
|
* By default, only the configuration generated by Mist is cleaned up during the configuration process. If `true`, all the existing configuration will be removed.
|
|
174
177
|
*/
|
|
175
178
|
readonly removeExistingConfigs: pulumi.Output<boolean | undefined>;
|
|
179
|
+
/**
|
|
180
|
+
* Property key is the routing policy name
|
|
181
|
+
*/
|
|
182
|
+
readonly routingPolicies: pulumi.Output<{
|
|
183
|
+
[key: string]: outputs.org.NetworktemplateRoutingPolicies;
|
|
184
|
+
} | undefined>;
|
|
176
185
|
readonly snmpConfig: pulumi.Output<outputs.org.NetworktemplateSnmpConfig | undefined>;
|
|
177
186
|
/**
|
|
178
187
|
* Defines custom switch configuration based on different criteria
|
|
@@ -213,6 +222,9 @@ export interface NetworktemplateState {
|
|
|
213
222
|
* additional CLI commands to append to the generated Junos config. **Note**: no check is done
|
|
214
223
|
*/
|
|
215
224
|
additionalConfigCmds?: pulumi.Input<pulumi.Input<string>[]>;
|
|
225
|
+
bgpConfig?: pulumi.Input<{
|
|
226
|
+
[key: string]: pulumi.Input<inputs.org.NetworktemplateBgpConfig>;
|
|
227
|
+
}>;
|
|
216
228
|
dhcpSnooping?: pulumi.Input<inputs.org.NetworktemplateDhcpSnooping>;
|
|
217
229
|
/**
|
|
218
230
|
* Global dns settings. To keep compatibility, dns settings in `ipConfig` and `oobIpConfig` will overwrite this setting
|
|
@@ -277,6 +289,12 @@ export interface NetworktemplateState {
|
|
|
277
289
|
* By default, only the configuration generated by Mist is cleaned up during the configuration process. If `true`, all the existing configuration will be removed.
|
|
278
290
|
*/
|
|
279
291
|
removeExistingConfigs?: pulumi.Input<boolean>;
|
|
292
|
+
/**
|
|
293
|
+
* Property key is the routing policy name
|
|
294
|
+
*/
|
|
295
|
+
routingPolicies?: pulumi.Input<{
|
|
296
|
+
[key: string]: pulumi.Input<inputs.org.NetworktemplateRoutingPolicies>;
|
|
297
|
+
}>;
|
|
280
298
|
snmpConfig?: pulumi.Input<inputs.org.NetworktemplateSnmpConfig>;
|
|
281
299
|
/**
|
|
282
300
|
* Defines custom switch configuration based on different criteria
|
|
@@ -309,6 +327,9 @@ export interface NetworktemplateArgs {
|
|
|
309
327
|
* additional CLI commands to append to the generated Junos config. **Note**: no check is done
|
|
310
328
|
*/
|
|
311
329
|
additionalConfigCmds?: pulumi.Input<pulumi.Input<string>[]>;
|
|
330
|
+
bgpConfig?: pulumi.Input<{
|
|
331
|
+
[key: string]: pulumi.Input<inputs.org.NetworktemplateBgpConfig>;
|
|
332
|
+
}>;
|
|
312
333
|
dhcpSnooping?: pulumi.Input<inputs.org.NetworktemplateDhcpSnooping>;
|
|
313
334
|
/**
|
|
314
335
|
* Global dns settings. To keep compatibility, dns settings in `ipConfig` and `oobIpConfig` will overwrite this setting
|
|
@@ -373,6 +394,12 @@ export interface NetworktemplateArgs {
|
|
|
373
394
|
* By default, only the configuration generated by Mist is cleaned up during the configuration process. If `true`, all the existing configuration will be removed.
|
|
374
395
|
*/
|
|
375
396
|
removeExistingConfigs?: pulumi.Input<boolean>;
|
|
397
|
+
/**
|
|
398
|
+
* Property key is the routing policy name
|
|
399
|
+
*/
|
|
400
|
+
routingPolicies?: pulumi.Input<{
|
|
401
|
+
[key: string]: pulumi.Input<inputs.org.NetworktemplateRoutingPolicies>;
|
|
402
|
+
}>;
|
|
376
403
|
snmpConfig?: pulumi.Input<inputs.org.NetworktemplateSnmpConfig>;
|
|
377
404
|
/**
|
|
378
405
|
* Defines custom switch configuration based on different criteria
|
package/org/networktemplate.js
CHANGED
|
@@ -117,6 +117,7 @@ class Networktemplate extends pulumi.CustomResource {
|
|
|
117
117
|
resourceInputs["aclPolicies"] = state?.aclPolicies;
|
|
118
118
|
resourceInputs["aclTags"] = state?.aclTags;
|
|
119
119
|
resourceInputs["additionalConfigCmds"] = state?.additionalConfigCmds;
|
|
120
|
+
resourceInputs["bgpConfig"] = state?.bgpConfig;
|
|
120
121
|
resourceInputs["dhcpSnooping"] = state?.dhcpSnooping;
|
|
121
122
|
resourceInputs["dnsServers"] = state?.dnsServers;
|
|
122
123
|
resourceInputs["dnsSuffixes"] = state?.dnsSuffixes;
|
|
@@ -133,6 +134,7 @@ class Networktemplate extends pulumi.CustomResource {
|
|
|
133
134
|
resourceInputs["radiusConfig"] = state?.radiusConfig;
|
|
134
135
|
resourceInputs["remoteSyslog"] = state?.remoteSyslog;
|
|
135
136
|
resourceInputs["removeExistingConfigs"] = state?.removeExistingConfigs;
|
|
137
|
+
resourceInputs["routingPolicies"] = state?.routingPolicies;
|
|
136
138
|
resourceInputs["snmpConfig"] = state?.snmpConfig;
|
|
137
139
|
resourceInputs["switchMatching"] = state?.switchMatching;
|
|
138
140
|
resourceInputs["switchMgmt"] = state?.switchMgmt;
|
|
@@ -147,6 +149,7 @@ class Networktemplate extends pulumi.CustomResource {
|
|
|
147
149
|
resourceInputs["aclPolicies"] = args?.aclPolicies;
|
|
148
150
|
resourceInputs["aclTags"] = args?.aclTags;
|
|
149
151
|
resourceInputs["additionalConfigCmds"] = args?.additionalConfigCmds;
|
|
152
|
+
resourceInputs["bgpConfig"] = args?.bgpConfig;
|
|
150
153
|
resourceInputs["dhcpSnooping"] = args?.dhcpSnooping;
|
|
151
154
|
resourceInputs["dnsServers"] = args?.dnsServers;
|
|
152
155
|
resourceInputs["dnsSuffixes"] = args?.dnsSuffixes;
|
|
@@ -163,6 +166,7 @@ class Networktemplate extends pulumi.CustomResource {
|
|
|
163
166
|
resourceInputs["radiusConfig"] = args?.radiusConfig;
|
|
164
167
|
resourceInputs["remoteSyslog"] = args?.remoteSyslog;
|
|
165
168
|
resourceInputs["removeExistingConfigs"] = args?.removeExistingConfigs;
|
|
169
|
+
resourceInputs["routingPolicies"] = args?.routingPolicies;
|
|
166
170
|
resourceInputs["snmpConfig"] = args?.snmpConfig;
|
|
167
171
|
resourceInputs["switchMatching"] = args?.switchMatching;
|
|
168
172
|
resourceInputs["switchMgmt"] = args?.switchMgmt;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"networktemplate.js","sourceRoot":"","sources":["../../org/networktemplate.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAgFG;AACH,MAAa,eAAgB,SAAQ,MAAM,CAAC,cAAc;IACtD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA4B,EAAE,IAAmC;QAC1H,OAAO,IAAI,eAAe,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IACtE,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,eAAe,CAAC,YAAY,CAAC;IAChE,CAAC;
|
|
1
|
+
{"version":3,"file":"networktemplate.js","sourceRoot":"","sources":["../../org/networktemplate.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAgFG;AACH,MAAa,eAAgB,SAAQ,MAAM,CAAC,cAAc;IACtD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA4B,EAAE,IAAmC;QAC1H,OAAO,IAAI,eAAe,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IACtE,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,eAAe,CAAC,YAAY,CAAC;IAChE,CAAC;IA2FD,YAAY,IAAY,EAAE,WAAwD,EAAE,IAAmC;QACnH,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA+C,CAAC;YAC9D,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,EAAE,WAAW,CAAC;YACnD,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,EAAE,OAAO,CAAC;YAC3C,cAAc,CAAC,sBAAsB,CAAC,GAAG,KAAK,EAAE,oBAAoB,CAAC;YACrE,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,EAAE,SAAS,CAAC;YAC/C,cAAc,CAAC,cAAc,CAAC,GAAG,KAAK,EAAE,YAAY,CAAC;YACrD,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,EAAE,UAAU,CAAC;YACjD,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,EAAE,WAAW,CAAC;YACnD,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,EAAE,WAAW,CAAC;YACnD,cAAc,CAAC,cAAc,CAAC,GAAG,KAAK,EAAE,YAAY,CAAC;YACrD,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,EAAE,OAAO,CAAC;YAC3C,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;YACrC,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,EAAE,QAAQ,CAAC;YAC7C,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,EAAE,UAAU,CAAC;YACjD,cAAc,CAAC,OAAO,CAAC,GAAG,KAAK,EAAE,KAAK,CAAC;YACvC,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,EAAE,SAAS,CAAC;YAC/C,cAAc,CAAC,eAAe,CAAC,GAAG,KAAK,EAAE,aAAa,CAAC;YACvD,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,EAAE,UAAU,CAAC;YACjD,cAAc,CAAC,cAAc,CAAC,GAAG,KAAK,EAAE,YAAY,CAAC;YACrD,cAAc,CAAC,cAAc,CAAC,GAAG,KAAK,EAAE,YAAY,CAAC;YACrD,cAAc,CAAC,uBAAuB,CAAC,GAAG,KAAK,EAAE,qBAAqB,CAAC;YACvE,cAAc,CAAC,iBAAiB,CAAC,GAAG,KAAK,EAAE,eAAe,CAAC;YAC3D,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,EAAE,UAAU,CAAC;YACjD,cAAc,CAAC,gBAAgB,CAAC,GAAG,KAAK,EAAE,cAAc,CAAC;YACzD,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,EAAE,UAAU,CAAC;YACjD,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,EAAE,SAAS,CAAC;YAC/C,cAAc,CAAC,cAAc,CAAC,GAAG,KAAK,EAAE,YAAY,CAAC;SACxD;aAAM;YACH,MAAM,IAAI,GAAG,WAA8C,CAAC;YAC5D,IAAI,IAAI,EAAE,KAAK,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACxC,MAAM,IAAI,KAAK,CAAC,mCAAmC,CAAC,CAAC;aACxD;YACD,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,EAAE,WAAW,CAAC;YAClD,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,EAAE,OAAO,CAAC;YAC1C,cAAc,CAAC,sBAAsB,CAAC,GAAG,IAAI,EAAE,oBAAoB,CAAC;YACpE,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,EAAE,SAAS,CAAC;YAC9C,cAAc,CAAC,cAAc,CAAC,GAAG,IAAI,EAAE,YAAY,CAAC;YACpD,cAAc,CAAC,YAAY,CAAC,GAAG,IAAI,EAAE,UAAU,CAAC;YAChD,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,EAAE,WAAW,CAAC;YAClD,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,EAAE,WAAW,CAAC;YAClD,cAAc,CAAC,cAAc,CAAC,GAAG,IAAI,EAAE,YAAY,CAAC;YACpD,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,EAAE,OAAO,CAAC;YAC1C,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,EAAE,IAAI,CAAC;YACpC,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,EAAE,QAAQ,CAAC;YAC5C,cAAc,CAAC,YAAY,CAAC,GAAG,IAAI,EAAE,UAAU,CAAC;YAChD,cAAc,CAAC,OAAO,CAAC,GAAG,IAAI,EAAE,KAAK,CAAC;YACtC,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,EAAE,SAAS,CAAC;YAC9C,cAAc,CAAC,eAAe,CAAC,GAAG,IAAI,EAAE,aAAa,CAAC;YACtD,cAAc,CAAC,YAAY,CAAC,GAAG,IAAI,EAAE,UAAU,CAAC;YAChD,cAAc,CAAC,cAAc,CAAC,GAAG,IAAI,EAAE,YAAY,CAAC;YACpD,cAAc,CAAC,cAAc,CAAC,GAAG,IAAI,EAAE,YAAY,CAAC;YACpD,cAAc,CAAC,uBAAuB,CAAC,GAAG,IAAI,EAAE,qBAAqB,CAAC;YACtE,cAAc,CAAC,iBAAiB,CAAC,GAAG,IAAI,EAAE,eAAe,CAAC;YAC1D,cAAc,CAAC,YAAY,CAAC,GAAG,IAAI,EAAE,UAAU,CAAC;YAChD,cAAc,CAAC,gBAAgB,CAAC,GAAG,IAAI,EAAE,cAAc,CAAC;YACxD,cAAc,CAAC,YAAY,CAAC,GAAG,IAAI,EAAE,UAAU,CAAC;YAChD,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,EAAE,SAAS,CAAC;YAC9C,cAAc,CAAC,cAAc,CAAC,GAAG,IAAI,EAAE,YAAY,CAAC;SACvD;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,eAAe,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACpE,CAAC;;AAtLL,0CAuLC;AAzKG,gBAAgB;AACO,4BAAY,GAAG,iDAAiD,CAAC"}
|