@aws-sdk/client-drs 3.216.0 → 3.222.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 (31) hide show
  1. package/dist-cjs/Drs.js +45 -0
  2. package/dist-cjs/commands/ReverseReplicationCommand.js +46 -0
  3. package/dist-cjs/commands/StartReplicationCommand.js +46 -0
  4. package/dist-cjs/commands/StopReplicationCommand.js +46 -0
  5. package/dist-cjs/commands/index.js +3 -0
  6. package/dist-cjs/models/models_0.js +75 -3
  7. package/dist-cjs/protocols/Aws_restJson1.js +245 -3
  8. package/dist-es/Drs.js +45 -0
  9. package/dist-es/commands/ReverseReplicationCommand.js +42 -0
  10. package/dist-es/commands/StartReplicationCommand.js +42 -0
  11. package/dist-es/commands/StopReplicationCommand.js +42 -0
  12. package/dist-es/commands/index.js +3 -0
  13. package/dist-es/models/models_0.js +65 -0
  14. package/dist-es/protocols/Aws_restJson1.js +237 -1
  15. package/dist-types/Drs.d.ts +24 -0
  16. package/dist-types/DrsClient.d.ts +5 -2
  17. package/dist-types/commands/ReverseReplicationCommand.d.ts +40 -0
  18. package/dist-types/commands/StartReplicationCommand.d.ts +37 -0
  19. package/dist-types/commands/StopReplicationCommand.d.ts +37 -0
  20. package/dist-types/commands/index.d.ts +3 -0
  21. package/dist-types/models/models_0.d.ts +142 -2
  22. package/dist-types/protocols/Aws_restJson1.d.ts +9 -0
  23. package/dist-types/ts3.4/Drs.d.ts +51 -0
  24. package/dist-types/ts3.4/DrsClient.d.ts +18 -0
  25. package/dist-types/ts3.4/commands/ReverseReplicationCommand.d.ts +38 -0
  26. package/dist-types/ts3.4/commands/StartReplicationCommand.d.ts +37 -0
  27. package/dist-types/ts3.4/commands/StopReplicationCommand.d.ts +37 -0
  28. package/dist-types/ts3.4/commands/index.d.ts +3 -0
  29. package/dist-types/ts3.4/models/models_0.d.ts +88 -0
  30. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +36 -0
  31. package/package.json +29 -28
@@ -135,6 +135,15 @@ export interface LifeCycle {
135
135
  lastSeenByServiceDateTime?: string;
136
136
  lastLaunch?: LifeCycleLastLaunch;
137
137
  }
138
+ export declare enum ReplicationDirection {
139
+ FAILBACK = "FAILBACK",
140
+ FAILOVER = "FAILOVER",
141
+ }
142
+ export interface SourceCloudProperties {
143
+ originAccountID?: string;
144
+ originRegion?: string;
145
+ originAvailabilityZone?: string;
146
+ }
138
147
  export interface Disk {
139
148
  deviceName?: string;
140
149
  bytes?: number;
@@ -184,6 +193,9 @@ export interface SourceServer {
184
193
  lifeCycle?: LifeCycle;
185
194
  sourceProperties?: SourceProperties;
186
195
  stagingArea?: StagingArea;
196
+ sourceCloudProperties?: SourceCloudProperties;
197
+ replicationDirection?: ReplicationDirection | string;
198
+ reversedDirectionSourceServerArn?: string;
187
199
  }
188
200
  export interface CreateExtendedSourceServerResponse {
189
201
  sourceServer?: SourceServer;
@@ -446,12 +458,24 @@ export interface DescribeRecoveryInstancesRequest {
446
458
  export declare enum FailbackReplicationError {
447
459
  AGENT_NOT_SEEN = "AGENT_NOT_SEEN",
448
460
  FAILBACK_CLIENT_NOT_SEEN = "FAILBACK_CLIENT_NOT_SEEN",
461
+ FAILED_GETTING_REPLICATION_STATE = "FAILED_GETTING_REPLICATION_STATE",
462
+ FAILED_TO_ATTACH_STAGING_DISKS = "FAILED_TO_ATTACH_STAGING_DISKS",
463
+ FAILED_TO_AUTHENTICATE_WITH_SERVICE = "FAILED_TO_AUTHENTICATE_WITH_SERVICE",
464
+ FAILED_TO_BOOT_REPLICATION_SERVER = "FAILED_TO_BOOT_REPLICATION_SERVER",
449
465
  FAILED_TO_CONFIGURE_REPLICATION_SOFTWARE = "FAILED_TO_CONFIGURE_REPLICATION_SOFTWARE",
466
+ FAILED_TO_CONNECT_AGENT_TO_REPLICATION_SERVER = "FAILED_TO_CONNECT_AGENT_TO_REPLICATION_SERVER",
467
+ FAILED_TO_CREATE_SECURITY_GROUP = "FAILED_TO_CREATE_SECURITY_GROUP",
468
+ FAILED_TO_CREATE_STAGING_DISKS = "FAILED_TO_CREATE_STAGING_DISKS",
469
+ FAILED_TO_DOWNLOAD_REPLICATION_SOFTWARE = "FAILED_TO_DOWNLOAD_REPLICATION_SOFTWARE",
450
470
  FAILED_TO_DOWNLOAD_REPLICATION_SOFTWARE_TO_FAILBACK_CLIENT = "FAILED_TO_DOWNLOAD_REPLICATION_SOFTWARE_TO_FAILBACK_CLIENT",
451
471
  FAILED_TO_ESTABLISH_AGENT_REPLICATOR_SOFTWARE_COMMUNICATION = "FAILED_TO_ESTABLISH_AGENT_REPLICATOR_SOFTWARE_COMMUNICATION",
452
472
  FAILED_TO_ESTABLISH_RECOVERY_INSTANCE_COMMUNICATION = "FAILED_TO_ESTABLISH_RECOVERY_INSTANCE_COMMUNICATION",
473
+ FAILED_TO_LAUNCH_REPLICATION_SERVER = "FAILED_TO_LAUNCH_REPLICATION_SERVER",
453
474
  FAILED_TO_PAIR_AGENT_WITH_REPLICATION_SOFTWARE = "FAILED_TO_PAIR_AGENT_WITH_REPLICATION_SOFTWARE",
475
+ FAILED_TO_PAIR_REPLICATION_SERVER_WITH_AGENT = "FAILED_TO_PAIR_REPLICATION_SERVER_WITH_AGENT",
476
+ FAILED_TO_START_DATA_TRANSFER = "FAILED_TO_START_DATA_TRANSFER",
454
477
  NOT_CONVERGING = "NOT_CONVERGING",
478
+ SNAPSHOTS_FAILURE = "SNAPSHOTS_FAILURE",
455
479
  UNSTABLE_NETWORK = "UNSTABLE_NETWORK",
456
480
  }
457
481
  export interface RecoveryInstanceDataReplicationError {
@@ -459,13 +483,24 @@ export interface RecoveryInstanceDataReplicationError {
459
483
  rawError?: string;
460
484
  }
461
485
  export declare enum RecoveryInstanceDataReplicationInitiationStepName {
486
+ ATTACH_STAGING_DISKS = "ATTACH_STAGING_DISKS",
487
+ AUTHENTICATE_WITH_SERVICE = "AUTHENTICATE_WITH_SERVICE",
488
+ BOOT_REPLICATION_SERVER = "BOOT_REPLICATION_SERVER",
462
489
  COMPLETE_VOLUME_MAPPING = "COMPLETE_VOLUME_MAPPING",
463
490
  CONFIGURE_REPLICATION_SOFTWARE = "CONFIGURE_REPLICATION_SOFTWARE",
491
+ CONNECT_AGENT_TO_REPLICATION_SERVER = "CONNECT_AGENT_TO_REPLICATION_SERVER",
492
+ CREATE_SECURITY_GROUP = "CREATE_SECURITY_GROUP",
493
+ CREATE_STAGING_DISKS = "CREATE_STAGING_DISKS",
494
+ DOWNLOAD_REPLICATION_SOFTWARE = "DOWNLOAD_REPLICATION_SOFTWARE",
464
495
  DOWNLOAD_REPLICATION_SOFTWARE_TO_FAILBACK_CLIENT = "DOWNLOAD_REPLICATION_SOFTWARE_TO_FAILBACK_CLIENT",
465
496
  ESTABLISH_AGENT_REPLICATOR_SOFTWARE_COMMUNICATION = "ESTABLISH_AGENT_REPLICATOR_SOFTWARE_COMMUNICATION",
466
497
  ESTABLISH_RECOVERY_INSTANCE_COMMUNICATION = "ESTABLISH_RECOVERY_INSTANCE_COMMUNICATION",
498
+ LAUNCH_REPLICATION_SERVER = "LAUNCH_REPLICATION_SERVER",
467
499
  LINK_FAILBACK_CLIENT_WITH_RECOVERY_INSTANCE = "LINK_FAILBACK_CLIENT_WITH_RECOVERY_INSTANCE",
468
500
  PAIR_AGENT_WITH_REPLICATION_SOFTWARE = "PAIR_AGENT_WITH_REPLICATION_SOFTWARE",
501
+ PAIR_REPLICATION_SERVER_WITH_AGENT = "PAIR_REPLICATION_SERVER_WITH_AGENT",
502
+ START_DATA_TRANSFER = "START_DATA_TRANSFER",
503
+ WAIT = "WAIT",
469
504
  }
470
505
  export declare enum RecoveryInstanceDataReplicationInitiationStepStatus {
471
506
  FAILED = "FAILED",
@@ -489,7 +524,9 @@ export declare enum RecoveryInstanceDataReplicationState {
489
524
  DISCONNECTED = "DISCONNECTED",
490
525
  INITIAL_SYNC = "INITIAL_SYNC",
491
526
  INITIATING = "INITIATING",
527
+ NOT_STARTED = "NOT_STARTED",
492
528
  PAUSED = "PAUSED",
529
+ REPLICATION_STATE_NOT_AVAILABLE = "REPLICATION_STATE_NOT_AVAILABLE",
493
530
  RESCAN = "RESCAN",
494
531
  STALLED = "STALLED",
495
532
  STOPPED = "STOPPED",
@@ -518,10 +555,16 @@ export declare enum EC2InstanceState {
518
555
  STOPPING = "STOPPING",
519
556
  TERMINATED = "TERMINATED",
520
557
  }
558
+ export declare enum FailbackLaunchType {
559
+ DRILL = "DRILL",
560
+ RECOVERY = "RECOVERY",
561
+ }
521
562
  export declare enum FailbackState {
522
563
  FAILBACK_COMPLETED = "FAILBACK_COMPLETED",
523
564
  FAILBACK_ERROR = "FAILBACK_ERROR",
524
565
  FAILBACK_IN_PROGRESS = "FAILBACK_IN_PROGRESS",
566
+ FAILBACK_LAUNCH_STATE_NOT_AVAILABLE = "FAILBACK_LAUNCH_STATE_NOT_AVAILABLE",
567
+ FAILBACK_NOT_READY_FOR_LAUNCH = "FAILBACK_NOT_READY_FOR_LAUNCH",
525
568
  FAILBACK_NOT_STARTED = "FAILBACK_NOT_STARTED",
526
569
  FAILBACK_READY_FOR_LAUNCH = "FAILBACK_READY_FOR_LAUNCH",
527
570
  }
@@ -535,6 +578,11 @@ export interface RecoveryInstanceFailback {
535
578
  failbackToOriginalServer?: boolean;
536
579
  firstByteDateTime?: string;
537
580
  elapsedReplicationDuration?: string;
581
+ failbackLaunchType?: FailbackLaunchType | string;
582
+ }
583
+ export declare enum OriginEnvironment {
584
+ AWS = "AWS",
585
+ ON_PREMISES = "ON_PREMISES",
538
586
  }
539
587
  export interface RecoveryInstanceDisk {
540
588
  internalDeviceName?: string;
@@ -563,6 +611,7 @@ export interface RecoveryInstance {
563
611
  recoveryInstanceProperties?: RecoveryInstanceProperties;
564
612
  pointInTimeSnapshotDateTime?: string;
565
613
  isDrill?: boolean;
614
+ originEnvironment?: OriginEnvironment | string;
566
615
  }
567
616
  export interface DescribeRecoveryInstancesResponse {
568
617
  nextToken?: string;
@@ -662,6 +711,12 @@ export interface GetFailbackReplicationConfigurationResponse {
662
711
  bandwidthThrottling?: number;
663
712
  usePrivateIP?: boolean;
664
713
  }
714
+ export interface ReverseReplicationRequest {
715
+ recoveryInstanceID: string | undefined;
716
+ }
717
+ export interface ReverseReplicationResponse {
718
+ reversedDirectionSourceServerArn?: string;
719
+ }
665
720
  export interface StartFailbackLaunchRequest {
666
721
  recoveryInstanceIDs: string[] | undefined;
667
722
  tags?: Record<string, string>;
@@ -788,6 +843,18 @@ export interface StartRecoveryRequest {
788
843
  export interface StartRecoveryResponse {
789
844
  job?: Job;
790
845
  }
846
+ export interface StartReplicationRequest {
847
+ sourceServerID: string | undefined;
848
+ }
849
+ export interface StartReplicationResponse {
850
+ sourceServer?: SourceServer;
851
+ }
852
+ export interface StopReplicationRequest {
853
+ sourceServerID: string | undefined;
854
+ }
855
+ export interface StopReplicationResponse {
856
+ sourceServer?: SourceServer;
857
+ }
791
858
  export interface UpdateLaunchConfigurationRequest {
792
859
  sourceServerID: string | undefined;
793
860
  name?: string;
@@ -857,6 +924,9 @@ export declare const LifeCycleLastLaunchFilterSensitiveLog: (
857
924
  obj: LifeCycleLastLaunch
858
925
  ) => any;
859
926
  export declare const LifeCycleFilterSensitiveLog: (obj: LifeCycle) => any;
927
+ export declare const SourceCloudPropertiesFilterSensitiveLog: (
928
+ obj: SourceCloudProperties
929
+ ) => any;
860
930
  export declare const DiskFilterSensitiveLog: (obj: Disk) => any;
861
931
  export declare const IdentificationHintsFilterSensitiveLog: (
862
932
  obj: IdentificationHints
@@ -1031,6 +1101,12 @@ export declare const GetFailbackReplicationConfigurationRequestFilterSensitiveLo
1031
1101
  export declare const GetFailbackReplicationConfigurationResponseFilterSensitiveLog: (
1032
1102
  obj: GetFailbackReplicationConfigurationResponse
1033
1103
  ) => any;
1104
+ export declare const ReverseReplicationRequestFilterSensitiveLog: (
1105
+ obj: ReverseReplicationRequest
1106
+ ) => any;
1107
+ export declare const ReverseReplicationResponseFilterSensitiveLog: (
1108
+ obj: ReverseReplicationResponse
1109
+ ) => any;
1034
1110
  export declare const StartFailbackLaunchRequestFilterSensitiveLog: (
1035
1111
  obj: StartFailbackLaunchRequest
1036
1112
  ) => any;
@@ -1080,6 +1156,18 @@ export declare const StartRecoveryRequestFilterSensitiveLog: (
1080
1156
  export declare const StartRecoveryResponseFilterSensitiveLog: (
1081
1157
  obj: StartRecoveryResponse
1082
1158
  ) => any;
1159
+ export declare const StartReplicationRequestFilterSensitiveLog: (
1160
+ obj: StartReplicationRequest
1161
+ ) => any;
1162
+ export declare const StartReplicationResponseFilterSensitiveLog: (
1163
+ obj: StartReplicationResponse
1164
+ ) => any;
1165
+ export declare const StopReplicationRequestFilterSensitiveLog: (
1166
+ obj: StopReplicationRequest
1167
+ ) => any;
1168
+ export declare const StopReplicationResponseFilterSensitiveLog: (
1169
+ obj: StopReplicationResponse
1170
+ ) => any;
1083
1171
  export declare const UpdateLaunchConfigurationRequestFilterSensitiveLog: (
1084
1172
  obj: UpdateLaunchConfigurationRequest
1085
1173
  ) => any;
@@ -91,6 +91,10 @@ import {
91
91
  RetryDataReplicationCommandInput,
92
92
  RetryDataReplicationCommandOutput,
93
93
  } from "../commands/RetryDataReplicationCommand";
94
+ import {
95
+ ReverseReplicationCommandInput,
96
+ ReverseReplicationCommandOutput,
97
+ } from "../commands/ReverseReplicationCommand";
94
98
  import {
95
99
  StartFailbackLaunchCommandInput,
96
100
  StartFailbackLaunchCommandOutput,
@@ -99,10 +103,18 @@ import {
99
103
  StartRecoveryCommandInput,
100
104
  StartRecoveryCommandOutput,
101
105
  } from "../commands/StartRecoveryCommand";
106
+ import {
107
+ StartReplicationCommandInput,
108
+ StartReplicationCommandOutput,
109
+ } from "../commands/StartReplicationCommand";
102
110
  import {
103
111
  StopFailbackCommandInput,
104
112
  StopFailbackCommandOutput,
105
113
  } from "../commands/StopFailbackCommand";
114
+ import {
115
+ StopReplicationCommandInput,
116
+ StopReplicationCommandOutput,
117
+ } from "../commands/StopReplicationCommand";
106
118
  import {
107
119
  TagResourceCommandInput,
108
120
  TagResourceCommandOutput,
@@ -219,6 +231,10 @@ export declare const serializeAws_restJson1RetryDataReplicationCommand: (
219
231
  input: RetryDataReplicationCommandInput,
220
232
  context: __SerdeContext
221
233
  ) => Promise<__HttpRequest>;
234
+ export declare const serializeAws_restJson1ReverseReplicationCommand: (
235
+ input: ReverseReplicationCommandInput,
236
+ context: __SerdeContext
237
+ ) => Promise<__HttpRequest>;
222
238
  export declare const serializeAws_restJson1StartFailbackLaunchCommand: (
223
239
  input: StartFailbackLaunchCommandInput,
224
240
  context: __SerdeContext
@@ -227,10 +243,18 @@ export declare const serializeAws_restJson1StartRecoveryCommand: (
227
243
  input: StartRecoveryCommandInput,
228
244
  context: __SerdeContext
229
245
  ) => Promise<__HttpRequest>;
246
+ export declare const serializeAws_restJson1StartReplicationCommand: (
247
+ input: StartReplicationCommandInput,
248
+ context: __SerdeContext
249
+ ) => Promise<__HttpRequest>;
230
250
  export declare const serializeAws_restJson1StopFailbackCommand: (
231
251
  input: StopFailbackCommandInput,
232
252
  context: __SerdeContext
233
253
  ) => Promise<__HttpRequest>;
254
+ export declare const serializeAws_restJson1StopReplicationCommand: (
255
+ input: StopReplicationCommandInput,
256
+ context: __SerdeContext
257
+ ) => Promise<__HttpRequest>;
234
258
  export declare const serializeAws_restJson1TagResourceCommand: (
235
259
  input: TagResourceCommandInput,
236
260
  context: __SerdeContext
@@ -347,6 +371,10 @@ export declare const deserializeAws_restJson1RetryDataReplicationCommand: (
347
371
  output: __HttpResponse,
348
372
  context: __SerdeContext
349
373
  ) => Promise<RetryDataReplicationCommandOutput>;
374
+ export declare const deserializeAws_restJson1ReverseReplicationCommand: (
375
+ output: __HttpResponse,
376
+ context: __SerdeContext
377
+ ) => Promise<ReverseReplicationCommandOutput>;
350
378
  export declare const deserializeAws_restJson1StartFailbackLaunchCommand: (
351
379
  output: __HttpResponse,
352
380
  context: __SerdeContext
@@ -355,10 +383,18 @@ export declare const deserializeAws_restJson1StartRecoveryCommand: (
355
383
  output: __HttpResponse,
356
384
  context: __SerdeContext
357
385
  ) => Promise<StartRecoveryCommandOutput>;
386
+ export declare const deserializeAws_restJson1StartReplicationCommand: (
387
+ output: __HttpResponse,
388
+ context: __SerdeContext
389
+ ) => Promise<StartReplicationCommandOutput>;
358
390
  export declare const deserializeAws_restJson1StopFailbackCommand: (
359
391
  output: __HttpResponse,
360
392
  context: __SerdeContext
361
393
  ) => Promise<StopFailbackCommandOutput>;
394
+ export declare const deserializeAws_restJson1StopReplicationCommand: (
395
+ output: __HttpResponse,
396
+ context: __SerdeContext
397
+ ) => Promise<StopReplicationCommandOutput>;
362
398
  export declare const deserializeAws_restJson1TagResourceCommand: (
363
399
  output: __HttpResponse,
364
400
  context: __SerdeContext
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-drs",
3
3
  "description": "AWS SDK for JavaScript Drs Client for Node.js, Browser and React Native",
4
- "version": "3.216.0",
4
+ "version": "3.222.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",
@@ -19,36 +19,37 @@
19
19
  "dependencies": {
20
20
  "@aws-crypto/sha256-browser": "2.0.0",
21
21
  "@aws-crypto/sha256-js": "2.0.0",
22
- "@aws-sdk/client-sts": "3.216.0",
23
- "@aws-sdk/config-resolver": "3.215.0",
24
- "@aws-sdk/credential-provider-node": "3.216.0",
25
- "@aws-sdk/fetch-http-handler": "3.215.0",
26
- "@aws-sdk/hash-node": "3.215.0",
27
- "@aws-sdk/invalid-dependency": "3.215.0",
28
- "@aws-sdk/middleware-content-length": "3.215.0",
29
- "@aws-sdk/middleware-endpoint": "3.215.0",
30
- "@aws-sdk/middleware-host-header": "3.215.0",
31
- "@aws-sdk/middleware-logger": "3.215.0",
32
- "@aws-sdk/middleware-recursion-detection": "3.215.0",
33
- "@aws-sdk/middleware-retry": "3.215.0",
34
- "@aws-sdk/middleware-serde": "3.215.0",
35
- "@aws-sdk/middleware-signing": "3.215.0",
36
- "@aws-sdk/middleware-stack": "3.215.0",
37
- "@aws-sdk/middleware-user-agent": "3.215.0",
38
- "@aws-sdk/node-config-provider": "3.215.0",
39
- "@aws-sdk/node-http-handler": "3.215.0",
40
- "@aws-sdk/protocol-http": "3.215.0",
41
- "@aws-sdk/smithy-client": "3.215.0",
42
- "@aws-sdk/types": "3.215.0",
43
- "@aws-sdk/url-parser": "3.215.0",
22
+ "@aws-sdk/client-sts": "3.222.0",
23
+ "@aws-sdk/config-resolver": "3.222.0",
24
+ "@aws-sdk/credential-provider-node": "3.222.0",
25
+ "@aws-sdk/fetch-http-handler": "3.222.0",
26
+ "@aws-sdk/hash-node": "3.222.0",
27
+ "@aws-sdk/invalid-dependency": "3.222.0",
28
+ "@aws-sdk/middleware-content-length": "3.222.0",
29
+ "@aws-sdk/middleware-endpoint": "3.222.0",
30
+ "@aws-sdk/middleware-host-header": "3.222.0",
31
+ "@aws-sdk/middleware-logger": "3.222.0",
32
+ "@aws-sdk/middleware-recursion-detection": "3.222.0",
33
+ "@aws-sdk/middleware-retry": "3.222.0",
34
+ "@aws-sdk/middleware-serde": "3.222.0",
35
+ "@aws-sdk/middleware-signing": "3.222.0",
36
+ "@aws-sdk/middleware-stack": "3.222.0",
37
+ "@aws-sdk/middleware-user-agent": "3.222.0",
38
+ "@aws-sdk/node-config-provider": "3.222.0",
39
+ "@aws-sdk/node-http-handler": "3.222.0",
40
+ "@aws-sdk/protocol-http": "3.222.0",
41
+ "@aws-sdk/smithy-client": "3.222.0",
42
+ "@aws-sdk/types": "3.222.0",
43
+ "@aws-sdk/url-parser": "3.222.0",
44
44
  "@aws-sdk/util-base64": "3.208.0",
45
45
  "@aws-sdk/util-body-length-browser": "3.188.0",
46
46
  "@aws-sdk/util-body-length-node": "3.208.0",
47
- "@aws-sdk/util-defaults-mode-browser": "3.215.0",
48
- "@aws-sdk/util-defaults-mode-node": "3.215.0",
49
- "@aws-sdk/util-endpoints": "3.216.0",
50
- "@aws-sdk/util-user-agent-browser": "3.215.0",
51
- "@aws-sdk/util-user-agent-node": "3.215.0",
47
+ "@aws-sdk/util-defaults-mode-browser": "3.222.0",
48
+ "@aws-sdk/util-defaults-mode-node": "3.222.0",
49
+ "@aws-sdk/util-endpoints": "3.222.0",
50
+ "@aws-sdk/util-retry": "3.222.0",
51
+ "@aws-sdk/util-user-agent-browser": "3.222.0",
52
+ "@aws-sdk/util-user-agent-node": "3.222.0",
52
53
  "@aws-sdk/util-utf8-browser": "3.188.0",
53
54
  "@aws-sdk/util-utf8-node": "3.208.0",
54
55
  "tslib": "^2.3.1"