@aws-sdk/client-drs 3.50.0 → 3.53.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 (63) hide show
  1. package/CHANGELOG.md +27 -0
  2. package/dist-cjs/index.js +3 -0
  3. package/dist-cjs/models/DrsServiceException.js +11 -0
  4. package/dist-cjs/models/models_0.js +128 -3
  5. package/dist-cjs/protocols/Aws_restJson1.js +351 -1245
  6. package/dist-es/index.js +1 -0
  7. package/dist-es/models/DrsServiceException.js +12 -0
  8. package/dist-es/models/models_0.js +118 -1
  9. package/dist-es/protocols/Aws_restJson1.js +711 -1370
  10. package/dist-types/index.d.ts +1 -0
  11. package/dist-types/models/DrsServiceException.d.ts +10 -0
  12. package/dist-types/models/models_0.d.ts +58 -33
  13. package/dist-types/ts3.4/Drs.d.ts +150 -0
  14. package/dist-types/ts3.4/DrsClient.d.ts +102 -0
  15. package/dist-types/ts3.4/commands/CreateReplicationConfigurationTemplateCommand.d.ts +17 -0
  16. package/dist-types/ts3.4/commands/DeleteJobCommand.d.ts +17 -0
  17. package/dist-types/ts3.4/commands/DeleteRecoveryInstanceCommand.d.ts +17 -0
  18. package/dist-types/ts3.4/commands/DeleteReplicationConfigurationTemplateCommand.d.ts +17 -0
  19. package/dist-types/ts3.4/commands/DeleteSourceServerCommand.d.ts +17 -0
  20. package/dist-types/ts3.4/commands/DescribeJobLogItemsCommand.d.ts +17 -0
  21. package/dist-types/ts3.4/commands/DescribeJobsCommand.d.ts +17 -0
  22. package/dist-types/ts3.4/commands/DescribeRecoveryInstancesCommand.d.ts +17 -0
  23. package/dist-types/ts3.4/commands/DescribeRecoverySnapshotsCommand.d.ts +17 -0
  24. package/dist-types/ts3.4/commands/DescribeReplicationConfigurationTemplatesCommand.d.ts +17 -0
  25. package/dist-types/ts3.4/commands/DescribeSourceServersCommand.d.ts +17 -0
  26. package/dist-types/ts3.4/commands/DisconnectRecoveryInstanceCommand.d.ts +17 -0
  27. package/dist-types/ts3.4/commands/DisconnectSourceServerCommand.d.ts +17 -0
  28. package/dist-types/ts3.4/commands/GetFailbackReplicationConfigurationCommand.d.ts +17 -0
  29. package/dist-types/ts3.4/commands/GetLaunchConfigurationCommand.d.ts +17 -0
  30. package/dist-types/ts3.4/commands/GetReplicationConfigurationCommand.d.ts +17 -0
  31. package/dist-types/ts3.4/commands/InitializeServiceCommand.d.ts +17 -0
  32. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +17 -0
  33. package/dist-types/ts3.4/commands/RetryDataReplicationCommand.d.ts +17 -0
  34. package/dist-types/ts3.4/commands/StartFailbackLaunchCommand.d.ts +17 -0
  35. package/dist-types/ts3.4/commands/StartRecoveryCommand.d.ts +17 -0
  36. package/dist-types/ts3.4/commands/StopFailbackCommand.d.ts +17 -0
  37. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +17 -0
  38. package/dist-types/ts3.4/commands/TerminateRecoveryInstancesCommand.d.ts +17 -0
  39. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +17 -0
  40. package/dist-types/ts3.4/commands/UpdateFailbackReplicationConfigurationCommand.d.ts +17 -0
  41. package/dist-types/ts3.4/commands/UpdateLaunchConfigurationCommand.d.ts +17 -0
  42. package/dist-types/ts3.4/commands/UpdateReplicationConfigurationCommand.d.ts +17 -0
  43. package/dist-types/ts3.4/commands/UpdateReplicationConfigurationTemplateCommand.d.ts +17 -0
  44. package/dist-types/ts3.4/commands/index.d.ts +29 -0
  45. package/dist-types/ts3.4/endpoints.d.ts +2 -0
  46. package/dist-types/ts3.4/index.d.ts +6 -0
  47. package/dist-types/ts3.4/models/DrsServiceException.d.ts +6 -0
  48. package/dist-types/ts3.4/models/index.d.ts +1 -0
  49. package/dist-types/ts3.4/models/models_0.d.ts +1485 -0
  50. package/dist-types/ts3.4/pagination/DescribeJobLogItemsPaginator.d.ts +4 -0
  51. package/dist-types/ts3.4/pagination/DescribeJobsPaginator.d.ts +4 -0
  52. package/dist-types/ts3.4/pagination/DescribeRecoveryInstancesPaginator.d.ts +4 -0
  53. package/dist-types/ts3.4/pagination/DescribeRecoverySnapshotsPaginator.d.ts +4 -0
  54. package/dist-types/ts3.4/pagination/DescribeReplicationConfigurationTemplatesPaginator.d.ts +4 -0
  55. package/dist-types/ts3.4/pagination/DescribeSourceServersPaginator.d.ts +4 -0
  56. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  57. package/dist-types/ts3.4/pagination/index.d.ts +7 -0
  58. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +89 -0
  59. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +38 -0
  60. package/dist-types/ts3.4/runtimeConfig.d.ts +38 -0
  61. package/dist-types/ts3.4/runtimeConfig.native.d.ts +37 -0
  62. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
  63. package/package.json +33 -33
@@ -3,3 +3,4 @@ export * from "./DrsClient";
3
3
  export * from "./commands";
4
4
  export * from "./models";
5
5
  export * from "./pagination";
6
+ export { DrsServiceException } from "./models/DrsServiceException";
@@ -0,0 +1,10 @@
1
+ import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
+ /**
3
+ * Base exception class for all service exceptions from Drs service.
4
+ */
5
+ export declare class DrsServiceException extends __ServiceException {
6
+ /**
7
+ * @internal
8
+ */
9
+ constructor(options: __ServiceExceptionOptions);
10
+ }
@@ -1,20 +1,23 @@
1
- import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { DrsServiceException as __BaseException } from "./DrsServiceException";
2
3
  /**
3
4
  * <p>TYou do not have sufficient access to perform this action.</p>
4
5
  */
5
- export interface AccessDeniedException extends __SmithyException, $MetadataBearer {
6
- name: "AccessDeniedException";
7
- $fault: "client";
8
- message?: string;
6
+ export declare class AccessDeniedException extends __BaseException {
7
+ readonly name: "AccessDeniedException";
8
+ readonly $fault: "client";
9
9
  code?: string;
10
+ /**
11
+ * @internal
12
+ */
13
+ constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
10
14
  }
11
15
  /**
12
16
  * <p>The request could not be completed due to a conflict with the current state of the target resource.</p>
13
17
  */
14
- export interface ConflictException extends __SmithyException, $MetadataBearer {
15
- name: "ConflictException";
16
- $fault: "client";
17
- message?: string;
18
+ export declare class ConflictException extends __BaseException {
19
+ readonly name: "ConflictException";
20
+ readonly $fault: "client";
18
21
  code?: string;
19
22
  /**
20
23
  * <p>The ID of the resource.</p>
@@ -24,6 +27,10 @@ export interface ConflictException extends __SmithyException, $MetadataBearer {
24
27
  * <p>The type of the resource.</p>
25
28
  */
26
29
  resourceType?: string;
30
+ /**
31
+ * @internal
32
+ */
33
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
27
34
  }
28
35
  /**
29
36
  * <p>Information about a server's CPU.</p>
@@ -164,14 +171,17 @@ export declare namespace CreateReplicationConfigurationTemplateRequest {
164
171
  /**
165
172
  * <p>The request processing has failed because of an unknown error, exception or failure.</p>
166
173
  */
167
- export interface InternalServerException extends __SmithyException, $MetadataBearer {
168
- name: "InternalServerException";
169
- $fault: "server";
170
- message: string | undefined;
174
+ export declare class InternalServerException extends __BaseException {
175
+ readonly name: "InternalServerException";
176
+ readonly $fault: "server";
171
177
  /**
172
178
  * <p>The number of seconds after which the request should be safe to retry.</p>
173
179
  */
174
180
  retryAfterSeconds?: number;
181
+ /**
182
+ * @internal
183
+ */
184
+ constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
175
185
  }
176
186
  export interface ReplicationConfigurationTemplate {
177
187
  /**
@@ -252,10 +262,9 @@ export declare namespace ReplicationConfigurationTemplate {
252
262
  /**
253
263
  * <p>The request could not be completed because its exceeded the service quota.</p>
254
264
  */
255
- export interface ServiceQuotaExceededException extends __SmithyException, $MetadataBearer {
256
- name: "ServiceQuotaExceededException";
257
- $fault: "client";
258
- message?: string;
265
+ export declare class ServiceQuotaExceededException extends __BaseException {
266
+ readonly name: "ServiceQuotaExceededException";
267
+ readonly $fault: "client";
259
268
  code?: string;
260
269
  /**
261
270
  * <p>The ID of the resource.</p>
@@ -273,14 +282,17 @@ export interface ServiceQuotaExceededException extends __SmithyException, $Metad
273
282
  * <p>Quota code.</p>
274
283
  */
275
284
  quotaCode?: string;
285
+ /**
286
+ * @internal
287
+ */
288
+ constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
276
289
  }
277
290
  /**
278
291
  * <p>The request was denied due to request throttling.</p>
279
292
  */
280
- export interface ThrottlingException extends __SmithyException, $MetadataBearer {
281
- name: "ThrottlingException";
282
- $fault: "client";
283
- message: string | undefined;
293
+ export declare class ThrottlingException extends __BaseException {
294
+ readonly name: "ThrottlingException";
295
+ readonly $fault: "client";
284
296
  /**
285
297
  * <p>Service code.</p>
286
298
  */
@@ -293,15 +305,22 @@ export interface ThrottlingException extends __SmithyException, $MetadataBearer
293
305
  * <p>The number of seconds after which the request should be safe to retry.</p>
294
306
  */
295
307
  retryAfterSeconds?: string;
308
+ /**
309
+ * @internal
310
+ */
311
+ constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
296
312
  }
297
313
  /**
298
314
  * <p>The account performing the request has not been initialized.</p>
299
315
  */
300
- export interface UninitializedAccountException extends __SmithyException, $MetadataBearer {
301
- name: "UninitializedAccountException";
302
- $fault: "client";
303
- message?: string;
316
+ export declare class UninitializedAccountException extends __BaseException {
317
+ readonly name: "UninitializedAccountException";
318
+ readonly $fault: "client";
304
319
  code?: string;
320
+ /**
321
+ * @internal
322
+ */
323
+ constructor(opts: __ExceptionOptionType<UninitializedAccountException, __BaseException>);
305
324
  }
306
325
  /**
307
326
  * <p>Validate exception field.</p>
@@ -331,10 +350,9 @@ export declare enum ValidationExceptionReason {
331
350
  /**
332
351
  * <p>The input fails to satisfy the constraints specified by the AWS service.</p>
333
352
  */
334
- export interface ValidationException extends __SmithyException, $MetadataBearer {
335
- name: "ValidationException";
336
- $fault: "client";
337
- message?: string;
353
+ export declare class ValidationException extends __BaseException {
354
+ readonly name: "ValidationException";
355
+ readonly $fault: "client";
338
356
  code?: string;
339
357
  /**
340
358
  * <p>Validation exception reason.</p>
@@ -344,6 +362,10 @@ export interface ValidationException extends __SmithyException, $MetadataBearer
344
362
  * <p>A list of fields that failed validation.</p>
345
363
  */
346
364
  fieldList?: ValidationExceptionField[];
365
+ /**
366
+ * @internal
367
+ */
368
+ constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
347
369
  }
348
370
  export declare enum DataReplicationErrorString {
349
371
  AGENT_NOT_SEEN = "AGENT_NOT_SEEN",
@@ -543,10 +565,9 @@ export declare namespace DeleteJobResponse {
543
565
  /**
544
566
  * <p>The resource for this operation was not found.</p>
545
567
  */
546
- export interface ResourceNotFoundException extends __SmithyException, $MetadataBearer {
547
- name: "ResourceNotFoundException";
548
- $fault: "client";
549
- message?: string;
568
+ export declare class ResourceNotFoundException extends __BaseException {
569
+ readonly name: "ResourceNotFoundException";
570
+ readonly $fault: "client";
550
571
  code?: string;
551
572
  /**
552
573
  * <p>The ID of the resource.</p>
@@ -556,6 +577,10 @@ export interface ResourceNotFoundException extends __SmithyException, $MetadataB
556
577
  * <p>The type of the resource.</p>
557
578
  */
558
579
  resourceType?: string;
580
+ /**
581
+ * @internal
582
+ */
583
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
559
584
  }
560
585
  export interface DeleteRecoveryInstanceRequest {
561
586
  /**
@@ -0,0 +1,150 @@
1
+ import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
+ import { CreateReplicationConfigurationTemplateCommandInput, CreateReplicationConfigurationTemplateCommandOutput } from "./commands/CreateReplicationConfigurationTemplateCommand";
3
+ import { DeleteJobCommandInput, DeleteJobCommandOutput } from "./commands/DeleteJobCommand";
4
+ import { DeleteRecoveryInstanceCommandInput, DeleteRecoveryInstanceCommandOutput } from "./commands/DeleteRecoveryInstanceCommand";
5
+ import { DeleteReplicationConfigurationTemplateCommandInput, DeleteReplicationConfigurationTemplateCommandOutput } from "./commands/DeleteReplicationConfigurationTemplateCommand";
6
+ import { DeleteSourceServerCommandInput, DeleteSourceServerCommandOutput } from "./commands/DeleteSourceServerCommand";
7
+ import { DescribeJobLogItemsCommandInput, DescribeJobLogItemsCommandOutput } from "./commands/DescribeJobLogItemsCommand";
8
+ import { DescribeJobsCommandInput, DescribeJobsCommandOutput } from "./commands/DescribeJobsCommand";
9
+ import { DescribeRecoveryInstancesCommandInput, DescribeRecoveryInstancesCommandOutput } from "./commands/DescribeRecoveryInstancesCommand";
10
+ import { DescribeRecoverySnapshotsCommandInput, DescribeRecoverySnapshotsCommandOutput } from "./commands/DescribeRecoverySnapshotsCommand";
11
+ import { DescribeReplicationConfigurationTemplatesCommandInput, DescribeReplicationConfigurationTemplatesCommandOutput } from "./commands/DescribeReplicationConfigurationTemplatesCommand";
12
+ import { DescribeSourceServersCommandInput, DescribeSourceServersCommandOutput } from "./commands/DescribeSourceServersCommand";
13
+ import { DisconnectRecoveryInstanceCommandInput, DisconnectRecoveryInstanceCommandOutput } from "./commands/DisconnectRecoveryInstanceCommand";
14
+ import { DisconnectSourceServerCommandInput, DisconnectSourceServerCommandOutput } from "./commands/DisconnectSourceServerCommand";
15
+ import { GetFailbackReplicationConfigurationCommandInput, GetFailbackReplicationConfigurationCommandOutput } from "./commands/GetFailbackReplicationConfigurationCommand";
16
+ import { GetLaunchConfigurationCommandInput, GetLaunchConfigurationCommandOutput } from "./commands/GetLaunchConfigurationCommand";
17
+ import { GetReplicationConfigurationCommandInput, GetReplicationConfigurationCommandOutput } from "./commands/GetReplicationConfigurationCommand";
18
+ import { InitializeServiceCommandInput, InitializeServiceCommandOutput } from "./commands/InitializeServiceCommand";
19
+ import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
20
+ import { RetryDataReplicationCommandInput, RetryDataReplicationCommandOutput } from "./commands/RetryDataReplicationCommand";
21
+ import { StartFailbackLaunchCommandInput, StartFailbackLaunchCommandOutput } from "./commands/StartFailbackLaunchCommand";
22
+ import { StartRecoveryCommandInput, StartRecoveryCommandOutput } from "./commands/StartRecoveryCommand";
23
+ import { StopFailbackCommandInput, StopFailbackCommandOutput } from "./commands/StopFailbackCommand";
24
+ import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
25
+ import { TerminateRecoveryInstancesCommandInput, TerminateRecoveryInstancesCommandOutput } from "./commands/TerminateRecoveryInstancesCommand";
26
+ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
27
+ import { UpdateFailbackReplicationConfigurationCommandInput, UpdateFailbackReplicationConfigurationCommandOutput } from "./commands/UpdateFailbackReplicationConfigurationCommand";
28
+ import { UpdateLaunchConfigurationCommandInput, UpdateLaunchConfigurationCommandOutput } from "./commands/UpdateLaunchConfigurationCommand";
29
+ import { UpdateReplicationConfigurationCommandInput, UpdateReplicationConfigurationCommandOutput } from "./commands/UpdateReplicationConfigurationCommand";
30
+ import { UpdateReplicationConfigurationTemplateCommandInput, UpdateReplicationConfigurationTemplateCommandOutput } from "./commands/UpdateReplicationConfigurationTemplateCommand";
31
+ import { DrsClient } from "./DrsClient";
32
+
33
+ export declare class Drs extends DrsClient {
34
+
35
+ createReplicationConfigurationTemplate(args: CreateReplicationConfigurationTemplateCommandInput, options?: __HttpHandlerOptions): Promise<CreateReplicationConfigurationTemplateCommandOutput>;
36
+ createReplicationConfigurationTemplate(args: CreateReplicationConfigurationTemplateCommandInput, cb: (err: any, data?: CreateReplicationConfigurationTemplateCommandOutput) => void): void;
37
+ createReplicationConfigurationTemplate(args: CreateReplicationConfigurationTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateReplicationConfigurationTemplateCommandOutput) => void): void;
38
+
39
+ deleteJob(args: DeleteJobCommandInput, options?: __HttpHandlerOptions): Promise<DeleteJobCommandOutput>;
40
+ deleteJob(args: DeleteJobCommandInput, cb: (err: any, data?: DeleteJobCommandOutput) => void): void;
41
+ deleteJob(args: DeleteJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteJobCommandOutput) => void): void;
42
+
43
+ deleteRecoveryInstance(args: DeleteRecoveryInstanceCommandInput, options?: __HttpHandlerOptions): Promise<DeleteRecoveryInstanceCommandOutput>;
44
+ deleteRecoveryInstance(args: DeleteRecoveryInstanceCommandInput, cb: (err: any, data?: DeleteRecoveryInstanceCommandOutput) => void): void;
45
+ deleteRecoveryInstance(args: DeleteRecoveryInstanceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteRecoveryInstanceCommandOutput) => void): void;
46
+
47
+ deleteReplicationConfigurationTemplate(args: DeleteReplicationConfigurationTemplateCommandInput, options?: __HttpHandlerOptions): Promise<DeleteReplicationConfigurationTemplateCommandOutput>;
48
+ deleteReplicationConfigurationTemplate(args: DeleteReplicationConfigurationTemplateCommandInput, cb: (err: any, data?: DeleteReplicationConfigurationTemplateCommandOutput) => void): void;
49
+ deleteReplicationConfigurationTemplate(args: DeleteReplicationConfigurationTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteReplicationConfigurationTemplateCommandOutput) => void): void;
50
+
51
+ deleteSourceServer(args: DeleteSourceServerCommandInput, options?: __HttpHandlerOptions): Promise<DeleteSourceServerCommandOutput>;
52
+ deleteSourceServer(args: DeleteSourceServerCommandInput, cb: (err: any, data?: DeleteSourceServerCommandOutput) => void): void;
53
+ deleteSourceServer(args: DeleteSourceServerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteSourceServerCommandOutput) => void): void;
54
+
55
+ describeJobLogItems(args: DescribeJobLogItemsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeJobLogItemsCommandOutput>;
56
+ describeJobLogItems(args: DescribeJobLogItemsCommandInput, cb: (err: any, data?: DescribeJobLogItemsCommandOutput) => void): void;
57
+ describeJobLogItems(args: DescribeJobLogItemsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeJobLogItemsCommandOutput) => void): void;
58
+
59
+ describeJobs(args: DescribeJobsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeJobsCommandOutput>;
60
+ describeJobs(args: DescribeJobsCommandInput, cb: (err: any, data?: DescribeJobsCommandOutput) => void): void;
61
+ describeJobs(args: DescribeJobsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeJobsCommandOutput) => void): void;
62
+
63
+ describeRecoveryInstances(args: DescribeRecoveryInstancesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeRecoveryInstancesCommandOutput>;
64
+ describeRecoveryInstances(args: DescribeRecoveryInstancesCommandInput, cb: (err: any, data?: DescribeRecoveryInstancesCommandOutput) => void): void;
65
+ describeRecoveryInstances(args: DescribeRecoveryInstancesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeRecoveryInstancesCommandOutput) => void): void;
66
+
67
+ describeRecoverySnapshots(args: DescribeRecoverySnapshotsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeRecoverySnapshotsCommandOutput>;
68
+ describeRecoverySnapshots(args: DescribeRecoverySnapshotsCommandInput, cb: (err: any, data?: DescribeRecoverySnapshotsCommandOutput) => void): void;
69
+ describeRecoverySnapshots(args: DescribeRecoverySnapshotsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeRecoverySnapshotsCommandOutput) => void): void;
70
+
71
+ describeReplicationConfigurationTemplates(args: DescribeReplicationConfigurationTemplatesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeReplicationConfigurationTemplatesCommandOutput>;
72
+ describeReplicationConfigurationTemplates(args: DescribeReplicationConfigurationTemplatesCommandInput, cb: (err: any, data?: DescribeReplicationConfigurationTemplatesCommandOutput) => void): void;
73
+ describeReplicationConfigurationTemplates(args: DescribeReplicationConfigurationTemplatesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeReplicationConfigurationTemplatesCommandOutput) => void): void;
74
+
75
+ describeSourceServers(args: DescribeSourceServersCommandInput, options?: __HttpHandlerOptions): Promise<DescribeSourceServersCommandOutput>;
76
+ describeSourceServers(args: DescribeSourceServersCommandInput, cb: (err: any, data?: DescribeSourceServersCommandOutput) => void): void;
77
+ describeSourceServers(args: DescribeSourceServersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeSourceServersCommandOutput) => void): void;
78
+
79
+ disconnectRecoveryInstance(args: DisconnectRecoveryInstanceCommandInput, options?: __HttpHandlerOptions): Promise<DisconnectRecoveryInstanceCommandOutput>;
80
+ disconnectRecoveryInstance(args: DisconnectRecoveryInstanceCommandInput, cb: (err: any, data?: DisconnectRecoveryInstanceCommandOutput) => void): void;
81
+ disconnectRecoveryInstance(args: DisconnectRecoveryInstanceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisconnectRecoveryInstanceCommandOutput) => void): void;
82
+
83
+ disconnectSourceServer(args: DisconnectSourceServerCommandInput, options?: __HttpHandlerOptions): Promise<DisconnectSourceServerCommandOutput>;
84
+ disconnectSourceServer(args: DisconnectSourceServerCommandInput, cb: (err: any, data?: DisconnectSourceServerCommandOutput) => void): void;
85
+ disconnectSourceServer(args: DisconnectSourceServerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisconnectSourceServerCommandOutput) => void): void;
86
+
87
+ getFailbackReplicationConfiguration(args: GetFailbackReplicationConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<GetFailbackReplicationConfigurationCommandOutput>;
88
+ getFailbackReplicationConfiguration(args: GetFailbackReplicationConfigurationCommandInput, cb: (err: any, data?: GetFailbackReplicationConfigurationCommandOutput) => void): void;
89
+ getFailbackReplicationConfiguration(args: GetFailbackReplicationConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetFailbackReplicationConfigurationCommandOutput) => void): void;
90
+
91
+ getLaunchConfiguration(args: GetLaunchConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<GetLaunchConfigurationCommandOutput>;
92
+ getLaunchConfiguration(args: GetLaunchConfigurationCommandInput, cb: (err: any, data?: GetLaunchConfigurationCommandOutput) => void): void;
93
+ getLaunchConfiguration(args: GetLaunchConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetLaunchConfigurationCommandOutput) => void): void;
94
+
95
+ getReplicationConfiguration(args: GetReplicationConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<GetReplicationConfigurationCommandOutput>;
96
+ getReplicationConfiguration(args: GetReplicationConfigurationCommandInput, cb: (err: any, data?: GetReplicationConfigurationCommandOutput) => void): void;
97
+ getReplicationConfiguration(args: GetReplicationConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetReplicationConfigurationCommandOutput) => void): void;
98
+
99
+ initializeService(args: InitializeServiceCommandInput, options?: __HttpHandlerOptions): Promise<InitializeServiceCommandOutput>;
100
+ initializeService(args: InitializeServiceCommandInput, cb: (err: any, data?: InitializeServiceCommandOutput) => void): void;
101
+ initializeService(args: InitializeServiceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: InitializeServiceCommandOutput) => void): void;
102
+
103
+ listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
104
+ listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
105
+ listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
106
+
107
+ retryDataReplication(args: RetryDataReplicationCommandInput, options?: __HttpHandlerOptions): Promise<RetryDataReplicationCommandOutput>;
108
+ retryDataReplication(args: RetryDataReplicationCommandInput, cb: (err: any, data?: RetryDataReplicationCommandOutput) => void): void;
109
+ retryDataReplication(args: RetryDataReplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RetryDataReplicationCommandOutput) => void): void;
110
+
111
+ startFailbackLaunch(args: StartFailbackLaunchCommandInput, options?: __HttpHandlerOptions): Promise<StartFailbackLaunchCommandOutput>;
112
+ startFailbackLaunch(args: StartFailbackLaunchCommandInput, cb: (err: any, data?: StartFailbackLaunchCommandOutput) => void): void;
113
+ startFailbackLaunch(args: StartFailbackLaunchCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartFailbackLaunchCommandOutput) => void): void;
114
+
115
+ startRecovery(args: StartRecoveryCommandInput, options?: __HttpHandlerOptions): Promise<StartRecoveryCommandOutput>;
116
+ startRecovery(args: StartRecoveryCommandInput, cb: (err: any, data?: StartRecoveryCommandOutput) => void): void;
117
+ startRecovery(args: StartRecoveryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartRecoveryCommandOutput) => void): void;
118
+
119
+ stopFailback(args: StopFailbackCommandInput, options?: __HttpHandlerOptions): Promise<StopFailbackCommandOutput>;
120
+ stopFailback(args: StopFailbackCommandInput, cb: (err: any, data?: StopFailbackCommandOutput) => void): void;
121
+ stopFailback(args: StopFailbackCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopFailbackCommandOutput) => void): void;
122
+
123
+ tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
124
+ tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
125
+ tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
126
+
127
+ terminateRecoveryInstances(args: TerminateRecoveryInstancesCommandInput, options?: __HttpHandlerOptions): Promise<TerminateRecoveryInstancesCommandOutput>;
128
+ terminateRecoveryInstances(args: TerminateRecoveryInstancesCommandInput, cb: (err: any, data?: TerminateRecoveryInstancesCommandOutput) => void): void;
129
+ terminateRecoveryInstances(args: TerminateRecoveryInstancesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TerminateRecoveryInstancesCommandOutput) => void): void;
130
+
131
+ untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
132
+ untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
133
+ untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
134
+
135
+ updateFailbackReplicationConfiguration(args: UpdateFailbackReplicationConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateFailbackReplicationConfigurationCommandOutput>;
136
+ updateFailbackReplicationConfiguration(args: UpdateFailbackReplicationConfigurationCommandInput, cb: (err: any, data?: UpdateFailbackReplicationConfigurationCommandOutput) => void): void;
137
+ updateFailbackReplicationConfiguration(args: UpdateFailbackReplicationConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateFailbackReplicationConfigurationCommandOutput) => void): void;
138
+
139
+ updateLaunchConfiguration(args: UpdateLaunchConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateLaunchConfigurationCommandOutput>;
140
+ updateLaunchConfiguration(args: UpdateLaunchConfigurationCommandInput, cb: (err: any, data?: UpdateLaunchConfigurationCommandOutput) => void): void;
141
+ updateLaunchConfiguration(args: UpdateLaunchConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateLaunchConfigurationCommandOutput) => void): void;
142
+
143
+ updateReplicationConfiguration(args: UpdateReplicationConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateReplicationConfigurationCommandOutput>;
144
+ updateReplicationConfiguration(args: UpdateReplicationConfigurationCommandInput, cb: (err: any, data?: UpdateReplicationConfigurationCommandOutput) => void): void;
145
+ updateReplicationConfiguration(args: UpdateReplicationConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateReplicationConfigurationCommandOutput) => void): void;
146
+
147
+ updateReplicationConfigurationTemplate(args: UpdateReplicationConfigurationTemplateCommandInput, options?: __HttpHandlerOptions): Promise<UpdateReplicationConfigurationTemplateCommandOutput>;
148
+ updateReplicationConfigurationTemplate(args: UpdateReplicationConfigurationTemplateCommandInput, cb: (err: any, data?: UpdateReplicationConfigurationTemplateCommandOutput) => void): void;
149
+ updateReplicationConfigurationTemplate(args: UpdateReplicationConfigurationTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateReplicationConfigurationTemplateCommandOutput) => void): void;
150
+ }
@@ -0,0 +1,102 @@
1
+ import { EndpointsInputConfig, EndpointsResolvedConfig, RegionInputConfig, RegionResolvedConfig } from "@aws-sdk/config-resolver";
2
+ import { HostHeaderInputConfig, HostHeaderResolvedConfig } from "@aws-sdk/middleware-host-header";
3
+ import { RetryInputConfig, RetryResolvedConfig } from "@aws-sdk/middleware-retry";
4
+ import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
5
+ import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
6
+ import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
7
+ import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
8
+ import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
9
+ import { CreateReplicationConfigurationTemplateCommandInput, CreateReplicationConfigurationTemplateCommandOutput } from "./commands/CreateReplicationConfigurationTemplateCommand";
10
+ import { DeleteJobCommandInput, DeleteJobCommandOutput } from "./commands/DeleteJobCommand";
11
+ import { DeleteRecoveryInstanceCommandInput, DeleteRecoveryInstanceCommandOutput } from "./commands/DeleteRecoveryInstanceCommand";
12
+ import { DeleteReplicationConfigurationTemplateCommandInput, DeleteReplicationConfigurationTemplateCommandOutput } from "./commands/DeleteReplicationConfigurationTemplateCommand";
13
+ import { DeleteSourceServerCommandInput, DeleteSourceServerCommandOutput } from "./commands/DeleteSourceServerCommand";
14
+ import { DescribeJobLogItemsCommandInput, DescribeJobLogItemsCommandOutput } from "./commands/DescribeJobLogItemsCommand";
15
+ import { DescribeJobsCommandInput, DescribeJobsCommandOutput } from "./commands/DescribeJobsCommand";
16
+ import { DescribeRecoveryInstancesCommandInput, DescribeRecoveryInstancesCommandOutput } from "./commands/DescribeRecoveryInstancesCommand";
17
+ import { DescribeRecoverySnapshotsCommandInput, DescribeRecoverySnapshotsCommandOutput } from "./commands/DescribeRecoverySnapshotsCommand";
18
+ import { DescribeReplicationConfigurationTemplatesCommandInput, DescribeReplicationConfigurationTemplatesCommandOutput } from "./commands/DescribeReplicationConfigurationTemplatesCommand";
19
+ import { DescribeSourceServersCommandInput, DescribeSourceServersCommandOutput } from "./commands/DescribeSourceServersCommand";
20
+ import { DisconnectRecoveryInstanceCommandInput, DisconnectRecoveryInstanceCommandOutput } from "./commands/DisconnectRecoveryInstanceCommand";
21
+ import { DisconnectSourceServerCommandInput, DisconnectSourceServerCommandOutput } from "./commands/DisconnectSourceServerCommand";
22
+ import { GetFailbackReplicationConfigurationCommandInput, GetFailbackReplicationConfigurationCommandOutput } from "./commands/GetFailbackReplicationConfigurationCommand";
23
+ import { GetLaunchConfigurationCommandInput, GetLaunchConfigurationCommandOutput } from "./commands/GetLaunchConfigurationCommand";
24
+ import { GetReplicationConfigurationCommandInput, GetReplicationConfigurationCommandOutput } from "./commands/GetReplicationConfigurationCommand";
25
+ import { InitializeServiceCommandInput, InitializeServiceCommandOutput } from "./commands/InitializeServiceCommand";
26
+ import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
27
+ import { RetryDataReplicationCommandInput, RetryDataReplicationCommandOutput } from "./commands/RetryDataReplicationCommand";
28
+ import { StartFailbackLaunchCommandInput, StartFailbackLaunchCommandOutput } from "./commands/StartFailbackLaunchCommand";
29
+ import { StartRecoveryCommandInput, StartRecoveryCommandOutput } from "./commands/StartRecoveryCommand";
30
+ import { StopFailbackCommandInput, StopFailbackCommandOutput } from "./commands/StopFailbackCommand";
31
+ import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
32
+ import { TerminateRecoveryInstancesCommandInput, TerminateRecoveryInstancesCommandOutput } from "./commands/TerminateRecoveryInstancesCommand";
33
+ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
34
+ import { UpdateFailbackReplicationConfigurationCommandInput, UpdateFailbackReplicationConfigurationCommandOutput } from "./commands/UpdateFailbackReplicationConfigurationCommand";
35
+ import { UpdateLaunchConfigurationCommandInput, UpdateLaunchConfigurationCommandOutput } from "./commands/UpdateLaunchConfigurationCommand";
36
+ import { UpdateReplicationConfigurationCommandInput, UpdateReplicationConfigurationCommandOutput } from "./commands/UpdateReplicationConfigurationCommand";
37
+ import { UpdateReplicationConfigurationTemplateCommandInput, UpdateReplicationConfigurationTemplateCommandOutput } from "./commands/UpdateReplicationConfigurationTemplateCommand";
38
+ export declare type ServiceInputTypes = CreateReplicationConfigurationTemplateCommandInput | DeleteJobCommandInput | DeleteRecoveryInstanceCommandInput | DeleteReplicationConfigurationTemplateCommandInput | DeleteSourceServerCommandInput | DescribeJobLogItemsCommandInput | DescribeJobsCommandInput | DescribeRecoveryInstancesCommandInput | DescribeRecoverySnapshotsCommandInput | DescribeReplicationConfigurationTemplatesCommandInput | DescribeSourceServersCommandInput | DisconnectRecoveryInstanceCommandInput | DisconnectSourceServerCommandInput | GetFailbackReplicationConfigurationCommandInput | GetLaunchConfigurationCommandInput | GetReplicationConfigurationCommandInput | InitializeServiceCommandInput | ListTagsForResourceCommandInput | RetryDataReplicationCommandInput | StartFailbackLaunchCommandInput | StartRecoveryCommandInput | StopFailbackCommandInput | TagResourceCommandInput | TerminateRecoveryInstancesCommandInput | UntagResourceCommandInput | UpdateFailbackReplicationConfigurationCommandInput | UpdateLaunchConfigurationCommandInput | UpdateReplicationConfigurationCommandInput | UpdateReplicationConfigurationTemplateCommandInput;
39
+ export declare type ServiceOutputTypes = CreateReplicationConfigurationTemplateCommandOutput | DeleteJobCommandOutput | DeleteRecoveryInstanceCommandOutput | DeleteReplicationConfigurationTemplateCommandOutput | DeleteSourceServerCommandOutput | DescribeJobLogItemsCommandOutput | DescribeJobsCommandOutput | DescribeRecoveryInstancesCommandOutput | DescribeRecoverySnapshotsCommandOutput | DescribeReplicationConfigurationTemplatesCommandOutput | DescribeSourceServersCommandOutput | DisconnectRecoveryInstanceCommandOutput | DisconnectSourceServerCommandOutput | GetFailbackReplicationConfigurationCommandOutput | GetLaunchConfigurationCommandOutput | GetReplicationConfigurationCommandOutput | InitializeServiceCommandOutput | ListTagsForResourceCommandOutput | RetryDataReplicationCommandOutput | StartFailbackLaunchCommandOutput | StartRecoveryCommandOutput | StopFailbackCommandOutput | TagResourceCommandOutput | TerminateRecoveryInstancesCommandOutput | UntagResourceCommandOutput | UpdateFailbackReplicationConfigurationCommandOutput | UpdateLaunchConfigurationCommandOutput | UpdateReplicationConfigurationCommandOutput | UpdateReplicationConfigurationTemplateCommandOutput;
40
+ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
41
+
42
+ requestHandler?: __HttpHandler;
43
+
44
+ sha256?: __HashConstructor;
45
+
46
+ urlParser?: __UrlParser;
47
+
48
+ bodyLengthChecker?: (body: any) => number | undefined;
49
+
50
+ streamCollector?: __StreamCollector;
51
+
52
+ base64Decoder?: __Decoder;
53
+
54
+ base64Encoder?: __Encoder;
55
+
56
+ utf8Decoder?: __Decoder;
57
+
58
+ utf8Encoder?: __Encoder;
59
+
60
+ runtime?: string;
61
+
62
+ disableHostPrefix?: boolean;
63
+
64
+ maxAttempts?: number | __Provider<number>;
65
+
66
+ retryMode?: string | __Provider<string>;
67
+
68
+ logger?: __Logger;
69
+
70
+ useDualstackEndpoint?: boolean | __Provider<boolean>;
71
+
72
+ useFipsEndpoint?: boolean | __Provider<boolean>;
73
+
74
+ serviceId?: string;
75
+
76
+ region?: string | __Provider<string>;
77
+
78
+ credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
79
+
80
+ regionInfoProvider?: RegionInfoProvider;
81
+
82
+ defaultUserAgentProvider?: Provider<__UserAgent>;
83
+
84
+ defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
85
+ }
86
+ declare type DrsClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig;
87
+
88
+ export interface DrsClientConfig extends DrsClientConfigType {
89
+ }
90
+ declare type DrsClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointsResolvedConfig & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig;
91
+
92
+ export interface DrsClientResolvedConfig extends DrsClientResolvedConfigType {
93
+ }
94
+
95
+ export declare class DrsClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, DrsClientResolvedConfig> {
96
+
97
+ readonly config: DrsClientResolvedConfig;
98
+ constructor(configuration: DrsClientConfig);
99
+
100
+ destroy(): void;
101
+ }
102
+ export {};
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient";
4
+ import { CreateReplicationConfigurationTemplateRequest, ReplicationConfigurationTemplate } from "../models/models_0";
5
+ export interface CreateReplicationConfigurationTemplateCommandInput extends CreateReplicationConfigurationTemplateRequest {
6
+ }
7
+ export interface CreateReplicationConfigurationTemplateCommandOutput extends ReplicationConfigurationTemplate, __MetadataBearer {
8
+ }
9
+
10
+ export declare class CreateReplicationConfigurationTemplateCommand extends $Command<CreateReplicationConfigurationTemplateCommandInput, CreateReplicationConfigurationTemplateCommandOutput, DrsClientResolvedConfig> {
11
+ readonly input: CreateReplicationConfigurationTemplateCommandInput;
12
+ constructor(input: CreateReplicationConfigurationTemplateCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DrsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateReplicationConfigurationTemplateCommandInput, CreateReplicationConfigurationTemplateCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient";
4
+ import { DeleteJobRequest, DeleteJobResponse } from "../models/models_0";
5
+ export interface DeleteJobCommandInput extends DeleteJobRequest {
6
+ }
7
+ export interface DeleteJobCommandOutput extends DeleteJobResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class DeleteJobCommand extends $Command<DeleteJobCommandInput, DeleteJobCommandOutput, DrsClientResolvedConfig> {
11
+ readonly input: DeleteJobCommandInput;
12
+ constructor(input: DeleteJobCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DrsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteJobCommandInput, DeleteJobCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient";
4
+ import { DeleteRecoveryInstanceRequest } from "../models/models_0";
5
+ export interface DeleteRecoveryInstanceCommandInput extends DeleteRecoveryInstanceRequest {
6
+ }
7
+ export interface DeleteRecoveryInstanceCommandOutput extends __MetadataBearer {
8
+ }
9
+
10
+ export declare class DeleteRecoveryInstanceCommand extends $Command<DeleteRecoveryInstanceCommandInput, DeleteRecoveryInstanceCommandOutput, DrsClientResolvedConfig> {
11
+ readonly input: DeleteRecoveryInstanceCommandInput;
12
+ constructor(input: DeleteRecoveryInstanceCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DrsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteRecoveryInstanceCommandInput, DeleteRecoveryInstanceCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient";
4
+ import { DeleteReplicationConfigurationTemplateRequest, DeleteReplicationConfigurationTemplateResponse } from "../models/models_0";
5
+ export interface DeleteReplicationConfigurationTemplateCommandInput extends DeleteReplicationConfigurationTemplateRequest {
6
+ }
7
+ export interface DeleteReplicationConfigurationTemplateCommandOutput extends DeleteReplicationConfigurationTemplateResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class DeleteReplicationConfigurationTemplateCommand extends $Command<DeleteReplicationConfigurationTemplateCommandInput, DeleteReplicationConfigurationTemplateCommandOutput, DrsClientResolvedConfig> {
11
+ readonly input: DeleteReplicationConfigurationTemplateCommandInput;
12
+ constructor(input: DeleteReplicationConfigurationTemplateCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DrsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteReplicationConfigurationTemplateCommandInput, DeleteReplicationConfigurationTemplateCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient";
4
+ import { DeleteSourceServerRequest, DeleteSourceServerResponse } from "../models/models_0";
5
+ export interface DeleteSourceServerCommandInput extends DeleteSourceServerRequest {
6
+ }
7
+ export interface DeleteSourceServerCommandOutput extends DeleteSourceServerResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class DeleteSourceServerCommand extends $Command<DeleteSourceServerCommandInput, DeleteSourceServerCommandOutput, DrsClientResolvedConfig> {
11
+ readonly input: DeleteSourceServerCommandInput;
12
+ constructor(input: DeleteSourceServerCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DrsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteSourceServerCommandInput, DeleteSourceServerCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient";
4
+ import { DescribeJobLogItemsRequest, DescribeJobLogItemsResponse } from "../models/models_0";
5
+ export interface DescribeJobLogItemsCommandInput extends DescribeJobLogItemsRequest {
6
+ }
7
+ export interface DescribeJobLogItemsCommandOutput extends DescribeJobLogItemsResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class DescribeJobLogItemsCommand extends $Command<DescribeJobLogItemsCommandInput, DescribeJobLogItemsCommandOutput, DrsClientResolvedConfig> {
11
+ readonly input: DescribeJobLogItemsCommandInput;
12
+ constructor(input: DescribeJobLogItemsCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DrsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeJobLogItemsCommandInput, DescribeJobLogItemsCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient";
4
+ import { DescribeJobsRequest, DescribeJobsResponse } from "../models/models_0";
5
+ export interface DescribeJobsCommandInput extends DescribeJobsRequest {
6
+ }
7
+ export interface DescribeJobsCommandOutput extends DescribeJobsResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class DescribeJobsCommand extends $Command<DescribeJobsCommandInput, DescribeJobsCommandOutput, DrsClientResolvedConfig> {
11
+ readonly input: DescribeJobsCommandInput;
12
+ constructor(input: DescribeJobsCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DrsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeJobsCommandInput, DescribeJobsCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient";
4
+ import { DescribeRecoveryInstancesRequest, DescribeRecoveryInstancesResponse } from "../models/models_0";
5
+ export interface DescribeRecoveryInstancesCommandInput extends DescribeRecoveryInstancesRequest {
6
+ }
7
+ export interface DescribeRecoveryInstancesCommandOutput extends DescribeRecoveryInstancesResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class DescribeRecoveryInstancesCommand extends $Command<DescribeRecoveryInstancesCommandInput, DescribeRecoveryInstancesCommandOutput, DrsClientResolvedConfig> {
11
+ readonly input: DescribeRecoveryInstancesCommandInput;
12
+ constructor(input: DescribeRecoveryInstancesCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DrsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeRecoveryInstancesCommandInput, DescribeRecoveryInstancesCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient";
4
+ import { DescribeRecoverySnapshotsRequest, DescribeRecoverySnapshotsResponse } from "../models/models_0";
5
+ export interface DescribeRecoverySnapshotsCommandInput extends DescribeRecoverySnapshotsRequest {
6
+ }
7
+ export interface DescribeRecoverySnapshotsCommandOutput extends DescribeRecoverySnapshotsResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class DescribeRecoverySnapshotsCommand extends $Command<DescribeRecoverySnapshotsCommandInput, DescribeRecoverySnapshotsCommandOutput, DrsClientResolvedConfig> {
11
+ readonly input: DescribeRecoverySnapshotsCommandInput;
12
+ constructor(input: DescribeRecoverySnapshotsCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DrsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeRecoverySnapshotsCommandInput, DescribeRecoverySnapshotsCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }