@aws-sdk/client-emr-serverless 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.
Files changed (34) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/dist-cjs/commands/CancelJobRunCommand.js +2 -2
  3. package/dist-cjs/commands/CreateApplicationCommand.js +2 -2
  4. package/dist-cjs/commands/DeleteApplicationCommand.js +2 -2
  5. package/dist-cjs/commands/GetApplicationCommand.js +2 -2
  6. package/dist-cjs/commands/GetJobRunCommand.js +2 -2
  7. package/dist-cjs/commands/ListApplicationsCommand.js +2 -2
  8. package/dist-cjs/commands/ListJobRunsCommand.js +2 -2
  9. package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -2
  10. package/dist-cjs/commands/StartApplicationCommand.js +2 -2
  11. package/dist-cjs/commands/StartJobRunCommand.js +2 -2
  12. package/dist-cjs/commands/StopApplicationCommand.js +2 -2
  13. package/dist-cjs/commands/TagResourceCommand.js +2 -2
  14. package/dist-cjs/commands/UntagResourceCommand.js +2 -2
  15. package/dist-cjs/commands/UpdateApplicationCommand.js +2 -2
  16. package/dist-cjs/models/models_0.js +217 -308
  17. package/dist-es/commands/CancelJobRunCommand.js +3 -3
  18. package/dist-es/commands/CreateApplicationCommand.js +3 -3
  19. package/dist-es/commands/DeleteApplicationCommand.js +3 -3
  20. package/dist-es/commands/GetApplicationCommand.js +3 -3
  21. package/dist-es/commands/GetJobRunCommand.js +3 -3
  22. package/dist-es/commands/ListApplicationsCommand.js +3 -3
  23. package/dist-es/commands/ListJobRunsCommand.js +3 -3
  24. package/dist-es/commands/ListTagsForResourceCommand.js +3 -3
  25. package/dist-es/commands/StartApplicationCommand.js +3 -3
  26. package/dist-es/commands/StartJobRunCommand.js +3 -3
  27. package/dist-es/commands/StopApplicationCommand.js +3 -3
  28. package/dist-es/commands/TagResourceCommand.js +3 -3
  29. package/dist-es/commands/UntagResourceCommand.js +3 -3
  30. package/dist-es/commands/UpdateApplicationCommand.js +3 -3
  31. package/dist-es/models/models_0.js +63 -201
  32. package/dist-types/models/models_0.d.ts +188 -280
  33. package/dist-types/ts3.4/models/models_0.d.ts +94 -186
  34. package/package.json +6 -6
@@ -5,10 +5,6 @@ export interface AutoStartConfig {
5
5
 
6
6
  enabled?: boolean;
7
7
  }
8
- export declare namespace AutoStartConfig {
9
-
10
- const filterSensitiveLog: (obj: AutoStartConfig) => any;
11
- }
12
8
 
13
9
  export interface AutoStopConfig {
14
10
 
@@ -16,10 +12,6 @@ export interface AutoStopConfig {
16
12
 
17
13
  idleTimeoutMinutes?: number;
18
14
  }
19
- export declare namespace AutoStopConfig {
20
-
21
- const filterSensitiveLog: (obj: AutoStopConfig) => any;
22
- }
23
15
 
24
16
  export interface WorkerResourceConfig {
25
17
 
@@ -29,10 +21,6 @@ export interface WorkerResourceConfig {
29
21
 
30
22
  disk?: string;
31
23
  }
32
- export declare namespace WorkerResourceConfig {
33
-
34
- const filterSensitiveLog: (obj: WorkerResourceConfig) => any;
35
- }
36
24
 
37
25
  export interface InitialCapacityConfig {
38
26
 
@@ -40,10 +28,6 @@ export interface InitialCapacityConfig {
40
28
 
41
29
  workerConfiguration?: WorkerResourceConfig;
42
30
  }
43
- export declare namespace InitialCapacityConfig {
44
-
45
- const filterSensitiveLog: (obj: InitialCapacityConfig) => any;
46
- }
47
31
 
48
32
  export interface MaximumAllowedResources {
49
33
 
@@ -53,10 +37,6 @@ export interface MaximumAllowedResources {
53
37
 
54
38
  disk?: string;
55
39
  }
56
- export declare namespace MaximumAllowedResources {
57
-
58
- const filterSensitiveLog: (obj: MaximumAllowedResources) => any;
59
- }
60
40
 
61
41
  export interface NetworkConfiguration {
62
42
 
@@ -64,10 +44,6 @@ export interface NetworkConfiguration {
64
44
 
65
45
  securityGroupIds?: string[];
66
46
  }
67
- export declare namespace NetworkConfiguration {
68
-
69
- const filterSensitiveLog: (obj: NetworkConfiguration) => any;
70
- }
71
47
  export declare enum ApplicationState {
72
48
  CREATED = "CREATED",
73
49
  CREATING = "CREATING",
@@ -110,10 +86,6 @@ export interface Application {
110
86
 
111
87
  networkConfiguration?: NetworkConfiguration;
112
88
  }
113
- export declare namespace Application {
114
-
115
- const filterSensitiveLog: (obj: Application) => any;
116
- }
117
89
 
118
90
  export interface ApplicationSummary {
119
91
 
@@ -135,10 +107,6 @@ export interface ApplicationSummary {
135
107
 
136
108
  updatedAt: Date | undefined;
137
109
  }
138
- export declare namespace ApplicationSummary {
139
-
140
- const filterSensitiveLog: (obj: ApplicationSummary) => any;
141
- }
142
110
 
143
111
  export declare class ConflictException extends __BaseException {
144
112
  readonly name: "ConflictException";
@@ -168,10 +136,6 @@ export interface CreateApplicationRequest {
168
136
 
169
137
  networkConfiguration?: NetworkConfiguration;
170
138
  }
171
- export declare namespace CreateApplicationRequest {
172
-
173
- const filterSensitiveLog: (obj: CreateApplicationRequest) => any;
174
- }
175
139
  export interface CreateApplicationResponse {
176
140
 
177
141
  applicationId: string | undefined;
@@ -180,10 +144,6 @@ export interface CreateApplicationResponse {
180
144
 
181
145
  arn: string | undefined;
182
146
  }
183
- export declare namespace CreateApplicationResponse {
184
-
185
- const filterSensitiveLog: (obj: CreateApplicationResponse) => any;
186
- }
187
147
 
188
148
  export declare class InternalServerException extends __BaseException {
189
149
  readonly name: "InternalServerException";
@@ -202,16 +162,8 @@ export interface DeleteApplicationRequest {
202
162
 
203
163
  applicationId: string | undefined;
204
164
  }
205
- export declare namespace DeleteApplicationRequest {
206
-
207
- const filterSensitiveLog: (obj: DeleteApplicationRequest) => any;
208
- }
209
165
  export interface DeleteApplicationResponse {
210
166
  }
211
- export declare namespace DeleteApplicationResponse {
212
-
213
- const filterSensitiveLog: (obj: DeleteApplicationResponse) => any;
214
- }
215
167
 
216
168
  export declare class ResourceNotFoundException extends __BaseException {
217
169
  readonly name: "ResourceNotFoundException";
@@ -223,18 +175,10 @@ export interface GetApplicationRequest {
223
175
 
224
176
  applicationId: string | undefined;
225
177
  }
226
- export declare namespace GetApplicationRequest {
227
-
228
- const filterSensitiveLog: (obj: GetApplicationRequest) => any;
229
- }
230
178
  export interface GetApplicationResponse {
231
179
 
232
180
  application: Application | undefined;
233
181
  }
234
- export declare namespace GetApplicationResponse {
235
-
236
- const filterSensitiveLog: (obj: GetApplicationResponse) => any;
237
- }
238
182
  export interface ListApplicationsRequest {
239
183
 
240
184
  nextToken?: string;
@@ -243,20 +187,12 @@ export interface ListApplicationsRequest {
243
187
 
244
188
  states?: (ApplicationState | string)[];
245
189
  }
246
- export declare namespace ListApplicationsRequest {
247
-
248
- const filterSensitiveLog: (obj: ListApplicationsRequest) => any;
249
- }
250
190
  export interface ListApplicationsResponse {
251
191
 
252
192
  applications: ApplicationSummary[] | undefined;
253
193
 
254
194
  nextToken?: string;
255
195
  }
256
- export declare namespace ListApplicationsResponse {
257
-
258
- const filterSensitiveLog: (obj: ListApplicationsResponse) => any;
259
- }
260
196
 
261
197
  export declare class ServiceQuotaExceededException extends __BaseException {
262
198
  readonly name: "ServiceQuotaExceededException";
@@ -268,30 +204,14 @@ export interface StartApplicationRequest {
268
204
 
269
205
  applicationId: string | undefined;
270
206
  }
271
- export declare namespace StartApplicationRequest {
272
-
273
- const filterSensitiveLog: (obj: StartApplicationRequest) => any;
274
- }
275
207
  export interface StartApplicationResponse {
276
208
  }
277
- export declare namespace StartApplicationResponse {
278
-
279
- const filterSensitiveLog: (obj: StartApplicationResponse) => any;
280
- }
281
209
  export interface StopApplicationRequest {
282
210
 
283
211
  applicationId: string | undefined;
284
212
  }
285
- export declare namespace StopApplicationRequest {
286
-
287
- const filterSensitiveLog: (obj: StopApplicationRequest) => any;
288
- }
289
213
  export interface StopApplicationResponse {
290
214
  }
291
- export declare namespace StopApplicationResponse {
292
-
293
- const filterSensitiveLog: (obj: StopApplicationResponse) => any;
294
- }
295
215
  export interface UpdateApplicationRequest {
296
216
 
297
217
  applicationId: string | undefined;
@@ -308,48 +228,28 @@ export interface UpdateApplicationRequest {
308
228
 
309
229
  networkConfiguration?: NetworkConfiguration;
310
230
  }
311
- export declare namespace UpdateApplicationRequest {
312
-
313
- const filterSensitiveLog: (obj: UpdateApplicationRequest) => any;
314
- }
315
231
  export interface UpdateApplicationResponse {
316
232
 
317
233
  application: Application | undefined;
318
234
  }
319
- export declare namespace UpdateApplicationResponse {
320
-
321
- const filterSensitiveLog: (obj: UpdateApplicationResponse) => any;
322
- }
323
235
  export interface CancelJobRunRequest {
324
236
 
325
237
  applicationId: string | undefined;
326
238
 
327
239
  jobRunId: string | undefined;
328
240
  }
329
- export declare namespace CancelJobRunRequest {
330
-
331
- const filterSensitiveLog: (obj: CancelJobRunRequest) => any;
332
- }
333
241
  export interface CancelJobRunResponse {
334
242
 
335
243
  applicationId: string | undefined;
336
244
 
337
245
  jobRunId: string | undefined;
338
246
  }
339
- export declare namespace CancelJobRunResponse {
340
-
341
- const filterSensitiveLog: (obj: CancelJobRunResponse) => any;
342
- }
343
247
  export interface GetJobRunRequest {
344
248
 
345
249
  applicationId: string | undefined;
346
250
 
347
251
  jobRunId: string | undefined;
348
252
  }
349
- export declare namespace GetJobRunRequest {
350
-
351
- const filterSensitiveLog: (obj: GetJobRunRequest) => any;
352
- }
353
253
 
354
254
  export interface ManagedPersistenceMonitoringConfiguration {
355
255
 
@@ -357,10 +257,6 @@ export interface ManagedPersistenceMonitoringConfiguration {
357
257
 
358
258
  encryptionKeyArn?: string;
359
259
  }
360
- export declare namespace ManagedPersistenceMonitoringConfiguration {
361
-
362
- const filterSensitiveLog: (obj: ManagedPersistenceMonitoringConfiguration) => any;
363
- }
364
260
 
365
261
  export interface S3MonitoringConfiguration {
366
262
 
@@ -368,10 +264,6 @@ export interface S3MonitoringConfiguration {
368
264
 
369
265
  encryptionKeyArn?: string;
370
266
  }
371
- export declare namespace S3MonitoringConfiguration {
372
-
373
- const filterSensitiveLog: (obj: S3MonitoringConfiguration) => any;
374
- }
375
267
 
376
268
  export interface MonitoringConfiguration {
377
269
 
@@ -379,10 +271,6 @@ export interface MonitoringConfiguration {
379
271
 
380
272
  managedPersistenceMonitoringConfiguration?: ManagedPersistenceMonitoringConfiguration;
381
273
  }
382
- export declare namespace MonitoringConfiguration {
383
-
384
- const filterSensitiveLog: (obj: MonitoringConfiguration) => any;
385
- }
386
274
 
387
275
  export interface Hive {
388
276
 
@@ -392,10 +280,6 @@ export interface Hive {
392
280
 
393
281
  parameters?: string;
394
282
  }
395
- export declare namespace Hive {
396
-
397
- const filterSensitiveLog: (obj: Hive) => any;
398
- }
399
283
 
400
284
  export interface SparkSubmit {
401
285
 
@@ -405,10 +289,6 @@ export interface SparkSubmit {
405
289
 
406
290
  sparkSubmitParameters?: string;
407
291
  }
408
- export declare namespace SparkSubmit {
409
-
410
- const filterSensitiveLog: (obj: SparkSubmit) => any;
411
- }
412
292
 
413
293
  export declare type JobDriver = JobDriver.HiveMember | JobDriver.SparkSubmitMember | JobDriver.$UnknownMember;
414
294
  export declare namespace JobDriver {
@@ -438,8 +318,6 @@ export declare namespace JobDriver {
438
318
  _: (name: string, value: any) => T;
439
319
  }
440
320
  const visit: <T>(value: JobDriver, visitor: Visitor<T>) => T;
441
-
442
- const filterSensitiveLog: (obj: JobDriver) => any;
443
321
  }
444
322
  export declare enum JobRunState {
445
323
  CANCELLED = "CANCELLED",
@@ -460,10 +338,6 @@ export interface TotalResourceUtilization {
460
338
 
461
339
  storageGBHour?: number;
462
340
  }
463
- export declare namespace TotalResourceUtilization {
464
-
465
- const filterSensitiveLog: (obj: TotalResourceUtilization) => any;
466
- }
467
341
  export interface ListJobRunsRequest {
468
342
 
469
343
  applicationId: string | undefined;
@@ -478,10 +352,6 @@ export interface ListJobRunsRequest {
478
352
 
479
353
  states?: (JobRunState | string)[];
480
354
  }
481
- export declare namespace ListJobRunsRequest {
482
-
483
- const filterSensitiveLog: (obj: ListJobRunsRequest) => any;
484
- }
485
355
 
486
356
  export interface JobRunSummary {
487
357
 
@@ -509,20 +379,12 @@ export interface JobRunSummary {
509
379
 
510
380
  type?: string;
511
381
  }
512
- export declare namespace JobRunSummary {
513
-
514
- const filterSensitiveLog: (obj: JobRunSummary) => any;
515
- }
516
382
  export interface ListJobRunsResponse {
517
383
 
518
384
  jobRuns: JobRunSummary[] | undefined;
519
385
 
520
386
  nextToken?: string;
521
387
  }
522
- export declare namespace ListJobRunsResponse {
523
-
524
- const filterSensitiveLog: (obj: ListJobRunsResponse) => any;
525
- }
526
388
  export interface StartJobRunResponse {
527
389
 
528
390
  applicationId: string | undefined;
@@ -531,58 +393,30 @@ export interface StartJobRunResponse {
531
393
 
532
394
  arn: string | undefined;
533
395
  }
534
- export declare namespace StartJobRunResponse {
535
-
536
- const filterSensitiveLog: (obj: StartJobRunResponse) => any;
537
- }
538
396
  export interface ListTagsForResourceRequest {
539
397
 
540
398
  resourceArn: string | undefined;
541
399
  }
542
- export declare namespace ListTagsForResourceRequest {
543
-
544
- const filterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
545
- }
546
400
  export interface ListTagsForResourceResponse {
547
401
 
548
402
  tags?: Record<string, string>;
549
403
  }
550
- export declare namespace ListTagsForResourceResponse {
551
-
552
- const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
553
- }
554
404
  export interface TagResourceRequest {
555
405
 
556
406
  resourceArn: string | undefined;
557
407
 
558
408
  tags: Record<string, string> | undefined;
559
409
  }
560
- export declare namespace TagResourceRequest {
561
-
562
- const filterSensitiveLog: (obj: TagResourceRequest) => any;
563
- }
564
410
  export interface TagResourceResponse {
565
411
  }
566
- export declare namespace TagResourceResponse {
567
-
568
- const filterSensitiveLog: (obj: TagResourceResponse) => any;
569
- }
570
412
  export interface UntagResourceRequest {
571
413
 
572
414
  resourceArn: string | undefined;
573
415
 
574
416
  tagKeys: string[] | undefined;
575
417
  }
576
- export declare namespace UntagResourceRequest {
577
-
578
- const filterSensitiveLog: (obj: UntagResourceRequest) => any;
579
- }
580
418
  export interface UntagResourceResponse {
581
419
  }
582
- export declare namespace UntagResourceResponse {
583
-
584
- const filterSensitiveLog: (obj: UntagResourceResponse) => any;
585
- }
586
420
 
587
421
  export interface Configuration {
588
422
 
@@ -592,10 +426,6 @@ export interface Configuration {
592
426
 
593
427
  configurations?: Configuration[];
594
428
  }
595
- export declare namespace Configuration {
596
-
597
- const filterSensitiveLog: (obj: Configuration) => any;
598
- }
599
429
 
600
430
  export interface ConfigurationOverrides {
601
431
 
@@ -603,10 +433,6 @@ export interface ConfigurationOverrides {
603
433
 
604
434
  monitoringConfiguration?: MonitoringConfiguration;
605
435
  }
606
- export declare namespace ConfigurationOverrides {
607
-
608
- const filterSensitiveLog: (obj: ConfigurationOverrides) => any;
609
- }
610
436
 
611
437
  export interface JobRun {
612
438
 
@@ -644,10 +470,6 @@ export interface JobRun {
644
470
 
645
471
  totalExecutionDurationSeconds?: number;
646
472
  }
647
- export declare namespace JobRun {
648
-
649
- const filterSensitiveLog: (obj: JobRun) => any;
650
- }
651
473
  export interface StartJobRunRequest {
652
474
 
653
475
  applicationId: string | undefined;
@@ -666,15 +488,101 @@ export interface StartJobRunRequest {
666
488
 
667
489
  name?: string;
668
490
  }
669
- export declare namespace StartJobRunRequest {
670
-
671
- const filterSensitiveLog: (obj: StartJobRunRequest) => any;
672
- }
673
491
  export interface GetJobRunResponse {
674
492
 
675
493
  jobRun: JobRun | undefined;
676
494
  }
677
- export declare namespace GetJobRunResponse {
678
-
679
- const filterSensitiveLog: (obj: GetJobRunResponse) => any;
680
- }
495
+
496
+ export declare const AutoStartConfigFilterSensitiveLog: (obj: AutoStartConfig) => any;
497
+
498
+ export declare const AutoStopConfigFilterSensitiveLog: (obj: AutoStopConfig) => any;
499
+
500
+ export declare const WorkerResourceConfigFilterSensitiveLog: (obj: WorkerResourceConfig) => any;
501
+
502
+ export declare const InitialCapacityConfigFilterSensitiveLog: (obj: InitialCapacityConfig) => any;
503
+
504
+ export declare const MaximumAllowedResourcesFilterSensitiveLog: (obj: MaximumAllowedResources) => any;
505
+
506
+ export declare const NetworkConfigurationFilterSensitiveLog: (obj: NetworkConfiguration) => any;
507
+
508
+ export declare const ApplicationFilterSensitiveLog: (obj: Application) => any;
509
+
510
+ export declare const ApplicationSummaryFilterSensitiveLog: (obj: ApplicationSummary) => any;
511
+
512
+ export declare const CreateApplicationRequestFilterSensitiveLog: (obj: CreateApplicationRequest) => any;
513
+
514
+ export declare const CreateApplicationResponseFilterSensitiveLog: (obj: CreateApplicationResponse) => any;
515
+
516
+ export declare const DeleteApplicationRequestFilterSensitiveLog: (obj: DeleteApplicationRequest) => any;
517
+
518
+ export declare const DeleteApplicationResponseFilterSensitiveLog: (obj: DeleteApplicationResponse) => any;
519
+
520
+ export declare const GetApplicationRequestFilterSensitiveLog: (obj: GetApplicationRequest) => any;
521
+
522
+ export declare const GetApplicationResponseFilterSensitiveLog: (obj: GetApplicationResponse) => any;
523
+
524
+ export declare const ListApplicationsRequestFilterSensitiveLog: (obj: ListApplicationsRequest) => any;
525
+
526
+ export declare const ListApplicationsResponseFilterSensitiveLog: (obj: ListApplicationsResponse) => any;
527
+
528
+ export declare const StartApplicationRequestFilterSensitiveLog: (obj: StartApplicationRequest) => any;
529
+
530
+ export declare const StartApplicationResponseFilterSensitiveLog: (obj: StartApplicationResponse) => any;
531
+
532
+ export declare const StopApplicationRequestFilterSensitiveLog: (obj: StopApplicationRequest) => any;
533
+
534
+ export declare const StopApplicationResponseFilterSensitiveLog: (obj: StopApplicationResponse) => any;
535
+
536
+ export declare const UpdateApplicationRequestFilterSensitiveLog: (obj: UpdateApplicationRequest) => any;
537
+
538
+ export declare const UpdateApplicationResponseFilterSensitiveLog: (obj: UpdateApplicationResponse) => any;
539
+
540
+ export declare const CancelJobRunRequestFilterSensitiveLog: (obj: CancelJobRunRequest) => any;
541
+
542
+ export declare const CancelJobRunResponseFilterSensitiveLog: (obj: CancelJobRunResponse) => any;
543
+
544
+ export declare const GetJobRunRequestFilterSensitiveLog: (obj: GetJobRunRequest) => any;
545
+
546
+ export declare const ManagedPersistenceMonitoringConfigurationFilterSensitiveLog: (obj: ManagedPersistenceMonitoringConfiguration) => any;
547
+
548
+ export declare const S3MonitoringConfigurationFilterSensitiveLog: (obj: S3MonitoringConfiguration) => any;
549
+
550
+ export declare const MonitoringConfigurationFilterSensitiveLog: (obj: MonitoringConfiguration) => any;
551
+
552
+ export declare const HiveFilterSensitiveLog: (obj: Hive) => any;
553
+
554
+ export declare const SparkSubmitFilterSensitiveLog: (obj: SparkSubmit) => any;
555
+
556
+ export declare const JobDriverFilterSensitiveLog: (obj: JobDriver) => any;
557
+
558
+ export declare const TotalResourceUtilizationFilterSensitiveLog: (obj: TotalResourceUtilization) => any;
559
+
560
+ export declare const ListJobRunsRequestFilterSensitiveLog: (obj: ListJobRunsRequest) => any;
561
+
562
+ export declare const JobRunSummaryFilterSensitiveLog: (obj: JobRunSummary) => any;
563
+
564
+ export declare const ListJobRunsResponseFilterSensitiveLog: (obj: ListJobRunsResponse) => any;
565
+
566
+ export declare const StartJobRunResponseFilterSensitiveLog: (obj: StartJobRunResponse) => any;
567
+
568
+ export declare const ListTagsForResourceRequestFilterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
569
+
570
+ export declare const ListTagsForResourceResponseFilterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
571
+
572
+ export declare const TagResourceRequestFilterSensitiveLog: (obj: TagResourceRequest) => any;
573
+
574
+ export declare const TagResourceResponseFilterSensitiveLog: (obj: TagResourceResponse) => any;
575
+
576
+ export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResourceRequest) => any;
577
+
578
+ export declare const UntagResourceResponseFilterSensitiveLog: (obj: UntagResourceResponse) => any;
579
+
580
+ export declare const ConfigurationFilterSensitiveLog: (obj: Configuration) => any;
581
+
582
+ export declare const ConfigurationOverridesFilterSensitiveLog: (obj: ConfigurationOverrides) => any;
583
+
584
+ export declare const JobRunFilterSensitiveLog: (obj: JobRun) => any;
585
+
586
+ export declare const StartJobRunRequestFilterSensitiveLog: (obj: StartJobRunRequest) => any;
587
+
588
+ export declare const GetJobRunResponseFilterSensitiveLog: (obj: GetJobRunResponse) => any;
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.131.0",
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.131.0",
21
+ "@aws-sdk/client-sts": "3.137.0",
22
22
  "@aws-sdk/config-resolver": "3.130.0",
23
- "@aws-sdk/credential-provider-node": "3.131.0",
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.127.0",
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.127.0",
47
- "@aws-sdk/util-defaults-mode-node": "3.130.0",
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",