@pulumi/juniper-mist 0.1.4 → 0.1.5
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/config/vars.d.ts +4 -0
- package/config/vars.js +6 -0
- package/config/vars.js.map +1 -1
- package/device/gateway.d.ts +3 -3
- package/device/switch.d.ts +12 -20
- package/device/switch.js +0 -2
- package/device/switch.js.map +1 -1
- package/org/deviceprofileGateway.d.ts +3 -3
- package/org/gatewaytemplate.d.ts +9 -6
- package/org/gatewaytemplate.js.map +1 -1
- package/org/nacidp.d.ts +36 -0
- package/org/nacidp.js +6 -0
- package/org/nacidp.js.map +1 -1
- package/org/network.d.ts +21 -0
- package/org/network.js +2 -0
- package/org/network.js.map +1 -1
- package/org/networktemplate.d.ts +3 -3
- package/org/sso.d.ts +15 -42
- package/org/sso.js +0 -4
- package/org/sso.js.map +1 -1
- package/package.json +2 -2
- package/provider.d.ts +4 -0
- package/provider.js +1 -0
- package/provider.js.map +1 -1
- package/site/networktemplate.d.ts +3 -3
- package/types/input.d.ts +716 -475
- package/types/output.d.ts +722 -481
package/org/sso.d.ts
CHANGED
|
@@ -97,26 +97,17 @@ export declare class Sso extends pulumi.CustomResource {
|
|
|
97
97
|
readonly nameidFormat: pulumi.Output<string>;
|
|
98
98
|
readonly orgId: pulumi.Output<string>;
|
|
99
99
|
/**
|
|
100
|
-
* custom role attribute parsing scheme
|
|
101
|
-
*
|
|
102
|
-
*
|
|
103
|
-
*
|
|
104
|
-
*
|
|
100
|
+
* custom role attribute parsing scheme. Supported Role Parsing Schemes
|
|
101
|
+
* <table><tr><th>Name</th><th>Scheme</th></tr><tr><td>`cn`</td><td><ul><li>The expected role attribute format in SAML
|
|
102
|
+
* Assertion is “CN=cn,OU=ou1,OU=ou2,…”</li><li>CN (the key) is case insensitive and exactly 1 CN is expected (or the
|
|
103
|
+
* entire entry will be ignored)</li><li>E.g. if role attribute is “CN=cn,OU=ou1,OU=ou2” then parsed role value is
|
|
104
|
+
* “cn”</li></ul></td></tr></table>
|
|
105
105
|
*/
|
|
106
106
|
readonly roleAttrExtraction: pulumi.Output<string | undefined>;
|
|
107
107
|
/**
|
|
108
108
|
* name of the attribute in SAML Assertion to extract role from. Default: `Role`
|
|
109
109
|
*/
|
|
110
110
|
readonly roleAttrFrom: pulumi.Output<string>;
|
|
111
|
-
/**
|
|
112
|
-
* if `idpType`==`oauth`, indicates if SCIM provisioning is enabled for the OAuth IDP
|
|
113
|
-
*/
|
|
114
|
-
readonly scimEnabled: pulumi.Output<boolean>;
|
|
115
|
-
/**
|
|
116
|
-
* if `idpType`==`oauth`, scimSecretToken (generated by caller, crypto-random) is used as the Bearer token in the
|
|
117
|
-
* Authorization header of SCIM provisioning requests by the IDP
|
|
118
|
-
*/
|
|
119
|
-
readonly scimSecretToken: pulumi.Output<string | undefined>;
|
|
120
111
|
/**
|
|
121
112
|
* Create a Sso resource with the given unique name, arguments, and options.
|
|
122
113
|
*
|
|
@@ -176,26 +167,17 @@ export interface SsoState {
|
|
|
176
167
|
nameidFormat?: pulumi.Input<string>;
|
|
177
168
|
orgId?: pulumi.Input<string>;
|
|
178
169
|
/**
|
|
179
|
-
* custom role attribute parsing scheme
|
|
180
|
-
*
|
|
181
|
-
*
|
|
182
|
-
*
|
|
183
|
-
*
|
|
170
|
+
* custom role attribute parsing scheme. Supported Role Parsing Schemes
|
|
171
|
+
* <table><tr><th>Name</th><th>Scheme</th></tr><tr><td>`cn`</td><td><ul><li>The expected role attribute format in SAML
|
|
172
|
+
* Assertion is “CN=cn,OU=ou1,OU=ou2,…”</li><li>CN (the key) is case insensitive and exactly 1 CN is expected (or the
|
|
173
|
+
* entire entry will be ignored)</li><li>E.g. if role attribute is “CN=cn,OU=ou1,OU=ou2” then parsed role value is
|
|
174
|
+
* “cn”</li></ul></td></tr></table>
|
|
184
175
|
*/
|
|
185
176
|
roleAttrExtraction?: pulumi.Input<string>;
|
|
186
177
|
/**
|
|
187
178
|
* name of the attribute in SAML Assertion to extract role from. Default: `Role`
|
|
188
179
|
*/
|
|
189
180
|
roleAttrFrom?: pulumi.Input<string>;
|
|
190
|
-
/**
|
|
191
|
-
* if `idpType`==`oauth`, indicates if SCIM provisioning is enabled for the OAuth IDP
|
|
192
|
-
*/
|
|
193
|
-
scimEnabled?: pulumi.Input<boolean>;
|
|
194
|
-
/**
|
|
195
|
-
* if `idpType`==`oauth`, scimSecretToken (generated by caller, crypto-random) is used as the Bearer token in the
|
|
196
|
-
* Authorization header of SCIM provisioning requests by the IDP
|
|
197
|
-
*/
|
|
198
|
-
scimSecretToken?: pulumi.Input<string>;
|
|
199
181
|
}
|
|
200
182
|
/**
|
|
201
183
|
* The set of arguments for constructing a Sso resource.
|
|
@@ -241,24 +223,15 @@ export interface SsoArgs {
|
|
|
241
223
|
nameidFormat?: pulumi.Input<string>;
|
|
242
224
|
orgId: pulumi.Input<string>;
|
|
243
225
|
/**
|
|
244
|
-
* custom role attribute parsing scheme
|
|
245
|
-
*
|
|
246
|
-
*
|
|
247
|
-
*
|
|
248
|
-
*
|
|
226
|
+
* custom role attribute parsing scheme. Supported Role Parsing Schemes
|
|
227
|
+
* <table><tr><th>Name</th><th>Scheme</th></tr><tr><td>`cn`</td><td><ul><li>The expected role attribute format in SAML
|
|
228
|
+
* Assertion is “CN=cn,OU=ou1,OU=ou2,…”</li><li>CN (the key) is case insensitive and exactly 1 CN is expected (or the
|
|
229
|
+
* entire entry will be ignored)</li><li>E.g. if role attribute is “CN=cn,OU=ou1,OU=ou2” then parsed role value is
|
|
230
|
+
* “cn”</li></ul></td></tr></table>
|
|
249
231
|
*/
|
|
250
232
|
roleAttrExtraction?: pulumi.Input<string>;
|
|
251
233
|
/**
|
|
252
234
|
* name of the attribute in SAML Assertion to extract role from. Default: `Role`
|
|
253
235
|
*/
|
|
254
236
|
roleAttrFrom?: pulumi.Input<string>;
|
|
255
|
-
/**
|
|
256
|
-
* if `idpType`==`oauth`, indicates if SCIM provisioning is enabled for the OAuth IDP
|
|
257
|
-
*/
|
|
258
|
-
scimEnabled?: pulumi.Input<boolean>;
|
|
259
|
-
/**
|
|
260
|
-
* if `idpType`==`oauth`, scimSecretToken (generated by caller, crypto-random) is used as the Bearer token in the
|
|
261
|
-
* Authorization header of SCIM provisioning requests by the IDP
|
|
262
|
-
*/
|
|
263
|
-
scimSecretToken?: pulumi.Input<string>;
|
|
264
237
|
}
|
package/org/sso.js
CHANGED
|
@@ -82,8 +82,6 @@ class Sso extends pulumi.CustomResource {
|
|
|
82
82
|
resourceInputs["orgId"] = state ? state.orgId : undefined;
|
|
83
83
|
resourceInputs["roleAttrExtraction"] = state ? state.roleAttrExtraction : undefined;
|
|
84
84
|
resourceInputs["roleAttrFrom"] = state ? state.roleAttrFrom : undefined;
|
|
85
|
-
resourceInputs["scimEnabled"] = state ? state.scimEnabled : undefined;
|
|
86
|
-
resourceInputs["scimSecretToken"] = state ? state.scimSecretToken : undefined;
|
|
87
85
|
}
|
|
88
86
|
else {
|
|
89
87
|
const args = argsOrState;
|
|
@@ -114,8 +112,6 @@ class Sso extends pulumi.CustomResource {
|
|
|
114
112
|
resourceInputs["orgId"] = args ? args.orgId : undefined;
|
|
115
113
|
resourceInputs["roleAttrExtraction"] = args ? args.roleAttrExtraction : undefined;
|
|
116
114
|
resourceInputs["roleAttrFrom"] = args ? args.roleAttrFrom : undefined;
|
|
117
|
-
resourceInputs["scimEnabled"] = args ? args.scimEnabled : undefined;
|
|
118
|
-
resourceInputs["scimSecretToken"] = args ? args.scimSecretToken : undefined;
|
|
119
115
|
resourceInputs["domain"] = undefined /*out*/;
|
|
120
116
|
}
|
|
121
117
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
package/org/sso.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"sso.js","sourceRoot":"","sources":["../../org/sso.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAmCG;AACH,MAAa,GAAI,SAAQ,MAAM,CAAC,cAAc;IAC1C;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAgB,EAAE,IAAmC;QAC9G,OAAO,IAAI,GAAG,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAC1D,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,GAAG,CAAC,YAAY,CAAC;IACpD,CAAC;
|
|
1
|
+
{"version":3,"file":"sso.js","sourceRoot":"","sources":["../../org/sso.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/juniper-mist",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.5",
|
|
4
4
|
"description": "A Pulumi package for creating and managing Juniper Mist resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"pulumi": {
|
|
26
26
|
"resource": true,
|
|
27
27
|
"name": "junipermist",
|
|
28
|
-
"version": "0.1.
|
|
28
|
+
"version": "0.1.5",
|
|
29
29
|
"server": "github://api.github.com/pulumi/pulumi-junipermist"
|
|
30
30
|
}
|
|
31
31
|
}
|
package/provider.d.ts
CHANGED
|
@@ -46,6 +46,10 @@ export declare class Provider extends pulumi.ProviderResource {
|
|
|
46
46
|
* The set of arguments for constructing a Provider resource.
|
|
47
47
|
*/
|
|
48
48
|
export interface ProviderArgs {
|
|
49
|
+
/**
|
|
50
|
+
* Flag to enable debugging API calls. Default is false.
|
|
51
|
+
*/
|
|
52
|
+
apiDebug?: pulumi.Input<boolean>;
|
|
49
53
|
/**
|
|
50
54
|
* Timeout in seconds for completing API transactions with the Mist Cloud. Omit for default value of 10 seconds. Value of 0
|
|
51
55
|
* results in infinite timeout.
|
package/provider.js
CHANGED
|
@@ -33,6 +33,7 @@ class Provider extends pulumi.ProviderResource {
|
|
|
33
33
|
let resourceInputs = {};
|
|
34
34
|
opts = opts || {};
|
|
35
35
|
{
|
|
36
|
+
resourceInputs["apiDebug"] = pulumi.output(args ? args.apiDebug : undefined).apply(JSON.stringify);
|
|
36
37
|
resourceInputs["apiTimeout"] = pulumi.output(args ? args.apiTimeout : undefined).apply(JSON.stringify);
|
|
37
38
|
resourceInputs["apitoken"] = (args === null || args === void 0 ? void 0 : args.apitoken) ? pulumi.secret(args.apitoken) : undefined;
|
|
38
39
|
resourceInputs["host"] = args ? args.host : undefined;
|
package/provider.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"provider.js","sourceRoot":"","sources":["../provider.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;GAKG;AACH,MAAa,QAAS,SAAQ,MAAM,CAAC,gBAAgB;IAIjD;;;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,mBAAmB,GAAG,QAAQ,CAAC,YAAY,CAAC;IAC/E,CAAC;IAyBD;;;;;;OAMG;IACH,YAAY,IAAY,EAAE,IAAmB,EAAE,IAA6B;QACxE,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB;YACI,cAAc,CAAC,YAAY,CAAC,GAAG,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;YACvG,cAAc,CAAC,UAAU,CAAC,GAAG,CAAA,IAAI,aAAJ,IAAI,uBAAJ,IAAI,CAAE,QAAQ,EAAC,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC;YACvF,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,UAAU,CAAC,GAAG,CAAA,IAAI,aAAJ,IAAI,uBAAJ,IAAI,CAAE,QAAQ,EAAC,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC;YACvF,cAAc,CAAC,OAAO,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;SACjE;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,MAAM,UAAU,GAAG,EAAE,uBAAuB,EAAE,CAAC,UAAU,EAAE,UAAU,CAAC,EAAE,CAAC;QACzE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,IAAI,EAAE,UAAU,CAAC,CAAC;QAC7C,KAAK,CAAC,QAAQ,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC7D,CAAC;;
|
|
1
|
+
{"version":3,"file":"provider.js","sourceRoot":"","sources":["../provider.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;GAKG;AACH,MAAa,QAAS,SAAQ,MAAM,CAAC,gBAAgB;IAIjD;;;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,mBAAmB,GAAG,QAAQ,CAAC,YAAY,CAAC;IAC/E,CAAC;IAyBD;;;;;;OAMG;IACH,YAAY,IAAY,EAAE,IAAmB,EAAE,IAA6B;QACxE,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB;YACI,cAAc,CAAC,UAAU,CAAC,GAAG,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;YACnG,cAAc,CAAC,YAAY,CAAC,GAAG,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;YACvG,cAAc,CAAC,UAAU,CAAC,GAAG,CAAA,IAAI,aAAJ,IAAI,uBAAJ,IAAI,CAAE,QAAQ,EAAC,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC;YACvF,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,UAAU,CAAC,GAAG,CAAA,IAAI,aAAJ,IAAI,uBAAJ,IAAI,CAAE,QAAQ,EAAC,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC;YACvF,cAAc,CAAC,OAAO,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;SACjE;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,MAAM,UAAU,GAAG,EAAE,uBAAuB,EAAE,CAAC,UAAU,EAAE,UAAU,CAAC,EAAE,CAAC;QACzE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,IAAI,EAAE,UAAU,CAAC,CAAC;QAC7C,KAAK,CAAC,QAAQ,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC7D,CAAC;;AA7DL,4BA8DC;AA7DG,gBAAgB;AACO,qBAAY,GAAG,aAAa,CAAC"}
|
|
@@ -89,7 +89,7 @@ export declare class Networktemplate extends pulumi.CustomResource {
|
|
|
89
89
|
[key: string]: outputs.site.NetworktemplateOspfAreas;
|
|
90
90
|
} | undefined>;
|
|
91
91
|
/**
|
|
92
|
-
* Property key is the port mirroring instance name portMirroring can be added under device/site settings. It takes
|
|
92
|
+
* Property key is the port mirroring instance name. `portMirroring` can be added under device/site settings. It takes
|
|
93
93
|
* interface and ports as input for ingress, interface as input for egress and can take interface and port as output. A
|
|
94
94
|
* maximum 4 port mirrorings is allowed
|
|
95
95
|
*/
|
|
@@ -198,7 +198,7 @@ export interface NetworktemplateState {
|
|
|
198
198
|
[key: string]: pulumi.Input<inputs.site.NetworktemplateOspfAreas>;
|
|
199
199
|
}>;
|
|
200
200
|
/**
|
|
201
|
-
* Property key is the port mirroring instance name portMirroring can be added under device/site settings. It takes
|
|
201
|
+
* Property key is the port mirroring instance name. `portMirroring` can be added under device/site settings. It takes
|
|
202
202
|
* interface and ports as input for ingress, interface as input for egress and can take interface and port as output. A
|
|
203
203
|
* maximum 4 port mirrorings is allowed
|
|
204
204
|
*/
|
|
@@ -299,7 +299,7 @@ export interface NetworktemplateArgs {
|
|
|
299
299
|
[key: string]: pulumi.Input<inputs.site.NetworktemplateOspfAreas>;
|
|
300
300
|
}>;
|
|
301
301
|
/**
|
|
302
|
-
* Property key is the port mirroring instance name portMirroring can be added under device/site settings. It takes
|
|
302
|
+
* Property key is the port mirroring instance name. `portMirroring` can be added under device/site settings. It takes
|
|
303
303
|
* interface and ports as input for ingress, interface as input for egress and can take interface and port as output. A
|
|
304
304
|
* maximum 4 port mirrorings is allowed
|
|
305
305
|
*/
|