@aws-sdk/client-emr-containers 3.301.0 → 3.306.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/models/models_0.js +39 -46
- package/dist-es/models/models_0.js +39 -46
- package/dist-types/models/models_0.d.ts +74 -39
- package/dist-types/ts3.4/models/models_0.d.ts +50 -39
- package/package.json +34 -34
|
@@ -29,11 +29,10 @@ class ValidationException extends EMRContainersServiceException_1.EMRContainersS
|
|
|
29
29
|
}
|
|
30
30
|
}
|
|
31
31
|
exports.ValidationException = ValidationException;
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
})(TemplateParameterDataType = exports.TemplateParameterDataType || (exports.TemplateParameterDataType = {}));
|
|
32
|
+
exports.TemplateParameterDataType = {
|
|
33
|
+
NUMBER: "NUMBER",
|
|
34
|
+
STRING: "STRING",
|
|
35
|
+
};
|
|
37
36
|
class ResourceNotFoundException extends EMRContainersServiceException_1.EMRContainersServiceException {
|
|
38
37
|
constructor(opts) {
|
|
39
38
|
super({
|
|
@@ -47,11 +46,10 @@ class ResourceNotFoundException extends EMRContainersServiceException_1.EMRConta
|
|
|
47
46
|
}
|
|
48
47
|
}
|
|
49
48
|
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
})(PersistentAppUI = exports.PersistentAppUI || (exports.PersistentAppUI = {}));
|
|
49
|
+
exports.PersistentAppUI = {
|
|
50
|
+
DISABLED: "DISABLED",
|
|
51
|
+
ENABLED: "ENABLED",
|
|
52
|
+
};
|
|
55
53
|
var ContainerInfo;
|
|
56
54
|
(function (ContainerInfo) {
|
|
57
55
|
ContainerInfo.visit = (value, visitor) => {
|
|
@@ -60,42 +58,37 @@ var ContainerInfo;
|
|
|
60
58
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
61
59
|
};
|
|
62
60
|
})(ContainerInfo = exports.ContainerInfo || (exports.ContainerInfo = {}));
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
VirtualClusterState["ARRESTED"] = "ARRESTED";
|
|
95
|
-
VirtualClusterState["RUNNING"] = "RUNNING";
|
|
96
|
-
VirtualClusterState["TERMINATED"] = "TERMINATED";
|
|
97
|
-
VirtualClusterState["TERMINATING"] = "TERMINATING";
|
|
98
|
-
})(VirtualClusterState = exports.VirtualClusterState || (exports.VirtualClusterState = {}));
|
|
61
|
+
exports.ContainerProviderType = {
|
|
62
|
+
EKS: "EKS",
|
|
63
|
+
};
|
|
64
|
+
exports.FailureReason = {
|
|
65
|
+
CLUSTER_UNAVAILABLE: "CLUSTER_UNAVAILABLE",
|
|
66
|
+
INTERNAL_ERROR: "INTERNAL_ERROR",
|
|
67
|
+
USER_ERROR: "USER_ERROR",
|
|
68
|
+
VALIDATION_ERROR: "VALIDATION_ERROR",
|
|
69
|
+
};
|
|
70
|
+
exports.JobRunState = {
|
|
71
|
+
CANCELLED: "CANCELLED",
|
|
72
|
+
CANCEL_PENDING: "CANCEL_PENDING",
|
|
73
|
+
COMPLETED: "COMPLETED",
|
|
74
|
+
FAILED: "FAILED",
|
|
75
|
+
PENDING: "PENDING",
|
|
76
|
+
RUNNING: "RUNNING",
|
|
77
|
+
SUBMITTED: "SUBMITTED",
|
|
78
|
+
};
|
|
79
|
+
exports.EndpointState = {
|
|
80
|
+
ACTIVE: "ACTIVE",
|
|
81
|
+
CREATING: "CREATING",
|
|
82
|
+
TERMINATED: "TERMINATED",
|
|
83
|
+
TERMINATED_WITH_ERRORS: "TERMINATED_WITH_ERRORS",
|
|
84
|
+
TERMINATING: "TERMINATING",
|
|
85
|
+
};
|
|
86
|
+
exports.VirtualClusterState = {
|
|
87
|
+
ARRESTED: "ARRESTED",
|
|
88
|
+
RUNNING: "RUNNING",
|
|
89
|
+
TERMINATED: "TERMINATED",
|
|
90
|
+
TERMINATING: "TERMINATING",
|
|
91
|
+
};
|
|
99
92
|
const SparkSqlJobDriverFilterSensitiveLog = (obj) => ({
|
|
100
93
|
...obj,
|
|
101
94
|
...(obj.entryPoint && { entryPoint: smithy_client_1.SENSITIVE_STRING }),
|
|
@@ -24,11 +24,10 @@ export class ValidationException extends __BaseException {
|
|
|
24
24
|
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
25
25
|
}
|
|
26
26
|
}
|
|
27
|
-
export
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
})(TemplateParameterDataType || (TemplateParameterDataType = {}));
|
|
27
|
+
export const TemplateParameterDataType = {
|
|
28
|
+
NUMBER: "NUMBER",
|
|
29
|
+
STRING: "STRING",
|
|
30
|
+
};
|
|
32
31
|
export class ResourceNotFoundException extends __BaseException {
|
|
33
32
|
constructor(opts) {
|
|
34
33
|
super({
|
|
@@ -41,11 +40,10 @@ export class ResourceNotFoundException extends __BaseException {
|
|
|
41
40
|
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
42
41
|
}
|
|
43
42
|
}
|
|
44
|
-
export
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
})(PersistentAppUI || (PersistentAppUI = {}));
|
|
43
|
+
export const PersistentAppUI = {
|
|
44
|
+
DISABLED: "DISABLED",
|
|
45
|
+
ENABLED: "ENABLED",
|
|
46
|
+
};
|
|
49
47
|
export var ContainerInfo;
|
|
50
48
|
(function (ContainerInfo) {
|
|
51
49
|
ContainerInfo.visit = (value, visitor) => {
|
|
@@ -54,42 +52,37 @@ export var ContainerInfo;
|
|
|
54
52
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
55
53
|
};
|
|
56
54
|
})(ContainerInfo || (ContainerInfo = {}));
|
|
57
|
-
export
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
VirtualClusterState["ARRESTED"] = "ARRESTED";
|
|
89
|
-
VirtualClusterState["RUNNING"] = "RUNNING";
|
|
90
|
-
VirtualClusterState["TERMINATED"] = "TERMINATED";
|
|
91
|
-
VirtualClusterState["TERMINATING"] = "TERMINATING";
|
|
92
|
-
})(VirtualClusterState || (VirtualClusterState = {}));
|
|
55
|
+
export const ContainerProviderType = {
|
|
56
|
+
EKS: "EKS",
|
|
57
|
+
};
|
|
58
|
+
export const FailureReason = {
|
|
59
|
+
CLUSTER_UNAVAILABLE: "CLUSTER_UNAVAILABLE",
|
|
60
|
+
INTERNAL_ERROR: "INTERNAL_ERROR",
|
|
61
|
+
USER_ERROR: "USER_ERROR",
|
|
62
|
+
VALIDATION_ERROR: "VALIDATION_ERROR",
|
|
63
|
+
};
|
|
64
|
+
export const JobRunState = {
|
|
65
|
+
CANCELLED: "CANCELLED",
|
|
66
|
+
CANCEL_PENDING: "CANCEL_PENDING",
|
|
67
|
+
COMPLETED: "COMPLETED",
|
|
68
|
+
FAILED: "FAILED",
|
|
69
|
+
PENDING: "PENDING",
|
|
70
|
+
RUNNING: "RUNNING",
|
|
71
|
+
SUBMITTED: "SUBMITTED",
|
|
72
|
+
};
|
|
73
|
+
export const EndpointState = {
|
|
74
|
+
ACTIVE: "ACTIVE",
|
|
75
|
+
CREATING: "CREATING",
|
|
76
|
+
TERMINATED: "TERMINATED",
|
|
77
|
+
TERMINATED_WITH_ERRORS: "TERMINATED_WITH_ERRORS",
|
|
78
|
+
TERMINATING: "TERMINATING",
|
|
79
|
+
};
|
|
80
|
+
export const VirtualClusterState = {
|
|
81
|
+
ARRESTED: "ARRESTED",
|
|
82
|
+
RUNNING: "RUNNING",
|
|
83
|
+
TERMINATED: "TERMINATED",
|
|
84
|
+
TERMINATING: "TERMINATING",
|
|
85
|
+
};
|
|
93
86
|
export const SparkSqlJobDriverFilterSensitiveLog = (obj) => ({
|
|
94
87
|
...obj,
|
|
95
88
|
...(obj.entryPoint && { entryPoint: SENSITIVE_STRING }),
|
|
@@ -146,11 +146,16 @@ export interface JobDriver {
|
|
|
146
146
|
}
|
|
147
147
|
/**
|
|
148
148
|
* @public
|
|
149
|
+
* @enum
|
|
149
150
|
*/
|
|
150
|
-
export declare
|
|
151
|
-
NUMBER
|
|
152
|
-
STRING
|
|
153
|
-
}
|
|
151
|
+
export declare const TemplateParameterDataType: {
|
|
152
|
+
readonly NUMBER: "NUMBER";
|
|
153
|
+
readonly STRING: "STRING";
|
|
154
|
+
};
|
|
155
|
+
/**
|
|
156
|
+
* @public
|
|
157
|
+
*/
|
|
158
|
+
export type TemplateParameterDataType = (typeof TemplateParameterDataType)[keyof typeof TemplateParameterDataType];
|
|
154
159
|
/**
|
|
155
160
|
* @public
|
|
156
161
|
* <p>The configuration of a job template parameter.</p>
|
|
@@ -215,11 +220,16 @@ export interface CloudWatchMonitoringConfiguration {
|
|
|
215
220
|
}
|
|
216
221
|
/**
|
|
217
222
|
* @public
|
|
223
|
+
* @enum
|
|
218
224
|
*/
|
|
219
|
-
export declare
|
|
220
|
-
DISABLED
|
|
221
|
-
ENABLED
|
|
222
|
-
}
|
|
225
|
+
export declare const PersistentAppUI: {
|
|
226
|
+
readonly DISABLED: "DISABLED";
|
|
227
|
+
readonly ENABLED: "ENABLED";
|
|
228
|
+
};
|
|
229
|
+
/**
|
|
230
|
+
* @public
|
|
231
|
+
*/
|
|
232
|
+
export type PersistentAppUI = (typeof PersistentAppUI)[keyof typeof PersistentAppUI];
|
|
223
233
|
/**
|
|
224
234
|
* @public
|
|
225
235
|
* <p> Amazon S3 configuration for monitoring log publishing. You can configure your jobs to
|
|
@@ -308,10 +318,15 @@ export declare namespace ContainerInfo {
|
|
|
308
318
|
}
|
|
309
319
|
/**
|
|
310
320
|
* @public
|
|
321
|
+
* @enum
|
|
311
322
|
*/
|
|
312
|
-
export declare
|
|
313
|
-
EKS
|
|
314
|
-
}
|
|
323
|
+
export declare const ContainerProviderType: {
|
|
324
|
+
readonly EKS: "EKS";
|
|
325
|
+
};
|
|
326
|
+
/**
|
|
327
|
+
* @public
|
|
328
|
+
*/
|
|
329
|
+
export type ContainerProviderType = (typeof ContainerProviderType)[keyof typeof ContainerProviderType];
|
|
315
330
|
/**
|
|
316
331
|
* @public
|
|
317
332
|
* <p>The information about the container provider.</p>
|
|
@@ -445,13 +460,18 @@ export interface DescribeJobRunRequest {
|
|
|
445
460
|
}
|
|
446
461
|
/**
|
|
447
462
|
* @public
|
|
463
|
+
* @enum
|
|
448
464
|
*/
|
|
449
|
-
export declare
|
|
450
|
-
CLUSTER_UNAVAILABLE
|
|
451
|
-
INTERNAL_ERROR
|
|
452
|
-
USER_ERROR
|
|
453
|
-
VALIDATION_ERROR
|
|
454
|
-
}
|
|
465
|
+
export declare const FailureReason: {
|
|
466
|
+
readonly CLUSTER_UNAVAILABLE: "CLUSTER_UNAVAILABLE";
|
|
467
|
+
readonly INTERNAL_ERROR: "INTERNAL_ERROR";
|
|
468
|
+
readonly USER_ERROR: "USER_ERROR";
|
|
469
|
+
readonly VALIDATION_ERROR: "VALIDATION_ERROR";
|
|
470
|
+
};
|
|
471
|
+
/**
|
|
472
|
+
* @public
|
|
473
|
+
*/
|
|
474
|
+
export type FailureReason = (typeof FailureReason)[keyof typeof FailureReason];
|
|
455
475
|
/**
|
|
456
476
|
* @public
|
|
457
477
|
* <p>The configuration of the retry policy that the job runs on.</p>
|
|
@@ -474,16 +494,21 @@ export interface RetryPolicyExecution {
|
|
|
474
494
|
}
|
|
475
495
|
/**
|
|
476
496
|
* @public
|
|
497
|
+
* @enum
|
|
477
498
|
*/
|
|
478
|
-
export declare
|
|
479
|
-
CANCELLED
|
|
480
|
-
CANCEL_PENDING
|
|
481
|
-
COMPLETED
|
|
482
|
-
FAILED
|
|
483
|
-
PENDING
|
|
484
|
-
RUNNING
|
|
485
|
-
SUBMITTED
|
|
486
|
-
}
|
|
499
|
+
export declare const JobRunState: {
|
|
500
|
+
readonly CANCELLED: "CANCELLED";
|
|
501
|
+
readonly CANCEL_PENDING: "CANCEL_PENDING";
|
|
502
|
+
readonly COMPLETED: "COMPLETED";
|
|
503
|
+
readonly FAILED: "FAILED";
|
|
504
|
+
readonly PENDING: "PENDING";
|
|
505
|
+
readonly RUNNING: "RUNNING";
|
|
506
|
+
readonly SUBMITTED: "SUBMITTED";
|
|
507
|
+
};
|
|
508
|
+
/**
|
|
509
|
+
* @public
|
|
510
|
+
*/
|
|
511
|
+
export type JobRunState = (typeof JobRunState)[keyof typeof JobRunState];
|
|
487
512
|
/**
|
|
488
513
|
* @public
|
|
489
514
|
*/
|
|
@@ -522,14 +547,19 @@ export interface Certificate {
|
|
|
522
547
|
}
|
|
523
548
|
/**
|
|
524
549
|
* @public
|
|
550
|
+
* @enum
|
|
525
551
|
*/
|
|
526
|
-
export declare
|
|
527
|
-
ACTIVE
|
|
528
|
-
CREATING
|
|
529
|
-
TERMINATED
|
|
530
|
-
TERMINATED_WITH_ERRORS
|
|
531
|
-
TERMINATING
|
|
532
|
-
}
|
|
552
|
+
export declare const EndpointState: {
|
|
553
|
+
readonly ACTIVE: "ACTIVE";
|
|
554
|
+
readonly CREATING: "CREATING";
|
|
555
|
+
readonly TERMINATED: "TERMINATED";
|
|
556
|
+
readonly TERMINATED_WITH_ERRORS: "TERMINATED_WITH_ERRORS";
|
|
557
|
+
readonly TERMINATING: "TERMINATING";
|
|
558
|
+
};
|
|
559
|
+
/**
|
|
560
|
+
* @public
|
|
561
|
+
*/
|
|
562
|
+
export type EndpointState = (typeof EndpointState)[keyof typeof EndpointState];
|
|
533
563
|
/**
|
|
534
564
|
* @public
|
|
535
565
|
*/
|
|
@@ -541,13 +571,18 @@ export interface DescribeVirtualClusterRequest {
|
|
|
541
571
|
}
|
|
542
572
|
/**
|
|
543
573
|
* @public
|
|
574
|
+
* @enum
|
|
544
575
|
*/
|
|
545
|
-
export declare
|
|
546
|
-
ARRESTED
|
|
547
|
-
RUNNING
|
|
548
|
-
TERMINATED
|
|
549
|
-
TERMINATING
|
|
550
|
-
}
|
|
576
|
+
export declare const VirtualClusterState: {
|
|
577
|
+
readonly ARRESTED: "ARRESTED";
|
|
578
|
+
readonly RUNNING: "RUNNING";
|
|
579
|
+
readonly TERMINATED: "TERMINATED";
|
|
580
|
+
readonly TERMINATING: "TERMINATING";
|
|
581
|
+
};
|
|
582
|
+
/**
|
|
583
|
+
* @public
|
|
584
|
+
*/
|
|
585
|
+
export type VirtualClusterState = (typeof VirtualClusterState)[keyof typeof VirtualClusterState];
|
|
551
586
|
/**
|
|
552
587
|
* @public
|
|
553
588
|
* <p>This entity describes a virtual cluster. A virtual cluster is a Kubernetes namespace
|
|
@@ -47,10 +47,12 @@ export interface JobDriver {
|
|
|
47
47
|
sparkSubmitJobDriver?: SparkSubmitJobDriver;
|
|
48
48
|
sparkSqlJobDriver?: SparkSqlJobDriver;
|
|
49
49
|
}
|
|
50
|
-
export declare
|
|
51
|
-
NUMBER
|
|
52
|
-
STRING
|
|
53
|
-
}
|
|
50
|
+
export declare const TemplateParameterDataType: {
|
|
51
|
+
readonly NUMBER: "NUMBER";
|
|
52
|
+
readonly STRING: "STRING";
|
|
53
|
+
};
|
|
54
|
+
export type TemplateParameterDataType =
|
|
55
|
+
(typeof TemplateParameterDataType)[keyof typeof TemplateParameterDataType];
|
|
54
56
|
export interface TemplateParameterConfiguration {
|
|
55
57
|
type?: TemplateParameterDataType | string;
|
|
56
58
|
defaultValue?: string;
|
|
@@ -72,10 +74,12 @@ export interface CloudWatchMonitoringConfiguration {
|
|
|
72
74
|
logGroupName: string | undefined;
|
|
73
75
|
logStreamNamePrefix?: string;
|
|
74
76
|
}
|
|
75
|
-
export declare
|
|
76
|
-
DISABLED
|
|
77
|
-
ENABLED
|
|
78
|
-
}
|
|
77
|
+
export declare const PersistentAppUI: {
|
|
78
|
+
readonly DISABLED: "DISABLED";
|
|
79
|
+
readonly ENABLED: "ENABLED";
|
|
80
|
+
};
|
|
81
|
+
export type PersistentAppUI =
|
|
82
|
+
(typeof PersistentAppUI)[keyof typeof PersistentAppUI];
|
|
79
83
|
export interface S3MonitoringConfiguration {
|
|
80
84
|
logUri: string | undefined;
|
|
81
85
|
}
|
|
@@ -111,9 +115,11 @@ export declare namespace ContainerInfo {
|
|
|
111
115
|
}
|
|
112
116
|
const visit: <T>(value: ContainerInfo, visitor: Visitor<T>) => T;
|
|
113
117
|
}
|
|
114
|
-
export declare
|
|
115
|
-
EKS
|
|
116
|
-
}
|
|
118
|
+
export declare const ContainerProviderType: {
|
|
119
|
+
readonly EKS: "EKS";
|
|
120
|
+
};
|
|
121
|
+
export type ContainerProviderType =
|
|
122
|
+
(typeof ContainerProviderType)[keyof typeof ContainerProviderType];
|
|
117
123
|
export interface ContainerProvider {
|
|
118
124
|
type: ContainerProviderType | string | undefined;
|
|
119
125
|
id: string | undefined;
|
|
@@ -154,27 +160,29 @@ export interface DescribeJobRunRequest {
|
|
|
154
160
|
id: string | undefined;
|
|
155
161
|
virtualClusterId: string | undefined;
|
|
156
162
|
}
|
|
157
|
-
export declare
|
|
158
|
-
CLUSTER_UNAVAILABLE
|
|
159
|
-
INTERNAL_ERROR
|
|
160
|
-
USER_ERROR
|
|
161
|
-
VALIDATION_ERROR
|
|
162
|
-
}
|
|
163
|
+
export declare const FailureReason: {
|
|
164
|
+
readonly CLUSTER_UNAVAILABLE: "CLUSTER_UNAVAILABLE";
|
|
165
|
+
readonly INTERNAL_ERROR: "INTERNAL_ERROR";
|
|
166
|
+
readonly USER_ERROR: "USER_ERROR";
|
|
167
|
+
readonly VALIDATION_ERROR: "VALIDATION_ERROR";
|
|
168
|
+
};
|
|
169
|
+
export type FailureReason = (typeof FailureReason)[keyof typeof FailureReason];
|
|
163
170
|
export interface RetryPolicyConfiguration {
|
|
164
171
|
maxAttempts: number | undefined;
|
|
165
172
|
}
|
|
166
173
|
export interface RetryPolicyExecution {
|
|
167
174
|
currentAttemptCount: number | undefined;
|
|
168
175
|
}
|
|
169
|
-
export declare
|
|
170
|
-
CANCELLED
|
|
171
|
-
CANCEL_PENDING
|
|
172
|
-
COMPLETED
|
|
173
|
-
FAILED
|
|
174
|
-
PENDING
|
|
175
|
-
RUNNING
|
|
176
|
-
SUBMITTED
|
|
177
|
-
}
|
|
176
|
+
export declare const JobRunState: {
|
|
177
|
+
readonly CANCELLED: "CANCELLED";
|
|
178
|
+
readonly CANCEL_PENDING: "CANCEL_PENDING";
|
|
179
|
+
readonly COMPLETED: "COMPLETED";
|
|
180
|
+
readonly FAILED: "FAILED";
|
|
181
|
+
readonly PENDING: "PENDING";
|
|
182
|
+
readonly RUNNING: "RUNNING";
|
|
183
|
+
readonly SUBMITTED: "SUBMITTED";
|
|
184
|
+
};
|
|
185
|
+
export type JobRunState = (typeof JobRunState)[keyof typeof JobRunState];
|
|
178
186
|
export interface DescribeJobTemplateRequest {
|
|
179
187
|
id: string | undefined;
|
|
180
188
|
}
|
|
@@ -186,22 +194,25 @@ export interface Certificate {
|
|
|
186
194
|
certificateArn?: string;
|
|
187
195
|
certificateData?: string;
|
|
188
196
|
}
|
|
189
|
-
export declare
|
|
190
|
-
ACTIVE
|
|
191
|
-
CREATING
|
|
192
|
-
TERMINATED
|
|
193
|
-
TERMINATED_WITH_ERRORS
|
|
194
|
-
TERMINATING
|
|
195
|
-
}
|
|
197
|
+
export declare const EndpointState: {
|
|
198
|
+
readonly ACTIVE: "ACTIVE";
|
|
199
|
+
readonly CREATING: "CREATING";
|
|
200
|
+
readonly TERMINATED: "TERMINATED";
|
|
201
|
+
readonly TERMINATED_WITH_ERRORS: "TERMINATED_WITH_ERRORS";
|
|
202
|
+
readonly TERMINATING: "TERMINATING";
|
|
203
|
+
};
|
|
204
|
+
export type EndpointState = (typeof EndpointState)[keyof typeof EndpointState];
|
|
196
205
|
export interface DescribeVirtualClusterRequest {
|
|
197
206
|
id: string | undefined;
|
|
198
207
|
}
|
|
199
|
-
export declare
|
|
200
|
-
ARRESTED
|
|
201
|
-
RUNNING
|
|
202
|
-
TERMINATED
|
|
203
|
-
TERMINATING
|
|
204
|
-
}
|
|
208
|
+
export declare const VirtualClusterState: {
|
|
209
|
+
readonly ARRESTED: "ARRESTED";
|
|
210
|
+
readonly RUNNING: "RUNNING";
|
|
211
|
+
readonly TERMINATED: "TERMINATED";
|
|
212
|
+
readonly TERMINATING: "TERMINATING";
|
|
213
|
+
};
|
|
214
|
+
export type VirtualClusterState =
|
|
215
|
+
(typeof VirtualClusterState)[keyof typeof VirtualClusterState];
|
|
205
216
|
export interface VirtualCluster {
|
|
206
217
|
id?: string;
|
|
207
218
|
name?: string;
|
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.306.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,43 +21,43 @@
|
|
|
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/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
28
|
-
"@aws-sdk/hash-node": "3.
|
|
29
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
30
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
31
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
32
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
33
|
-
"@aws-sdk/middleware-logger": "3.
|
|
34
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
36
|
-
"@aws-sdk/middleware-serde": "3.
|
|
37
|
-
"@aws-sdk/middleware-signing": "3.
|
|
38
|
-
"@aws-sdk/middleware-stack": "3.
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
40
|
-
"@aws-sdk/node-config-provider": "3.
|
|
41
|
-
"@aws-sdk/node-http-handler": "3.
|
|
42
|
-
"@aws-sdk/protocol-http": "3.
|
|
43
|
-
"@aws-sdk/smithy-client": "3.
|
|
44
|
-
"@aws-sdk/types": "3.
|
|
45
|
-
"@aws-sdk/url-parser": "3.
|
|
46
|
-
"@aws-sdk/util-base64": "3.
|
|
47
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
48
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
51
|
-
"@aws-sdk/util-endpoints": "3.
|
|
52
|
-
"@aws-sdk/util-retry": "3.
|
|
53
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
54
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
55
|
-
"@aws-sdk/util-utf8": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.306.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.306.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.306.0",
|
|
27
|
+
"@aws-sdk/fetch-http-handler": "3.306.0",
|
|
28
|
+
"@aws-sdk/hash-node": "3.306.0",
|
|
29
|
+
"@aws-sdk/invalid-dependency": "3.306.0",
|
|
30
|
+
"@aws-sdk/middleware-content-length": "3.306.0",
|
|
31
|
+
"@aws-sdk/middleware-endpoint": "3.306.0",
|
|
32
|
+
"@aws-sdk/middleware-host-header": "3.306.0",
|
|
33
|
+
"@aws-sdk/middleware-logger": "3.306.0",
|
|
34
|
+
"@aws-sdk/middleware-recursion-detection": "3.306.0",
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.306.0",
|
|
36
|
+
"@aws-sdk/middleware-serde": "3.306.0",
|
|
37
|
+
"@aws-sdk/middleware-signing": "3.306.0",
|
|
38
|
+
"@aws-sdk/middleware-stack": "3.306.0",
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.306.0",
|
|
40
|
+
"@aws-sdk/node-config-provider": "3.306.0",
|
|
41
|
+
"@aws-sdk/node-http-handler": "3.306.0",
|
|
42
|
+
"@aws-sdk/protocol-http": "3.306.0",
|
|
43
|
+
"@aws-sdk/smithy-client": "3.306.0",
|
|
44
|
+
"@aws-sdk/types": "3.306.0",
|
|
45
|
+
"@aws-sdk/url-parser": "3.306.0",
|
|
46
|
+
"@aws-sdk/util-base64": "3.303.0",
|
|
47
|
+
"@aws-sdk/util-body-length-browser": "3.303.0",
|
|
48
|
+
"@aws-sdk/util-body-length-node": "3.303.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-browser": "3.306.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.306.0",
|
|
51
|
+
"@aws-sdk/util-endpoints": "3.306.0",
|
|
52
|
+
"@aws-sdk/util-retry": "3.306.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-browser": "3.306.0",
|
|
54
|
+
"@aws-sdk/util-user-agent-node": "3.306.0",
|
|
55
|
+
"@aws-sdk/util-utf8": "3.303.0",
|
|
56
56
|
"tslib": "^2.5.0",
|
|
57
57
|
"uuid": "^8.3.2"
|
|
58
58
|
},
|
|
59
59
|
"devDependencies": {
|
|
60
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
60
|
+
"@aws-sdk/service-client-documentation-generator": "3.303.0",
|
|
61
61
|
"@tsconfig/node14": "1.0.3",
|
|
62
62
|
"@types/node": "^14.14.31",
|
|
63
63
|
"@types/uuid": "^8.3.0",
|