@aws-sdk/client-emr-containers 3.428.0 → 3.430.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-types/models/models_0.d.ts +12 -12
- package/dist-types/ts3.4/models/models_0.d.ts +12 -12
- package/package.json +11 -11
|
@@ -182,7 +182,7 @@ export interface TemplateParameterConfiguration {
|
|
|
182
182
|
* @public
|
|
183
183
|
* <p>The type of the job template parameter. Allowed values are: ‘STRING’, ‘NUMBER’.</p>
|
|
184
184
|
*/
|
|
185
|
-
type?: TemplateParameterDataType
|
|
185
|
+
type?: TemplateParameterDataType;
|
|
186
186
|
/**
|
|
187
187
|
* @public
|
|
188
188
|
* <p>The default value for the job template parameter.</p>
|
|
@@ -292,7 +292,7 @@ export interface MonitoringConfiguration {
|
|
|
292
292
|
* @public
|
|
293
293
|
* <p>Monitoring configurations for the persistent application UI. </p>
|
|
294
294
|
*/
|
|
295
|
-
persistentAppUI?: PersistentAppUI
|
|
295
|
+
persistentAppUI?: PersistentAppUI;
|
|
296
296
|
/**
|
|
297
297
|
* @public
|
|
298
298
|
* <p>Monitoring configurations for CloudWatch.</p>
|
|
@@ -396,7 +396,7 @@ export interface ContainerProvider {
|
|
|
396
396
|
* <p>The type of the container provider. Amazon EKS is the only supported type as of
|
|
397
397
|
* now.</p>
|
|
398
398
|
*/
|
|
399
|
-
type: ContainerProviderType |
|
|
399
|
+
type: ContainerProviderType | undefined;
|
|
400
400
|
/**
|
|
401
401
|
* @public
|
|
402
402
|
* <p>The ID of the container cluster.</p>
|
|
@@ -700,7 +700,7 @@ export interface VirtualCluster {
|
|
|
700
700
|
* @public
|
|
701
701
|
* <p>The state of the virtual cluster.</p>
|
|
702
702
|
*/
|
|
703
|
-
state?: VirtualClusterState
|
|
703
|
+
state?: VirtualClusterState;
|
|
704
704
|
/**
|
|
705
705
|
* @public
|
|
706
706
|
* <p>The container provider of the virtual cluster.</p>
|
|
@@ -859,7 +859,7 @@ export interface ListJobRunsRequest {
|
|
|
859
859
|
* @public
|
|
860
860
|
* <p>The states of the job run.</p>
|
|
861
861
|
*/
|
|
862
|
-
states?:
|
|
862
|
+
states?: JobRunState[];
|
|
863
863
|
/**
|
|
864
864
|
* @public
|
|
865
865
|
* <p>The maximum number of job runs that can be listed.</p>
|
|
@@ -924,7 +924,7 @@ export interface ListManagedEndpointsRequest {
|
|
|
924
924
|
* @public
|
|
925
925
|
* <p>The states of the managed endpoints.</p>
|
|
926
926
|
*/
|
|
927
|
-
states?:
|
|
927
|
+
states?: EndpointState[];
|
|
928
928
|
/**
|
|
929
929
|
* @public
|
|
930
930
|
* <p>The maximum number of managed endpoints that can be listed.</p>
|
|
@@ -970,7 +970,7 @@ export interface ListVirtualClustersRequest {
|
|
|
970
970
|
* <p>The container provider type of the virtual cluster. Amazon EKS is the only
|
|
971
971
|
* supported type as of now.</p>
|
|
972
972
|
*/
|
|
973
|
-
containerProviderType?: ContainerProviderType
|
|
973
|
+
containerProviderType?: ContainerProviderType;
|
|
974
974
|
/**
|
|
975
975
|
* @public
|
|
976
976
|
* <p>The date and time after which the virtual clusters are created.</p>
|
|
@@ -985,7 +985,7 @@ export interface ListVirtualClustersRequest {
|
|
|
985
985
|
* @public
|
|
986
986
|
* <p>The states of the requested virtual clusters.</p>
|
|
987
987
|
*/
|
|
988
|
-
states?:
|
|
988
|
+
states?: VirtualClusterState[];
|
|
989
989
|
/**
|
|
990
990
|
* @public
|
|
991
991
|
* <p>The maximum number of virtual clusters that can be listed.</p>
|
|
@@ -1222,7 +1222,7 @@ export interface Endpoint {
|
|
|
1222
1222
|
* @public
|
|
1223
1223
|
* <p>The state of the endpoint.</p>
|
|
1224
1224
|
*/
|
|
1225
|
-
state?: EndpointState
|
|
1225
|
+
state?: EndpointState;
|
|
1226
1226
|
/**
|
|
1227
1227
|
* @public
|
|
1228
1228
|
* <p>The EMR release version to be used for the endpoint.</p>
|
|
@@ -1282,7 +1282,7 @@ export interface Endpoint {
|
|
|
1282
1282
|
* @public
|
|
1283
1283
|
* <p> The reasons why the endpoint has failed. </p>
|
|
1284
1284
|
*/
|
|
1285
|
-
failureReason?: FailureReason
|
|
1285
|
+
failureReason?: FailureReason;
|
|
1286
1286
|
/**
|
|
1287
1287
|
* @public
|
|
1288
1288
|
* <p>The tags of the endpoint. </p>
|
|
@@ -1319,7 +1319,7 @@ export interface JobRun {
|
|
|
1319
1319
|
* @public
|
|
1320
1320
|
* <p>The state of the job run. </p>
|
|
1321
1321
|
*/
|
|
1322
|
-
state?: JobRunState
|
|
1322
|
+
state?: JobRunState;
|
|
1323
1323
|
/**
|
|
1324
1324
|
* @public
|
|
1325
1325
|
* <p>The client token used to start a job run.</p>
|
|
@@ -1369,7 +1369,7 @@ export interface JobRun {
|
|
|
1369
1369
|
* @public
|
|
1370
1370
|
* <p>The reasons why the job run has failed.</p>
|
|
1371
1371
|
*/
|
|
1372
|
-
failureReason?: FailureReason
|
|
1372
|
+
failureReason?: FailureReason;
|
|
1373
1373
|
/**
|
|
1374
1374
|
* @public
|
|
1375
1375
|
* <p>The assigned tags of the job run.</p>
|
|
@@ -54,7 +54,7 @@ export declare const TemplateParameterDataType: {
|
|
|
54
54
|
export type TemplateParameterDataType =
|
|
55
55
|
(typeof TemplateParameterDataType)[keyof typeof TemplateParameterDataType];
|
|
56
56
|
export interface TemplateParameterConfiguration {
|
|
57
|
-
type?: TemplateParameterDataType
|
|
57
|
+
type?: TemplateParameterDataType;
|
|
58
58
|
defaultValue?: string;
|
|
59
59
|
}
|
|
60
60
|
export interface CreateJobTemplateResponse {
|
|
@@ -88,7 +88,7 @@ export interface S3MonitoringConfiguration {
|
|
|
88
88
|
logUri: string | undefined;
|
|
89
89
|
}
|
|
90
90
|
export interface MonitoringConfiguration {
|
|
91
|
-
persistentAppUI?: PersistentAppUI
|
|
91
|
+
persistentAppUI?: PersistentAppUI;
|
|
92
92
|
cloudWatchMonitoringConfiguration?: CloudWatchMonitoringConfiguration;
|
|
93
93
|
s3MonitoringConfiguration?: S3MonitoringConfiguration;
|
|
94
94
|
containerLogRotationConfiguration?: ContainerLogRotationConfiguration;
|
|
@@ -126,7 +126,7 @@ export declare const ContainerProviderType: {
|
|
|
126
126
|
export type ContainerProviderType =
|
|
127
127
|
(typeof ContainerProviderType)[keyof typeof ContainerProviderType];
|
|
128
128
|
export interface ContainerProvider {
|
|
129
|
-
type: ContainerProviderType |
|
|
129
|
+
type: ContainerProviderType | undefined;
|
|
130
130
|
id: string | undefined;
|
|
131
131
|
info?: ContainerInfo;
|
|
132
132
|
}
|
|
@@ -222,7 +222,7 @@ export interface VirtualCluster {
|
|
|
222
222
|
id?: string;
|
|
223
223
|
name?: string;
|
|
224
224
|
arn?: string;
|
|
225
|
-
state?: VirtualClusterState
|
|
225
|
+
state?: VirtualClusterState;
|
|
226
226
|
containerProvider?: ContainerProvider;
|
|
227
227
|
createdAt?: Date;
|
|
228
228
|
tags?: Record<string, string>;
|
|
@@ -272,7 +272,7 @@ export interface ListJobRunsRequest {
|
|
|
272
272
|
createdBefore?: Date;
|
|
273
273
|
createdAfter?: Date;
|
|
274
274
|
name?: string;
|
|
275
|
-
states?:
|
|
275
|
+
states?: JobRunState[];
|
|
276
276
|
maxResults?: number;
|
|
277
277
|
nextToken?: string;
|
|
278
278
|
}
|
|
@@ -287,7 +287,7 @@ export interface ListManagedEndpointsRequest {
|
|
|
287
287
|
createdBefore?: Date;
|
|
288
288
|
createdAfter?: Date;
|
|
289
289
|
types?: string[];
|
|
290
|
-
states?:
|
|
290
|
+
states?: EndpointState[];
|
|
291
291
|
maxResults?: number;
|
|
292
292
|
nextToken?: string;
|
|
293
293
|
}
|
|
@@ -299,10 +299,10 @@ export interface ListTagsForResourceResponse {
|
|
|
299
299
|
}
|
|
300
300
|
export interface ListVirtualClustersRequest {
|
|
301
301
|
containerProviderId?: string;
|
|
302
|
-
containerProviderType?: ContainerProviderType
|
|
302
|
+
containerProviderType?: ContainerProviderType;
|
|
303
303
|
createdAfter?: Date;
|
|
304
304
|
createdBefore?: Date;
|
|
305
|
-
states?:
|
|
305
|
+
states?: VirtualClusterState[];
|
|
306
306
|
maxResults?: number;
|
|
307
307
|
nextToken?: string;
|
|
308
308
|
}
|
|
@@ -356,7 +356,7 @@ export interface Endpoint {
|
|
|
356
356
|
arn?: string;
|
|
357
357
|
virtualClusterId?: string;
|
|
358
358
|
type?: string;
|
|
359
|
-
state?: EndpointState
|
|
359
|
+
state?: EndpointState;
|
|
360
360
|
releaseLabel?: string;
|
|
361
361
|
executionRoleArn?: string;
|
|
362
362
|
certificateArn?: string;
|
|
@@ -367,7 +367,7 @@ export interface Endpoint {
|
|
|
367
367
|
securityGroup?: string;
|
|
368
368
|
subnetIds?: string[];
|
|
369
369
|
stateDetails?: string;
|
|
370
|
-
failureReason?: FailureReason
|
|
370
|
+
failureReason?: FailureReason;
|
|
371
371
|
tags?: Record<string, string>;
|
|
372
372
|
}
|
|
373
373
|
export interface JobRun {
|
|
@@ -375,7 +375,7 @@ export interface JobRun {
|
|
|
375
375
|
name?: string;
|
|
376
376
|
virtualClusterId?: string;
|
|
377
377
|
arn?: string;
|
|
378
|
-
state?: JobRunState
|
|
378
|
+
state?: JobRunState;
|
|
379
379
|
clientToken?: string;
|
|
380
380
|
executionRoleArn?: string;
|
|
381
381
|
releaseLabel?: string;
|
|
@@ -385,7 +385,7 @@ export interface JobRun {
|
|
|
385
385
|
createdBy?: string;
|
|
386
386
|
finishedAt?: Date;
|
|
387
387
|
stateDetails?: string;
|
|
388
|
-
failureReason?: FailureReason
|
|
388
|
+
failureReason?: FailureReason;
|
|
389
389
|
tags?: Record<string, string>;
|
|
390
390
|
retryPolicyConfiguration?: RetryPolicyConfiguration;
|
|
391
391
|
retryPolicyExecution?: RetryPolicyExecution;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-emr-containers",
|
|
3
3
|
"description": "AWS SDK for JavaScript Emr Containers Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.430.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,28 +21,28 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.430.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.430.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.429.0",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.428.0",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "3.428.0",
|
|
29
29
|
"@aws-sdk/middleware-signing": "3.428.0",
|
|
30
30
|
"@aws-sdk/middleware-user-agent": "3.428.0",
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.430.0",
|
|
32
32
|
"@aws-sdk/types": "3.428.0",
|
|
33
33
|
"@aws-sdk/util-endpoints": "3.428.0",
|
|
34
34
|
"@aws-sdk/util-user-agent-browser": "3.428.0",
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^2.0.
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.430.0",
|
|
36
|
+
"@smithy/config-resolver": "^2.0.15",
|
|
37
37
|
"@smithy/fetch-http-handler": "^2.2.3",
|
|
38
38
|
"@smithy/hash-node": "^2.0.11",
|
|
39
39
|
"@smithy/invalid-dependency": "^2.0.11",
|
|
40
40
|
"@smithy/middleware-content-length": "^2.0.13",
|
|
41
|
-
"@smithy/middleware-endpoint": "^2.1.
|
|
42
|
-
"@smithy/middleware-retry": "^2.0.
|
|
41
|
+
"@smithy/middleware-endpoint": "^2.1.2",
|
|
42
|
+
"@smithy/middleware-retry": "^2.0.17",
|
|
43
43
|
"@smithy/middleware-serde": "^2.0.11",
|
|
44
44
|
"@smithy/middleware-stack": "^2.0.5",
|
|
45
|
-
"@smithy/node-config-provider": "^2.1.
|
|
45
|
+
"@smithy/node-config-provider": "^2.1.2",
|
|
46
46
|
"@smithy/node-http-handler": "^2.1.7",
|
|
47
47
|
"@smithy/protocol-http": "^3.0.7",
|
|
48
48
|
"@smithy/smithy-client": "^2.1.11",
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"@smithy/util-body-length-browser": "^2.0.0",
|
|
53
53
|
"@smithy/util-body-length-node": "^2.1.0",
|
|
54
54
|
"@smithy/util-defaults-mode-browser": "^2.0.15",
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^2.0.
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^2.0.20",
|
|
56
56
|
"@smithy/util-retry": "^2.0.4",
|
|
57
57
|
"@smithy/util-utf8": "^2.0.0",
|
|
58
58
|
"tslib": "^2.5.0",
|