@aws-sdk/client-savingsplans 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/CreateSavingsPlanCommand.js +2 -2
- package/dist-cjs/commands/DeleteQueuedSavingsPlanCommand.js +2 -2
- package/dist-cjs/commands/DescribeSavingsPlanRatesCommand.js +2 -2
- package/dist-cjs/commands/DescribeSavingsPlansCommand.js +2 -2
- package/dist-cjs/commands/DescribeSavingsPlansOfferingRatesCommand.js +2 -2
- package/dist-cjs/commands/DescribeSavingsPlansOfferingsCommand.js +2 -2
- package/dist-cjs/commands/ListTagsForResourceCommand.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 +121 -181
- package/dist-es/commands/CreateSavingsPlanCommand.js +3 -3
- package/dist-es/commands/DeleteQueuedSavingsPlanCommand.js +3 -3
- package/dist-es/commands/DescribeSavingsPlanRatesCommand.js +3 -3
- package/dist-es/commands/DescribeSavingsPlansCommand.js +3 -3
- package/dist-es/commands/DescribeSavingsPlansOfferingRatesCommand.js +3 -3
- package/dist-es/commands/DescribeSavingsPlansOfferingsCommand.js +3 -3
- package/dist-es/commands/ListTagsForResourceCommand.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 +30 -120
- package/dist-types/models/models_0.d.ts +120 -180
- package/dist-types/ts3.4/models/models_0.d.ts +60 -120
- package/package.json +6 -6
|
@@ -14,18 +14,10 @@ export interface CreateSavingsPlanRequest {
|
|
|
14
14
|
|
|
15
15
|
tags?: Record<string, string>;
|
|
16
16
|
}
|
|
17
|
-
export declare namespace CreateSavingsPlanRequest {
|
|
18
|
-
|
|
19
|
-
const filterSensitiveLog: (obj: CreateSavingsPlanRequest) => any;
|
|
20
|
-
}
|
|
21
17
|
export interface CreateSavingsPlanResponse {
|
|
22
18
|
|
|
23
19
|
savingsPlanId?: string;
|
|
24
20
|
}
|
|
25
|
-
export declare namespace CreateSavingsPlanResponse {
|
|
26
|
-
|
|
27
|
-
const filterSensitiveLog: (obj: CreateSavingsPlanResponse) => any;
|
|
28
|
-
}
|
|
29
21
|
|
|
30
22
|
export declare class InternalServerException extends __BaseException {
|
|
31
23
|
readonly name: "InternalServerException";
|
|
@@ -58,16 +50,8 @@ export interface DeleteQueuedSavingsPlanRequest {
|
|
|
58
50
|
|
|
59
51
|
savingsPlanId: string | undefined;
|
|
60
52
|
}
|
|
61
|
-
export declare namespace DeleteQueuedSavingsPlanRequest {
|
|
62
|
-
|
|
63
|
-
const filterSensitiveLog: (obj: DeleteQueuedSavingsPlanRequest) => any;
|
|
64
|
-
}
|
|
65
53
|
export interface DeleteQueuedSavingsPlanResponse {
|
|
66
54
|
}
|
|
67
|
-
export declare namespace DeleteQueuedSavingsPlanResponse {
|
|
68
|
-
|
|
69
|
-
const filterSensitiveLog: (obj: DeleteQueuedSavingsPlanResponse) => any;
|
|
70
|
-
}
|
|
71
55
|
export declare enum SavingsPlanRateFilterName {
|
|
72
56
|
INSTANCE_TYPE = "instanceType",
|
|
73
57
|
OPERATION = "operation",
|
|
@@ -85,10 +69,6 @@ export interface SavingsPlanRateFilter {
|
|
|
85
69
|
|
|
86
70
|
values?: string[];
|
|
87
71
|
}
|
|
88
|
-
export declare namespace SavingsPlanRateFilter {
|
|
89
|
-
|
|
90
|
-
const filterSensitiveLog: (obj: SavingsPlanRateFilter) => any;
|
|
91
|
-
}
|
|
92
72
|
export interface DescribeSavingsPlanRatesRequest {
|
|
93
73
|
|
|
94
74
|
savingsPlanId: string | undefined;
|
|
@@ -99,10 +79,6 @@ export interface DescribeSavingsPlanRatesRequest {
|
|
|
99
79
|
|
|
100
80
|
maxResults?: number;
|
|
101
81
|
}
|
|
102
|
-
export declare namespace DescribeSavingsPlanRatesRequest {
|
|
103
|
-
|
|
104
|
-
const filterSensitiveLog: (obj: DescribeSavingsPlanRatesRequest) => any;
|
|
105
|
-
}
|
|
106
82
|
export declare type CurrencyCode = "CNY" | "USD";
|
|
107
83
|
export declare enum SavingsPlanProductType {
|
|
108
84
|
EC2 = "EC2",
|
|
@@ -124,10 +100,6 @@ export interface SavingsPlanRateProperty {
|
|
|
124
100
|
|
|
125
101
|
value?: string;
|
|
126
102
|
}
|
|
127
|
-
export declare namespace SavingsPlanRateProperty {
|
|
128
|
-
|
|
129
|
-
const filterSensitiveLog: (obj: SavingsPlanRateProperty) => any;
|
|
130
|
-
}
|
|
131
103
|
export declare enum SavingsPlanRateServiceCode {
|
|
132
104
|
EC2 = "AmazonEC2",
|
|
133
105
|
FARGATE = "AmazonECS",
|
|
@@ -159,10 +131,6 @@ export interface SavingsPlanRate {
|
|
|
159
131
|
|
|
160
132
|
properties?: SavingsPlanRateProperty[];
|
|
161
133
|
}
|
|
162
|
-
export declare namespace SavingsPlanRate {
|
|
163
|
-
|
|
164
|
-
const filterSensitiveLog: (obj: SavingsPlanRate) => any;
|
|
165
|
-
}
|
|
166
134
|
export interface DescribeSavingsPlanRatesResponse {
|
|
167
135
|
|
|
168
136
|
savingsPlanId?: string;
|
|
@@ -171,10 +139,6 @@ export interface DescribeSavingsPlanRatesResponse {
|
|
|
171
139
|
|
|
172
140
|
nextToken?: string;
|
|
173
141
|
}
|
|
174
|
-
export declare namespace DescribeSavingsPlanRatesResponse {
|
|
175
|
-
|
|
176
|
-
const filterSensitiveLog: (obj: DescribeSavingsPlanRatesResponse) => any;
|
|
177
|
-
}
|
|
178
142
|
export declare enum SavingsPlansFilterName {
|
|
179
143
|
COMMITMENT = "commitment",
|
|
180
144
|
EC2_INSTANCE_FAMILY = "ec2-instance-family",
|
|
@@ -193,10 +157,6 @@ export interface SavingsPlanFilter {
|
|
|
193
157
|
|
|
194
158
|
values?: string[];
|
|
195
159
|
}
|
|
196
|
-
export declare namespace SavingsPlanFilter {
|
|
197
|
-
|
|
198
|
-
const filterSensitiveLog: (obj: SavingsPlanFilter) => any;
|
|
199
|
-
}
|
|
200
160
|
export declare enum SavingsPlanState {
|
|
201
161
|
ACTIVE = "active",
|
|
202
162
|
PAYMENT_FAILED = "payment-failed",
|
|
@@ -219,10 +179,6 @@ export interface DescribeSavingsPlansRequest {
|
|
|
219
179
|
|
|
220
180
|
filters?: SavingsPlanFilter[];
|
|
221
181
|
}
|
|
222
|
-
export declare namespace DescribeSavingsPlansRequest {
|
|
223
|
-
|
|
224
|
-
const filterSensitiveLog: (obj: DescribeSavingsPlansRequest) => any;
|
|
225
|
-
}
|
|
226
182
|
export declare enum SavingsPlanPaymentOption {
|
|
227
183
|
ALL_UPFRONT = "All Upfront",
|
|
228
184
|
NO_UPFRONT = "No Upfront",
|
|
@@ -272,20 +228,12 @@ export interface SavingsPlan {
|
|
|
272
228
|
|
|
273
229
|
tags?: Record<string, string>;
|
|
274
230
|
}
|
|
275
|
-
export declare namespace SavingsPlan {
|
|
276
|
-
|
|
277
|
-
const filterSensitiveLog: (obj: SavingsPlan) => any;
|
|
278
|
-
}
|
|
279
231
|
export interface DescribeSavingsPlansResponse {
|
|
280
232
|
|
|
281
233
|
savingsPlans?: SavingsPlan[];
|
|
282
234
|
|
|
283
235
|
nextToken?: string;
|
|
284
236
|
}
|
|
285
|
-
export declare namespace DescribeSavingsPlansResponse {
|
|
286
|
-
|
|
287
|
-
const filterSensitiveLog: (obj: DescribeSavingsPlansResponse) => any;
|
|
288
|
-
}
|
|
289
237
|
export declare enum SavingsPlanRateFilterAttribute {
|
|
290
238
|
INSTANCE_FAMILY = "instanceFamily",
|
|
291
239
|
INSTANCE_TYPE = "instanceType",
|
|
@@ -301,10 +249,6 @@ export interface SavingsPlanOfferingRateFilterElement {
|
|
|
301
249
|
|
|
302
250
|
values?: string[];
|
|
303
251
|
}
|
|
304
|
-
export declare namespace SavingsPlanOfferingRateFilterElement {
|
|
305
|
-
|
|
306
|
-
const filterSensitiveLog: (obj: SavingsPlanOfferingRateFilterElement) => any;
|
|
307
|
-
}
|
|
308
252
|
export interface DescribeSavingsPlansOfferingRatesRequest {
|
|
309
253
|
|
|
310
254
|
savingsPlanOfferingIds?: string[];
|
|
@@ -327,10 +271,6 @@ export interface DescribeSavingsPlansOfferingRatesRequest {
|
|
|
327
271
|
|
|
328
272
|
maxResults?: number;
|
|
329
273
|
}
|
|
330
|
-
export declare namespace DescribeSavingsPlansOfferingRatesRequest {
|
|
331
|
-
|
|
332
|
-
const filterSensitiveLog: (obj: DescribeSavingsPlansOfferingRatesRequest) => any;
|
|
333
|
-
}
|
|
334
274
|
|
|
335
275
|
export interface SavingsPlanOfferingRateProperty {
|
|
336
276
|
|
|
@@ -338,10 +278,6 @@ export interface SavingsPlanOfferingRateProperty {
|
|
|
338
278
|
|
|
339
279
|
value?: string;
|
|
340
280
|
}
|
|
341
|
-
export declare namespace SavingsPlanOfferingRateProperty {
|
|
342
|
-
|
|
343
|
-
const filterSensitiveLog: (obj: SavingsPlanOfferingRateProperty) => any;
|
|
344
|
-
}
|
|
345
281
|
|
|
346
282
|
export interface ParentSavingsPlanOffering {
|
|
347
283
|
|
|
@@ -357,10 +293,6 @@ export interface ParentSavingsPlanOffering {
|
|
|
357
293
|
|
|
358
294
|
planDescription?: string;
|
|
359
295
|
}
|
|
360
|
-
export declare namespace ParentSavingsPlanOffering {
|
|
361
|
-
|
|
362
|
-
const filterSensitiveLog: (obj: ParentSavingsPlanOffering) => any;
|
|
363
|
-
}
|
|
364
296
|
|
|
365
297
|
export interface SavingsPlanOfferingRate {
|
|
366
298
|
|
|
@@ -380,20 +312,12 @@ export interface SavingsPlanOfferingRate {
|
|
|
380
312
|
|
|
381
313
|
properties?: SavingsPlanOfferingRateProperty[];
|
|
382
314
|
}
|
|
383
|
-
export declare namespace SavingsPlanOfferingRate {
|
|
384
|
-
|
|
385
|
-
const filterSensitiveLog: (obj: SavingsPlanOfferingRate) => any;
|
|
386
|
-
}
|
|
387
315
|
export interface DescribeSavingsPlansOfferingRatesResponse {
|
|
388
316
|
|
|
389
317
|
searchResults?: SavingsPlanOfferingRate[];
|
|
390
318
|
|
|
391
319
|
nextToken?: string;
|
|
392
320
|
}
|
|
393
|
-
export declare namespace DescribeSavingsPlansOfferingRatesResponse {
|
|
394
|
-
|
|
395
|
-
const filterSensitiveLog: (obj: DescribeSavingsPlansOfferingRatesResponse) => any;
|
|
396
|
-
}
|
|
397
321
|
export declare enum SavingsPlanOfferingFilterAttribute {
|
|
398
322
|
instanceFamily = "instanceFamily",
|
|
399
323
|
region = "region"
|
|
@@ -405,10 +329,6 @@ export interface SavingsPlanOfferingFilterElement {
|
|
|
405
329
|
|
|
406
330
|
values?: string[];
|
|
407
331
|
}
|
|
408
|
-
export declare namespace SavingsPlanOfferingFilterElement {
|
|
409
|
-
|
|
410
|
-
const filterSensitiveLog: (obj: SavingsPlanOfferingFilterElement) => any;
|
|
411
|
-
}
|
|
412
332
|
export interface DescribeSavingsPlansOfferingsRequest {
|
|
413
333
|
|
|
414
334
|
offeringIds?: string[];
|
|
@@ -437,10 +357,6 @@ export interface DescribeSavingsPlansOfferingsRequest {
|
|
|
437
357
|
|
|
438
358
|
maxResults?: number;
|
|
439
359
|
}
|
|
440
|
-
export declare namespace DescribeSavingsPlansOfferingsRequest {
|
|
441
|
-
|
|
442
|
-
const filterSensitiveLog: (obj: DescribeSavingsPlansOfferingsRequest) => any;
|
|
443
|
-
}
|
|
444
360
|
export declare enum SavingsPlanOfferingPropertyKey {
|
|
445
361
|
INSTANCE_FAMILY = "instanceFamily",
|
|
446
362
|
REGION = "region"
|
|
@@ -452,10 +368,6 @@ export interface SavingsPlanOfferingProperty {
|
|
|
452
368
|
|
|
453
369
|
value?: string;
|
|
454
370
|
}
|
|
455
|
-
export declare namespace SavingsPlanOfferingProperty {
|
|
456
|
-
|
|
457
|
-
const filterSensitiveLog: (obj: SavingsPlanOfferingProperty) => any;
|
|
458
|
-
}
|
|
459
371
|
|
|
460
372
|
export interface SavingsPlanOffering {
|
|
461
373
|
|
|
@@ -481,65 +393,93 @@ export interface SavingsPlanOffering {
|
|
|
481
393
|
|
|
482
394
|
properties?: SavingsPlanOfferingProperty[];
|
|
483
395
|
}
|
|
484
|
-
export declare namespace SavingsPlanOffering {
|
|
485
|
-
|
|
486
|
-
const filterSensitiveLog: (obj: SavingsPlanOffering) => any;
|
|
487
|
-
}
|
|
488
396
|
export interface DescribeSavingsPlansOfferingsResponse {
|
|
489
397
|
|
|
490
398
|
searchResults?: SavingsPlanOffering[];
|
|
491
399
|
|
|
492
400
|
nextToken?: string;
|
|
493
401
|
}
|
|
494
|
-
export declare namespace DescribeSavingsPlansOfferingsResponse {
|
|
495
|
-
|
|
496
|
-
const filterSensitiveLog: (obj: DescribeSavingsPlansOfferingsResponse) => any;
|
|
497
|
-
}
|
|
498
402
|
export interface ListTagsForResourceRequest {
|
|
499
403
|
|
|
500
404
|
resourceArn: string | undefined;
|
|
501
405
|
}
|
|
502
|
-
export declare namespace ListTagsForResourceRequest {
|
|
503
|
-
|
|
504
|
-
const filterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
|
|
505
|
-
}
|
|
506
406
|
export interface ListTagsForResourceResponse {
|
|
507
407
|
|
|
508
408
|
tags?: Record<string, string>;
|
|
509
409
|
}
|
|
510
|
-
export declare namespace ListTagsForResourceResponse {
|
|
511
|
-
|
|
512
|
-
const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
513
|
-
}
|
|
514
410
|
export interface TagResourceRequest {
|
|
515
411
|
|
|
516
412
|
resourceArn: string | undefined;
|
|
517
413
|
|
|
518
414
|
tags: Record<string, string> | undefined;
|
|
519
415
|
}
|
|
520
|
-
export declare namespace TagResourceRequest {
|
|
521
|
-
|
|
522
|
-
const filterSensitiveLog: (obj: TagResourceRequest) => any;
|
|
523
|
-
}
|
|
524
416
|
export interface TagResourceResponse {
|
|
525
417
|
}
|
|
526
|
-
export declare namespace TagResourceResponse {
|
|
527
|
-
|
|
528
|
-
const filterSensitiveLog: (obj: TagResourceResponse) => any;
|
|
529
|
-
}
|
|
530
418
|
export interface UntagResourceRequest {
|
|
531
419
|
|
|
532
420
|
resourceArn: string | undefined;
|
|
533
421
|
|
|
534
422
|
tagKeys: string[] | undefined;
|
|
535
423
|
}
|
|
536
|
-
export declare namespace UntagResourceRequest {
|
|
537
|
-
|
|
538
|
-
const filterSensitiveLog: (obj: UntagResourceRequest) => any;
|
|
539
|
-
}
|
|
540
424
|
export interface UntagResourceResponse {
|
|
541
425
|
}
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
426
|
+
|
|
427
|
+
export declare const CreateSavingsPlanRequestFilterSensitiveLog: (obj: CreateSavingsPlanRequest) => any;
|
|
428
|
+
|
|
429
|
+
export declare const CreateSavingsPlanResponseFilterSensitiveLog: (obj: CreateSavingsPlanResponse) => any;
|
|
430
|
+
|
|
431
|
+
export declare const DeleteQueuedSavingsPlanRequestFilterSensitiveLog: (obj: DeleteQueuedSavingsPlanRequest) => any;
|
|
432
|
+
|
|
433
|
+
export declare const DeleteQueuedSavingsPlanResponseFilterSensitiveLog: (obj: DeleteQueuedSavingsPlanResponse) => any;
|
|
434
|
+
|
|
435
|
+
export declare const SavingsPlanRateFilterFilterSensitiveLog: (obj: SavingsPlanRateFilter) => any;
|
|
436
|
+
|
|
437
|
+
export declare const DescribeSavingsPlanRatesRequestFilterSensitiveLog: (obj: DescribeSavingsPlanRatesRequest) => any;
|
|
438
|
+
|
|
439
|
+
export declare const SavingsPlanRatePropertyFilterSensitiveLog: (obj: SavingsPlanRateProperty) => any;
|
|
440
|
+
|
|
441
|
+
export declare const SavingsPlanRateFilterSensitiveLog: (obj: SavingsPlanRate) => any;
|
|
442
|
+
|
|
443
|
+
export declare const DescribeSavingsPlanRatesResponseFilterSensitiveLog: (obj: DescribeSavingsPlanRatesResponse) => any;
|
|
444
|
+
|
|
445
|
+
export declare const SavingsPlanFilterFilterSensitiveLog: (obj: SavingsPlanFilter) => any;
|
|
446
|
+
|
|
447
|
+
export declare const DescribeSavingsPlansRequestFilterSensitiveLog: (obj: DescribeSavingsPlansRequest) => any;
|
|
448
|
+
|
|
449
|
+
export declare const SavingsPlanFilterSensitiveLog: (obj: SavingsPlan) => any;
|
|
450
|
+
|
|
451
|
+
export declare const DescribeSavingsPlansResponseFilterSensitiveLog: (obj: DescribeSavingsPlansResponse) => any;
|
|
452
|
+
|
|
453
|
+
export declare const SavingsPlanOfferingRateFilterElementFilterSensitiveLog: (obj: SavingsPlanOfferingRateFilterElement) => any;
|
|
454
|
+
|
|
455
|
+
export declare const DescribeSavingsPlansOfferingRatesRequestFilterSensitiveLog: (obj: DescribeSavingsPlansOfferingRatesRequest) => any;
|
|
456
|
+
|
|
457
|
+
export declare const SavingsPlanOfferingRatePropertyFilterSensitiveLog: (obj: SavingsPlanOfferingRateProperty) => any;
|
|
458
|
+
|
|
459
|
+
export declare const ParentSavingsPlanOfferingFilterSensitiveLog: (obj: ParentSavingsPlanOffering) => any;
|
|
460
|
+
|
|
461
|
+
export declare const SavingsPlanOfferingRateFilterSensitiveLog: (obj: SavingsPlanOfferingRate) => any;
|
|
462
|
+
|
|
463
|
+
export declare const DescribeSavingsPlansOfferingRatesResponseFilterSensitiveLog: (obj: DescribeSavingsPlansOfferingRatesResponse) => any;
|
|
464
|
+
|
|
465
|
+
export declare const SavingsPlanOfferingFilterElementFilterSensitiveLog: (obj: SavingsPlanOfferingFilterElement) => any;
|
|
466
|
+
|
|
467
|
+
export declare const DescribeSavingsPlansOfferingsRequestFilterSensitiveLog: (obj: DescribeSavingsPlansOfferingsRequest) => any;
|
|
468
|
+
|
|
469
|
+
export declare const SavingsPlanOfferingPropertyFilterSensitiveLog: (obj: SavingsPlanOfferingProperty) => any;
|
|
470
|
+
|
|
471
|
+
export declare const SavingsPlanOfferingFilterSensitiveLog: (obj: SavingsPlanOffering) => any;
|
|
472
|
+
|
|
473
|
+
export declare const DescribeSavingsPlansOfferingsResponseFilterSensitiveLog: (obj: DescribeSavingsPlansOfferingsResponse) => any;
|
|
474
|
+
|
|
475
|
+
export declare const ListTagsForResourceRequestFilterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
|
|
476
|
+
|
|
477
|
+
export declare const ListTagsForResourceResponseFilterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
478
|
+
|
|
479
|
+
export declare const TagResourceRequestFilterSensitiveLog: (obj: TagResourceRequest) => any;
|
|
480
|
+
|
|
481
|
+
export declare const TagResourceResponseFilterSensitiveLog: (obj: TagResourceResponse) => any;
|
|
482
|
+
|
|
483
|
+
export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResourceRequest) => any;
|
|
484
|
+
|
|
485
|
+
export declare const UntagResourceResponseFilterSensitiveLog: (obj: UntagResourceResponse) => any;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-savingsplans",
|
|
3
3
|
"description": "AWS SDK for JavaScript Savingsplans 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",
|