@aws-sdk/client-emr-containers 3.131.0 → 3.137.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/CHANGELOG.md +11 -0
- package/dist-cjs/commands/CancelJobRunCommand.js +2 -2
- package/dist-cjs/commands/CreateManagedEndpointCommand.js +2 -2
- package/dist-cjs/commands/CreateVirtualClusterCommand.js +2 -2
- package/dist-cjs/commands/DeleteManagedEndpointCommand.js +2 -2
- package/dist-cjs/commands/DeleteVirtualClusterCommand.js +2 -2
- package/dist-cjs/commands/DescribeJobRunCommand.js +2 -2
- package/dist-cjs/commands/DescribeManagedEndpointCommand.js +2 -2
- package/dist-cjs/commands/DescribeVirtualClusterCommand.js +2 -2
- package/dist-cjs/commands/ListJobRunsCommand.js +2 -2
- package/dist-cjs/commands/ListManagedEndpointsCommand.js +2 -2
- package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-cjs/commands/ListVirtualClustersCommand.js +2 -2
- package/dist-cjs/commands/StartJobRunCommand.js +2 -2
- package/dist-cjs/commands/TagResourceCommand.js +2 -2
- package/dist-cjs/commands/UntagResourceCommand.js +2 -2
- package/dist-cjs/models/models_0.js +218 -303
- package/dist-es/commands/CancelJobRunCommand.js +3 -3
- package/dist-es/commands/CreateManagedEndpointCommand.js +3 -3
- package/dist-es/commands/CreateVirtualClusterCommand.js +3 -3
- package/dist-es/commands/DeleteManagedEndpointCommand.js +3 -3
- package/dist-es/commands/DeleteVirtualClusterCommand.js +3 -3
- package/dist-es/commands/DescribeJobRunCommand.js +3 -3
- package/dist-es/commands/DescribeManagedEndpointCommand.js +3 -3
- package/dist-es/commands/DescribeVirtualClusterCommand.js +3 -3
- package/dist-es/commands/ListJobRunsCommand.js +3 -3
- package/dist-es/commands/ListManagedEndpointsCommand.js +3 -3
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -3
- package/dist-es/commands/ListVirtualClustersCommand.js +3 -3
- package/dist-es/commands/StartJobRunCommand.js +3 -3
- package/dist-es/commands/TagResourceCommand.js +3 -3
- package/dist-es/commands/UntagResourceCommand.js +3 -3
- package/dist-es/models/models_0.js +66 -195
- package/dist-types/models/models_0.d.ts +176 -262
- package/dist-types/ts3.4/models/models_0.d.ts +88 -174
- package/package.json +6 -6
|
@@ -6,20 +6,12 @@ export interface CancelJobRunRequest {
|
|
|
6
6
|
|
|
7
7
|
virtualClusterId: string | undefined;
|
|
8
8
|
}
|
|
9
|
-
export declare namespace CancelJobRunRequest {
|
|
10
|
-
|
|
11
|
-
const filterSensitiveLog: (obj: CancelJobRunRequest) => any;
|
|
12
|
-
}
|
|
13
9
|
export interface CancelJobRunResponse {
|
|
14
10
|
|
|
15
11
|
id?: string;
|
|
16
12
|
|
|
17
13
|
virtualClusterId?: string;
|
|
18
14
|
}
|
|
19
|
-
export declare namespace CancelJobRunResponse {
|
|
20
|
-
|
|
21
|
-
const filterSensitiveLog: (obj: CancelJobRunResponse) => any;
|
|
22
|
-
}
|
|
23
15
|
|
|
24
16
|
export declare class InternalServerException extends __BaseException {
|
|
25
17
|
readonly name: "InternalServerException";
|
|
@@ -41,10 +33,6 @@ export interface CloudWatchMonitoringConfiguration {
|
|
|
41
33
|
|
|
42
34
|
logStreamNamePrefix?: string;
|
|
43
35
|
}
|
|
44
|
-
export declare namespace CloudWatchMonitoringConfiguration {
|
|
45
|
-
|
|
46
|
-
const filterSensitiveLog: (obj: CloudWatchMonitoringConfiguration) => any;
|
|
47
|
-
}
|
|
48
36
|
export declare enum PersistentAppUI {
|
|
49
37
|
DISABLED = "DISABLED",
|
|
50
38
|
ENABLED = "ENABLED"
|
|
@@ -54,10 +42,6 @@ export interface S3MonitoringConfiguration {
|
|
|
54
42
|
|
|
55
43
|
logUri: string | undefined;
|
|
56
44
|
}
|
|
57
|
-
export declare namespace S3MonitoringConfiguration {
|
|
58
|
-
|
|
59
|
-
const filterSensitiveLog: (obj: S3MonitoringConfiguration) => any;
|
|
60
|
-
}
|
|
61
45
|
|
|
62
46
|
export interface MonitoringConfiguration {
|
|
63
47
|
|
|
@@ -67,10 +51,6 @@ export interface MonitoringConfiguration {
|
|
|
67
51
|
|
|
68
52
|
s3MonitoringConfiguration?: S3MonitoringConfiguration;
|
|
69
53
|
}
|
|
70
|
-
export declare namespace MonitoringConfiguration {
|
|
71
|
-
|
|
72
|
-
const filterSensitiveLog: (obj: MonitoringConfiguration) => any;
|
|
73
|
-
}
|
|
74
54
|
export interface CreateManagedEndpointResponse {
|
|
75
55
|
|
|
76
56
|
id?: string;
|
|
@@ -81,10 +61,6 @@ export interface CreateManagedEndpointResponse {
|
|
|
81
61
|
|
|
82
62
|
virtualClusterId?: string;
|
|
83
63
|
}
|
|
84
|
-
export declare namespace CreateManagedEndpointResponse {
|
|
85
|
-
|
|
86
|
-
const filterSensitiveLog: (obj: CreateManagedEndpointResponse) => any;
|
|
87
|
-
}
|
|
88
64
|
|
|
89
65
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
90
66
|
readonly name: "ResourceNotFoundException";
|
|
@@ -97,10 +73,6 @@ export interface EksInfo {
|
|
|
97
73
|
|
|
98
74
|
namespace?: string;
|
|
99
75
|
}
|
|
100
|
-
export declare namespace EksInfo {
|
|
101
|
-
|
|
102
|
-
const filterSensitiveLog: (obj: EksInfo) => any;
|
|
103
|
-
}
|
|
104
76
|
|
|
105
77
|
export declare type ContainerInfo = ContainerInfo.EksInfoMember | ContainerInfo.$UnknownMember;
|
|
106
78
|
export declare namespace ContainerInfo {
|
|
@@ -121,8 +93,6 @@ export declare namespace ContainerInfo {
|
|
|
121
93
|
_: (name: string, value: any) => T;
|
|
122
94
|
}
|
|
123
95
|
const visit: <T>(value: ContainerInfo, visitor: Visitor<T>) => T;
|
|
124
|
-
|
|
125
|
-
const filterSensitiveLog: (obj: ContainerInfo) => any;
|
|
126
96
|
}
|
|
127
97
|
export declare enum ContainerProviderType {
|
|
128
98
|
EKS = "EKS"
|
|
@@ -136,10 +106,6 @@ export interface ContainerProvider {
|
|
|
136
106
|
|
|
137
107
|
info?: ContainerInfo;
|
|
138
108
|
}
|
|
139
|
-
export declare namespace ContainerProvider {
|
|
140
|
-
|
|
141
|
-
const filterSensitiveLog: (obj: ContainerProvider) => any;
|
|
142
|
-
}
|
|
143
109
|
export interface CreateVirtualClusterRequest {
|
|
144
110
|
|
|
145
111
|
name: string | undefined;
|
|
@@ -150,10 +116,6 @@ export interface CreateVirtualClusterRequest {
|
|
|
150
116
|
|
|
151
117
|
tags?: Record<string, string>;
|
|
152
118
|
}
|
|
153
|
-
export declare namespace CreateVirtualClusterRequest {
|
|
154
|
-
|
|
155
|
-
const filterSensitiveLog: (obj: CreateVirtualClusterRequest) => any;
|
|
156
|
-
}
|
|
157
119
|
export interface CreateVirtualClusterResponse {
|
|
158
120
|
|
|
159
121
|
id?: string;
|
|
@@ -162,56 +124,32 @@ export interface CreateVirtualClusterResponse {
|
|
|
162
124
|
|
|
163
125
|
arn?: string;
|
|
164
126
|
}
|
|
165
|
-
export declare namespace CreateVirtualClusterResponse {
|
|
166
|
-
|
|
167
|
-
const filterSensitiveLog: (obj: CreateVirtualClusterResponse) => any;
|
|
168
|
-
}
|
|
169
127
|
export interface DeleteManagedEndpointRequest {
|
|
170
128
|
|
|
171
129
|
id: string | undefined;
|
|
172
130
|
|
|
173
131
|
virtualClusterId: string | undefined;
|
|
174
132
|
}
|
|
175
|
-
export declare namespace DeleteManagedEndpointRequest {
|
|
176
|
-
|
|
177
|
-
const filterSensitiveLog: (obj: DeleteManagedEndpointRequest) => any;
|
|
178
|
-
}
|
|
179
133
|
export interface DeleteManagedEndpointResponse {
|
|
180
134
|
|
|
181
135
|
id?: string;
|
|
182
136
|
|
|
183
137
|
virtualClusterId?: string;
|
|
184
138
|
}
|
|
185
|
-
export declare namespace DeleteManagedEndpointResponse {
|
|
186
|
-
|
|
187
|
-
const filterSensitiveLog: (obj: DeleteManagedEndpointResponse) => any;
|
|
188
|
-
}
|
|
189
139
|
export interface DeleteVirtualClusterRequest {
|
|
190
140
|
|
|
191
141
|
id: string | undefined;
|
|
192
142
|
}
|
|
193
|
-
export declare namespace DeleteVirtualClusterRequest {
|
|
194
|
-
|
|
195
|
-
const filterSensitiveLog: (obj: DeleteVirtualClusterRequest) => any;
|
|
196
|
-
}
|
|
197
143
|
export interface DeleteVirtualClusterResponse {
|
|
198
144
|
|
|
199
145
|
id?: string;
|
|
200
146
|
}
|
|
201
|
-
export declare namespace DeleteVirtualClusterResponse {
|
|
202
|
-
|
|
203
|
-
const filterSensitiveLog: (obj: DeleteVirtualClusterResponse) => any;
|
|
204
|
-
}
|
|
205
147
|
export interface DescribeJobRunRequest {
|
|
206
148
|
|
|
207
149
|
id: string | undefined;
|
|
208
150
|
|
|
209
151
|
virtualClusterId: string | undefined;
|
|
210
152
|
}
|
|
211
|
-
export declare namespace DescribeJobRunRequest {
|
|
212
|
-
|
|
213
|
-
const filterSensitiveLog: (obj: DescribeJobRunRequest) => any;
|
|
214
|
-
}
|
|
215
153
|
export declare enum FailureReason {
|
|
216
154
|
CLUSTER_UNAVAILABLE = "CLUSTER_UNAVAILABLE",
|
|
217
155
|
INTERNAL_ERROR = "INTERNAL_ERROR",
|
|
@@ -227,19 +165,11 @@ export interface SparkSubmitJobDriver {
|
|
|
227
165
|
|
|
228
166
|
sparkSubmitParameters?: string;
|
|
229
167
|
}
|
|
230
|
-
export declare namespace SparkSubmitJobDriver {
|
|
231
|
-
|
|
232
|
-
const filterSensitiveLog: (obj: SparkSubmitJobDriver) => any;
|
|
233
|
-
}
|
|
234
168
|
|
|
235
169
|
export interface JobDriver {
|
|
236
170
|
|
|
237
171
|
sparkSubmitJobDriver?: SparkSubmitJobDriver;
|
|
238
172
|
}
|
|
239
|
-
export declare namespace JobDriver {
|
|
240
|
-
|
|
241
|
-
const filterSensitiveLog: (obj: JobDriver) => any;
|
|
242
|
-
}
|
|
243
173
|
export declare enum JobRunState {
|
|
244
174
|
CANCELLED = "CANCELLED",
|
|
245
175
|
CANCEL_PENDING = "CANCEL_PENDING",
|
|
@@ -255,10 +185,6 @@ export interface DescribeManagedEndpointRequest {
|
|
|
255
185
|
|
|
256
186
|
virtualClusterId: string | undefined;
|
|
257
187
|
}
|
|
258
|
-
export declare namespace DescribeManagedEndpointRequest {
|
|
259
|
-
|
|
260
|
-
const filterSensitiveLog: (obj: DescribeManagedEndpointRequest) => any;
|
|
261
|
-
}
|
|
262
188
|
|
|
263
189
|
export interface Certificate {
|
|
264
190
|
|
|
@@ -266,10 +192,6 @@ export interface Certificate {
|
|
|
266
192
|
|
|
267
193
|
certificateData?: string;
|
|
268
194
|
}
|
|
269
|
-
export declare namespace Certificate {
|
|
270
|
-
|
|
271
|
-
const filterSensitiveLog: (obj: Certificate) => any;
|
|
272
|
-
}
|
|
273
195
|
export declare enum EndpointState {
|
|
274
196
|
ACTIVE = "ACTIVE",
|
|
275
197
|
CREATING = "CREATING",
|
|
@@ -281,10 +203,6 @@ export interface DescribeVirtualClusterRequest {
|
|
|
281
203
|
|
|
282
204
|
id: string | undefined;
|
|
283
205
|
}
|
|
284
|
-
export declare namespace DescribeVirtualClusterRequest {
|
|
285
|
-
|
|
286
|
-
const filterSensitiveLog: (obj: DescribeVirtualClusterRequest) => any;
|
|
287
|
-
}
|
|
288
206
|
export declare enum VirtualClusterState {
|
|
289
207
|
ARRESTED = "ARRESTED",
|
|
290
208
|
RUNNING = "RUNNING",
|
|
@@ -308,18 +226,10 @@ export interface VirtualCluster {
|
|
|
308
226
|
|
|
309
227
|
tags?: Record<string, string>;
|
|
310
228
|
}
|
|
311
|
-
export declare namespace VirtualCluster {
|
|
312
|
-
|
|
313
|
-
const filterSensitiveLog: (obj: VirtualCluster) => any;
|
|
314
|
-
}
|
|
315
229
|
export interface DescribeVirtualClusterResponse {
|
|
316
230
|
|
|
317
231
|
virtualCluster?: VirtualCluster;
|
|
318
232
|
}
|
|
319
|
-
export declare namespace DescribeVirtualClusterResponse {
|
|
320
|
-
|
|
321
|
-
const filterSensitiveLog: (obj: DescribeVirtualClusterResponse) => any;
|
|
322
|
-
}
|
|
323
233
|
export interface ListJobRunsRequest {
|
|
324
234
|
|
|
325
235
|
virtualClusterId: string | undefined;
|
|
@@ -336,10 +246,6 @@ export interface ListJobRunsRequest {
|
|
|
336
246
|
|
|
337
247
|
nextToken?: string;
|
|
338
248
|
}
|
|
339
|
-
export declare namespace ListJobRunsRequest {
|
|
340
|
-
|
|
341
|
-
const filterSensitiveLog: (obj: ListJobRunsRequest) => any;
|
|
342
|
-
}
|
|
343
249
|
export interface ListManagedEndpointsRequest {
|
|
344
250
|
|
|
345
251
|
virtualClusterId: string | undefined;
|
|
@@ -356,26 +262,14 @@ export interface ListManagedEndpointsRequest {
|
|
|
356
262
|
|
|
357
263
|
nextToken?: string;
|
|
358
264
|
}
|
|
359
|
-
export declare namespace ListManagedEndpointsRequest {
|
|
360
|
-
|
|
361
|
-
const filterSensitiveLog: (obj: ListManagedEndpointsRequest) => any;
|
|
362
|
-
}
|
|
363
265
|
export interface ListTagsForResourceRequest {
|
|
364
266
|
|
|
365
267
|
resourceArn: string | undefined;
|
|
366
268
|
}
|
|
367
|
-
export declare namespace ListTagsForResourceRequest {
|
|
368
|
-
|
|
369
|
-
const filterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
|
|
370
|
-
}
|
|
371
269
|
export interface ListTagsForResourceResponse {
|
|
372
270
|
|
|
373
271
|
tags?: Record<string, string>;
|
|
374
272
|
}
|
|
375
|
-
export declare namespace ListTagsForResourceResponse {
|
|
376
|
-
|
|
377
|
-
const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
378
|
-
}
|
|
379
273
|
export interface ListVirtualClustersRequest {
|
|
380
274
|
|
|
381
275
|
containerProviderId?: string;
|
|
@@ -392,20 +286,12 @@ export interface ListVirtualClustersRequest {
|
|
|
392
286
|
|
|
393
287
|
nextToken?: string;
|
|
394
288
|
}
|
|
395
|
-
export declare namespace ListVirtualClustersRequest {
|
|
396
|
-
|
|
397
|
-
const filterSensitiveLog: (obj: ListVirtualClustersRequest) => any;
|
|
398
|
-
}
|
|
399
289
|
export interface ListVirtualClustersResponse {
|
|
400
290
|
|
|
401
291
|
virtualClusters?: VirtualCluster[];
|
|
402
292
|
|
|
403
293
|
nextToken?: string;
|
|
404
294
|
}
|
|
405
|
-
export declare namespace ListVirtualClustersResponse {
|
|
406
|
-
|
|
407
|
-
const filterSensitiveLog: (obj: ListVirtualClustersResponse) => any;
|
|
408
|
-
}
|
|
409
295
|
export interface StartJobRunResponse {
|
|
410
296
|
|
|
411
297
|
id?: string;
|
|
@@ -416,42 +302,22 @@ export interface StartJobRunResponse {
|
|
|
416
302
|
|
|
417
303
|
virtualClusterId?: string;
|
|
418
304
|
}
|
|
419
|
-
export declare namespace StartJobRunResponse {
|
|
420
|
-
|
|
421
|
-
const filterSensitiveLog: (obj: StartJobRunResponse) => any;
|
|
422
|
-
}
|
|
423
305
|
export interface TagResourceRequest {
|
|
424
306
|
|
|
425
307
|
resourceArn: string | undefined;
|
|
426
308
|
|
|
427
309
|
tags: Record<string, string> | undefined;
|
|
428
310
|
}
|
|
429
|
-
export declare namespace TagResourceRequest {
|
|
430
|
-
|
|
431
|
-
const filterSensitiveLog: (obj: TagResourceRequest) => any;
|
|
432
|
-
}
|
|
433
311
|
export interface TagResourceResponse {
|
|
434
312
|
}
|
|
435
|
-
export declare namespace TagResourceResponse {
|
|
436
|
-
|
|
437
|
-
const filterSensitiveLog: (obj: TagResourceResponse) => any;
|
|
438
|
-
}
|
|
439
313
|
export interface UntagResourceRequest {
|
|
440
314
|
|
|
441
315
|
resourceArn: string | undefined;
|
|
442
316
|
|
|
443
317
|
tagKeys: string[] | undefined;
|
|
444
318
|
}
|
|
445
|
-
export declare namespace UntagResourceRequest {
|
|
446
|
-
|
|
447
|
-
const filterSensitiveLog: (obj: UntagResourceRequest) => any;
|
|
448
|
-
}
|
|
449
319
|
export interface UntagResourceResponse {
|
|
450
320
|
}
|
|
451
|
-
export declare namespace UntagResourceResponse {
|
|
452
|
-
|
|
453
|
-
const filterSensitiveLog: (obj: UntagResourceResponse) => any;
|
|
454
|
-
}
|
|
455
321
|
|
|
456
322
|
export interface Configuration {
|
|
457
323
|
|
|
@@ -461,10 +327,6 @@ export interface Configuration {
|
|
|
461
327
|
|
|
462
328
|
configurations?: Configuration[];
|
|
463
329
|
}
|
|
464
|
-
export declare namespace Configuration {
|
|
465
|
-
|
|
466
|
-
const filterSensitiveLog: (obj: Configuration) => any;
|
|
467
|
-
}
|
|
468
330
|
|
|
469
331
|
export interface ConfigurationOverrides {
|
|
470
332
|
|
|
@@ -472,10 +334,6 @@ export interface ConfigurationOverrides {
|
|
|
472
334
|
|
|
473
335
|
monitoringConfiguration?: MonitoringConfiguration;
|
|
474
336
|
}
|
|
475
|
-
export declare namespace ConfigurationOverrides {
|
|
476
|
-
|
|
477
|
-
const filterSensitiveLog: (obj: ConfigurationOverrides) => any;
|
|
478
|
-
}
|
|
479
337
|
export interface CreateManagedEndpointRequest {
|
|
480
338
|
|
|
481
339
|
name: string | undefined;
|
|
@@ -496,10 +354,6 @@ export interface CreateManagedEndpointRequest {
|
|
|
496
354
|
|
|
497
355
|
tags?: Record<string, string>;
|
|
498
356
|
}
|
|
499
|
-
export declare namespace CreateManagedEndpointRequest {
|
|
500
|
-
|
|
501
|
-
const filterSensitiveLog: (obj: CreateManagedEndpointRequest) => any;
|
|
502
|
-
}
|
|
503
357
|
|
|
504
358
|
export interface Endpoint {
|
|
505
359
|
|
|
@@ -539,10 +393,6 @@ export interface Endpoint {
|
|
|
539
393
|
|
|
540
394
|
tags?: Record<string, string>;
|
|
541
395
|
}
|
|
542
|
-
export declare namespace Endpoint {
|
|
543
|
-
|
|
544
|
-
const filterSensitiveLog: (obj: Endpoint) => any;
|
|
545
|
-
}
|
|
546
396
|
|
|
547
397
|
export interface JobRun {
|
|
548
398
|
|
|
@@ -578,10 +428,6 @@ export interface JobRun {
|
|
|
578
428
|
|
|
579
429
|
tags?: Record<string, string>;
|
|
580
430
|
}
|
|
581
|
-
export declare namespace JobRun {
|
|
582
|
-
|
|
583
|
-
const filterSensitiveLog: (obj: JobRun) => any;
|
|
584
|
-
}
|
|
585
431
|
export interface StartJobRunRequest {
|
|
586
432
|
|
|
587
433
|
name?: string;
|
|
@@ -600,43 +446,111 @@ export interface StartJobRunRequest {
|
|
|
600
446
|
|
|
601
447
|
tags?: Record<string, string>;
|
|
602
448
|
}
|
|
603
|
-
export declare namespace StartJobRunRequest {
|
|
604
|
-
|
|
605
|
-
const filterSensitiveLog: (obj: StartJobRunRequest) => any;
|
|
606
|
-
}
|
|
607
449
|
export interface DescribeJobRunResponse {
|
|
608
450
|
|
|
609
451
|
jobRun?: JobRun;
|
|
610
452
|
}
|
|
611
|
-
export declare namespace DescribeJobRunResponse {
|
|
612
|
-
|
|
613
|
-
const filterSensitiveLog: (obj: DescribeJobRunResponse) => any;
|
|
614
|
-
}
|
|
615
453
|
export interface DescribeManagedEndpointResponse {
|
|
616
454
|
|
|
617
455
|
endpoint?: Endpoint;
|
|
618
456
|
}
|
|
619
|
-
export declare namespace DescribeManagedEndpointResponse {
|
|
620
|
-
|
|
621
|
-
const filterSensitiveLog: (obj: DescribeManagedEndpointResponse) => any;
|
|
622
|
-
}
|
|
623
457
|
export interface ListJobRunsResponse {
|
|
624
458
|
|
|
625
459
|
jobRuns?: JobRun[];
|
|
626
460
|
|
|
627
461
|
nextToken?: string;
|
|
628
462
|
}
|
|
629
|
-
export declare namespace ListJobRunsResponse {
|
|
630
|
-
|
|
631
|
-
const filterSensitiveLog: (obj: ListJobRunsResponse) => any;
|
|
632
|
-
}
|
|
633
463
|
export interface ListManagedEndpointsResponse {
|
|
634
464
|
|
|
635
465
|
endpoints?: Endpoint[];
|
|
636
466
|
|
|
637
467
|
nextToken?: string;
|
|
638
468
|
}
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
469
|
+
|
|
470
|
+
export declare const CancelJobRunRequestFilterSensitiveLog: (obj: CancelJobRunRequest) => any;
|
|
471
|
+
|
|
472
|
+
export declare const CancelJobRunResponseFilterSensitiveLog: (obj: CancelJobRunResponse) => any;
|
|
473
|
+
|
|
474
|
+
export declare const CloudWatchMonitoringConfigurationFilterSensitiveLog: (obj: CloudWatchMonitoringConfiguration) => any;
|
|
475
|
+
|
|
476
|
+
export declare const S3MonitoringConfigurationFilterSensitiveLog: (obj: S3MonitoringConfiguration) => any;
|
|
477
|
+
|
|
478
|
+
export declare const MonitoringConfigurationFilterSensitiveLog: (obj: MonitoringConfiguration) => any;
|
|
479
|
+
|
|
480
|
+
export declare const CreateManagedEndpointResponseFilterSensitiveLog: (obj: CreateManagedEndpointResponse) => any;
|
|
481
|
+
|
|
482
|
+
export declare const EksInfoFilterSensitiveLog: (obj: EksInfo) => any;
|
|
483
|
+
|
|
484
|
+
export declare const ContainerInfoFilterSensitiveLog: (obj: ContainerInfo) => any;
|
|
485
|
+
|
|
486
|
+
export declare const ContainerProviderFilterSensitiveLog: (obj: ContainerProvider) => any;
|
|
487
|
+
|
|
488
|
+
export declare const CreateVirtualClusterRequestFilterSensitiveLog: (obj: CreateVirtualClusterRequest) => any;
|
|
489
|
+
|
|
490
|
+
export declare const CreateVirtualClusterResponseFilterSensitiveLog: (obj: CreateVirtualClusterResponse) => any;
|
|
491
|
+
|
|
492
|
+
export declare const DeleteManagedEndpointRequestFilterSensitiveLog: (obj: DeleteManagedEndpointRequest) => any;
|
|
493
|
+
|
|
494
|
+
export declare const DeleteManagedEndpointResponseFilterSensitiveLog: (obj: DeleteManagedEndpointResponse) => any;
|
|
495
|
+
|
|
496
|
+
export declare const DeleteVirtualClusterRequestFilterSensitiveLog: (obj: DeleteVirtualClusterRequest) => any;
|
|
497
|
+
|
|
498
|
+
export declare const DeleteVirtualClusterResponseFilterSensitiveLog: (obj: DeleteVirtualClusterResponse) => any;
|
|
499
|
+
|
|
500
|
+
export declare const DescribeJobRunRequestFilterSensitiveLog: (obj: DescribeJobRunRequest) => any;
|
|
501
|
+
|
|
502
|
+
export declare const SparkSubmitJobDriverFilterSensitiveLog: (obj: SparkSubmitJobDriver) => any;
|
|
503
|
+
|
|
504
|
+
export declare const JobDriverFilterSensitiveLog: (obj: JobDriver) => any;
|
|
505
|
+
|
|
506
|
+
export declare const DescribeManagedEndpointRequestFilterSensitiveLog: (obj: DescribeManagedEndpointRequest) => any;
|
|
507
|
+
|
|
508
|
+
export declare const CertificateFilterSensitiveLog: (obj: Certificate) => any;
|
|
509
|
+
|
|
510
|
+
export declare const DescribeVirtualClusterRequestFilterSensitiveLog: (obj: DescribeVirtualClusterRequest) => any;
|
|
511
|
+
|
|
512
|
+
export declare const VirtualClusterFilterSensitiveLog: (obj: VirtualCluster) => any;
|
|
513
|
+
|
|
514
|
+
export declare const DescribeVirtualClusterResponseFilterSensitiveLog: (obj: DescribeVirtualClusterResponse) => any;
|
|
515
|
+
|
|
516
|
+
export declare const ListJobRunsRequestFilterSensitiveLog: (obj: ListJobRunsRequest) => any;
|
|
517
|
+
|
|
518
|
+
export declare const ListManagedEndpointsRequestFilterSensitiveLog: (obj: ListManagedEndpointsRequest) => any;
|
|
519
|
+
|
|
520
|
+
export declare const ListTagsForResourceRequestFilterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
|
|
521
|
+
|
|
522
|
+
export declare const ListTagsForResourceResponseFilterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
523
|
+
|
|
524
|
+
export declare const ListVirtualClustersRequestFilterSensitiveLog: (obj: ListVirtualClustersRequest) => any;
|
|
525
|
+
|
|
526
|
+
export declare const ListVirtualClustersResponseFilterSensitiveLog: (obj: ListVirtualClustersResponse) => any;
|
|
527
|
+
|
|
528
|
+
export declare const StartJobRunResponseFilterSensitiveLog: (obj: StartJobRunResponse) => any;
|
|
529
|
+
|
|
530
|
+
export declare const TagResourceRequestFilterSensitiveLog: (obj: TagResourceRequest) => any;
|
|
531
|
+
|
|
532
|
+
export declare const TagResourceResponseFilterSensitiveLog: (obj: TagResourceResponse) => any;
|
|
533
|
+
|
|
534
|
+
export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResourceRequest) => any;
|
|
535
|
+
|
|
536
|
+
export declare const UntagResourceResponseFilterSensitiveLog: (obj: UntagResourceResponse) => any;
|
|
537
|
+
|
|
538
|
+
export declare const ConfigurationFilterSensitiveLog: (obj: Configuration) => any;
|
|
539
|
+
|
|
540
|
+
export declare const ConfigurationOverridesFilterSensitiveLog: (obj: ConfigurationOverrides) => any;
|
|
541
|
+
|
|
542
|
+
export declare const CreateManagedEndpointRequestFilterSensitiveLog: (obj: CreateManagedEndpointRequest) => any;
|
|
543
|
+
|
|
544
|
+
export declare const EndpointFilterSensitiveLog: (obj: Endpoint) => any;
|
|
545
|
+
|
|
546
|
+
export declare const JobRunFilterSensitiveLog: (obj: JobRun) => any;
|
|
547
|
+
|
|
548
|
+
export declare const StartJobRunRequestFilterSensitiveLog: (obj: StartJobRunRequest) => any;
|
|
549
|
+
|
|
550
|
+
export declare const DescribeJobRunResponseFilterSensitiveLog: (obj: DescribeJobRunResponse) => any;
|
|
551
|
+
|
|
552
|
+
export declare const DescribeManagedEndpointResponseFilterSensitiveLog: (obj: DescribeManagedEndpointResponse) => any;
|
|
553
|
+
|
|
554
|
+
export declare const ListJobRunsResponseFilterSensitiveLog: (obj: ListJobRunsResponse) => any;
|
|
555
|
+
|
|
556
|
+
export declare const ListManagedEndpointsResponseFilterSensitiveLog: (obj: ListManagedEndpointsResponse) => any;
|
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.137.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",
|
|
@@ -18,9 +18,9 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.137.0",
|
|
22
22
|
"@aws-sdk/config-resolver": "3.130.0",
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.137.0",
|
|
24
24
|
"@aws-sdk/fetch-http-handler": "3.131.0",
|
|
25
25
|
"@aws-sdk/hash-node": "3.127.0",
|
|
26
26
|
"@aws-sdk/invalid-dependency": "3.127.0",
|
|
@@ -36,15 +36,15 @@
|
|
|
36
36
|
"@aws-sdk/node-config-provider": "3.127.0",
|
|
37
37
|
"@aws-sdk/node-http-handler": "3.127.0",
|
|
38
38
|
"@aws-sdk/protocol-http": "3.127.0",
|
|
39
|
-
"@aws-sdk/smithy-client": "3.
|
|
39
|
+
"@aws-sdk/smithy-client": "3.137.0",
|
|
40
40
|
"@aws-sdk/types": "3.127.0",
|
|
41
41
|
"@aws-sdk/url-parser": "3.127.0",
|
|
42
42
|
"@aws-sdk/util-base64-browser": "3.109.0",
|
|
43
43
|
"@aws-sdk/util-base64-node": "3.55.0",
|
|
44
44
|
"@aws-sdk/util-body-length-browser": "3.55.0",
|
|
45
45
|
"@aws-sdk/util-body-length-node": "3.55.0",
|
|
46
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
47
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
46
|
+
"@aws-sdk/util-defaults-mode-browser": "3.137.0",
|
|
47
|
+
"@aws-sdk/util-defaults-mode-node": "3.137.0",
|
|
48
48
|
"@aws-sdk/util-user-agent-browser": "3.127.0",
|
|
49
49
|
"@aws-sdk/util-user-agent-node": "3.127.0",
|
|
50
50
|
"@aws-sdk/util-utf8-browser": "3.109.0",
|