@aws-sdk/client-drs 3.325.0 → 3.327.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 (40) hide show
  1. package/dist-types/commands/CreateExtendedSourceServerCommand.d.ts +106 -0
  2. package/dist-types/commands/CreateLaunchConfigurationTemplateCommand.d.ts +19 -0
  3. package/dist-types/commands/CreateReplicationConfigurationTemplateCommand.d.ts +36 -0
  4. package/dist-types/commands/DeleteJobCommand.d.ts +4 -0
  5. package/dist-types/commands/DeleteLaunchConfigurationTemplateCommand.d.ts +4 -0
  6. package/dist-types/commands/DeleteRecoveryInstanceCommand.d.ts +4 -0
  7. package/dist-types/commands/DeleteReplicationConfigurationTemplateCommand.d.ts +4 -0
  8. package/dist-types/commands/DeleteSourceServerCommand.d.ts +4 -0
  9. package/dist-types/commands/DescribeJobLogItemsCommand.d.ts +31 -0
  10. package/dist-types/commands/DescribeJobsCommand.d.ts +27 -0
  11. package/dist-types/commands/DescribeLaunchConfigurationTemplatesCommand.d.ts +22 -0
  12. package/dist-types/commands/DescribeRecoveryInstancesCommand.d.ts +98 -0
  13. package/dist-types/commands/DescribeRecoverySnapshotsCommand.d.ts +17 -0
  14. package/dist-types/commands/DescribeReplicationConfigurationTemplatesCommand.d.ts +41 -0
  15. package/dist-types/commands/DescribeSourceServersCommand.d.ts +109 -0
  16. package/dist-types/commands/DisconnectRecoveryInstanceCommand.d.ts +4 -0
  17. package/dist-types/commands/DisconnectSourceServerCommand.d.ts +104 -0
  18. package/dist-types/commands/GetFailbackReplicationConfigurationCommand.d.ts +9 -0
  19. package/dist-types/commands/GetLaunchConfigurationCommand.d.ts +15 -0
  20. package/dist-types/commands/GetReplicationConfigurationCommand.d.ts +43 -0
  21. package/dist-types/commands/InitializeServiceCommand.d.ts +4 -0
  22. package/dist-types/commands/ListExtensibleSourceServersCommand.d.ts +15 -0
  23. package/dist-types/commands/ListStagingAccountsCommand.d.ts +11 -0
  24. package/dist-types/commands/ListTagsForResourceCommand.d.ts +8 -0
  25. package/dist-types/commands/RetryDataReplicationCommand.d.ts +104 -0
  26. package/dist-types/commands/ReverseReplicationCommand.d.ts +6 -0
  27. package/dist-types/commands/StartFailbackLaunchCommand.d.ts +24 -0
  28. package/dist-types/commands/StartRecoveryCommand.d.ts +24 -0
  29. package/dist-types/commands/StartReplicationCommand.d.ts +106 -0
  30. package/dist-types/commands/StopFailbackCommand.d.ts +4 -0
  31. package/dist-types/commands/StopReplicationCommand.d.ts +106 -0
  32. package/dist-types/commands/TagResourceCommand.d.ts +4 -0
  33. package/dist-types/commands/TerminateRecoveryInstancesCommand.d.ts +24 -0
  34. package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
  35. package/dist-types/commands/UpdateFailbackReplicationConfigurationCommand.d.ts +4 -0
  36. package/dist-types/commands/UpdateLaunchConfigurationCommand.d.ts +15 -0
  37. package/dist-types/commands/UpdateLaunchConfigurationTemplateCommand.d.ts +19 -0
  38. package/dist-types/commands/UpdateReplicationConfigurationCommand.d.ts +43 -0
  39. package/dist-types/commands/UpdateReplicationConfigurationTemplateCommand.d.ts +36 -0
  40. package/package.json +7 -7
@@ -40,6 +40,28 @@ export interface StartRecoveryCommandOutput extends StartRecoveryResponse, __Met
40
40
  * };
41
41
  * const command = new StartRecoveryCommand(input);
42
42
  * const response = await client.send(command);
43
+ * // { // StartRecoveryResponse
44
+ * // job: { // Job
45
+ * // jobID: "STRING_VALUE", // required
46
+ * // arn: "STRING_VALUE",
47
+ * // type: "STRING_VALUE",
48
+ * // initiatedBy: "STRING_VALUE",
49
+ * // creationDateTime: "STRING_VALUE",
50
+ * // endDateTime: "STRING_VALUE",
51
+ * // status: "STRING_VALUE",
52
+ * // participatingServers: [ // ParticipatingServers
53
+ * // { // ParticipatingServer
54
+ * // sourceServerID: "STRING_VALUE",
55
+ * // recoveryInstanceID: "STRING_VALUE",
56
+ * // launchStatus: "STRING_VALUE",
57
+ * // },
58
+ * // ],
59
+ * // tags: { // TagsMap
60
+ * // "<keys>": "STRING_VALUE",
61
+ * // },
62
+ * // },
63
+ * // };
64
+ *
43
65
  * ```
44
66
  *
45
67
  * @param StartRecoveryCommandInput - {@link StartRecoveryCommandInput}
@@ -63,6 +85,8 @@ export interface StartRecoveryCommandOutput extends StartRecoveryResponse, __Met
63
85
  * @throws {@link UninitializedAccountException} (client fault)
64
86
  * <p>The account performing the request has not been initialized.</p>
65
87
  *
88
+ * @throws {@link DrsServiceException}
89
+ * <p>Base exception class for all service exceptions from Drs service.</p>
66
90
  *
67
91
  */
68
92
  export declare class StartRecoveryCommand extends $Command<StartRecoveryCommandInput, StartRecoveryCommandOutput, DrsClientResolvedConfig> {
@@ -31,6 +31,110 @@ export interface StartReplicationCommandOutput extends StartReplicationResponse,
31
31
  * };
32
32
  * const command = new StartReplicationCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // { // StartReplicationResponse
35
+ * // sourceServer: { // SourceServer
36
+ * // sourceServerID: "STRING_VALUE",
37
+ * // arn: "STRING_VALUE",
38
+ * // tags: { // TagsMap
39
+ * // "<keys>": "STRING_VALUE",
40
+ * // },
41
+ * // recoveryInstanceId: "STRING_VALUE",
42
+ * // lastLaunchResult: "STRING_VALUE",
43
+ * // dataReplicationInfo: { // DataReplicationInfo
44
+ * // lagDuration: "STRING_VALUE",
45
+ * // etaDateTime: "STRING_VALUE",
46
+ * // replicatedDisks: [ // DataReplicationInfoReplicatedDisks
47
+ * // { // DataReplicationInfoReplicatedDisk
48
+ * // deviceName: "STRING_VALUE",
49
+ * // totalStorageBytes: Number("long"),
50
+ * // replicatedStorageBytes: Number("long"),
51
+ * // rescannedStorageBytes: Number("long"),
52
+ * // backloggedStorageBytes: Number("long"),
53
+ * // },
54
+ * // ],
55
+ * // dataReplicationState: "STRING_VALUE",
56
+ * // dataReplicationInitiation: { // DataReplicationInitiation
57
+ * // startDateTime: "STRING_VALUE",
58
+ * // nextAttemptDateTime: "STRING_VALUE",
59
+ * // steps: [ // DataReplicationInitiationSteps
60
+ * // { // DataReplicationInitiationStep
61
+ * // name: "STRING_VALUE",
62
+ * // status: "STRING_VALUE",
63
+ * // },
64
+ * // ],
65
+ * // },
66
+ * // dataReplicationError: { // DataReplicationError
67
+ * // error: "STRING_VALUE",
68
+ * // rawError: "STRING_VALUE",
69
+ * // },
70
+ * // stagingAvailabilityZone: "STRING_VALUE",
71
+ * // },
72
+ * // lifeCycle: { // LifeCycle
73
+ * // addedToServiceDateTime: "STRING_VALUE",
74
+ * // firstByteDateTime: "STRING_VALUE",
75
+ * // elapsedReplicationDuration: "STRING_VALUE",
76
+ * // lastSeenByServiceDateTime: "STRING_VALUE",
77
+ * // lastLaunch: { // LifeCycleLastLaunch
78
+ * // initiated: { // LifeCycleLastLaunchInitiated
79
+ * // apiCallDateTime: "STRING_VALUE",
80
+ * // jobID: "STRING_VALUE",
81
+ * // type: "STRING_VALUE",
82
+ * // },
83
+ * // status: "STRING_VALUE",
84
+ * // },
85
+ * // },
86
+ * // sourceProperties: { // SourceProperties
87
+ * // lastUpdatedDateTime: "STRING_VALUE",
88
+ * // recommendedInstanceType: "STRING_VALUE",
89
+ * // identificationHints: { // IdentificationHints
90
+ * // fqdn: "STRING_VALUE",
91
+ * // hostname: "STRING_VALUE",
92
+ * // vmWareUuid: "STRING_VALUE",
93
+ * // awsInstanceID: "STRING_VALUE",
94
+ * // },
95
+ * // networkInterfaces: [ // NetworkInterfaces
96
+ * // { // NetworkInterface
97
+ * // macAddress: "STRING_VALUE",
98
+ * // ips: [ // IPsList
99
+ * // "STRING_VALUE",
100
+ * // ],
101
+ * // isPrimary: true || false,
102
+ * // },
103
+ * // ],
104
+ * // disks: [ // Disks
105
+ * // { // Disk
106
+ * // deviceName: "STRING_VALUE",
107
+ * // bytes: Number("long"),
108
+ * // },
109
+ * // ],
110
+ * // cpus: [ // Cpus
111
+ * // { // CPU
112
+ * // cores: Number("long"),
113
+ * // modelName: "STRING_VALUE",
114
+ * // },
115
+ * // ],
116
+ * // ramBytes: Number("long"),
117
+ * // os: { // OS
118
+ * // fullString: "STRING_VALUE",
119
+ * // },
120
+ * // supportsNitroInstances: true || false,
121
+ * // },
122
+ * // stagingArea: { // StagingArea
123
+ * // status: "STRING_VALUE",
124
+ * // stagingAccountID: "STRING_VALUE",
125
+ * // stagingSourceServerArn: "STRING_VALUE",
126
+ * // errorMessage: "STRING_VALUE",
127
+ * // },
128
+ * // sourceCloudProperties: { // SourceCloudProperties
129
+ * // originAccountID: "STRING_VALUE",
130
+ * // originRegion: "STRING_VALUE",
131
+ * // originAvailabilityZone: "STRING_VALUE",
132
+ * // },
133
+ * // replicationDirection: "STRING_VALUE",
134
+ * // reversedDirectionSourceServerArn: "STRING_VALUE",
135
+ * // },
136
+ * // };
137
+ *
34
138
  * ```
35
139
  *
36
140
  * @param StartReplicationCommandInput - {@link StartReplicationCommandInput}
@@ -54,6 +158,8 @@ export interface StartReplicationCommandOutput extends StartReplicationResponse,
54
158
  * @throws {@link UninitializedAccountException} (client fault)
55
159
  * <p>The account performing the request has not been initialized.</p>
56
160
  *
161
+ * @throws {@link DrsServiceException}
162
+ * <p>Base exception class for all service exceptions from Drs service.</p>
57
163
  *
58
164
  */
59
165
  export declare class StartReplicationCommand extends $Command<StartReplicationCommandInput, StartReplicationCommandOutput, DrsClientResolvedConfig> {
@@ -31,6 +31,8 @@ export interface StopFailbackCommandOutput extends __MetadataBearer {
31
31
  * };
32
32
  * const command = new StopFailbackCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // {};
35
+ *
34
36
  * ```
35
37
  *
36
38
  * @param StopFailbackCommandInput - {@link StopFailbackCommandInput}
@@ -51,6 +53,8 @@ export interface StopFailbackCommandOutput extends __MetadataBearer {
51
53
  * @throws {@link UninitializedAccountException} (client fault)
52
54
  * <p>The account performing the request has not been initialized.</p>
53
55
  *
56
+ * @throws {@link DrsServiceException}
57
+ * <p>Base exception class for all service exceptions from Drs service.</p>
54
58
  *
55
59
  */
56
60
  export declare class StopFailbackCommand extends $Command<StopFailbackCommandInput, StopFailbackCommandOutput, DrsClientResolvedConfig> {
@@ -31,6 +31,110 @@ export interface StopReplicationCommandOutput extends StopReplicationResponse, _
31
31
  * };
32
32
  * const command = new StopReplicationCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // { // StopReplicationResponse
35
+ * // sourceServer: { // SourceServer
36
+ * // sourceServerID: "STRING_VALUE",
37
+ * // arn: "STRING_VALUE",
38
+ * // tags: { // TagsMap
39
+ * // "<keys>": "STRING_VALUE",
40
+ * // },
41
+ * // recoveryInstanceId: "STRING_VALUE",
42
+ * // lastLaunchResult: "STRING_VALUE",
43
+ * // dataReplicationInfo: { // DataReplicationInfo
44
+ * // lagDuration: "STRING_VALUE",
45
+ * // etaDateTime: "STRING_VALUE",
46
+ * // replicatedDisks: [ // DataReplicationInfoReplicatedDisks
47
+ * // { // DataReplicationInfoReplicatedDisk
48
+ * // deviceName: "STRING_VALUE",
49
+ * // totalStorageBytes: Number("long"),
50
+ * // replicatedStorageBytes: Number("long"),
51
+ * // rescannedStorageBytes: Number("long"),
52
+ * // backloggedStorageBytes: Number("long"),
53
+ * // },
54
+ * // ],
55
+ * // dataReplicationState: "STRING_VALUE",
56
+ * // dataReplicationInitiation: { // DataReplicationInitiation
57
+ * // startDateTime: "STRING_VALUE",
58
+ * // nextAttemptDateTime: "STRING_VALUE",
59
+ * // steps: [ // DataReplicationInitiationSteps
60
+ * // { // DataReplicationInitiationStep
61
+ * // name: "STRING_VALUE",
62
+ * // status: "STRING_VALUE",
63
+ * // },
64
+ * // ],
65
+ * // },
66
+ * // dataReplicationError: { // DataReplicationError
67
+ * // error: "STRING_VALUE",
68
+ * // rawError: "STRING_VALUE",
69
+ * // },
70
+ * // stagingAvailabilityZone: "STRING_VALUE",
71
+ * // },
72
+ * // lifeCycle: { // LifeCycle
73
+ * // addedToServiceDateTime: "STRING_VALUE",
74
+ * // firstByteDateTime: "STRING_VALUE",
75
+ * // elapsedReplicationDuration: "STRING_VALUE",
76
+ * // lastSeenByServiceDateTime: "STRING_VALUE",
77
+ * // lastLaunch: { // LifeCycleLastLaunch
78
+ * // initiated: { // LifeCycleLastLaunchInitiated
79
+ * // apiCallDateTime: "STRING_VALUE",
80
+ * // jobID: "STRING_VALUE",
81
+ * // type: "STRING_VALUE",
82
+ * // },
83
+ * // status: "STRING_VALUE",
84
+ * // },
85
+ * // },
86
+ * // sourceProperties: { // SourceProperties
87
+ * // lastUpdatedDateTime: "STRING_VALUE",
88
+ * // recommendedInstanceType: "STRING_VALUE",
89
+ * // identificationHints: { // IdentificationHints
90
+ * // fqdn: "STRING_VALUE",
91
+ * // hostname: "STRING_VALUE",
92
+ * // vmWareUuid: "STRING_VALUE",
93
+ * // awsInstanceID: "STRING_VALUE",
94
+ * // },
95
+ * // networkInterfaces: [ // NetworkInterfaces
96
+ * // { // NetworkInterface
97
+ * // macAddress: "STRING_VALUE",
98
+ * // ips: [ // IPsList
99
+ * // "STRING_VALUE",
100
+ * // ],
101
+ * // isPrimary: true || false,
102
+ * // },
103
+ * // ],
104
+ * // disks: [ // Disks
105
+ * // { // Disk
106
+ * // deviceName: "STRING_VALUE",
107
+ * // bytes: Number("long"),
108
+ * // },
109
+ * // ],
110
+ * // cpus: [ // Cpus
111
+ * // { // CPU
112
+ * // cores: Number("long"),
113
+ * // modelName: "STRING_VALUE",
114
+ * // },
115
+ * // ],
116
+ * // ramBytes: Number("long"),
117
+ * // os: { // OS
118
+ * // fullString: "STRING_VALUE",
119
+ * // },
120
+ * // supportsNitroInstances: true || false,
121
+ * // },
122
+ * // stagingArea: { // StagingArea
123
+ * // status: "STRING_VALUE",
124
+ * // stagingAccountID: "STRING_VALUE",
125
+ * // stagingSourceServerArn: "STRING_VALUE",
126
+ * // errorMessage: "STRING_VALUE",
127
+ * // },
128
+ * // sourceCloudProperties: { // SourceCloudProperties
129
+ * // originAccountID: "STRING_VALUE",
130
+ * // originRegion: "STRING_VALUE",
131
+ * // originAvailabilityZone: "STRING_VALUE",
132
+ * // },
133
+ * // replicationDirection: "STRING_VALUE",
134
+ * // reversedDirectionSourceServerArn: "STRING_VALUE",
135
+ * // },
136
+ * // };
137
+ *
34
138
  * ```
35
139
  *
36
140
  * @param StopReplicationCommandInput - {@link StopReplicationCommandInput}
@@ -54,6 +158,8 @@ export interface StopReplicationCommandOutput extends StopReplicationResponse, _
54
158
  * @throws {@link UninitializedAccountException} (client fault)
55
159
  * <p>The account performing the request has not been initialized.</p>
56
160
  *
161
+ * @throws {@link DrsServiceException}
162
+ * <p>Base exception class for all service exceptions from Drs service.</p>
57
163
  *
58
164
  */
59
165
  export declare class StopReplicationCommand extends $Command<StopReplicationCommandInput, StopReplicationCommandOutput, DrsClientResolvedConfig> {
@@ -34,6 +34,8 @@ export interface TagResourceCommandOutput extends __MetadataBearer {
34
34
  * };
35
35
  * const command = new TagResourceCommand(input);
36
36
  * const response = await client.send(command);
37
+ * // {};
38
+ *
37
39
  * ```
38
40
  *
39
41
  * @param TagResourceCommandInput - {@link TagResourceCommandInput}
@@ -57,6 +59,8 @@ export interface TagResourceCommandOutput extends __MetadataBearer {
57
59
  * @throws {@link ValidationException} (client fault)
58
60
  * <p>The input fails to satisfy the constraints specified by the AWS service.</p>
59
61
  *
62
+ * @throws {@link DrsServiceException}
63
+ * <p>Base exception class for all service exceptions from Drs service.</p>
60
64
  *
61
65
  */
62
66
  export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, DrsClientResolvedConfig> {
@@ -33,6 +33,28 @@ export interface TerminateRecoveryInstancesCommandOutput extends TerminateRecove
33
33
  * };
34
34
  * const command = new TerminateRecoveryInstancesCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // TerminateRecoveryInstancesResponse
37
+ * // job: { // Job
38
+ * // jobID: "STRING_VALUE", // required
39
+ * // arn: "STRING_VALUE",
40
+ * // type: "STRING_VALUE",
41
+ * // initiatedBy: "STRING_VALUE",
42
+ * // creationDateTime: "STRING_VALUE",
43
+ * // endDateTime: "STRING_VALUE",
44
+ * // status: "STRING_VALUE",
45
+ * // participatingServers: [ // ParticipatingServers
46
+ * // { // ParticipatingServer
47
+ * // sourceServerID: "STRING_VALUE",
48
+ * // recoveryInstanceID: "STRING_VALUE",
49
+ * // launchStatus: "STRING_VALUE",
50
+ * // },
51
+ * // ],
52
+ * // tags: { // TagsMap
53
+ * // "<keys>": "STRING_VALUE",
54
+ * // },
55
+ * // },
56
+ * // };
57
+ *
36
58
  * ```
37
59
  *
38
60
  * @param TerminateRecoveryInstancesCommandInput - {@link TerminateRecoveryInstancesCommandInput}
@@ -56,6 +78,8 @@ export interface TerminateRecoveryInstancesCommandOutput extends TerminateRecove
56
78
  * @throws {@link UninitializedAccountException} (client fault)
57
79
  * <p>The account performing the request has not been initialized.</p>
58
80
  *
81
+ * @throws {@link DrsServiceException}
82
+ * <p>Base exception class for all service exceptions from Drs service.</p>
59
83
  *
60
84
  */
61
85
  export declare class TerminateRecoveryInstancesCommand extends $Command<TerminateRecoveryInstancesCommandInput, TerminateRecoveryInstancesCommandOutput, DrsClientResolvedConfig> {
@@ -34,6 +34,8 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {
34
34
  * };
35
35
  * const command = new UntagResourceCommand(input);
36
36
  * const response = await client.send(command);
37
+ * // {};
38
+ *
37
39
  * ```
38
40
  *
39
41
  * @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
@@ -57,6 +59,8 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {
57
59
  * @throws {@link ValidationException} (client fault)
58
60
  * <p>The input fails to satisfy the constraints specified by the AWS service.</p>
59
61
  *
62
+ * @throws {@link DrsServiceException}
63
+ * <p>Base exception class for all service exceptions from Drs service.</p>
60
64
  *
61
65
  */
62
66
  export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, DrsClientResolvedConfig> {
@@ -34,6 +34,8 @@ export interface UpdateFailbackReplicationConfigurationCommandOutput extends __M
34
34
  * };
35
35
  * const command = new UpdateFailbackReplicationConfigurationCommand(input);
36
36
  * const response = await client.send(command);
37
+ * // {};
38
+ *
37
39
  * ```
38
40
  *
39
41
  * @param UpdateFailbackReplicationConfigurationCommandInput - {@link UpdateFailbackReplicationConfigurationCommandInput}
@@ -57,6 +59,8 @@ export interface UpdateFailbackReplicationConfigurationCommandOutput extends __M
57
59
  * @throws {@link UninitializedAccountException} (client fault)
58
60
  * <p>The account performing the request has not been initialized.</p>
59
61
  *
62
+ * @throws {@link DrsServiceException}
63
+ * <p>Base exception class for all service exceptions from Drs service.</p>
60
64
  *
61
65
  */
62
66
  export declare class UpdateFailbackReplicationConfigurationCommand extends $Command<UpdateFailbackReplicationConfigurationCommandInput, UpdateFailbackReplicationConfigurationCommandOutput, DrsClientResolvedConfig> {
@@ -39,6 +39,19 @@ export interface UpdateLaunchConfigurationCommandOutput extends LaunchConfigurat
39
39
  * };
40
40
  * const command = new UpdateLaunchConfigurationCommand(input);
41
41
  * const response = await client.send(command);
42
+ * // { // LaunchConfiguration
43
+ * // sourceServerID: "STRING_VALUE",
44
+ * // name: "STRING_VALUE",
45
+ * // ec2LaunchTemplateID: "STRING_VALUE",
46
+ * // launchDisposition: "STRING_VALUE",
47
+ * // targetInstanceTypeRightSizingMethod: "STRING_VALUE",
48
+ * // copyPrivateIp: true || false,
49
+ * // copyTags: true || false,
50
+ * // licensing: { // Licensing
51
+ * // osByol: true || false,
52
+ * // },
53
+ * // };
54
+ *
42
55
  * ```
43
56
  *
44
57
  * @param UpdateLaunchConfigurationCommandInput - {@link UpdateLaunchConfigurationCommandInput}
@@ -65,6 +78,8 @@ export interface UpdateLaunchConfigurationCommandOutput extends LaunchConfigurat
65
78
  * @throws {@link ValidationException} (client fault)
66
79
  * <p>The input fails to satisfy the constraints specified by the AWS service.</p>
67
80
  *
81
+ * @throws {@link DrsServiceException}
82
+ * <p>Base exception class for all service exceptions from Drs service.</p>
68
83
  *
69
84
  */
70
85
  export declare class UpdateLaunchConfigurationCommand extends $Command<UpdateLaunchConfigurationCommandInput, UpdateLaunchConfigurationCommandOutput, DrsClientResolvedConfig> {
@@ -38,6 +38,23 @@ export interface UpdateLaunchConfigurationTemplateCommandOutput extends UpdateLa
38
38
  * };
39
39
  * const command = new UpdateLaunchConfigurationTemplateCommand(input);
40
40
  * const response = await client.send(command);
41
+ * // { // UpdateLaunchConfigurationTemplateResponse
42
+ * // launchConfigurationTemplate: { // LaunchConfigurationTemplate
43
+ * // launchConfigurationTemplateID: "STRING_VALUE",
44
+ * // arn: "STRING_VALUE",
45
+ * // tags: { // TagsMap
46
+ * // "<keys>": "STRING_VALUE",
47
+ * // },
48
+ * // launchDisposition: "STRING_VALUE",
49
+ * // targetInstanceTypeRightSizingMethod: "STRING_VALUE",
50
+ * // copyPrivateIp: true || false,
51
+ * // copyTags: true || false,
52
+ * // licensing: { // Licensing
53
+ * // osByol: true || false,
54
+ * // },
55
+ * // },
56
+ * // };
57
+ *
41
58
  * ```
42
59
  *
43
60
  * @param UpdateLaunchConfigurationTemplateCommandInput - {@link UpdateLaunchConfigurationTemplateCommandInput}
@@ -64,6 +81,8 @@ export interface UpdateLaunchConfigurationTemplateCommandOutput extends UpdateLa
64
81
  * @throws {@link ValidationException} (client fault)
65
82
  * <p>The input fails to satisfy the constraints specified by the AWS service.</p>
66
83
  *
84
+ * @throws {@link DrsServiceException}
85
+ * <p>Base exception class for all service exceptions from Drs service.</p>
67
86
  *
68
87
  */
69
88
  export declare class UpdateLaunchConfigurationTemplateCommand extends $Command<UpdateLaunchConfigurationTemplateCommandInput, UpdateLaunchConfigurationTemplateCommandOutput, DrsClientResolvedConfig> {
@@ -68,6 +68,47 @@ export interface UpdateReplicationConfigurationCommandOutput extends Replication
68
68
  * };
69
69
  * const command = new UpdateReplicationConfigurationCommand(input);
70
70
  * const response = await client.send(command);
71
+ * // { // ReplicationConfiguration
72
+ * // sourceServerID: "STRING_VALUE",
73
+ * // name: "STRING_VALUE",
74
+ * // stagingAreaSubnetId: "STRING_VALUE",
75
+ * // associateDefaultSecurityGroup: true || false,
76
+ * // replicationServersSecurityGroupsIDs: [ // ReplicationServersSecurityGroupsIDs
77
+ * // "STRING_VALUE",
78
+ * // ],
79
+ * // replicationServerInstanceType: "STRING_VALUE",
80
+ * // useDedicatedReplicationServer: true || false,
81
+ * // defaultLargeStagingDiskType: "STRING_VALUE",
82
+ * // replicatedDisks: [ // ReplicationConfigurationReplicatedDisks
83
+ * // { // ReplicationConfigurationReplicatedDisk
84
+ * // deviceName: "STRING_VALUE",
85
+ * // isBootDisk: true || false,
86
+ * // stagingDiskType: "STRING_VALUE",
87
+ * // iops: Number("long"),
88
+ * // throughput: Number("long"),
89
+ * // optimizedStagingDiskType: "STRING_VALUE",
90
+ * // },
91
+ * // ],
92
+ * // ebsEncryption: "STRING_VALUE",
93
+ * // ebsEncryptionKeyArn: "STRING_VALUE",
94
+ * // bandwidthThrottling: Number("long"),
95
+ * // dataPlaneRouting: "STRING_VALUE",
96
+ * // createPublicIP: true || false,
97
+ * // stagingAreaTags: { // TagsMap
98
+ * // "<keys>": "STRING_VALUE",
99
+ * // },
100
+ * // pitPolicy: [ // PITPolicy
101
+ * // { // PITPolicyRule
102
+ * // ruleID: Number("long"),
103
+ * // units: "STRING_VALUE", // required
104
+ * // interval: Number("int"), // required
105
+ * // retentionDuration: Number("int"), // required
106
+ * // enabled: true || false,
107
+ * // },
108
+ * // ],
109
+ * // autoReplicateNewDisks: true || false,
110
+ * // };
111
+ *
71
112
  * ```
72
113
  *
73
114
  * @param UpdateReplicationConfigurationCommandInput - {@link UpdateReplicationConfigurationCommandInput}
@@ -97,6 +138,8 @@ export interface UpdateReplicationConfigurationCommandOutput extends Replication
97
138
  * @throws {@link ValidationException} (client fault)
98
139
  * <p>The input fails to satisfy the constraints specified by the AWS service.</p>
99
140
  *
141
+ * @throws {@link DrsServiceException}
142
+ * <p>Base exception class for all service exceptions from Drs service.</p>
100
143
  *
101
144
  */
102
145
  export declare class UpdateReplicationConfigurationCommand extends $Command<UpdateReplicationConfigurationCommandInput, UpdateReplicationConfigurationCommandOutput, DrsClientResolvedConfig> {
@@ -58,6 +58,40 @@ export interface UpdateReplicationConfigurationTemplateCommandOutput extends Rep
58
58
  * };
59
59
  * const command = new UpdateReplicationConfigurationTemplateCommand(input);
60
60
  * const response = await client.send(command);
61
+ * // { // ReplicationConfigurationTemplate
62
+ * // replicationConfigurationTemplateID: "STRING_VALUE", // required
63
+ * // arn: "STRING_VALUE",
64
+ * // stagingAreaSubnetId: "STRING_VALUE",
65
+ * // associateDefaultSecurityGroup: true || false,
66
+ * // replicationServersSecurityGroupsIDs: [ // ReplicationServersSecurityGroupsIDs
67
+ * // "STRING_VALUE",
68
+ * // ],
69
+ * // replicationServerInstanceType: "STRING_VALUE",
70
+ * // useDedicatedReplicationServer: true || false,
71
+ * // defaultLargeStagingDiskType: "STRING_VALUE",
72
+ * // ebsEncryption: "STRING_VALUE",
73
+ * // ebsEncryptionKeyArn: "STRING_VALUE",
74
+ * // bandwidthThrottling: Number("long"),
75
+ * // dataPlaneRouting: "STRING_VALUE",
76
+ * // createPublicIP: true || false,
77
+ * // stagingAreaTags: { // TagsMap
78
+ * // "<keys>": "STRING_VALUE",
79
+ * // },
80
+ * // tags: {
81
+ * // "<keys>": "STRING_VALUE",
82
+ * // },
83
+ * // pitPolicy: [ // PITPolicy
84
+ * // { // PITPolicyRule
85
+ * // ruleID: Number("long"),
86
+ * // units: "STRING_VALUE", // required
87
+ * // interval: Number("int"), // required
88
+ * // retentionDuration: Number("int"), // required
89
+ * // enabled: true || false,
90
+ * // },
91
+ * // ],
92
+ * // autoReplicateNewDisks: true || false,
93
+ * // };
94
+ *
61
95
  * ```
62
96
  *
63
97
  * @param UpdateReplicationConfigurationTemplateCommandInput - {@link UpdateReplicationConfigurationTemplateCommandInput}
@@ -84,6 +118,8 @@ export interface UpdateReplicationConfigurationTemplateCommandOutput extends Rep
84
118
  * @throws {@link ValidationException} (client fault)
85
119
  * <p>The input fails to satisfy the constraints specified by the AWS service.</p>
86
120
  *
121
+ * @throws {@link DrsServiceException}
122
+ * <p>Base exception class for all service exceptions from Drs service.</p>
87
123
  *
88
124
  */
89
125
  export declare class UpdateReplicationConfigurationTemplateCommand extends $Command<UpdateReplicationConfigurationTemplateCommandInput, UpdateReplicationConfigurationTemplateCommandOutput, DrsClientResolvedConfig> {
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.325.0",
4
+ "version": "3.327.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",
@@ -21,9 +21,9 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.325.0",
24
+ "@aws-sdk/client-sts": "3.327.0",
25
25
  "@aws-sdk/config-resolver": "3.310.0",
26
- "@aws-sdk/credential-provider-node": "3.325.0",
26
+ "@aws-sdk/credential-provider-node": "3.327.0",
27
27
  "@aws-sdk/fetch-http-handler": "3.310.0",
28
28
  "@aws-sdk/hash-node": "3.310.0",
29
29
  "@aws-sdk/invalid-dependency": "3.310.0",
@@ -32,11 +32,11 @@
32
32
  "@aws-sdk/middleware-host-header": "3.325.0",
33
33
  "@aws-sdk/middleware-logger": "3.325.0",
34
34
  "@aws-sdk/middleware-recursion-detection": "3.325.0",
35
- "@aws-sdk/middleware-retry": "3.325.0",
35
+ "@aws-sdk/middleware-retry": "3.327.0",
36
36
  "@aws-sdk/middleware-serde": "3.325.0",
37
37
  "@aws-sdk/middleware-signing": "3.325.0",
38
38
  "@aws-sdk/middleware-stack": "3.325.0",
39
- "@aws-sdk/middleware-user-agent": "3.325.0",
39
+ "@aws-sdk/middleware-user-agent": "3.327.0",
40
40
  "@aws-sdk/node-config-provider": "3.310.0",
41
41
  "@aws-sdk/node-http-handler": "3.321.1",
42
42
  "@aws-sdk/protocol-http": "3.310.0",
@@ -48,8 +48,8 @@
48
48
  "@aws-sdk/util-body-length-node": "3.310.0",
49
49
  "@aws-sdk/util-defaults-mode-browser": "3.325.0",
50
50
  "@aws-sdk/util-defaults-mode-node": "3.325.0",
51
- "@aws-sdk/util-endpoints": "3.319.0",
52
- "@aws-sdk/util-retry": "3.310.0",
51
+ "@aws-sdk/util-endpoints": "3.327.0",
52
+ "@aws-sdk/util-retry": "3.327.0",
53
53
  "@aws-sdk/util-user-agent-browser": "3.310.0",
54
54
  "@aws-sdk/util-user-agent-node": "3.310.0",
55
55
  "@aws-sdk/util-utf8": "3.310.0",