@servicevic-oss/cdk-cleanup-certificate-validation-records 1.3.21 → 1.3.23
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/.jsii +4 -4
- package/lib/index.js +2 -2
- package/node_modules/@aws-sdk/client-acm/package.json +3 -3
- package/node_modules/@aws-sdk/client-route-53/package.json +3 -3
- package/node_modules/@aws-sdk/core/package.json +1 -1
- package/node_modules/@aws-sdk/credential-provider-env/package.json +2 -2
- package/node_modules/@aws-sdk/credential-provider-http/package.json +2 -2
- package/node_modules/@aws-sdk/credential-provider-ini/package.json +9 -9
- package/node_modules/@aws-sdk/credential-provider-login/package.json +3 -3
- package/node_modules/@aws-sdk/credential-provider-node/package.json +7 -7
- package/node_modules/@aws-sdk/credential-provider-process/package.json +2 -2
- package/node_modules/@aws-sdk/credential-provider-sso/package.json +4 -4
- package/node_modules/@aws-sdk/credential-provider-web-identity/package.json +3 -3
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/index.js +99 -106
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/index.js +62 -120
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/index.js +55 -86
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/index.js +73 -104
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/index.js +102 -185
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/auth/httpAuthSchemeProvider.js +4 -5
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/endpoint/bdd.js +21 -57
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/runtimeConfig.browser.js +1 -2
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/runtimeConfig.js +2 -4
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/schemas/schemas_0.js +73 -41
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/auth/httpAuthSchemeProvider.js +4 -5
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/endpoint/bdd.js +20 -52
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeConfig.browser.js +1 -2
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeConfig.js +2 -4
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/schemas/schemas_0.js +36 -59
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/auth/httpAuthSchemeProvider.js +4 -5
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/endpoint/bdd.js +17 -45
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/runtimeConfig.browser.js +1 -2
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/runtimeConfig.js +2 -4
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/schemas/schemas_0.js +32 -32
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/auth/httpAuthSchemeProvider.js +4 -5
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/endpoint/bdd.js +17 -45
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeConfig.browser.js +1 -2
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeConfig.js +2 -4
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/schemas/schemas_0.js +50 -50
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/auth/httpAuthSchemeProvider.js +4 -5
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/defaultRoleAssumers.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/endpoint/bdd.js +34 -96
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.browser.js +1 -2
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.js +3 -6
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/schemas/schemas_0.js +63 -80
- package/node_modules/@aws-sdk/nested-clients/package.json +2 -2
- package/node_modules/@aws-sdk/token-providers/package.json +3 -3
- package/node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/httpRequest.js +2 -2
- package/node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/node-http.js +2 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/remoteProvider/httpRequest.d.ts +1 -1
- package/node_modules/@smithy/credential-provider-imds/dist-types/remoteProvider/node-http.d.ts +2 -0
- package/node_modules/@smithy/credential-provider-imds/package.json +1 -1
- package/package.json +5 -5
|
@@ -16,10 +16,9 @@ var protocols$1 = require('@aws-sdk/core/protocols');
|
|
|
16
16
|
const defaultSigninHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
17
17
|
return {
|
|
18
18
|
operation: client.getSmithyContext(context).operation,
|
|
19
|
-
region:
|
|
20
|
-
(
|
|
21
|
-
|
|
22
|
-
})(),
|
|
19
|
+
region: await client.normalizeProvider(config.region)() || (() => {
|
|
20
|
+
throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
|
|
21
|
+
})(),
|
|
23
22
|
};
|
|
24
23
|
};
|
|
25
24
|
function createAwsAuthSigv4HttpAuthOption(authParameters) {
|
|
@@ -76,12 +75,12 @@ const commonParams = {
|
|
|
76
75
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
77
76
|
};
|
|
78
77
|
|
|
79
|
-
var version = "3.997.
|
|
78
|
+
var version = "3.997.15";
|
|
80
79
|
var packageInfo = {
|
|
81
80
|
version: version};
|
|
82
81
|
|
|
83
82
|
const m = "ref";
|
|
84
|
-
const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = "stringEquals", h = { [m]: "Endpoint" }, i = { [m]: d }, j = { fn: f, argv: [i, "name"] }, k = {}, l = [{ [m]: "Region" }];
|
|
83
|
+
const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = "stringEquals", h = { [m]: "Endpoint" }, i = { [m]: d }, j = { "fn": f, "argv": [i, "name"] }, k = {}, l = [{ [m]: "Region" }];
|
|
85
84
|
const _data = {
|
|
86
85
|
conditions: [
|
|
87
86
|
[c, [h]],
|
|
@@ -93,7 +92,7 @@ const _data = {
|
|
|
93
92
|
[e, [{ fn: f, argv: [i, "supportsFIPS"] }, b]],
|
|
94
93
|
[g, [j, "aws"]],
|
|
95
94
|
[g, [j, "aws-cn"]],
|
|
96
|
-
[g, [j, "aws-us-gov"]]
|
|
95
|
+
[g, [j, "aws-us-gov"]]
|
|
97
96
|
],
|
|
98
97
|
results: [
|
|
99
98
|
[a],
|
|
@@ -110,60 +109,28 @@ const _data = {
|
|
|
110
109
|
["https://signin.{Region}.{PartitionResult#dualStackDnsSuffix}", k],
|
|
111
110
|
[a, "DualStack is enabled but this partition does not support DualStack"],
|
|
112
111
|
["https://signin.{Region}.{PartitionResult#dnsSuffix}", k],
|
|
113
|
-
[a, "Invalid Configuration: Missing Region"]
|
|
114
|
-
]
|
|
112
|
+
[a, "Invalid Configuration: Missing Region"]
|
|
113
|
+
]
|
|
115
114
|
};
|
|
116
115
|
const root = 2;
|
|
117
116
|
const r = 100_000_000;
|
|
118
117
|
const nodes = new Int32Array([
|
|
119
|
-
-1,
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
r +
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
r +
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
4,
|
|
135
|
-
10,
|
|
136
|
-
7,
|
|
137
|
-
7,
|
|
138
|
-
r + 4,
|
|
139
|
-
8,
|
|
140
|
-
8,
|
|
141
|
-
r + 5,
|
|
142
|
-
9,
|
|
143
|
-
9,
|
|
144
|
-
r + 6,
|
|
145
|
-
r + 13,
|
|
146
|
-
5,
|
|
147
|
-
r + 11,
|
|
148
|
-
r + 12,
|
|
149
|
-
4,
|
|
150
|
-
13,
|
|
151
|
-
12,
|
|
152
|
-
6,
|
|
153
|
-
r + 9,
|
|
154
|
-
r + 10,
|
|
155
|
-
5,
|
|
156
|
-
14,
|
|
157
|
-
r + 8,
|
|
158
|
-
6,
|
|
159
|
-
r + 7,
|
|
160
|
-
r + 8,
|
|
161
|
-
3,
|
|
162
|
-
r + 1,
|
|
163
|
-
16,
|
|
164
|
-
4,
|
|
165
|
-
r + 2,
|
|
166
|
-
r + 3,
|
|
118
|
+
-1, 1, -1,
|
|
119
|
+
0, 15, 3,
|
|
120
|
+
1, 4, r + 14,
|
|
121
|
+
2, 5, r + 14,
|
|
122
|
+
3, 11, 6,
|
|
123
|
+
4, 10, 7,
|
|
124
|
+
7, r + 4, 8,
|
|
125
|
+
8, r + 5, 9,
|
|
126
|
+
9, r + 6, r + 13,
|
|
127
|
+
5, r + 11, r + 12,
|
|
128
|
+
4, 13, 12,
|
|
129
|
+
6, r + 9, r + 10,
|
|
130
|
+
5, 14, r + 8,
|
|
131
|
+
6, r + 7, r + 8,
|
|
132
|
+
3, r + 1, 16,
|
|
133
|
+
4, r + 2, r + 3,
|
|
167
134
|
]);
|
|
168
135
|
const bdd = endpoints.BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
|
|
169
136
|
|
|
@@ -282,85 +249,62 @@ const _s_registry = schema.TypeRegistry.for(_s);
|
|
|
282
249
|
var SigninServiceException$ = [-3, _s, "SigninServiceException", 0, [], []];
|
|
283
250
|
_s_registry.registerError(SigninServiceException$, SigninServiceException);
|
|
284
251
|
const n0_registry = schema.TypeRegistry.for(n0);
|
|
285
|
-
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
252
|
+
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
253
|
+
{ [_e]: _c },
|
|
254
|
+
[_e, _m],
|
|
255
|
+
[0, 0], 2
|
|
256
|
+
];
|
|
286
257
|
n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
|
|
287
|
-
var InternalServerException$ = [-3, n0, _ISE,
|
|
258
|
+
var InternalServerException$ = [-3, n0, _ISE,
|
|
259
|
+
{ [_e]: _se, [_hE]: 500 },
|
|
260
|
+
[_e, _m],
|
|
261
|
+
[0, 0], 2
|
|
262
|
+
];
|
|
288
263
|
n0_registry.registerError(InternalServerException$, InternalServerException);
|
|
289
|
-
var TooManyRequestsError$ = [-3, n0, _TMRE,
|
|
264
|
+
var TooManyRequestsError$ = [-3, n0, _TMRE,
|
|
265
|
+
{ [_e]: _c, [_hE]: 429 },
|
|
266
|
+
[_e, _m],
|
|
267
|
+
[0, 0], 2
|
|
268
|
+
];
|
|
290
269
|
n0_registry.registerError(TooManyRequestsError$, TooManyRequestsError);
|
|
291
|
-
var ValidationException$ = [-3, n0, _VE,
|
|
270
|
+
var ValidationException$ = [-3, n0, _VE,
|
|
271
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
272
|
+
[_e, _m],
|
|
273
|
+
[0, 0], 2
|
|
274
|
+
];
|
|
292
275
|
n0_registry.registerError(ValidationException$, ValidationException);
|
|
293
|
-
const errorTypeRegistries = [
|
|
276
|
+
const errorTypeRegistries = [
|
|
277
|
+
_s_registry,
|
|
278
|
+
n0_registry,
|
|
279
|
+
];
|
|
294
280
|
var RefreshToken = [0, n0, _RT, 8, 0];
|
|
295
|
-
var AccessToken$ = [
|
|
296
|
-
3,
|
|
297
|
-
n0,
|
|
298
|
-
_AT,
|
|
281
|
+
var AccessToken$ = [3, n0, _AT,
|
|
299
282
|
8,
|
|
300
283
|
[_aKI, _sAK, _sT],
|
|
301
|
-
[
|
|
302
|
-
[0, { [_jN]: _aKI }],
|
|
303
|
-
[0, { [_jN]: _sAK }],
|
|
304
|
-
[0, { [_jN]: _sT }],
|
|
305
|
-
],
|
|
306
|
-
3,
|
|
284
|
+
[[0, { [_jN]: _aKI }], [0, { [_jN]: _sAK }], [0, { [_jN]: _sT }]], 3
|
|
307
285
|
];
|
|
308
|
-
var CreateOAuth2TokenRequest$ = [
|
|
309
|
-
3,
|
|
310
|
-
n0,
|
|
311
|
-
_COATR,
|
|
286
|
+
var CreateOAuth2TokenRequest$ = [3, n0, _COATR,
|
|
312
287
|
0,
|
|
313
288
|
[_tI],
|
|
314
|
-
[[() => CreateOAuth2TokenRequestBody$, 16]],
|
|
315
|
-
1,
|
|
289
|
+
[[() => CreateOAuth2TokenRequestBody$, 16]], 1
|
|
316
290
|
];
|
|
317
|
-
var CreateOAuth2TokenRequestBody$ = [
|
|
318
|
-
3,
|
|
319
|
-
n0,
|
|
320
|
-
_COATRB,
|
|
291
|
+
var CreateOAuth2TokenRequestBody$ = [3, n0, _COATRB,
|
|
321
292
|
0,
|
|
322
293
|
[_cI, _gT, _co, _rU, _cV, _rT],
|
|
323
|
-
[
|
|
324
|
-
[0, { [_jN]: _cI }],
|
|
325
|
-
[0, { [_jN]: _gT }],
|
|
326
|
-
0,
|
|
327
|
-
[0, { [_jN]: _rU }],
|
|
328
|
-
[0, { [_jN]: _cV }],
|
|
329
|
-
[() => RefreshToken, { [_jN]: _rT }],
|
|
330
|
-
],
|
|
331
|
-
2,
|
|
294
|
+
[[0, { [_jN]: _cI }], [0, { [_jN]: _gT }], 0, [0, { [_jN]: _rU }], [0, { [_jN]: _cV }], [() => RefreshToken, { [_jN]: _rT }]], 2
|
|
332
295
|
];
|
|
333
|
-
var CreateOAuth2TokenResponse$ = [
|
|
334
|
-
3,
|
|
335
|
-
n0,
|
|
336
|
-
_COATRr,
|
|
296
|
+
var CreateOAuth2TokenResponse$ = [3, n0, _COATRr,
|
|
337
297
|
0,
|
|
338
298
|
[_tO],
|
|
339
|
-
[[() => CreateOAuth2TokenResponseBody$, 16]],
|
|
340
|
-
1,
|
|
299
|
+
[[() => CreateOAuth2TokenResponseBody$, 16]], 1
|
|
341
300
|
];
|
|
342
|
-
var CreateOAuth2TokenResponseBody$ = [
|
|
343
|
-
3,
|
|
344
|
-
n0,
|
|
345
|
-
_COATRBr,
|
|
301
|
+
var CreateOAuth2TokenResponseBody$ = [3, n0, _COATRBr,
|
|
346
302
|
0,
|
|
347
303
|
[_aT, _tT, _eI, _rT, _iT],
|
|
348
|
-
[
|
|
349
|
-
[() => AccessToken$, { [_jN]: _aT }],
|
|
350
|
-
[0, { [_jN]: _tT }],
|
|
351
|
-
[1, { [_jN]: _eI }],
|
|
352
|
-
[() => RefreshToken, { [_jN]: _rT }],
|
|
353
|
-
[0, { [_jN]: _iT }],
|
|
354
|
-
],
|
|
355
|
-
4,
|
|
304
|
+
[[() => AccessToken$, { [_jN]: _aT }], [0, { [_jN]: _tT }], [1, { [_jN]: _eI }], [() => RefreshToken, { [_jN]: _rT }], [0, { [_jN]: _iT }]], 4
|
|
356
305
|
];
|
|
357
|
-
var CreateOAuth2Token$ = [
|
|
358
|
-
|
|
359
|
-
n0,
|
|
360
|
-
_COAT,
|
|
361
|
-
{ [_h]: ["POST", "/v1/token", 200] },
|
|
362
|
-
() => CreateOAuth2TokenRequest$,
|
|
363
|
-
() => CreateOAuth2TokenResponse$,
|
|
306
|
+
var CreateOAuth2Token$ = [9, n0, _COAT,
|
|
307
|
+
{ [_h]: ["POST", "/v1/token", 200] }, () => CreateOAuth2TokenRequest$, () => CreateOAuth2TokenResponse$
|
|
364
308
|
];
|
|
365
309
|
|
|
366
310
|
const getRuntimeConfig$1 = (config) => {
|
|
@@ -416,11 +360,9 @@ const getRuntimeConfig = (config$1) => {
|
|
|
416
360
|
defaultsMode,
|
|
417
361
|
authSchemePreference: config$1?.authSchemePreference ?? config.loadConfig(httpAuthSchemes.NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
418
362
|
bodyLengthChecker: config$1?.bodyLengthChecker ?? serde.calculateBodyLength,
|
|
419
|
-
defaultUserAgentProvider: config$1?.defaultUserAgentProvider ??
|
|
420
|
-
client$1.createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
363
|
+
defaultUserAgentProvider: config$1?.defaultUserAgentProvider ?? client$1.createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
421
364
|
maxAttempts: config$1?.maxAttempts ?? config.loadConfig(retry.NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config$1),
|
|
422
|
-
region: config$1?.region ??
|
|
423
|
-
config.loadConfig(config.NODE_REGION_CONFIG_OPTIONS, { ...config.NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
365
|
+
region: config$1?.region ?? config.loadConfig(config.NODE_REGION_CONFIG_OPTIONS, { ...config.NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
424
366
|
requestHandler: nodeHttpHandler.NodeHttpHandler.create(config$1?.requestHandler ?? defaultConfigProvider),
|
|
425
367
|
retryMode: config$1?.retryMode ??
|
|
426
368
|
config.loadConfig({
|
|
@@ -16,10 +16,9 @@ var protocols$1 = require('@aws-sdk/core/protocols');
|
|
|
16
16
|
const defaultSSOHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
17
17
|
return {
|
|
18
18
|
operation: client.getSmithyContext(context).operation,
|
|
19
|
-
region:
|
|
20
|
-
(
|
|
21
|
-
|
|
22
|
-
})(),
|
|
19
|
+
region: await client.normalizeProvider(config.region)() || (() => {
|
|
20
|
+
throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
|
|
21
|
+
})(),
|
|
23
22
|
};
|
|
24
23
|
};
|
|
25
24
|
function createAwsAuthSigv4HttpAuthOption(authParameters) {
|
|
@@ -76,7 +75,7 @@ const commonParams = {
|
|
|
76
75
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
77
76
|
};
|
|
78
77
|
|
|
79
|
-
var version = "3.997.
|
|
78
|
+
var version = "3.997.15";
|
|
80
79
|
var packageInfo = {
|
|
81
80
|
version: version};
|
|
82
81
|
|
|
@@ -91,7 +90,7 @@ const _data = {
|
|
|
91
90
|
[e, [{ [k]: "UseDualStack" }, b]],
|
|
92
91
|
[e, [{ fn: f, argv: [h, "supportsDualStack"] }, b]],
|
|
93
92
|
[e, [{ fn: f, argv: [h, "supportsFIPS"] }, b]],
|
|
94
|
-
["stringEquals", [{ fn: f, argv: [h, "name"] }, "aws-us-gov"]]
|
|
93
|
+
["stringEquals", [{ fn: f, argv: [h, "name"] }, "aws-us-gov"]]
|
|
95
94
|
],
|
|
96
95
|
results: [
|
|
97
96
|
[a],
|
|
@@ -106,54 +105,26 @@ const _data = {
|
|
|
106
105
|
["https://portal.sso.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
107
106
|
[a, "DualStack is enabled but this partition does not support DualStack"],
|
|
108
107
|
["https://portal.sso.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
109
|
-
[a, "Invalid Configuration: Missing Region"]
|
|
110
|
-
]
|
|
108
|
+
[a, "Invalid Configuration: Missing Region"]
|
|
109
|
+
]
|
|
111
110
|
};
|
|
112
111
|
const root = 2;
|
|
113
112
|
const r = 100_000_000;
|
|
114
113
|
const nodes = new Int32Array([
|
|
115
|
-
-1,
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
4,
|
|
123
|
-
r +
|
|
124
|
-
|
|
125
|
-
5,
|
|
126
|
-
r +
|
|
127
|
-
3,
|
|
128
|
-
|
|
129
|
-
6,
|
|
130
|
-
4,
|
|
131
|
-
7,
|
|
132
|
-
r + 11,
|
|
133
|
-
5,
|
|
134
|
-
r + 9,
|
|
135
|
-
r + 10,
|
|
136
|
-
4,
|
|
137
|
-
11,
|
|
138
|
-
9,
|
|
139
|
-
6,
|
|
140
|
-
10,
|
|
141
|
-
r + 8,
|
|
142
|
-
7,
|
|
143
|
-
r + 6,
|
|
144
|
-
r + 7,
|
|
145
|
-
5,
|
|
146
|
-
12,
|
|
147
|
-
r + 5,
|
|
148
|
-
6,
|
|
149
|
-
r + 4,
|
|
150
|
-
r + 5,
|
|
151
|
-
3,
|
|
152
|
-
r + 1,
|
|
153
|
-
14,
|
|
154
|
-
4,
|
|
155
|
-
r + 2,
|
|
156
|
-
r + 3,
|
|
114
|
+
-1, 1, -1,
|
|
115
|
+
0, 13, 3,
|
|
116
|
+
1, 4, r + 12,
|
|
117
|
+
2, 5, r + 12,
|
|
118
|
+
3, 8, 6,
|
|
119
|
+
4, 7, r + 11,
|
|
120
|
+
5, r + 9, r + 10,
|
|
121
|
+
4, 11, 9,
|
|
122
|
+
6, 10, r + 8,
|
|
123
|
+
7, r + 6, r + 7,
|
|
124
|
+
5, 12, r + 5,
|
|
125
|
+
6, r + 4, r + 5,
|
|
126
|
+
3, r + 1, 14,
|
|
127
|
+
4, r + 2, r + 3,
|
|
157
128
|
]);
|
|
158
129
|
const bdd = endpoints.BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
|
|
159
130
|
|
|
@@ -260,54 +231,54 @@ const _s_registry = schema.TypeRegistry.for(_s);
|
|
|
260
231
|
var SSOServiceException$ = [-3, _s, "SSOServiceException", 0, [], []];
|
|
261
232
|
_s_registry.registerError(SSOServiceException$, SSOServiceException);
|
|
262
233
|
const n0_registry = schema.TypeRegistry.for(n0);
|
|
263
|
-
var InvalidRequestException$ = [-3, n0, _IRE,
|
|
234
|
+
var InvalidRequestException$ = [-3, n0, _IRE,
|
|
235
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
236
|
+
[_m],
|
|
237
|
+
[0]
|
|
238
|
+
];
|
|
264
239
|
n0_registry.registerError(InvalidRequestException$, InvalidRequestException);
|
|
265
|
-
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
240
|
+
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
241
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
242
|
+
[_m],
|
|
243
|
+
[0]
|
|
244
|
+
];
|
|
266
245
|
n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
267
|
-
var TooManyRequestsException$ = [-3, n0, _TMRE,
|
|
246
|
+
var TooManyRequestsException$ = [-3, n0, _TMRE,
|
|
247
|
+
{ [_e]: _c, [_hE]: 429 },
|
|
248
|
+
[_m],
|
|
249
|
+
[0]
|
|
250
|
+
];
|
|
268
251
|
n0_registry.registerError(TooManyRequestsException$, TooManyRequestsException);
|
|
269
|
-
var UnauthorizedException$ = [-3, n0, _UE,
|
|
252
|
+
var UnauthorizedException$ = [-3, n0, _UE,
|
|
253
|
+
{ [_e]: _c, [_hE]: 401 },
|
|
254
|
+
[_m],
|
|
255
|
+
[0]
|
|
256
|
+
];
|
|
270
257
|
n0_registry.registerError(UnauthorizedException$, UnauthorizedException);
|
|
271
|
-
const errorTypeRegistries = [
|
|
258
|
+
const errorTypeRegistries = [
|
|
259
|
+
_s_registry,
|
|
260
|
+
n0_registry,
|
|
261
|
+
];
|
|
272
262
|
var AccessTokenType = [0, n0, _ATT, 8, 0];
|
|
273
263
|
var SecretAccessKeyType = [0, n0, _SAKT, 8, 0];
|
|
274
264
|
var SessionTokenType = [0, n0, _STT, 8, 0];
|
|
275
|
-
var GetRoleCredentialsRequest$ = [
|
|
276
|
-
3,
|
|
277
|
-
n0,
|
|
278
|
-
_GRCR,
|
|
265
|
+
var GetRoleCredentialsRequest$ = [3, n0, _GRCR,
|
|
279
266
|
0,
|
|
280
267
|
[_rN, _aI, _aT],
|
|
281
|
-
[
|
|
282
|
-
[0, { [_hQ]: _rn }],
|
|
283
|
-
[0, { [_hQ]: _ai }],
|
|
284
|
-
[() => AccessTokenType, { [_hH]: _xasbt }],
|
|
285
|
-
],
|
|
286
|
-
3,
|
|
268
|
+
[[0, { [_hQ]: _rn }], [0, { [_hQ]: _ai }], [() => AccessTokenType, { [_hH]: _xasbt }]], 3
|
|
287
269
|
];
|
|
288
|
-
var GetRoleCredentialsResponse$ = [
|
|
289
|
-
3,
|
|
290
|
-
n0,
|
|
291
|
-
_GRCRe,
|
|
270
|
+
var GetRoleCredentialsResponse$ = [3, n0, _GRCRe,
|
|
292
271
|
0,
|
|
293
272
|
[_rC],
|
|
294
|
-
[[() => RoleCredentials$, 0]]
|
|
273
|
+
[[() => RoleCredentials$, 0]]
|
|
295
274
|
];
|
|
296
|
-
var RoleCredentials$ = [
|
|
297
|
-
3,
|
|
298
|
-
n0,
|
|
299
|
-
_RC,
|
|
275
|
+
var RoleCredentials$ = [3, n0, _RC,
|
|
300
276
|
0,
|
|
301
277
|
[_aKI, _sAK, _sT, _ex],
|
|
302
|
-
[0, [() => SecretAccessKeyType, 0], [() => SessionTokenType, 0], 1]
|
|
278
|
+
[0, [() => SecretAccessKeyType, 0], [() => SessionTokenType, 0], 1]
|
|
303
279
|
];
|
|
304
|
-
var GetRoleCredentials$ = [
|
|
305
|
-
|
|
306
|
-
n0,
|
|
307
|
-
_GRC,
|
|
308
|
-
{ [_h]: ["GET", "/federation/credentials", 200] },
|
|
309
|
-
() => GetRoleCredentialsRequest$,
|
|
310
|
-
() => GetRoleCredentialsResponse$,
|
|
280
|
+
var GetRoleCredentials$ = [9, n0, _GRC,
|
|
281
|
+
{ [_h]: ["GET", "/federation/credentials", 200] }, () => GetRoleCredentialsRequest$, () => GetRoleCredentialsResponse$
|
|
311
282
|
];
|
|
312
283
|
|
|
313
284
|
const getRuntimeConfig$1 = (config) => {
|
|
@@ -363,11 +334,9 @@ const getRuntimeConfig = (config$1) => {
|
|
|
363
334
|
defaultsMode,
|
|
364
335
|
authSchemePreference: config$1?.authSchemePreference ?? config.loadConfig(httpAuthSchemes.NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
365
336
|
bodyLengthChecker: config$1?.bodyLengthChecker ?? serde.calculateBodyLength,
|
|
366
|
-
defaultUserAgentProvider: config$1?.defaultUserAgentProvider ??
|
|
367
|
-
client$1.createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
337
|
+
defaultUserAgentProvider: config$1?.defaultUserAgentProvider ?? client$1.createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
368
338
|
maxAttempts: config$1?.maxAttempts ?? config.loadConfig(retry.NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config$1),
|
|
369
|
-
region: config$1?.region ??
|
|
370
|
-
config.loadConfig(config.NODE_REGION_CONFIG_OPTIONS, { ...config.NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
339
|
+
region: config$1?.region ?? config.loadConfig(config.NODE_REGION_CONFIG_OPTIONS, { ...config.NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
371
340
|
requestHandler: nodeHttpHandler.NodeHttpHandler.create(config$1?.requestHandler ?? defaultConfigProvider),
|
|
372
341
|
retryMode: config$1?.retryMode ??
|
|
373
342
|
config.loadConfig({
|