@aws-sdk/client-iotdeviceadvisor 3.131.0 → 3.141.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 (39) hide show
  1. package/CHANGELOG.md +33 -0
  2. package/README.md +10 -10
  3. package/dist-cjs/commands/CreateSuiteDefinitionCommand.js +2 -2
  4. package/dist-cjs/commands/DeleteSuiteDefinitionCommand.js +2 -2
  5. package/dist-cjs/commands/GetEndpointCommand.js +2 -2
  6. package/dist-cjs/commands/GetSuiteDefinitionCommand.js +2 -2
  7. package/dist-cjs/commands/GetSuiteRunCommand.js +2 -2
  8. package/dist-cjs/commands/GetSuiteRunReportCommand.js +2 -2
  9. package/dist-cjs/commands/ListSuiteDefinitionsCommand.js +2 -2
  10. package/dist-cjs/commands/ListSuiteRunsCommand.js +2 -2
  11. package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -2
  12. package/dist-cjs/commands/StartSuiteRunCommand.js +2 -2
  13. package/dist-cjs/commands/StopSuiteRunCommand.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/commands/UpdateSuiteDefinitionCommand.js +2 -2
  17. package/dist-cjs/models/models_0.js +171 -217
  18. package/dist-cjs/protocols/Aws_restJson1.js +29 -0
  19. package/dist-es/commands/CreateSuiteDefinitionCommand.js +3 -3
  20. package/dist-es/commands/DeleteSuiteDefinitionCommand.js +3 -3
  21. package/dist-es/commands/GetEndpointCommand.js +3 -3
  22. package/dist-es/commands/GetSuiteDefinitionCommand.js +3 -3
  23. package/dist-es/commands/GetSuiteRunCommand.js +3 -3
  24. package/dist-es/commands/GetSuiteRunReportCommand.js +3 -3
  25. package/dist-es/commands/ListSuiteDefinitionsCommand.js +3 -3
  26. package/dist-es/commands/ListSuiteRunsCommand.js +3 -3
  27. package/dist-es/commands/ListTagsForResourceCommand.js +3 -3
  28. package/dist-es/commands/StartSuiteRunCommand.js +3 -3
  29. package/dist-es/commands/StopSuiteRunCommand.js +3 -3
  30. package/dist-es/commands/TagResourceCommand.js +3 -3
  31. package/dist-es/commands/UntagResourceCommand.js +3 -3
  32. package/dist-es/commands/UpdateSuiteDefinitionCommand.js +3 -3
  33. package/dist-es/models/models_0.js +59 -144
  34. package/dist-es/protocols/Aws_restJson1.js +28 -1
  35. package/dist-types/IotDeviceAdvisor.d.ts +9 -9
  36. package/dist-types/IotDeviceAdvisorClient.d.ts +9 -9
  37. package/dist-types/models/models_0.d.ts +272 -224
  38. package/dist-types/ts3.4/models/models_0.d.ts +113 -141
  39. package/package.json +6 -6
@@ -14,9 +14,9 @@ export interface DeviceUnderTest {
14
14
 
15
15
  certificateArn?: string;
16
16
  }
17
- export declare namespace DeviceUnderTest {
18
-
19
- const filterSensitiveLog: (obj: DeviceUnderTest) => any;
17
+ export declare enum Protocol {
18
+ MqttV3_1_1 = "MqttV3_1_1",
19
+ MqttV5 = "MqttV5"
20
20
  }
21
21
 
22
22
  export interface SuiteDefinitionConfiguration {
@@ -27,13 +27,13 @@ export interface SuiteDefinitionConfiguration {
27
27
 
28
28
  intendedForQualification?: boolean;
29
29
 
30
+ isLongDurationTest?: boolean;
31
+
30
32
  rootGroup?: string;
31
33
 
32
34
  devicePermissionRoleArn?: string;
33
- }
34
- export declare namespace SuiteDefinitionConfiguration {
35
35
 
36
- const filterSensitiveLog: (obj: SuiteDefinitionConfiguration) => any;
36
+ protocol?: Protocol | string;
37
37
  }
38
38
  export interface CreateSuiteDefinitionRequest {
39
39
 
@@ -41,10 +41,6 @@ export interface CreateSuiteDefinitionRequest {
41
41
 
42
42
  tags?: Record<string, string>;
43
43
  }
44
- export declare namespace CreateSuiteDefinitionRequest {
45
-
46
- const filterSensitiveLog: (obj: CreateSuiteDefinitionRequest) => any;
47
- }
48
44
  export interface CreateSuiteDefinitionResponse {
49
45
 
50
46
  suiteDefinitionId?: string;
@@ -55,10 +51,6 @@ export interface CreateSuiteDefinitionResponse {
55
51
 
56
52
  createdAt?: Date;
57
53
  }
58
- export declare namespace CreateSuiteDefinitionResponse {
59
-
60
- const filterSensitiveLog: (obj: CreateSuiteDefinitionResponse) => any;
61
- }
62
54
 
63
55
  export declare class InternalServerException extends __BaseException {
64
56
  readonly name: "InternalServerException";
@@ -77,34 +69,18 @@ export interface DeleteSuiteDefinitionRequest {
77
69
 
78
70
  suiteDefinitionId: string | undefined;
79
71
  }
80
- export declare namespace DeleteSuiteDefinitionRequest {
81
-
82
- const filterSensitiveLog: (obj: DeleteSuiteDefinitionRequest) => any;
83
- }
84
72
  export interface DeleteSuiteDefinitionResponse {
85
73
  }
86
- export declare namespace DeleteSuiteDefinitionResponse {
87
-
88
- const filterSensitiveLog: (obj: DeleteSuiteDefinitionResponse) => any;
89
- }
90
74
  export interface GetEndpointRequest {
91
75
 
92
76
  thingArn?: string;
93
77
 
94
78
  certificateArn?: string;
95
79
  }
96
- export declare namespace GetEndpointRequest {
97
-
98
- const filterSensitiveLog: (obj: GetEndpointRequest) => any;
99
- }
100
80
  export interface GetEndpointResponse {
101
81
 
102
82
  endpoint?: string;
103
83
  }
104
- export declare namespace GetEndpointResponse {
105
-
106
- const filterSensitiveLog: (obj: GetEndpointResponse) => any;
107
- }
108
84
 
109
85
  export declare class ResourceNotFoundException extends __BaseException {
110
86
  readonly name: "ResourceNotFoundException";
@@ -118,10 +94,6 @@ export interface GetSuiteDefinitionRequest {
118
94
 
119
95
  suiteDefinitionVersion?: string;
120
96
  }
121
- export declare namespace GetSuiteDefinitionRequest {
122
-
123
- const filterSensitiveLog: (obj: GetSuiteDefinitionRequest) => any;
124
- }
125
97
  export interface GetSuiteDefinitionResponse {
126
98
 
127
99
  suiteDefinitionId?: string;
@@ -140,20 +112,12 @@ export interface GetSuiteDefinitionResponse {
140
112
 
141
113
  tags?: Record<string, string>;
142
114
  }
143
- export declare namespace GetSuiteDefinitionResponse {
144
-
145
- const filterSensitiveLog: (obj: GetSuiteDefinitionResponse) => any;
146
- }
147
115
  export interface GetSuiteRunRequest {
148
116
 
149
117
  suiteDefinitionId: string | undefined;
150
118
 
151
119
  suiteRunId: string | undefined;
152
120
  }
153
- export declare namespace GetSuiteRunRequest {
154
-
155
- const filterSensitiveLog: (obj: GetSuiteRunRequest) => any;
156
- }
157
121
  export declare enum SuiteRunStatus {
158
122
  CANCELED = "CANCELED",
159
123
  ERROR = "ERROR",
@@ -174,10 +138,6 @@ export interface SuiteRunConfiguration {
174
138
 
175
139
  parallelRun?: boolean;
176
140
  }
177
- export declare namespace SuiteRunConfiguration {
178
-
179
- const filterSensitiveLog: (obj: SuiteRunConfiguration) => any;
180
- }
181
141
  export declare enum Status {
182
142
  CANCELED = "CANCELED",
183
143
  ERROR = "ERROR",
@@ -189,6 +149,34 @@ export declare enum Status {
189
149
  STOPPED = "STOPPED",
190
150
  STOPPING = "STOPPING"
191
151
  }
152
+ export declare enum TestCaseScenarioStatus {
153
+ CANCELED = "CANCELED",
154
+ ERROR = "ERROR",
155
+ FAIL = "FAIL",
156
+ PASS = "PASS",
157
+ PASS_WITH_WARNINGS = "PASS_WITH_WARNINGS",
158
+ PENDING = "PENDING",
159
+ RUNNING = "RUNNING",
160
+ STOPPED = "STOPPED",
161
+ STOPPING = "STOPPING"
162
+ }
163
+ export declare enum TestCaseScenarioType {
164
+ Advanced = "Advanced",
165
+ Basic = "Basic"
166
+ }
167
+
168
+ export interface TestCaseScenario {
169
+
170
+ testCaseScenarioId?: string;
171
+
172
+ testCaseScenarioType?: TestCaseScenarioType | string;
173
+
174
+ status?: TestCaseScenarioStatus | string;
175
+
176
+ failure?: string;
177
+
178
+ systemMessage?: string;
179
+ }
192
180
 
193
181
  export interface TestCaseRun {
194
182
 
@@ -209,10 +197,8 @@ export interface TestCaseRun {
209
197
  warnings?: string;
210
198
 
211
199
  failure?: string;
212
- }
213
- export declare namespace TestCaseRun {
214
200
 
215
- const filterSensitiveLog: (obj: TestCaseRun) => any;
201
+ testScenarios?: TestCaseScenario[];
216
202
  }
217
203
 
218
204
  export interface GroupResult {
@@ -223,19 +209,11 @@ export interface GroupResult {
223
209
 
224
210
  tests?: TestCaseRun[];
225
211
  }
226
- export declare namespace GroupResult {
227
-
228
- const filterSensitiveLog: (obj: GroupResult) => any;
229
- }
230
212
 
231
213
  export interface TestResult {
232
214
 
233
215
  groups?: GroupResult[];
234
216
  }
235
- export declare namespace TestResult {
236
-
237
- const filterSensitiveLog: (obj: TestResult) => any;
238
- }
239
217
  export interface GetSuiteRunResponse {
240
218
 
241
219
  suiteDefinitionId?: string;
@@ -260,38 +238,22 @@ export interface GetSuiteRunResponse {
260
238
 
261
239
  tags?: Record<string, string>;
262
240
  }
263
- export declare namespace GetSuiteRunResponse {
264
-
265
- const filterSensitiveLog: (obj: GetSuiteRunResponse) => any;
266
- }
267
241
  export interface GetSuiteRunReportRequest {
268
242
 
269
243
  suiteDefinitionId: string | undefined;
270
244
 
271
245
  suiteRunId: string | undefined;
272
246
  }
273
- export declare namespace GetSuiteRunReportRequest {
274
-
275
- const filterSensitiveLog: (obj: GetSuiteRunReportRequest) => any;
276
- }
277
247
  export interface GetSuiteRunReportResponse {
278
248
 
279
249
  qualificationReportDownloadUrl?: string;
280
250
  }
281
- export declare namespace GetSuiteRunReportResponse {
282
-
283
- const filterSensitiveLog: (obj: GetSuiteRunReportResponse) => any;
284
- }
285
251
  export interface ListSuiteDefinitionsRequest {
286
252
 
287
253
  maxResults?: number;
288
254
 
289
255
  nextToken?: string;
290
256
  }
291
- export declare namespace ListSuiteDefinitionsRequest {
292
-
293
- const filterSensitiveLog: (obj: ListSuiteDefinitionsRequest) => any;
294
- }
295
257
 
296
258
  export interface SuiteDefinitionInformation {
297
259
 
@@ -303,11 +265,11 @@ export interface SuiteDefinitionInformation {
303
265
 
304
266
  intendedForQualification?: boolean;
305
267
 
306
- createdAt?: Date;
307
- }
308
- export declare namespace SuiteDefinitionInformation {
268
+ isLongDurationTest?: boolean;
269
+
270
+ protocol?: Protocol | string;
309
271
 
310
- const filterSensitiveLog: (obj: SuiteDefinitionInformation) => any;
272
+ createdAt?: Date;
311
273
  }
312
274
  export interface ListSuiteDefinitionsResponse {
313
275
 
@@ -315,10 +277,6 @@ export interface ListSuiteDefinitionsResponse {
315
277
 
316
278
  nextToken?: string;
317
279
  }
318
- export declare namespace ListSuiteDefinitionsResponse {
319
-
320
- const filterSensitiveLog: (obj: ListSuiteDefinitionsResponse) => any;
321
- }
322
280
  export interface ListSuiteRunsRequest {
323
281
 
324
282
  suiteDefinitionId?: string;
@@ -329,10 +287,6 @@ export interface ListSuiteRunsRequest {
329
287
 
330
288
  nextToken?: string;
331
289
  }
332
- export declare namespace ListSuiteRunsRequest {
333
-
334
- const filterSensitiveLog: (obj: ListSuiteRunsRequest) => any;
335
- }
336
290
 
337
291
  export interface SuiteRunInformation {
338
292
 
@@ -356,36 +310,20 @@ export interface SuiteRunInformation {
356
310
 
357
311
  failed?: number;
358
312
  }
359
- export declare namespace SuiteRunInformation {
360
-
361
- const filterSensitiveLog: (obj: SuiteRunInformation) => any;
362
- }
363
313
  export interface ListSuiteRunsResponse {
364
314
 
365
315
  suiteRunsList?: SuiteRunInformation[];
366
316
 
367
317
  nextToken?: string;
368
318
  }
369
- export declare namespace ListSuiteRunsResponse {
370
-
371
- const filterSensitiveLog: (obj: ListSuiteRunsResponse) => any;
372
- }
373
319
  export interface ListTagsForResourceRequest {
374
320
 
375
321
  resourceArn: string | undefined;
376
322
  }
377
- export declare namespace ListTagsForResourceRequest {
378
-
379
- const filterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
380
- }
381
323
  export interface ListTagsForResourceResponse {
382
324
 
383
325
  tags?: Record<string, string>;
384
326
  }
385
- export declare namespace ListTagsForResourceResponse {
386
-
387
- const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
388
- }
389
327
  export interface StartSuiteRunRequest {
390
328
 
391
329
  suiteDefinitionId: string | undefined;
@@ -396,10 +334,6 @@ export interface StartSuiteRunRequest {
396
334
 
397
335
  tags?: Record<string, string>;
398
336
  }
399
- export declare namespace StartSuiteRunRequest {
400
-
401
- const filterSensitiveLog: (obj: StartSuiteRunRequest) => any;
402
- }
403
337
  export interface StartSuiteRunResponse {
404
338
 
405
339
  suiteRunId?: string;
@@ -408,68 +342,36 @@ export interface StartSuiteRunResponse {
408
342
 
409
343
  createdAt?: Date;
410
344
  }
411
- export declare namespace StartSuiteRunResponse {
412
-
413
- const filterSensitiveLog: (obj: StartSuiteRunResponse) => any;
414
- }
415
345
  export interface StopSuiteRunRequest {
416
346
 
417
347
  suiteDefinitionId: string | undefined;
418
348
 
419
349
  suiteRunId: string | undefined;
420
350
  }
421
- export declare namespace StopSuiteRunRequest {
422
-
423
- const filterSensitiveLog: (obj: StopSuiteRunRequest) => any;
424
- }
425
351
  export interface StopSuiteRunResponse {
426
352
  }
427
- export declare namespace StopSuiteRunResponse {
428
-
429
- const filterSensitiveLog: (obj: StopSuiteRunResponse) => any;
430
- }
431
353
  export interface TagResourceRequest {
432
354
 
433
355
  resourceArn: string | undefined;
434
356
 
435
357
  tags: Record<string, string> | undefined;
436
358
  }
437
- export declare namespace TagResourceRequest {
438
-
439
- const filterSensitiveLog: (obj: TagResourceRequest) => any;
440
- }
441
359
  export interface TagResourceResponse {
442
360
  }
443
- export declare namespace TagResourceResponse {
444
-
445
- const filterSensitiveLog: (obj: TagResourceResponse) => any;
446
- }
447
361
  export interface UntagResourceRequest {
448
362
 
449
363
  resourceArn: string | undefined;
450
364
 
451
365
  tagKeys: string[] | undefined;
452
366
  }
453
- export declare namespace UntagResourceRequest {
454
-
455
- const filterSensitiveLog: (obj: UntagResourceRequest) => any;
456
- }
457
367
  export interface UntagResourceResponse {
458
368
  }
459
- export declare namespace UntagResourceResponse {
460
-
461
- const filterSensitiveLog: (obj: UntagResourceResponse) => any;
462
- }
463
369
  export interface UpdateSuiteDefinitionRequest {
464
370
 
465
371
  suiteDefinitionId: string | undefined;
466
372
 
467
373
  suiteDefinitionConfiguration?: SuiteDefinitionConfiguration;
468
374
  }
469
- export declare namespace UpdateSuiteDefinitionRequest {
470
-
471
- const filterSensitiveLog: (obj: UpdateSuiteDefinitionRequest) => any;
472
- }
473
375
  export interface UpdateSuiteDefinitionResponse {
474
376
 
475
377
  suiteDefinitionId?: string;
@@ -484,7 +386,77 @@ export interface UpdateSuiteDefinitionResponse {
484
386
 
485
387
  lastUpdatedAt?: Date;
486
388
  }
487
- export declare namespace UpdateSuiteDefinitionResponse {
488
-
489
- const filterSensitiveLog: (obj: UpdateSuiteDefinitionResponse) => any;
490
- }
389
+
390
+ export declare const DeviceUnderTestFilterSensitiveLog: (obj: DeviceUnderTest) => any;
391
+
392
+ export declare const SuiteDefinitionConfigurationFilterSensitiveLog: (obj: SuiteDefinitionConfiguration) => any;
393
+
394
+ export declare const CreateSuiteDefinitionRequestFilterSensitiveLog: (obj: CreateSuiteDefinitionRequest) => any;
395
+
396
+ export declare const CreateSuiteDefinitionResponseFilterSensitiveLog: (obj: CreateSuiteDefinitionResponse) => any;
397
+
398
+ export declare const DeleteSuiteDefinitionRequestFilterSensitiveLog: (obj: DeleteSuiteDefinitionRequest) => any;
399
+
400
+ export declare const DeleteSuiteDefinitionResponseFilterSensitiveLog: (obj: DeleteSuiteDefinitionResponse) => any;
401
+
402
+ export declare const GetEndpointRequestFilterSensitiveLog: (obj: GetEndpointRequest) => any;
403
+
404
+ export declare const GetEndpointResponseFilterSensitiveLog: (obj: GetEndpointResponse) => any;
405
+
406
+ export declare const GetSuiteDefinitionRequestFilterSensitiveLog: (obj: GetSuiteDefinitionRequest) => any;
407
+
408
+ export declare const GetSuiteDefinitionResponseFilterSensitiveLog: (obj: GetSuiteDefinitionResponse) => any;
409
+
410
+ export declare const GetSuiteRunRequestFilterSensitiveLog: (obj: GetSuiteRunRequest) => any;
411
+
412
+ export declare const SuiteRunConfigurationFilterSensitiveLog: (obj: SuiteRunConfiguration) => any;
413
+
414
+ export declare const TestCaseScenarioFilterSensitiveLog: (obj: TestCaseScenario) => any;
415
+
416
+ export declare const TestCaseRunFilterSensitiveLog: (obj: TestCaseRun) => any;
417
+
418
+ export declare const GroupResultFilterSensitiveLog: (obj: GroupResult) => any;
419
+
420
+ export declare const TestResultFilterSensitiveLog: (obj: TestResult) => any;
421
+
422
+ export declare const GetSuiteRunResponseFilterSensitiveLog: (obj: GetSuiteRunResponse) => any;
423
+
424
+ export declare const GetSuiteRunReportRequestFilterSensitiveLog: (obj: GetSuiteRunReportRequest) => any;
425
+
426
+ export declare const GetSuiteRunReportResponseFilterSensitiveLog: (obj: GetSuiteRunReportResponse) => any;
427
+
428
+ export declare const ListSuiteDefinitionsRequestFilterSensitiveLog: (obj: ListSuiteDefinitionsRequest) => any;
429
+
430
+ export declare const SuiteDefinitionInformationFilterSensitiveLog: (obj: SuiteDefinitionInformation) => any;
431
+
432
+ export declare const ListSuiteDefinitionsResponseFilterSensitiveLog: (obj: ListSuiteDefinitionsResponse) => any;
433
+
434
+ export declare const ListSuiteRunsRequestFilterSensitiveLog: (obj: ListSuiteRunsRequest) => any;
435
+
436
+ export declare const SuiteRunInformationFilterSensitiveLog: (obj: SuiteRunInformation) => any;
437
+
438
+ export declare const ListSuiteRunsResponseFilterSensitiveLog: (obj: ListSuiteRunsResponse) => any;
439
+
440
+ export declare const ListTagsForResourceRequestFilterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
441
+
442
+ export declare const ListTagsForResourceResponseFilterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
443
+
444
+ export declare const StartSuiteRunRequestFilterSensitiveLog: (obj: StartSuiteRunRequest) => any;
445
+
446
+ export declare const StartSuiteRunResponseFilterSensitiveLog: (obj: StartSuiteRunResponse) => any;
447
+
448
+ export declare const StopSuiteRunRequestFilterSensitiveLog: (obj: StopSuiteRunRequest) => any;
449
+
450
+ export declare const StopSuiteRunResponseFilterSensitiveLog: (obj: StopSuiteRunResponse) => any;
451
+
452
+ export declare const TagResourceRequestFilterSensitiveLog: (obj: TagResourceRequest) => any;
453
+
454
+ export declare const TagResourceResponseFilterSensitiveLog: (obj: TagResourceResponse) => any;
455
+
456
+ export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResourceRequest) => any;
457
+
458
+ export declare const UntagResourceResponseFilterSensitiveLog: (obj: UntagResourceResponse) => any;
459
+
460
+ export declare const UpdateSuiteDefinitionRequestFilterSensitiveLog: (obj: UpdateSuiteDefinitionRequest) => any;
461
+
462
+ export declare const UpdateSuiteDefinitionResponseFilterSensitiveLog: (obj: UpdateSuiteDefinitionResponse) => any;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-iotdeviceadvisor",
3
3
  "description": "AWS SDK for JavaScript Iotdeviceadvisor Client for Node.js, Browser and React Native",
4
- "version": "3.131.0",
4
+ "version": "3.141.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.141.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.141.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",