@aws-sdk/client-drs 3.470.0 → 3.474.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.
@@ -2150,6 +2150,7 @@ const de_DisconnectSourceServerCommand = async (output, context) => {
2150
2150
  });
2151
2151
  const data = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.expectObject)(await parseBody(output.body, context)), "body");
2152
2152
  const doc = (0, smithy_client_1.take)(data, {
2153
+ agentVersion: smithy_client_1.expectString,
2153
2154
  arn: smithy_client_1.expectString,
2154
2155
  dataReplicationInfo: smithy_client_1._json,
2155
2156
  lastLaunchResult: smithy_client_1.expectString,
@@ -2703,6 +2704,7 @@ const de_RetryDataReplicationCommand = async (output, context) => {
2703
2704
  });
2704
2705
  const data = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.expectObject)(await parseBody(output.body, context)), "body");
2705
2706
  const doc = (0, smithy_client_1.take)(data, {
2707
+ agentVersion: smithy_client_1.expectString,
2706
2708
  arn: smithy_client_1.expectString,
2707
2709
  dataReplicationInfo: smithy_client_1._json,
2708
2710
  lastLaunchResult: smithy_client_1.expectString,
@@ -2075,6 +2075,7 @@ export const de_DisconnectSourceServerCommand = async (output, context) => {
2075
2075
  });
2076
2076
  const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
2077
2077
  const doc = take(data, {
2078
+ agentVersion: __expectString,
2078
2079
  arn: __expectString,
2079
2080
  dataReplicationInfo: _json,
2080
2081
  lastLaunchResult: __expectString,
@@ -2617,6 +2618,7 @@ export const de_RetryDataReplicationCommand = async (output, context) => {
2617
2618
  });
2618
2619
  const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
2619
2620
  const doc = take(data, {
2621
+ agentVersion: __expectString,
2620
2622
  arn: __expectString,
2621
2623
  dataReplicationInfo: _json,
2622
2624
  lastLaunchResult: __expectString,
@@ -140,6 +140,7 @@ export interface CreateExtendedSourceServerCommandOutput extends CreateExtendedS
140
140
  * // replicationDirection: "STRING_VALUE",
141
141
  * // reversedDirectionSourceServerArn: "STRING_VALUE",
142
142
  * // sourceNetworkID: "STRING_VALUE",
143
+ * // agentVersion: "STRING_VALUE",
143
144
  * // },
144
145
  * // };
145
146
  *
@@ -136,6 +136,7 @@ export interface DescribeRecoveryInstancesCommandOutput extends DescribeRecovery
136
136
  * // isDrill: true || false,
137
137
  * // originEnvironment: "STRING_VALUE",
138
138
  * // originAvailabilityZone: "STRING_VALUE",
139
+ * // agentVersion: "STRING_VALUE",
139
140
  * // },
140
141
  * // ],
141
142
  * // };
@@ -148,6 +148,7 @@ export interface DescribeSourceServersCommandOutput extends DescribeSourceServer
148
148
  * // replicationDirection: "STRING_VALUE",
149
149
  * // reversedDirectionSourceServerArn: "STRING_VALUE",
150
150
  * // sourceNetworkID: "STRING_VALUE",
151
+ * // agentVersion: "STRING_VALUE",
151
152
  * // },
152
153
  * // ],
153
154
  * // nextToken: "STRING_VALUE",
@@ -136,6 +136,7 @@ export interface DisconnectSourceServerCommandOutput extends SourceServer, __Met
136
136
  * // replicationDirection: "STRING_VALUE",
137
137
  * // reversedDirectionSourceServerArn: "STRING_VALUE",
138
138
  * // sourceNetworkID: "STRING_VALUE",
139
+ * // agentVersion: "STRING_VALUE",
139
140
  * // };
140
141
  *
141
142
  * ```
@@ -140,6 +140,7 @@ export interface RetryDataReplicationCommandOutput extends SourceServer, __Metad
140
140
  * // replicationDirection: "STRING_VALUE",
141
141
  * // reversedDirectionSourceServerArn: "STRING_VALUE",
142
142
  * // sourceNetworkID: "STRING_VALUE",
143
+ * // agentVersion: "STRING_VALUE",
143
144
  * // };
144
145
  *
145
146
  * ```
@@ -137,6 +137,7 @@ export interface StartReplicationCommandOutput extends StartReplicationResponse,
137
137
  * // replicationDirection: "STRING_VALUE",
138
138
  * // reversedDirectionSourceServerArn: "STRING_VALUE",
139
139
  * // sourceNetworkID: "STRING_VALUE",
140
+ * // agentVersion: "STRING_VALUE",
140
141
  * // },
141
142
  * // };
142
143
  *
@@ -137,6 +137,7 @@ export interface StopReplicationCommandOutput extends StopReplicationResponse, _
137
137
  * // replicationDirection: "STRING_VALUE",
138
138
  * // reversedDirectionSourceServerArn: "STRING_VALUE",
139
139
  * // sourceNetworkID: "STRING_VALUE",
140
+ * // agentVersion: "STRING_VALUE",
140
141
  * // },
141
142
  * // };
142
143
  *
@@ -1227,6 +1227,11 @@ export interface SourceServer {
1227
1227
  * <p>ID of the Source Network which is protecting this Source Server's network.</p>
1228
1228
  */
1229
1229
  sourceNetworkID?: string;
1230
+ /**
1231
+ * @public
1232
+ * <p>The version of the DRS agent installed on the source server</p>
1233
+ */
1234
+ agentVersion?: string;
1230
1235
  }
1231
1236
  /**
1232
1237
  * @public
@@ -2567,6 +2572,11 @@ export interface RecoveryInstance {
2567
2572
  * <p>AWS availability zone associated with the recovery instance.</p>
2568
2573
  */
2569
2574
  originAvailabilityZone?: string;
2575
+ /**
2576
+ * @public
2577
+ * <p>The version of the DRS agent installed on the recovery instance</p>
2578
+ */
2579
+ agentVersion?: string;
2570
2580
  }
2571
2581
  /**
2572
2582
  * @public
@@ -420,6 +420,7 @@ export interface SourceServer {
420
420
  replicationDirection?: ReplicationDirection;
421
421
  reversedDirectionSourceServerArn?: string;
422
422
  sourceNetworkID?: string;
423
+ agentVersion?: string;
423
424
  }
424
425
  export interface CreateExtendedSourceServerResponse {
425
426
  sourceServer?: SourceServer;
@@ -859,6 +860,7 @@ export interface RecoveryInstance {
859
860
  isDrill?: boolean;
860
861
  originEnvironment?: OriginEnvironment;
861
862
  originAvailabilityZone?: string;
863
+ agentVersion?: string;
862
864
  }
863
865
  export interface DescribeRecoveryInstancesResponse {
864
866
  nextToken?: string;
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.470.0",
4
+ "version": "3.474.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",
@@ -20,9 +20,9 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "3.0.0",
22
22
  "@aws-crypto/sha256-js": "3.0.0",
23
- "@aws-sdk/client-sts": "3.470.0",
24
- "@aws-sdk/core": "3.468.0",
25
- "@aws-sdk/credential-provider-node": "3.470.0",
23
+ "@aws-sdk/client-sts": "3.474.0",
24
+ "@aws-sdk/core": "3.474.0",
25
+ "@aws-sdk/credential-provider-node": "3.474.0",
26
26
  "@aws-sdk/middleware-host-header": "3.468.0",
27
27
  "@aws-sdk/middleware-logger": "3.468.0",
28
28
  "@aws-sdk/middleware-recursion-detection": "3.468.0",