@aws-sdk/client-drs 3.315.0 → 3.319.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/dist-cjs/Drs.js +43 -546
- package/dist-es/Drs.js +43 -546
- package/dist-types/Drs.d.ts +46 -93
- package/dist-types/ts3.4/Drs.d.ts +2 -1
- package/package.json +8 -8
package/dist-types/Drs.d.ts
CHANGED
|
@@ -39,292 +39,245 @@ import { UpdateLaunchConfigurationTemplateCommandInput, UpdateLaunchConfiguratio
|
|
|
39
39
|
import { UpdateReplicationConfigurationCommandInput, UpdateReplicationConfigurationCommandOutput } from "./commands/UpdateReplicationConfigurationCommand";
|
|
40
40
|
import { UpdateReplicationConfigurationTemplateCommandInput, UpdateReplicationConfigurationTemplateCommandOutput } from "./commands/UpdateReplicationConfigurationTemplateCommand";
|
|
41
41
|
import { DrsClient } from "./DrsClient";
|
|
42
|
-
|
|
43
|
-
* @public
|
|
44
|
-
* <p>AWS Elastic Disaster Recovery Service.</p>
|
|
45
|
-
*/
|
|
46
|
-
export declare class Drs extends DrsClient {
|
|
42
|
+
export interface Drs {
|
|
47
43
|
/**
|
|
48
|
-
* @
|
|
49
|
-
* <p>Create an extended source server in the target Account based on the source server in staging account.</p>
|
|
44
|
+
* @see {@link CreateExtendedSourceServerCommand}
|
|
50
45
|
*/
|
|
51
46
|
createExtendedSourceServer(args: CreateExtendedSourceServerCommandInput, options?: __HttpHandlerOptions): Promise<CreateExtendedSourceServerCommandOutput>;
|
|
52
47
|
createExtendedSourceServer(args: CreateExtendedSourceServerCommandInput, cb: (err: any, data?: CreateExtendedSourceServerCommandOutput) => void): void;
|
|
53
48
|
createExtendedSourceServer(args: CreateExtendedSourceServerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateExtendedSourceServerCommandOutput) => void): void;
|
|
54
49
|
/**
|
|
55
|
-
* @
|
|
56
|
-
* <p>Creates a new Launch Configuration Template.</p>
|
|
50
|
+
* @see {@link CreateLaunchConfigurationTemplateCommand}
|
|
57
51
|
*/
|
|
58
52
|
createLaunchConfigurationTemplate(args: CreateLaunchConfigurationTemplateCommandInput, options?: __HttpHandlerOptions): Promise<CreateLaunchConfigurationTemplateCommandOutput>;
|
|
59
53
|
createLaunchConfigurationTemplate(args: CreateLaunchConfigurationTemplateCommandInput, cb: (err: any, data?: CreateLaunchConfigurationTemplateCommandOutput) => void): void;
|
|
60
54
|
createLaunchConfigurationTemplate(args: CreateLaunchConfigurationTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateLaunchConfigurationTemplateCommandOutput) => void): void;
|
|
61
55
|
/**
|
|
62
|
-
* @
|
|
63
|
-
* <p>Creates a new ReplicationConfigurationTemplate.</p>
|
|
56
|
+
* @see {@link CreateReplicationConfigurationTemplateCommand}
|
|
64
57
|
*/
|
|
65
58
|
createReplicationConfigurationTemplate(args: CreateReplicationConfigurationTemplateCommandInput, options?: __HttpHandlerOptions): Promise<CreateReplicationConfigurationTemplateCommandOutput>;
|
|
66
59
|
createReplicationConfigurationTemplate(args: CreateReplicationConfigurationTemplateCommandInput, cb: (err: any, data?: CreateReplicationConfigurationTemplateCommandOutput) => void): void;
|
|
67
60
|
createReplicationConfigurationTemplate(args: CreateReplicationConfigurationTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateReplicationConfigurationTemplateCommandOutput) => void): void;
|
|
68
61
|
/**
|
|
69
|
-
* @
|
|
70
|
-
* <p>Deletes a single Job by ID.</p>
|
|
62
|
+
* @see {@link DeleteJobCommand}
|
|
71
63
|
*/
|
|
72
64
|
deleteJob(args: DeleteJobCommandInput, options?: __HttpHandlerOptions): Promise<DeleteJobCommandOutput>;
|
|
73
65
|
deleteJob(args: DeleteJobCommandInput, cb: (err: any, data?: DeleteJobCommandOutput) => void): void;
|
|
74
66
|
deleteJob(args: DeleteJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteJobCommandOutput) => void): void;
|
|
75
67
|
/**
|
|
76
|
-
* @
|
|
77
|
-
* <p>Deletes a single Launch Configuration Template by ID.</p>
|
|
68
|
+
* @see {@link DeleteLaunchConfigurationTemplateCommand}
|
|
78
69
|
*/
|
|
79
70
|
deleteLaunchConfigurationTemplate(args: DeleteLaunchConfigurationTemplateCommandInput, options?: __HttpHandlerOptions): Promise<DeleteLaunchConfigurationTemplateCommandOutput>;
|
|
80
71
|
deleteLaunchConfigurationTemplate(args: DeleteLaunchConfigurationTemplateCommandInput, cb: (err: any, data?: DeleteLaunchConfigurationTemplateCommandOutput) => void): void;
|
|
81
72
|
deleteLaunchConfigurationTemplate(args: DeleteLaunchConfigurationTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteLaunchConfigurationTemplateCommandOutput) => void): void;
|
|
82
73
|
/**
|
|
83
|
-
* @
|
|
84
|
-
* <p>Deletes a single Recovery Instance by ID. This deletes the Recovery Instance resource from Elastic Disaster Recovery. The Recovery Instance must be disconnected first in order to delete it.</p>
|
|
74
|
+
* @see {@link DeleteRecoveryInstanceCommand}
|
|
85
75
|
*/
|
|
86
76
|
deleteRecoveryInstance(args: DeleteRecoveryInstanceCommandInput, options?: __HttpHandlerOptions): Promise<DeleteRecoveryInstanceCommandOutput>;
|
|
87
77
|
deleteRecoveryInstance(args: DeleteRecoveryInstanceCommandInput, cb: (err: any, data?: DeleteRecoveryInstanceCommandOutput) => void): void;
|
|
88
78
|
deleteRecoveryInstance(args: DeleteRecoveryInstanceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteRecoveryInstanceCommandOutput) => void): void;
|
|
89
79
|
/**
|
|
90
|
-
* @
|
|
91
|
-
* <p>Deletes a single Replication Configuration Template by ID</p>
|
|
80
|
+
* @see {@link DeleteReplicationConfigurationTemplateCommand}
|
|
92
81
|
*/
|
|
93
82
|
deleteReplicationConfigurationTemplate(args: DeleteReplicationConfigurationTemplateCommandInput, options?: __HttpHandlerOptions): Promise<DeleteReplicationConfigurationTemplateCommandOutput>;
|
|
94
83
|
deleteReplicationConfigurationTemplate(args: DeleteReplicationConfigurationTemplateCommandInput, cb: (err: any, data?: DeleteReplicationConfigurationTemplateCommandOutput) => void): void;
|
|
95
84
|
deleteReplicationConfigurationTemplate(args: DeleteReplicationConfigurationTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteReplicationConfigurationTemplateCommandOutput) => void): void;
|
|
96
85
|
/**
|
|
97
|
-
* @
|
|
98
|
-
* <p>Deletes a single Source Server by ID. The Source Server must be disconnected first.</p>
|
|
86
|
+
* @see {@link DeleteSourceServerCommand}
|
|
99
87
|
*/
|
|
100
88
|
deleteSourceServer(args: DeleteSourceServerCommandInput, options?: __HttpHandlerOptions): Promise<DeleteSourceServerCommandOutput>;
|
|
101
89
|
deleteSourceServer(args: DeleteSourceServerCommandInput, cb: (err: any, data?: DeleteSourceServerCommandOutput) => void): void;
|
|
102
90
|
deleteSourceServer(args: DeleteSourceServerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteSourceServerCommandOutput) => void): void;
|
|
103
91
|
/**
|
|
104
|
-
* @
|
|
105
|
-
* <p>Retrieves a detailed Job log with pagination.</p>
|
|
92
|
+
* @see {@link DescribeJobLogItemsCommand}
|
|
106
93
|
*/
|
|
107
94
|
describeJobLogItems(args: DescribeJobLogItemsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeJobLogItemsCommandOutput>;
|
|
108
95
|
describeJobLogItems(args: DescribeJobLogItemsCommandInput, cb: (err: any, data?: DescribeJobLogItemsCommandOutput) => void): void;
|
|
109
96
|
describeJobLogItems(args: DescribeJobLogItemsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeJobLogItemsCommandOutput) => void): void;
|
|
110
97
|
/**
|
|
111
|
-
* @
|
|
112
|
-
* <p>Returns a list of Jobs. Use the JobsID and fromDate and toDate filters to limit which jobs are returned. The response is sorted by creationDataTime - latest date first. Jobs are created by the StartRecovery, TerminateRecoveryInstances and StartFailbackLaunch APIs. Jobs are also created by DiagnosticLaunch and TerminateDiagnosticInstances, which are APIs available only to *Support* and only used in response to relevant support tickets.</p>
|
|
98
|
+
* @see {@link DescribeJobsCommand}
|
|
113
99
|
*/
|
|
114
100
|
describeJobs(args: DescribeJobsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeJobsCommandOutput>;
|
|
115
101
|
describeJobs(args: DescribeJobsCommandInput, cb: (err: any, data?: DescribeJobsCommandOutput) => void): void;
|
|
116
102
|
describeJobs(args: DescribeJobsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeJobsCommandOutput) => void): void;
|
|
117
103
|
/**
|
|
118
|
-
* @
|
|
119
|
-
* <p>Lists all Launch Configuration Templates, filtered by Launch Configuration Template IDs</p>
|
|
104
|
+
* @see {@link DescribeLaunchConfigurationTemplatesCommand}
|
|
120
105
|
*/
|
|
121
106
|
describeLaunchConfigurationTemplates(args: DescribeLaunchConfigurationTemplatesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeLaunchConfigurationTemplatesCommandOutput>;
|
|
122
107
|
describeLaunchConfigurationTemplates(args: DescribeLaunchConfigurationTemplatesCommandInput, cb: (err: any, data?: DescribeLaunchConfigurationTemplatesCommandOutput) => void): void;
|
|
123
108
|
describeLaunchConfigurationTemplates(args: DescribeLaunchConfigurationTemplatesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeLaunchConfigurationTemplatesCommandOutput) => void): void;
|
|
124
109
|
/**
|
|
125
|
-
* @
|
|
126
|
-
* <p>Lists all Recovery Instances or multiple Recovery Instances by ID.</p>
|
|
110
|
+
* @see {@link DescribeRecoveryInstancesCommand}
|
|
127
111
|
*/
|
|
128
112
|
describeRecoveryInstances(args: DescribeRecoveryInstancesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeRecoveryInstancesCommandOutput>;
|
|
129
113
|
describeRecoveryInstances(args: DescribeRecoveryInstancesCommandInput, cb: (err: any, data?: DescribeRecoveryInstancesCommandOutput) => void): void;
|
|
130
114
|
describeRecoveryInstances(args: DescribeRecoveryInstancesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeRecoveryInstancesCommandOutput) => void): void;
|
|
131
115
|
/**
|
|
132
|
-
* @
|
|
133
|
-
* <p>Lists all Recovery Snapshots for a single Source Server.</p>
|
|
116
|
+
* @see {@link DescribeRecoverySnapshotsCommand}
|
|
134
117
|
*/
|
|
135
118
|
describeRecoverySnapshots(args: DescribeRecoverySnapshotsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeRecoverySnapshotsCommandOutput>;
|
|
136
119
|
describeRecoverySnapshots(args: DescribeRecoverySnapshotsCommandInput, cb: (err: any, data?: DescribeRecoverySnapshotsCommandOutput) => void): void;
|
|
137
120
|
describeRecoverySnapshots(args: DescribeRecoverySnapshotsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeRecoverySnapshotsCommandOutput) => void): void;
|
|
138
121
|
/**
|
|
139
|
-
* @
|
|
140
|
-
* <p>Lists all ReplicationConfigurationTemplates, filtered by Source Server IDs.</p>
|
|
122
|
+
* @see {@link DescribeReplicationConfigurationTemplatesCommand}
|
|
141
123
|
*/
|
|
142
124
|
describeReplicationConfigurationTemplates(args: DescribeReplicationConfigurationTemplatesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeReplicationConfigurationTemplatesCommandOutput>;
|
|
143
125
|
describeReplicationConfigurationTemplates(args: DescribeReplicationConfigurationTemplatesCommandInput, cb: (err: any, data?: DescribeReplicationConfigurationTemplatesCommandOutput) => void): void;
|
|
144
126
|
describeReplicationConfigurationTemplates(args: DescribeReplicationConfigurationTemplatesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeReplicationConfigurationTemplatesCommandOutput) => void): void;
|
|
145
127
|
/**
|
|
146
|
-
* @
|
|
147
|
-
* <p>Lists all Source Servers or multiple Source Servers filtered by ID.</p>
|
|
128
|
+
* @see {@link DescribeSourceServersCommand}
|
|
148
129
|
*/
|
|
149
130
|
describeSourceServers(args: DescribeSourceServersCommandInput, options?: __HttpHandlerOptions): Promise<DescribeSourceServersCommandOutput>;
|
|
150
131
|
describeSourceServers(args: DescribeSourceServersCommandInput, cb: (err: any, data?: DescribeSourceServersCommandOutput) => void): void;
|
|
151
132
|
describeSourceServers(args: DescribeSourceServersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeSourceServersCommandOutput) => void): void;
|
|
152
133
|
/**
|
|
153
|
-
* @
|
|
154
|
-
* <p>Disconnect a Recovery Instance from Elastic Disaster Recovery. Data replication is stopped immediately. All AWS resources created by Elastic Disaster Recovery for enabling the replication of the Recovery Instance will be terminated / deleted within 90 minutes. If the agent on the Recovery Instance has not been prevented from communicating with the Elastic Disaster Recovery service, then it will receive a command to uninstall itself (within approximately 10 minutes). The following properties of the Recovery Instance will be changed immediately: dataReplicationInfo.dataReplicationState will be set to DISCONNECTED; The totalStorageBytes property for each of dataReplicationInfo.replicatedDisks will be set to zero; dataReplicationInfo.lagDuration and dataReplicationInfo.lagDuration will be nullified.</p>
|
|
134
|
+
* @see {@link DisconnectRecoveryInstanceCommand}
|
|
155
135
|
*/
|
|
156
136
|
disconnectRecoveryInstance(args: DisconnectRecoveryInstanceCommandInput, options?: __HttpHandlerOptions): Promise<DisconnectRecoveryInstanceCommandOutput>;
|
|
157
137
|
disconnectRecoveryInstance(args: DisconnectRecoveryInstanceCommandInput, cb: (err: any, data?: DisconnectRecoveryInstanceCommandOutput) => void): void;
|
|
158
138
|
disconnectRecoveryInstance(args: DisconnectRecoveryInstanceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisconnectRecoveryInstanceCommandOutput) => void): void;
|
|
159
139
|
/**
|
|
160
|
-
* @
|
|
161
|
-
* <p>Disconnects a specific Source Server from Elastic Disaster Recovery. Data replication is stopped immediately. All AWS resources created by Elastic Disaster Recovery for enabling the replication of the Source Server will be terminated / deleted within 90 minutes. You cannot disconnect a Source Server if it has a Recovery Instance. If the agent on the Source Server has not been prevented from communicating with the Elastic Disaster Recovery service, then it will receive a command to uninstall itself (within approximately 10 minutes). The following properties of the SourceServer will be changed immediately: dataReplicationInfo.dataReplicationState will be set to DISCONNECTED; The totalStorageBytes property for each of dataReplicationInfo.replicatedDisks will be set to zero; dataReplicationInfo.lagDuration and dataReplicationInfo.lagDuration will be nullified.</p>
|
|
140
|
+
* @see {@link DisconnectSourceServerCommand}
|
|
162
141
|
*/
|
|
163
142
|
disconnectSourceServer(args: DisconnectSourceServerCommandInput, options?: __HttpHandlerOptions): Promise<DisconnectSourceServerCommandOutput>;
|
|
164
143
|
disconnectSourceServer(args: DisconnectSourceServerCommandInput, cb: (err: any, data?: DisconnectSourceServerCommandOutput) => void): void;
|
|
165
144
|
disconnectSourceServer(args: DisconnectSourceServerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisconnectSourceServerCommandOutput) => void): void;
|
|
166
145
|
/**
|
|
167
|
-
* @
|
|
168
|
-
* <p>Lists all Failback ReplicationConfigurations, filtered by Recovery Instance ID.</p>
|
|
146
|
+
* @see {@link GetFailbackReplicationConfigurationCommand}
|
|
169
147
|
*/
|
|
170
148
|
getFailbackReplicationConfiguration(args: GetFailbackReplicationConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<GetFailbackReplicationConfigurationCommandOutput>;
|
|
171
149
|
getFailbackReplicationConfiguration(args: GetFailbackReplicationConfigurationCommandInput, cb: (err: any, data?: GetFailbackReplicationConfigurationCommandOutput) => void): void;
|
|
172
150
|
getFailbackReplicationConfiguration(args: GetFailbackReplicationConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetFailbackReplicationConfigurationCommandOutput) => void): void;
|
|
173
151
|
/**
|
|
174
|
-
* @
|
|
175
|
-
* <p>Gets a LaunchConfiguration, filtered by Source Server IDs.</p>
|
|
152
|
+
* @see {@link GetLaunchConfigurationCommand}
|
|
176
153
|
*/
|
|
177
154
|
getLaunchConfiguration(args: GetLaunchConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<GetLaunchConfigurationCommandOutput>;
|
|
178
155
|
getLaunchConfiguration(args: GetLaunchConfigurationCommandInput, cb: (err: any, data?: GetLaunchConfigurationCommandOutput) => void): void;
|
|
179
156
|
getLaunchConfiguration(args: GetLaunchConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetLaunchConfigurationCommandOutput) => void): void;
|
|
180
157
|
/**
|
|
181
|
-
* @
|
|
182
|
-
* <p>Gets a ReplicationConfiguration, filtered by Source Server ID.</p>
|
|
158
|
+
* @see {@link GetReplicationConfigurationCommand}
|
|
183
159
|
*/
|
|
184
160
|
getReplicationConfiguration(args: GetReplicationConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<GetReplicationConfigurationCommandOutput>;
|
|
185
161
|
getReplicationConfiguration(args: GetReplicationConfigurationCommandInput, cb: (err: any, data?: GetReplicationConfigurationCommandOutput) => void): void;
|
|
186
162
|
getReplicationConfiguration(args: GetReplicationConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetReplicationConfigurationCommandOutput) => void): void;
|
|
187
163
|
/**
|
|
188
|
-
* @
|
|
189
|
-
* <p>Initialize Elastic Disaster Recovery.</p>
|
|
164
|
+
* @see {@link InitializeServiceCommand}
|
|
190
165
|
*/
|
|
191
166
|
initializeService(args: InitializeServiceCommandInput, options?: __HttpHandlerOptions): Promise<InitializeServiceCommandOutput>;
|
|
192
167
|
initializeService(args: InitializeServiceCommandInput, cb: (err: any, data?: InitializeServiceCommandOutput) => void): void;
|
|
193
168
|
initializeService(args: InitializeServiceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: InitializeServiceCommandOutput) => void): void;
|
|
194
169
|
/**
|
|
195
|
-
* @
|
|
196
|
-
* <p>Returns a list of source servers on a staging account that are extensible, which means that:
|
|
197
|
-
* a. The source server is not already extended into this Account.
|
|
198
|
-
* b. The source server on the Account we’re reading from is not an extension of another source server.
|
|
199
|
-
* </p>
|
|
170
|
+
* @see {@link ListExtensibleSourceServersCommand}
|
|
200
171
|
*/
|
|
201
172
|
listExtensibleSourceServers(args: ListExtensibleSourceServersCommandInput, options?: __HttpHandlerOptions): Promise<ListExtensibleSourceServersCommandOutput>;
|
|
202
173
|
listExtensibleSourceServers(args: ListExtensibleSourceServersCommandInput, cb: (err: any, data?: ListExtensibleSourceServersCommandOutput) => void): void;
|
|
203
174
|
listExtensibleSourceServers(args: ListExtensibleSourceServersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListExtensibleSourceServersCommandOutput) => void): void;
|
|
204
175
|
/**
|
|
205
|
-
* @
|
|
206
|
-
* <p>Returns an array of staging accounts for existing extended source servers.</p>
|
|
176
|
+
* @see {@link ListStagingAccountsCommand}
|
|
207
177
|
*/
|
|
208
178
|
listStagingAccounts(args: ListStagingAccountsCommandInput, options?: __HttpHandlerOptions): Promise<ListStagingAccountsCommandOutput>;
|
|
209
179
|
listStagingAccounts(args: ListStagingAccountsCommandInput, cb: (err: any, data?: ListStagingAccountsCommandOutput) => void): void;
|
|
210
180
|
listStagingAccounts(args: ListStagingAccountsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListStagingAccountsCommandOutput) => void): void;
|
|
211
181
|
/**
|
|
212
|
-
* @
|
|
213
|
-
* <p>List all tags for your Elastic Disaster Recovery resources.</p>
|
|
182
|
+
* @see {@link ListTagsForResourceCommand}
|
|
214
183
|
*/
|
|
215
184
|
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
216
185
|
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
217
186
|
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
218
187
|
/**
|
|
219
|
-
* @
|
|
220
|
-
* @deprecated
|
|
221
|
-
*
|
|
222
|
-
* <p>WARNING: RetryDataReplication is deprecated.
|
|
223
|
-
* Causes the data replication initiation sequence to begin immediately upon next Handshake for the specified Source Server ID, regardless of when the previous initiation started. This command will work only if the Source Server is stalled or is in a DISCONNECTED or STOPPED state.
|
|
224
|
-
* </p>
|
|
188
|
+
* @see {@link RetryDataReplicationCommand}
|
|
225
189
|
*/
|
|
226
190
|
retryDataReplication(args: RetryDataReplicationCommandInput, options?: __HttpHandlerOptions): Promise<RetryDataReplicationCommandOutput>;
|
|
227
191
|
retryDataReplication(args: RetryDataReplicationCommandInput, cb: (err: any, data?: RetryDataReplicationCommandOutput) => void): void;
|
|
228
192
|
retryDataReplication(args: RetryDataReplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RetryDataReplicationCommandOutput) => void): void;
|
|
229
193
|
/**
|
|
230
|
-
* @
|
|
231
|
-
* <p>Start replication to origin / target region - applies only to protected instances that originated in EC2.
|
|
232
|
-
* For recovery instances on target region - starts replication back to origin region.
|
|
233
|
-
* For failback instances on origin region - starts replication to target region to re-protect them.
|
|
234
|
-
* </p>
|
|
194
|
+
* @see {@link ReverseReplicationCommand}
|
|
235
195
|
*/
|
|
236
196
|
reverseReplication(args: ReverseReplicationCommandInput, options?: __HttpHandlerOptions): Promise<ReverseReplicationCommandOutput>;
|
|
237
197
|
reverseReplication(args: ReverseReplicationCommandInput, cb: (err: any, data?: ReverseReplicationCommandOutput) => void): void;
|
|
238
198
|
reverseReplication(args: ReverseReplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ReverseReplicationCommandOutput) => void): void;
|
|
239
199
|
/**
|
|
240
|
-
* @
|
|
241
|
-
* <p>Initiates a Job for launching the machine that is being failed back to from the specified Recovery Instance. This will run conversion on the failback client and will reboot your machine, thus completing the failback process.</p>
|
|
200
|
+
* @see {@link StartFailbackLaunchCommand}
|
|
242
201
|
*/
|
|
243
202
|
startFailbackLaunch(args: StartFailbackLaunchCommandInput, options?: __HttpHandlerOptions): Promise<StartFailbackLaunchCommandOutput>;
|
|
244
203
|
startFailbackLaunch(args: StartFailbackLaunchCommandInput, cb: (err: any, data?: StartFailbackLaunchCommandOutput) => void): void;
|
|
245
204
|
startFailbackLaunch(args: StartFailbackLaunchCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartFailbackLaunchCommandOutput) => void): void;
|
|
246
205
|
/**
|
|
247
|
-
* @
|
|
248
|
-
* <p>Launches Recovery Instances for the specified Source Servers. For each Source Server you may choose a point in time snapshot to launch from, or use an on demand snapshot.</p>
|
|
206
|
+
* @see {@link StartRecoveryCommand}
|
|
249
207
|
*/
|
|
250
208
|
startRecovery(args: StartRecoveryCommandInput, options?: __HttpHandlerOptions): Promise<StartRecoveryCommandOutput>;
|
|
251
209
|
startRecovery(args: StartRecoveryCommandInput, cb: (err: any, data?: StartRecoveryCommandOutput) => void): void;
|
|
252
210
|
startRecovery(args: StartRecoveryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartRecoveryCommandOutput) => void): void;
|
|
253
211
|
/**
|
|
254
|
-
* @
|
|
255
|
-
* <p>Starts replication for a stopped Source Server. This action would make the Source Server protected again and restart billing for it.</p>
|
|
212
|
+
* @see {@link StartReplicationCommand}
|
|
256
213
|
*/
|
|
257
214
|
startReplication(args: StartReplicationCommandInput, options?: __HttpHandlerOptions): Promise<StartReplicationCommandOutput>;
|
|
258
215
|
startReplication(args: StartReplicationCommandInput, cb: (err: any, data?: StartReplicationCommandOutput) => void): void;
|
|
259
216
|
startReplication(args: StartReplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartReplicationCommandOutput) => void): void;
|
|
260
217
|
/**
|
|
261
|
-
* @
|
|
262
|
-
* <p>Stops the failback process for a specified Recovery Instance. This changes the Failback State of the Recovery Instance back to FAILBACK_NOT_STARTED.</p>
|
|
218
|
+
* @see {@link StopFailbackCommand}
|
|
263
219
|
*/
|
|
264
220
|
stopFailback(args: StopFailbackCommandInput, options?: __HttpHandlerOptions): Promise<StopFailbackCommandOutput>;
|
|
265
221
|
stopFailback(args: StopFailbackCommandInput, cb: (err: any, data?: StopFailbackCommandOutput) => void): void;
|
|
266
222
|
stopFailback(args: StopFailbackCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopFailbackCommandOutput) => void): void;
|
|
267
223
|
/**
|
|
268
|
-
* @
|
|
269
|
-
* <p>Stops replication for a Source Server. This action would make the Source Server unprotected, delete its existing snapshots and stop billing for it.</p>
|
|
224
|
+
* @see {@link StopReplicationCommand}
|
|
270
225
|
*/
|
|
271
226
|
stopReplication(args: StopReplicationCommandInput, options?: __HttpHandlerOptions): Promise<StopReplicationCommandOutput>;
|
|
272
227
|
stopReplication(args: StopReplicationCommandInput, cb: (err: any, data?: StopReplicationCommandOutput) => void): void;
|
|
273
228
|
stopReplication(args: StopReplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopReplicationCommandOutput) => void): void;
|
|
274
229
|
/**
|
|
275
|
-
* @
|
|
276
|
-
* <p>Adds or overwrites only the specified tags for the specified Elastic Disaster Recovery resource or resources. When you specify an existing tag key, the value is overwritten with the new value. Each resource can have a maximum of 50 tags. Each tag consists of a key and optional value.</p>
|
|
230
|
+
* @see {@link TagResourceCommand}
|
|
277
231
|
*/
|
|
278
232
|
tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
|
|
279
233
|
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
280
234
|
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
281
235
|
/**
|
|
282
|
-
* @
|
|
283
|
-
* <p>Initiates a Job for terminating the EC2 resources associated with the specified Recovery Instances, and then will delete the Recovery Instances from the Elastic Disaster Recovery service.</p>
|
|
236
|
+
* @see {@link TerminateRecoveryInstancesCommand}
|
|
284
237
|
*/
|
|
285
238
|
terminateRecoveryInstances(args: TerminateRecoveryInstancesCommandInput, options?: __HttpHandlerOptions): Promise<TerminateRecoveryInstancesCommandOutput>;
|
|
286
239
|
terminateRecoveryInstances(args: TerminateRecoveryInstancesCommandInput, cb: (err: any, data?: TerminateRecoveryInstancesCommandOutput) => void): void;
|
|
287
240
|
terminateRecoveryInstances(args: TerminateRecoveryInstancesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TerminateRecoveryInstancesCommandOutput) => void): void;
|
|
288
241
|
/**
|
|
289
|
-
* @
|
|
290
|
-
* <p>Deletes the specified set of tags from the specified set of Elastic Disaster Recovery resources.</p>
|
|
242
|
+
* @see {@link UntagResourceCommand}
|
|
291
243
|
*/
|
|
292
244
|
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
293
245
|
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
294
246
|
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
295
247
|
/**
|
|
296
|
-
* @
|
|
297
|
-
* <p>Allows you to update the failback replication configuration of a Recovery Instance by ID.</p>
|
|
248
|
+
* @see {@link UpdateFailbackReplicationConfigurationCommand}
|
|
298
249
|
*/
|
|
299
250
|
updateFailbackReplicationConfiguration(args: UpdateFailbackReplicationConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateFailbackReplicationConfigurationCommandOutput>;
|
|
300
251
|
updateFailbackReplicationConfiguration(args: UpdateFailbackReplicationConfigurationCommandInput, cb: (err: any, data?: UpdateFailbackReplicationConfigurationCommandOutput) => void): void;
|
|
301
252
|
updateFailbackReplicationConfiguration(args: UpdateFailbackReplicationConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateFailbackReplicationConfigurationCommandOutput) => void): void;
|
|
302
253
|
/**
|
|
303
|
-
* @
|
|
304
|
-
* <p>Updates a LaunchConfiguration by Source Server ID.</p>
|
|
254
|
+
* @see {@link UpdateLaunchConfigurationCommand}
|
|
305
255
|
*/
|
|
306
256
|
updateLaunchConfiguration(args: UpdateLaunchConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateLaunchConfigurationCommandOutput>;
|
|
307
257
|
updateLaunchConfiguration(args: UpdateLaunchConfigurationCommandInput, cb: (err: any, data?: UpdateLaunchConfigurationCommandOutput) => void): void;
|
|
308
258
|
updateLaunchConfiguration(args: UpdateLaunchConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateLaunchConfigurationCommandOutput) => void): void;
|
|
309
259
|
/**
|
|
310
|
-
* @
|
|
311
|
-
* <p>Updates an existing Launch Configuration Template by ID.</p>
|
|
260
|
+
* @see {@link UpdateLaunchConfigurationTemplateCommand}
|
|
312
261
|
*/
|
|
313
262
|
updateLaunchConfigurationTemplate(args: UpdateLaunchConfigurationTemplateCommandInput, options?: __HttpHandlerOptions): Promise<UpdateLaunchConfigurationTemplateCommandOutput>;
|
|
314
263
|
updateLaunchConfigurationTemplate(args: UpdateLaunchConfigurationTemplateCommandInput, cb: (err: any, data?: UpdateLaunchConfigurationTemplateCommandOutput) => void): void;
|
|
315
264
|
updateLaunchConfigurationTemplate(args: UpdateLaunchConfigurationTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateLaunchConfigurationTemplateCommandOutput) => void): void;
|
|
316
265
|
/**
|
|
317
|
-
* @
|
|
318
|
-
* <p>Allows you to update a ReplicationConfiguration by Source Server ID.</p>
|
|
266
|
+
* @see {@link UpdateReplicationConfigurationCommand}
|
|
319
267
|
*/
|
|
320
268
|
updateReplicationConfiguration(args: UpdateReplicationConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateReplicationConfigurationCommandOutput>;
|
|
321
269
|
updateReplicationConfiguration(args: UpdateReplicationConfigurationCommandInput, cb: (err: any, data?: UpdateReplicationConfigurationCommandOutput) => void): void;
|
|
322
270
|
updateReplicationConfiguration(args: UpdateReplicationConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateReplicationConfigurationCommandOutput) => void): void;
|
|
323
271
|
/**
|
|
324
|
-
* @
|
|
325
|
-
* <p>Updates a ReplicationConfigurationTemplate by ID.</p>
|
|
272
|
+
* @see {@link UpdateReplicationConfigurationTemplateCommand}
|
|
326
273
|
*/
|
|
327
274
|
updateReplicationConfigurationTemplate(args: UpdateReplicationConfigurationTemplateCommandInput, options?: __HttpHandlerOptions): Promise<UpdateReplicationConfigurationTemplateCommandOutput>;
|
|
328
275
|
updateReplicationConfigurationTemplate(args: UpdateReplicationConfigurationTemplateCommandInput, cb: (err: any, data?: UpdateReplicationConfigurationTemplateCommandOutput) => void): void;
|
|
329
276
|
updateReplicationConfigurationTemplate(args: UpdateReplicationConfigurationTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateReplicationConfigurationTemplateCommandOutput) => void): void;
|
|
330
277
|
}
|
|
278
|
+
/**
|
|
279
|
+
* @public
|
|
280
|
+
* <p>AWS Elastic Disaster Recovery Service.</p>
|
|
281
|
+
*/
|
|
282
|
+
export declare class Drs extends DrsClient implements Drs {
|
|
283
|
+
}
|
|
@@ -156,7 +156,7 @@ import {
|
|
|
156
156
|
UpdateReplicationConfigurationTemplateCommandOutput,
|
|
157
157
|
} from "./commands/UpdateReplicationConfigurationTemplateCommand";
|
|
158
158
|
import { DrsClient } from "./DrsClient";
|
|
159
|
-
export
|
|
159
|
+
export interface Drs {
|
|
160
160
|
createExtendedSourceServer(
|
|
161
161
|
args: CreateExtendedSourceServerCommandInput,
|
|
162
162
|
options?: __HttpHandlerOptions
|
|
@@ -725,3 +725,4 @@ export declare class Drs extends DrsClient {
|
|
|
725
725
|
) => void
|
|
726
726
|
): void;
|
|
727
727
|
}
|
|
728
|
+
export declare class Drs extends DrsClient implements Drs {}
|
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.
|
|
4
|
+
"version": "3.319.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.
|
|
24
|
+
"@aws-sdk/client-sts": "3.319.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.310.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.319.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",
|
|
@@ -36,19 +36,19 @@
|
|
|
36
36
|
"@aws-sdk/middleware-serde": "3.310.0",
|
|
37
37
|
"@aws-sdk/middleware-signing": "3.310.0",
|
|
38
38
|
"@aws-sdk/middleware-stack": "3.310.0",
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.319.0",
|
|
40
40
|
"@aws-sdk/node-config-provider": "3.310.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.310.0",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.310.0",
|
|
43
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
+
"@aws-sdk/smithy-client": "3.316.0",
|
|
44
44
|
"@aws-sdk/types": "3.310.0",
|
|
45
45
|
"@aws-sdk/url-parser": "3.310.0",
|
|
46
46
|
"@aws-sdk/util-base64": "3.310.0",
|
|
47
47
|
"@aws-sdk/util-body-length-browser": "3.310.0",
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.310.0",
|
|
49
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
51
|
-
"@aws-sdk/util-endpoints": "3.
|
|
49
|
+
"@aws-sdk/util-defaults-mode-browser": "3.316.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.316.0",
|
|
51
|
+
"@aws-sdk/util-endpoints": "3.319.0",
|
|
52
52
|
"@aws-sdk/util-retry": "3.310.0",
|
|
53
53
|
"@aws-sdk/util-user-agent-browser": "3.310.0",
|
|
54
54
|
"@aws-sdk/util-user-agent-node": "3.310.0",
|