@aws-sdk/client-emr-serverless 3.830.0 → 3.835.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/dist-cjs/index.js +3 -0
- package/dist-es/protocols/Aws_restJson1.js +3 -0
- package/dist-types/commands/CreateApplicationCommand.d.ts +3 -0
- package/dist-types/commands/GetApplicationCommand.d.ts +4 -0
- package/dist-types/commands/UpdateApplicationCommand.d.ts +7 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +42 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +4 -1
- package/dist-types/ts3.4/models/models_0.d.ts +10 -0
- package/package.json +11 -11
package/dist-cjs/index.js
CHANGED
|
@@ -470,6 +470,7 @@ var se_CreateApplicationCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
470
470
|
autoStartConfiguration: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)(_), "autoStartConfiguration"),
|
|
471
471
|
autoStopConfiguration: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)(_), "autoStopConfiguration"),
|
|
472
472
|
clientToken: [true, (_) => _ ?? (0, import_uuid.v4)()],
|
|
473
|
+
identityCenterConfiguration: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)(_), "identityCenterConfiguration"),
|
|
473
474
|
imageConfiguration: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)(_), "imageConfiguration"),
|
|
474
475
|
initialCapacity: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)(_), "initialCapacity"),
|
|
475
476
|
interactiveConfiguration: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)(_), "interactiveConfiguration"),
|
|
@@ -671,6 +672,7 @@ var se_UpdateApplicationCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
671
672
|
autoStartConfiguration: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)(_), "autoStartConfiguration"),
|
|
672
673
|
autoStopConfiguration: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)(_), "autoStopConfiguration"),
|
|
673
674
|
clientToken: [true, (_) => _ ?? (0, import_uuid.v4)()],
|
|
675
|
+
identityCenterConfiguration: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)(_), "identityCenterConfiguration"),
|
|
674
676
|
imageConfiguration: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)(_), "imageConfiguration"),
|
|
675
677
|
initialCapacity: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)(_), "initialCapacity"),
|
|
676
678
|
interactiveConfiguration: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)(_), "interactiveConfiguration"),
|
|
@@ -1021,6 +1023,7 @@ var de_Application = /* @__PURE__ */ __name((output, context) => {
|
|
|
1021
1023
|
autoStartConfiguration: import_smithy_client._json,
|
|
1022
1024
|
autoStopConfiguration: import_smithy_client._json,
|
|
1023
1025
|
createdAt: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "createdAt"),
|
|
1026
|
+
identityCenterConfiguration: import_smithy_client._json,
|
|
1024
1027
|
imageConfiguration: import_smithy_client._json,
|
|
1025
1028
|
initialCapacity: import_smithy_client._json,
|
|
1026
1029
|
interactiveConfiguration: import_smithy_client._json,
|
|
@@ -29,6 +29,7 @@ export const se_CreateApplicationCommand = async (input, context) => {
|
|
|
29
29
|
autoStartConfiguration: (_) => _json(_),
|
|
30
30
|
autoStopConfiguration: (_) => _json(_),
|
|
31
31
|
clientToken: [true, (_) => _ ?? generateIdempotencyToken()],
|
|
32
|
+
identityCenterConfiguration: (_) => _json(_),
|
|
32
33
|
imageConfiguration: (_) => _json(_),
|
|
33
34
|
initialCapacity: (_) => _json(_),
|
|
34
35
|
interactiveConfiguration: (_) => _json(_),
|
|
@@ -224,6 +225,7 @@ export const se_UpdateApplicationCommand = async (input, context) => {
|
|
|
224
225
|
autoStartConfiguration: (_) => _json(_),
|
|
225
226
|
autoStopConfiguration: (_) => _json(_),
|
|
226
227
|
clientToken: [true, (_) => _ ?? generateIdempotencyToken()],
|
|
228
|
+
identityCenterConfiguration: (_) => _json(_),
|
|
227
229
|
imageConfiguration: (_) => _json(_),
|
|
228
230
|
initialCapacity: (_) => _json(_),
|
|
229
231
|
interactiveConfiguration: (_) => _json(_),
|
|
@@ -575,6 +577,7 @@ const de_Application = (output, context) => {
|
|
|
575
577
|
autoStartConfiguration: _json,
|
|
576
578
|
autoStopConfiguration: _json,
|
|
577
579
|
createdAt: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
580
|
+
identityCenterConfiguration: _json,
|
|
578
581
|
imageConfiguration: _json,
|
|
579
582
|
initialCapacity: _json,
|
|
580
583
|
interactiveConfiguration: _json,
|
|
@@ -133,6 +133,9 @@ declare const CreateApplicationCommand_base: {
|
|
|
133
133
|
* queueTimeoutMinutes: Number("int"),
|
|
134
134
|
* maxConcurrentRuns: Number("int"),
|
|
135
135
|
* },
|
|
136
|
+
* identityCenterConfiguration: { // IdentityCenterConfigurationInput
|
|
137
|
+
* identityCenterInstanceArn: "STRING_VALUE",
|
|
138
|
+
* },
|
|
136
139
|
* };
|
|
137
140
|
* const command = new CreateApplicationCommand(input);
|
|
138
141
|
* const response = await client.send(command);
|
|
@@ -146,6 +146,10 @@ declare const GetApplicationCommand_base: {
|
|
|
146
146
|
* // queueTimeoutMinutes: Number("int"),
|
|
147
147
|
* // maxConcurrentRuns: Number("int"),
|
|
148
148
|
* // },
|
|
149
|
+
* // identityCenterConfiguration: { // IdentityCenterConfiguration
|
|
150
|
+
* // identityCenterInstanceArn: "STRING_VALUE",
|
|
151
|
+
* // identityCenterApplicationArn: "STRING_VALUE",
|
|
152
|
+
* // },
|
|
149
153
|
* // },
|
|
150
154
|
* // };
|
|
151
155
|
*
|
|
@@ -129,6 +129,9 @@ declare const UpdateApplicationCommand_base: {
|
|
|
129
129
|
* queueTimeoutMinutes: Number("int"),
|
|
130
130
|
* maxConcurrentRuns: Number("int"),
|
|
131
131
|
* },
|
|
132
|
+
* identityCenterConfiguration: { // IdentityCenterConfigurationInput
|
|
133
|
+
* identityCenterInstanceArn: "STRING_VALUE",
|
|
134
|
+
* },
|
|
132
135
|
* };
|
|
133
136
|
* const command = new UpdateApplicationCommand(input);
|
|
134
137
|
* const response = await client.send(command);
|
|
@@ -239,6 +242,10 @@ declare const UpdateApplicationCommand_base: {
|
|
|
239
242
|
* // queueTimeoutMinutes: Number("int"),
|
|
240
243
|
* // maxConcurrentRuns: Number("int"),
|
|
241
244
|
* // },
|
|
245
|
+
* // identityCenterConfiguration: { // IdentityCenterConfiguration
|
|
246
|
+
* // identityCenterInstanceArn: "STRING_VALUE",
|
|
247
|
+
* // identityCenterApplicationArn: "STRING_VALUE",
|
|
248
|
+
* // },
|
|
242
249
|
* // },
|
|
243
250
|
* // };
|
|
244
251
|
*
|
|
@@ -8,7 +8,7 @@ export interface ClientInputEndpointParameters {
|
|
|
8
8
|
useFipsEndpoint?: boolean | undefined | Provider<boolean | undefined>;
|
|
9
9
|
endpoint?: string | Provider<string> | Endpoint | Provider<Endpoint> | EndpointV2 | Provider<EndpointV2>;
|
|
10
10
|
}
|
|
11
|
-
export type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
|
|
11
|
+
export type ClientResolvedEndpointParameters = Omit<ClientInputEndpointParameters, "endpoint"> & {
|
|
12
12
|
defaultSigningName: string;
|
|
13
13
|
};
|
|
14
14
|
export declare const resolveClientEndpointParameters: <T>(options: T & ClientInputEndpointParameters) => T & ClientResolvedEndpointParameters;
|
|
@@ -39,6 +39,22 @@ export interface AutoStopConfig {
|
|
|
39
39
|
*/
|
|
40
40
|
idleTimeoutMinutes?: number | undefined;
|
|
41
41
|
}
|
|
42
|
+
/**
|
|
43
|
+
* <p>The IAM Identity Center Configuration that includes the Identify Center instance and application ARNs that provide trusted-identity propagation.</p>
|
|
44
|
+
* @public
|
|
45
|
+
*/
|
|
46
|
+
export interface IdentityCenterConfiguration {
|
|
47
|
+
/**
|
|
48
|
+
* <p>The ARN of the IAM Identity Center instance.</p>
|
|
49
|
+
* @public
|
|
50
|
+
*/
|
|
51
|
+
identityCenterInstanceArn?: string | undefined;
|
|
52
|
+
/**
|
|
53
|
+
* <p>The ARN of the EMR Serverless created IAM Identity Center Application that provides trusted-identity propagation.</p>
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
56
|
+
identityCenterApplicationArn?: string | undefined;
|
|
57
|
+
}
|
|
42
58
|
/**
|
|
43
59
|
* <p>The applied image configuration.</p>
|
|
44
60
|
* @public
|
|
@@ -362,6 +378,17 @@ export declare class ConflictException extends __BaseException {
|
|
|
362
378
|
*/
|
|
363
379
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
364
380
|
}
|
|
381
|
+
/**
|
|
382
|
+
* <p>Specifies the IAM Identity Center configuration used to enable or disable trusted identity propagation. When provided, this configuration determines how the application interacts with IAM Identity Center for user authentication and access control.</p>
|
|
383
|
+
* @public
|
|
384
|
+
*/
|
|
385
|
+
export interface IdentityCenterConfigurationInput {
|
|
386
|
+
/**
|
|
387
|
+
* <p>The ARN of the IAM Identity Center instance.</p>
|
|
388
|
+
* @public
|
|
389
|
+
*/
|
|
390
|
+
identityCenterInstanceArn?: string | undefined;
|
|
391
|
+
}
|
|
365
392
|
/**
|
|
366
393
|
* <p>The image configuration.</p>
|
|
367
394
|
* @public
|
|
@@ -1299,6 +1326,11 @@ export interface Application {
|
|
|
1299
1326
|
* @public
|
|
1300
1327
|
*/
|
|
1301
1328
|
schedulerConfiguration?: SchedulerConfiguration | undefined;
|
|
1329
|
+
/**
|
|
1330
|
+
* <p>The IAM Identity Center configuration applied to enable trusted identity propagation. </p>
|
|
1331
|
+
* @public
|
|
1332
|
+
*/
|
|
1333
|
+
identityCenterConfiguration?: IdentityCenterConfiguration | undefined;
|
|
1302
1334
|
}
|
|
1303
1335
|
/**
|
|
1304
1336
|
* <p>A configuration specification to be used to override existing configurations.</p>
|
|
@@ -1405,6 +1437,11 @@ export interface CreateApplicationRequest {
|
|
|
1405
1437
|
* @public
|
|
1406
1438
|
*/
|
|
1407
1439
|
schedulerConfiguration?: SchedulerConfiguration | undefined;
|
|
1440
|
+
/**
|
|
1441
|
+
* <p>The IAM Identity Center Configuration accepts the Identity Center instance parameter required to enable trusted identity propagation. This configuration allows identity propagation between integrated services and the Identity Center instance.</p>
|
|
1442
|
+
* @public
|
|
1443
|
+
*/
|
|
1444
|
+
identityCenterConfiguration?: IdentityCenterConfigurationInput | undefined;
|
|
1408
1445
|
}
|
|
1409
1446
|
/**
|
|
1410
1447
|
* @public
|
|
@@ -1485,6 +1522,11 @@ export interface UpdateApplicationRequest {
|
|
|
1485
1522
|
* @public
|
|
1486
1523
|
*/
|
|
1487
1524
|
schedulerConfiguration?: SchedulerConfiguration | undefined;
|
|
1525
|
+
/**
|
|
1526
|
+
* <p>Specifies the IAM Identity Center configuration used to enable or disable trusted identity propagation. When provided, this configuration determines how the application interacts with IAM Identity Center for user authentication and access control.</p>
|
|
1527
|
+
* @public
|
|
1528
|
+
*/
|
|
1529
|
+
identityCenterConfiguration?: IdentityCenterConfigurationInput | undefined;
|
|
1488
1530
|
}
|
|
1489
1531
|
/**
|
|
1490
1532
|
* @public
|
|
@@ -16,7 +16,10 @@ export interface ClientInputEndpointParameters {
|
|
|
16
16
|
| EndpointV2
|
|
17
17
|
| Provider<EndpointV2>;
|
|
18
18
|
}
|
|
19
|
-
export type ClientResolvedEndpointParameters =
|
|
19
|
+
export type ClientResolvedEndpointParameters = Pick<
|
|
20
|
+
ClientInputEndpointParameters,
|
|
21
|
+
Exclude<keyof ClientInputEndpointParameters, "endpoint">
|
|
22
|
+
> & {
|
|
20
23
|
defaultSigningName: string;
|
|
21
24
|
};
|
|
22
25
|
export declare const resolveClientEndpointParameters: <T>(
|
|
@@ -12,6 +12,10 @@ export interface AutoStopConfig {
|
|
|
12
12
|
enabled?: boolean | undefined;
|
|
13
13
|
idleTimeoutMinutes?: number | undefined;
|
|
14
14
|
}
|
|
15
|
+
export interface IdentityCenterConfiguration {
|
|
16
|
+
identityCenterInstanceArn?: string | undefined;
|
|
17
|
+
identityCenterApplicationArn?: string | undefined;
|
|
18
|
+
}
|
|
15
19
|
export interface ImageConfiguration {
|
|
16
20
|
imageUri: string | undefined;
|
|
17
21
|
resolvedImageDigest?: string | undefined;
|
|
@@ -102,6 +106,9 @@ export declare class ConflictException extends __BaseException {
|
|
|
102
106
|
readonly $fault: "client";
|
|
103
107
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
104
108
|
}
|
|
109
|
+
export interface IdentityCenterConfigurationInput {
|
|
110
|
+
identityCenterInstanceArn?: string | undefined;
|
|
111
|
+
}
|
|
105
112
|
export interface ImageConfigurationInput {
|
|
106
113
|
imageUri?: string | undefined;
|
|
107
114
|
}
|
|
@@ -369,6 +376,7 @@ export interface Application {
|
|
|
369
376
|
monitoringConfiguration?: MonitoringConfiguration | undefined;
|
|
370
377
|
interactiveConfiguration?: InteractiveConfiguration | undefined;
|
|
371
378
|
schedulerConfiguration?: SchedulerConfiguration | undefined;
|
|
379
|
+
identityCenterConfiguration?: IdentityCenterConfiguration | undefined;
|
|
372
380
|
}
|
|
373
381
|
export interface ConfigurationOverrides {
|
|
374
382
|
applicationConfiguration?: Configuration[] | undefined;
|
|
@@ -394,6 +402,7 @@ export interface CreateApplicationRequest {
|
|
|
394
402
|
monitoringConfiguration?: MonitoringConfiguration | undefined;
|
|
395
403
|
interactiveConfiguration?: InteractiveConfiguration | undefined;
|
|
396
404
|
schedulerConfiguration?: SchedulerConfiguration | undefined;
|
|
405
|
+
identityCenterConfiguration?: IdentityCenterConfigurationInput | undefined;
|
|
397
406
|
}
|
|
398
407
|
export interface UpdateApplicationRequest {
|
|
399
408
|
applicationId: string | undefined;
|
|
@@ -413,6 +422,7 @@ export interface UpdateApplicationRequest {
|
|
|
413
422
|
runtimeConfiguration?: Configuration[] | undefined;
|
|
414
423
|
monitoringConfiguration?: MonitoringConfiguration | undefined;
|
|
415
424
|
schedulerConfiguration?: SchedulerConfiguration | undefined;
|
|
425
|
+
identityCenterConfiguration?: IdentityCenterConfigurationInput | undefined;
|
|
416
426
|
}
|
|
417
427
|
export interface GetApplicationResponse {
|
|
418
428
|
application: Application | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-emr-serverless",
|
|
3
3
|
"description": "AWS SDK for JavaScript Emr Serverless Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.835.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-emr-serverless",
|
|
@@ -20,41 +20,41 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.835.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.835.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.821.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.821.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.821.0",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.835.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.821.0",
|
|
30
30
|
"@aws-sdk/types": "3.821.0",
|
|
31
31
|
"@aws-sdk/util-endpoints": "3.828.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.821.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.835.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.1.4",
|
|
35
35
|
"@smithy/core": "^3.5.3",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.0.4",
|
|
37
37
|
"@smithy/hash-node": "^4.0.4",
|
|
38
38
|
"@smithy/invalid-dependency": "^4.0.4",
|
|
39
39
|
"@smithy/middleware-content-length": "^4.0.4",
|
|
40
|
-
"@smithy/middleware-endpoint": "^4.1.
|
|
41
|
-
"@smithy/middleware-retry": "^4.1.
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.1.12",
|
|
41
|
+
"@smithy/middleware-retry": "^4.1.13",
|
|
42
42
|
"@smithy/middleware-serde": "^4.0.8",
|
|
43
43
|
"@smithy/middleware-stack": "^4.0.4",
|
|
44
44
|
"@smithy/node-config-provider": "^4.1.3",
|
|
45
45
|
"@smithy/node-http-handler": "^4.0.6",
|
|
46
46
|
"@smithy/protocol-http": "^5.1.2",
|
|
47
|
-
"@smithy/smithy-client": "^4.4.
|
|
47
|
+
"@smithy/smithy-client": "^4.4.4",
|
|
48
48
|
"@smithy/types": "^4.3.1",
|
|
49
49
|
"@smithy/url-parser": "^4.0.4",
|
|
50
50
|
"@smithy/util-base64": "^4.0.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^4.0.0",
|
|
52
52
|
"@smithy/util-body-length-node": "^4.0.0",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^4.0.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.0.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.0.20",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.0.20",
|
|
55
55
|
"@smithy/util-endpoints": "^3.0.6",
|
|
56
56
|
"@smithy/util-middleware": "^4.0.4",
|
|
57
|
-
"@smithy/util-retry": "^4.0.
|
|
57
|
+
"@smithy/util-retry": "^4.0.6",
|
|
58
58
|
"@smithy/util-utf8": "^4.0.0",
|
|
59
59
|
"@types/uuid": "^9.0.1",
|
|
60
60
|
"tslib": "^2.6.2",
|