@aws-sdk/client-braket 3.131.0 → 3.142.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 (35) hide show
  1. package/CHANGELOG.md +33 -0
  2. package/README.md +1 -1
  3. package/dist-cjs/commands/CancelJobCommand.js +2 -2
  4. package/dist-cjs/commands/CancelQuantumTaskCommand.js +2 -2
  5. package/dist-cjs/commands/CreateJobCommand.js +2 -2
  6. package/dist-cjs/commands/CreateQuantumTaskCommand.js +2 -2
  7. package/dist-cjs/commands/GetDeviceCommand.js +2 -2
  8. package/dist-cjs/commands/GetJobCommand.js +2 -2
  9. package/dist-cjs/commands/GetQuantumTaskCommand.js +2 -2
  10. package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -2
  11. package/dist-cjs/commands/SearchDevicesCommand.js +2 -2
  12. package/dist-cjs/commands/SearchJobsCommand.js +2 -2
  13. package/dist-cjs/commands/SearchQuantumTasksCommand.js +2 -2
  14. package/dist-cjs/commands/TagResourceCommand.js +2 -2
  15. package/dist-cjs/commands/UntagResourceCommand.js +2 -2
  16. package/dist-cjs/models/models_0.js +178 -266
  17. package/dist-cjs/protocols/Aws_restJson1.js +184 -359
  18. package/dist-es/commands/CancelJobCommand.js +3 -3
  19. package/dist-es/commands/CancelQuantumTaskCommand.js +3 -3
  20. package/dist-es/commands/CreateJobCommand.js +3 -3
  21. package/dist-es/commands/CreateQuantumTaskCommand.js +3 -3
  22. package/dist-es/commands/GetDeviceCommand.js +3 -3
  23. package/dist-es/commands/GetJobCommand.js +3 -3
  24. package/dist-es/commands/GetQuantumTaskCommand.js +3 -3
  25. package/dist-es/commands/ListTagsForResourceCommand.js +3 -3
  26. package/dist-es/commands/SearchDevicesCommand.js +3 -3
  27. package/dist-es/commands/SearchJobsCommand.js +3 -3
  28. package/dist-es/commands/SearchQuantumTasksCommand.js +3 -3
  29. package/dist-es/commands/TagResourceCommand.js +3 -3
  30. package/dist-es/commands/UntagResourceCommand.js +3 -3
  31. package/dist-es/models/models_0.js +44 -176
  32. package/dist-es/protocols/Aws_restJson1.js +232 -366
  33. package/dist-types/models/models_0.d.ts +176 -264
  34. package/dist-types/ts3.4/models/models_0.d.ts +88 -176
  35. package/package.json +6 -6
@@ -12,10 +12,6 @@ export interface ContainerImage {
12
12
 
13
13
  uri: string | undefined;
14
14
  }
15
- export declare namespace ContainerImage {
16
-
17
- const filterSensitiveLog: (obj: ContainerImage) => any;
18
- }
19
15
  export declare enum CompressionType {
20
16
  GZIP = "GZIP",
21
17
  NONE = "NONE"
@@ -29,10 +25,6 @@ export interface ScriptModeConfig {
29
25
 
30
26
  compressionType?: CompressionType | string;
31
27
  }
32
- export declare namespace ScriptModeConfig {
33
-
34
- const filterSensitiveLog: (obj: ScriptModeConfig) => any;
35
- }
36
28
 
37
29
  export interface AlgorithmSpecification {
38
30
 
@@ -40,18 +32,10 @@ export interface AlgorithmSpecification {
40
32
 
41
33
  containerImage?: ContainerImage;
42
34
  }
43
- export declare namespace AlgorithmSpecification {
44
-
45
- const filterSensitiveLog: (obj: AlgorithmSpecification) => any;
46
- }
47
35
  export interface GetDeviceRequest {
48
36
 
49
37
  deviceArn: string | undefined;
50
38
  }
51
- export declare namespace GetDeviceRequest {
52
-
53
- const filterSensitiveLog: (obj: GetDeviceRequest) => any;
54
- }
55
39
  export declare enum DeviceStatus {
56
40
  OFFLINE = "OFFLINE",
57
41
  ONLINE = "ONLINE",
@@ -75,10 +59,6 @@ export interface GetDeviceResponse {
75
59
 
76
60
  deviceCapabilities: __LazyJsonString | string | undefined;
77
61
  }
78
- export declare namespace GetDeviceResponse {
79
-
80
- const filterSensitiveLog: (obj: GetDeviceResponse) => any;
81
- }
82
62
 
83
63
  export declare class InternalServiceException extends __BaseException {
84
64
  readonly name: "InternalServiceException";
@@ -114,10 +94,6 @@ export interface SearchDevicesFilter {
114
94
 
115
95
  values: string[] | undefined;
116
96
  }
117
- export declare namespace SearchDevicesFilter {
118
-
119
- const filterSensitiveLog: (obj: SearchDevicesFilter) => any;
120
- }
121
97
  export interface SearchDevicesRequest {
122
98
 
123
99
  nextToken?: string;
@@ -126,10 +102,6 @@ export interface SearchDevicesRequest {
126
102
 
127
103
  filters: SearchDevicesFilter[] | undefined;
128
104
  }
129
- export declare namespace SearchDevicesRequest {
130
-
131
- const filterSensitiveLog: (obj: SearchDevicesRequest) => any;
132
- }
133
105
 
134
106
  export interface DeviceSummary {
135
107
 
@@ -143,28 +115,16 @@ export interface DeviceSummary {
143
115
 
144
116
  deviceStatus: DeviceStatus | string | undefined;
145
117
  }
146
- export declare namespace DeviceSummary {
147
-
148
- const filterSensitiveLog: (obj: DeviceSummary) => any;
149
- }
150
118
  export interface SearchDevicesResponse {
151
119
 
152
120
  devices: DeviceSummary[] | undefined;
153
121
 
154
122
  nextToken?: string;
155
123
  }
156
- export declare namespace SearchDevicesResponse {
157
-
158
- const filterSensitiveLog: (obj: SearchDevicesResponse) => any;
159
- }
160
124
  export interface CancelJobRequest {
161
125
 
162
126
  jobArn: string | undefined;
163
127
  }
164
- export declare namespace CancelJobRequest {
165
-
166
- const filterSensitiveLog: (obj: CancelJobRequest) => any;
167
- }
168
128
  export declare enum CancellationStatus {
169
129
  CANCELLED = "CANCELLED",
170
130
  CANCELLING = "CANCELLING"
@@ -175,10 +135,6 @@ export interface CancelJobResponse {
175
135
 
176
136
  cancellationStatus: CancellationStatus | string | undefined;
177
137
  }
178
- export declare namespace CancelJobResponse {
179
-
180
- const filterSensitiveLog: (obj: CancelJobResponse) => any;
181
- }
182
138
 
183
139
  export declare class ConflictException extends __BaseException {
184
140
  readonly name: "ConflictException";
@@ -193,37 +149,21 @@ export interface JobCheckpointConfig {
193
149
 
194
150
  s3Uri: string | undefined;
195
151
  }
196
- export declare namespace JobCheckpointConfig {
197
-
198
- const filterSensitiveLog: (obj: JobCheckpointConfig) => any;
199
- }
200
152
 
201
153
  export interface DeviceConfig {
202
154
 
203
155
  device: string | undefined;
204
156
  }
205
- export declare namespace DeviceConfig {
206
-
207
- const filterSensitiveLog: (obj: DeviceConfig) => any;
208
- }
209
157
 
210
158
  export interface S3DataSource {
211
159
 
212
160
  s3Uri: string | undefined;
213
161
  }
214
- export declare namespace S3DataSource {
215
-
216
- const filterSensitiveLog: (obj: S3DataSource) => any;
217
- }
218
162
 
219
163
  export interface DataSource {
220
164
 
221
165
  s3DataSource: S3DataSource | undefined;
222
166
  }
223
- export declare namespace DataSource {
224
-
225
- const filterSensitiveLog: (obj: DataSource) => any;
226
- }
227
167
 
228
168
  export interface InputFileConfig {
229
169
 
@@ -233,10 +173,6 @@ export interface InputFileConfig {
233
173
 
234
174
  dataSource: DataSource | undefined;
235
175
  }
236
- export declare namespace InputFileConfig {
237
-
238
- const filterSensitiveLog: (obj: InputFileConfig) => any;
239
- }
240
176
  export declare enum _InstanceType {
241
177
  ML_C4_2XLARGE = "ml.c4.2xlarge",
242
178
  ML_C4_4XLARGE = "ml.c4.4xlarge",
@@ -287,10 +223,6 @@ export interface InstanceConfig {
287
223
 
288
224
  instanceCount?: number;
289
225
  }
290
- export declare namespace InstanceConfig {
291
-
292
- const filterSensitiveLog: (obj: InstanceConfig) => any;
293
- }
294
226
 
295
227
  export interface JobOutputDataConfig {
296
228
 
@@ -298,19 +230,11 @@ export interface JobOutputDataConfig {
298
230
 
299
231
  s3Path: string | undefined;
300
232
  }
301
- export declare namespace JobOutputDataConfig {
302
-
303
- const filterSensitiveLog: (obj: JobOutputDataConfig) => any;
304
- }
305
233
 
306
234
  export interface JobStoppingCondition {
307
235
 
308
236
  maxRuntimeInSeconds?: number;
309
237
  }
310
- export declare namespace JobStoppingCondition {
311
-
312
- const filterSensitiveLog: (obj: JobStoppingCondition) => any;
313
- }
314
238
  export interface CreateJobRequest {
315
239
 
316
240
  clientToken?: string;
@@ -337,18 +261,10 @@ export interface CreateJobRequest {
337
261
 
338
262
  tags?: Record<string, string>;
339
263
  }
340
- export declare namespace CreateJobRequest {
341
-
342
- const filterSensitiveLog: (obj: CreateJobRequest) => any;
343
- }
344
264
  export interface CreateJobResponse {
345
265
 
346
266
  jobArn: string | undefined;
347
267
  }
348
- export declare namespace CreateJobResponse {
349
-
350
- const filterSensitiveLog: (obj: CreateJobResponse) => any;
351
- }
352
268
 
353
269
  export declare class DeviceRetiredException extends __BaseException {
354
270
  readonly name: "DeviceRetiredException";
@@ -367,10 +283,6 @@ export interface GetJobRequest {
367
283
 
368
284
  jobArn: string | undefined;
369
285
  }
370
- export declare namespace GetJobRequest {
371
-
372
- const filterSensitiveLog: (obj: GetJobRequest) => any;
373
- }
374
286
  export declare enum JobEventType {
375
287
  CANCELLED = "CANCELLED",
376
288
  COMPLETED = "COMPLETED",
@@ -393,10 +305,6 @@ export interface JobEventDetails {
393
305
 
394
306
  message?: string;
395
307
  }
396
- export declare namespace JobEventDetails {
397
-
398
- const filterSensitiveLog: (obj: JobEventDetails) => any;
399
- }
400
308
  export declare enum JobPrimaryStatus {
401
309
  CANCELLED = "CANCELLED",
402
310
  CANCELLING = "CANCELLING",
@@ -445,10 +353,6 @@ export interface GetJobResponse {
445
353
 
446
354
  tags?: Record<string, string>;
447
355
  }
448
- export declare namespace GetJobResponse {
449
-
450
- const filterSensitiveLog: (obj: GetJobResponse) => any;
451
- }
452
356
  export declare enum SearchJobsFilterOperator {
453
357
  BETWEEN = "BETWEEN",
454
358
  CONTAINS = "CONTAINS",
@@ -467,10 +371,6 @@ export interface SearchJobsFilter {
467
371
 
468
372
  operator: SearchJobsFilterOperator | string | undefined;
469
373
  }
470
- export declare namespace SearchJobsFilter {
471
-
472
- const filterSensitiveLog: (obj: SearchJobsFilter) => any;
473
- }
474
374
  export interface SearchJobsRequest {
475
375
 
476
376
  nextToken?: string;
@@ -479,10 +379,6 @@ export interface SearchJobsRequest {
479
379
 
480
380
  filters: SearchJobsFilter[] | undefined;
481
381
  }
482
- export declare namespace SearchJobsRequest {
483
-
484
- const filterSensitiveLog: (obj: SearchJobsRequest) => any;
485
- }
486
382
 
487
383
  export interface JobSummary {
488
384
 
@@ -502,56 +398,32 @@ export interface JobSummary {
502
398
 
503
399
  tags?: Record<string, string>;
504
400
  }
505
- export declare namespace JobSummary {
506
-
507
- const filterSensitiveLog: (obj: JobSummary) => any;
508
- }
509
401
  export interface SearchJobsResponse {
510
402
 
511
403
  jobs: JobSummary[] | undefined;
512
404
 
513
405
  nextToken?: string;
514
406
  }
515
- export declare namespace SearchJobsResponse {
516
-
517
- const filterSensitiveLog: (obj: SearchJobsResponse) => any;
518
- }
519
407
  export interface ListTagsForResourceRequest {
520
408
 
521
409
  resourceArn: string | undefined;
522
410
  }
523
- export declare namespace ListTagsForResourceRequest {
524
-
525
- const filterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
526
- }
527
411
  export interface ListTagsForResourceResponse {
528
412
 
529
413
  tags?: Record<string, string>;
530
414
  }
531
- export declare namespace ListTagsForResourceResponse {
532
-
533
- const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
534
- }
535
415
  export interface CancelQuantumTaskRequest {
536
416
 
537
417
  quantumTaskArn: string | undefined;
538
418
 
539
419
  clientToken?: string;
540
420
  }
541
- export declare namespace CancelQuantumTaskRequest {
542
-
543
- const filterSensitiveLog: (obj: CancelQuantumTaskRequest) => any;
544
- }
545
421
  export interface CancelQuantumTaskResponse {
546
422
 
547
423
  quantumTaskArn: string | undefined;
548
424
 
549
425
  cancellationStatus: CancellationStatus | string | undefined;
550
426
  }
551
- export declare namespace CancelQuantumTaskResponse {
552
-
553
- const filterSensitiveLog: (obj: CancelQuantumTaskResponse) => any;
554
- }
555
427
  export interface CreateQuantumTaskRequest {
556
428
 
557
429
  clientToken?: string;
@@ -572,18 +444,10 @@ export interface CreateQuantumTaskRequest {
572
444
 
573
445
  jobToken?: string;
574
446
  }
575
- export declare namespace CreateQuantumTaskRequest {
576
-
577
- const filterSensitiveLog: (obj: CreateQuantumTaskRequest) => any;
578
- }
579
447
  export interface CreateQuantumTaskResponse {
580
448
 
581
449
  quantumTaskArn: string | undefined;
582
450
  }
583
- export declare namespace CreateQuantumTaskResponse {
584
-
585
- const filterSensitiveLog: (obj: CreateQuantumTaskResponse) => any;
586
- }
587
451
 
588
452
  export declare class DeviceOfflineException extends __BaseException {
589
453
  readonly name: "DeviceOfflineException";
@@ -595,10 +459,6 @@ export interface GetQuantumTaskRequest {
595
459
 
596
460
  quantumTaskArn: string | undefined;
597
461
  }
598
- export declare namespace GetQuantumTaskRequest {
599
-
600
- const filterSensitiveLog: (obj: GetQuantumTaskRequest) => any;
601
- }
602
462
  export declare enum QuantumTaskStatus {
603
463
  CANCELLED = "CANCELLED",
604
464
  CANCELLING = "CANCELLING",
@@ -634,10 +494,6 @@ export interface GetQuantumTaskResponse {
634
494
 
635
495
  jobArn?: string;
636
496
  }
637
- export declare namespace GetQuantumTaskResponse {
638
-
639
- const filterSensitiveLog: (obj: GetQuantumTaskResponse) => any;
640
- }
641
497
  export declare enum SearchQuantumTasksFilterOperator {
642
498
  BETWEEN = "BETWEEN",
643
499
  EQUAL = "EQUAL",
@@ -655,10 +511,6 @@ export interface SearchQuantumTasksFilter {
655
511
 
656
512
  operator: SearchQuantumTasksFilterOperator | string | undefined;
657
513
  }
658
- export declare namespace SearchQuantumTasksFilter {
659
-
660
- const filterSensitiveLog: (obj: SearchQuantumTasksFilter) => any;
661
- }
662
514
  export interface SearchQuantumTasksRequest {
663
515
 
664
516
  nextToken?: string;
@@ -667,10 +519,6 @@ export interface SearchQuantumTasksRequest {
667
519
 
668
520
  filters: SearchQuantumTasksFilter[] | undefined;
669
521
  }
670
- export declare namespace SearchQuantumTasksRequest {
671
-
672
- const filterSensitiveLog: (obj: SearchQuantumTasksRequest) => any;
673
- }
674
522
 
675
523
  export interface QuantumTaskSummary {
676
524
 
@@ -692,49 +540,113 @@ export interface QuantumTaskSummary {
692
540
 
693
541
  tags?: Record<string, string>;
694
542
  }
695
- export declare namespace QuantumTaskSummary {
696
-
697
- const filterSensitiveLog: (obj: QuantumTaskSummary) => any;
698
- }
699
543
  export interface SearchQuantumTasksResponse {
700
544
 
701
545
  quantumTasks: QuantumTaskSummary[] | undefined;
702
546
 
703
547
  nextToken?: string;
704
548
  }
705
- export declare namespace SearchQuantumTasksResponse {
706
-
707
- const filterSensitiveLog: (obj: SearchQuantumTasksResponse) => any;
708
- }
709
549
  export interface TagResourceRequest {
710
550
 
711
551
  resourceArn: string | undefined;
712
552
 
713
553
  tags: Record<string, string> | undefined;
714
554
  }
715
- export declare namespace TagResourceRequest {
716
-
717
- const filterSensitiveLog: (obj: TagResourceRequest) => any;
718
- }
719
555
  export interface TagResourceResponse {
720
556
  }
721
- export declare namespace TagResourceResponse {
722
-
723
- const filterSensitiveLog: (obj: TagResourceResponse) => any;
724
- }
725
557
  export interface UntagResourceRequest {
726
558
 
727
559
  resourceArn: string | undefined;
728
560
 
729
561
  tagKeys: string[] | undefined;
730
562
  }
731
- export declare namespace UntagResourceRequest {
732
-
733
- const filterSensitiveLog: (obj: UntagResourceRequest) => any;
734
- }
735
563
  export interface UntagResourceResponse {
736
564
  }
737
- export declare namespace UntagResourceResponse {
738
-
739
- const filterSensitiveLog: (obj: UntagResourceResponse) => any;
740
- }
565
+
566
+ export declare const ContainerImageFilterSensitiveLog: (obj: ContainerImage) => any;
567
+
568
+ export declare const ScriptModeConfigFilterSensitiveLog: (obj: ScriptModeConfig) => any;
569
+
570
+ export declare const AlgorithmSpecificationFilterSensitiveLog: (obj: AlgorithmSpecification) => any;
571
+
572
+ export declare const GetDeviceRequestFilterSensitiveLog: (obj: GetDeviceRequest) => any;
573
+
574
+ export declare const GetDeviceResponseFilterSensitiveLog: (obj: GetDeviceResponse) => any;
575
+
576
+ export declare const SearchDevicesFilterFilterSensitiveLog: (obj: SearchDevicesFilter) => any;
577
+
578
+ export declare const SearchDevicesRequestFilterSensitiveLog: (obj: SearchDevicesRequest) => any;
579
+
580
+ export declare const DeviceSummaryFilterSensitiveLog: (obj: DeviceSummary) => any;
581
+
582
+ export declare const SearchDevicesResponseFilterSensitiveLog: (obj: SearchDevicesResponse) => any;
583
+
584
+ export declare const CancelJobRequestFilterSensitiveLog: (obj: CancelJobRequest) => any;
585
+
586
+ export declare const CancelJobResponseFilterSensitiveLog: (obj: CancelJobResponse) => any;
587
+
588
+ export declare const JobCheckpointConfigFilterSensitiveLog: (obj: JobCheckpointConfig) => any;
589
+
590
+ export declare const DeviceConfigFilterSensitiveLog: (obj: DeviceConfig) => any;
591
+
592
+ export declare const S3DataSourceFilterSensitiveLog: (obj: S3DataSource) => any;
593
+
594
+ export declare const DataSourceFilterSensitiveLog: (obj: DataSource) => any;
595
+
596
+ export declare const InputFileConfigFilterSensitiveLog: (obj: InputFileConfig) => any;
597
+
598
+ export declare const InstanceConfigFilterSensitiveLog: (obj: InstanceConfig) => any;
599
+
600
+ export declare const JobOutputDataConfigFilterSensitiveLog: (obj: JobOutputDataConfig) => any;
601
+
602
+ export declare const JobStoppingConditionFilterSensitiveLog: (obj: JobStoppingCondition) => any;
603
+
604
+ export declare const CreateJobRequestFilterSensitiveLog: (obj: CreateJobRequest) => any;
605
+
606
+ export declare const CreateJobResponseFilterSensitiveLog: (obj: CreateJobResponse) => any;
607
+
608
+ export declare const GetJobRequestFilterSensitiveLog: (obj: GetJobRequest) => any;
609
+
610
+ export declare const JobEventDetailsFilterSensitiveLog: (obj: JobEventDetails) => any;
611
+
612
+ export declare const GetJobResponseFilterSensitiveLog: (obj: GetJobResponse) => any;
613
+
614
+ export declare const SearchJobsFilterFilterSensitiveLog: (obj: SearchJobsFilter) => any;
615
+
616
+ export declare const SearchJobsRequestFilterSensitiveLog: (obj: SearchJobsRequest) => any;
617
+
618
+ export declare const JobSummaryFilterSensitiveLog: (obj: JobSummary) => any;
619
+
620
+ export declare const SearchJobsResponseFilterSensitiveLog: (obj: SearchJobsResponse) => any;
621
+
622
+ export declare const ListTagsForResourceRequestFilterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
623
+
624
+ export declare const ListTagsForResourceResponseFilterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
625
+
626
+ export declare const CancelQuantumTaskRequestFilterSensitiveLog: (obj: CancelQuantumTaskRequest) => any;
627
+
628
+ export declare const CancelQuantumTaskResponseFilterSensitiveLog: (obj: CancelQuantumTaskResponse) => any;
629
+
630
+ export declare const CreateQuantumTaskRequestFilterSensitiveLog: (obj: CreateQuantumTaskRequest) => any;
631
+
632
+ export declare const CreateQuantumTaskResponseFilterSensitiveLog: (obj: CreateQuantumTaskResponse) => any;
633
+
634
+ export declare const GetQuantumTaskRequestFilterSensitiveLog: (obj: GetQuantumTaskRequest) => any;
635
+
636
+ export declare const GetQuantumTaskResponseFilterSensitiveLog: (obj: GetQuantumTaskResponse) => any;
637
+
638
+ export declare const SearchQuantumTasksFilterFilterSensitiveLog: (obj: SearchQuantumTasksFilter) => any;
639
+
640
+ export declare const SearchQuantumTasksRequestFilterSensitiveLog: (obj: SearchQuantumTasksRequest) => any;
641
+
642
+ export declare const QuantumTaskSummaryFilterSensitiveLog: (obj: QuantumTaskSummary) => any;
643
+
644
+ export declare const SearchQuantumTasksResponseFilterSensitiveLog: (obj: SearchQuantumTasksResponse) => any;
645
+
646
+ export declare const TagResourceRequestFilterSensitiveLog: (obj: TagResourceRequest) => any;
647
+
648
+ export declare const TagResourceResponseFilterSensitiveLog: (obj: TagResourceResponse) => any;
649
+
650
+ export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResourceRequest) => any;
651
+
652
+ export declare const UntagResourceResponseFilterSensitiveLog: (obj: UntagResourceResponse) => any;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-braket",
3
3
  "description": "AWS SDK for JavaScript Braket Client for Node.js, Browser and React Native",
4
- "version": "3.131.0",
4
+ "version": "3.142.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.142.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.142.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.142.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.142.0",
47
+ "@aws-sdk/util-defaults-mode-node": "3.142.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",