@aws-sdk/client-drs 3.1110.0 → 3.1112.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/README.md +147 -7
- package/dist-cjs/index.js +715 -5
- package/dist-es/Drs.js +48 -0
- package/dist-es/commands/CancelRecoveryPlanExecutionCommand.js +4 -0
- package/dist-es/commands/CreateRecoveryPlanCommand.js +4 -0
- package/dist-es/commands/CreateRecoveryPlanStepCommand.js +4 -0
- package/dist-es/commands/DeleteRecoveryPlanCommand.js +4 -0
- package/dist-es/commands/DeleteRecoveryPlanExecutionCommand.js +4 -0
- package/dist-es/commands/DeleteRecoveryPlanStepCommand.js +4 -0
- package/dist-es/commands/GetRecoveryPlanCommand.js +4 -0
- package/dist-es/commands/GetRecoveryPlanExecutionCommand.js +4 -0
- package/dist-es/commands/GetRecoveryPlanExecutionStepCommand.js +4 -0
- package/dist-es/commands/GetRecoveryPlanStepCommand.js +4 -0
- package/dist-es/commands/ListRecoveryPlanExecutionStepsCommand.js +4 -0
- package/dist-es/commands/ListRecoveryPlanExecutionsCommand.js +4 -0
- package/dist-es/commands/ListRecoveryPlanStepsCommand.js +4 -0
- package/dist-es/commands/ListRecoveryPlansCommand.js +4 -0
- package/dist-es/commands/ReorderRecoveryPlanStepsCommand.js +4 -0
- package/dist-es/commands/RetryRecoveryPlanExecutionStepCommand.js +4 -0
- package/dist-es/commands/StartRecoveryPlanExecutionCommand.js +4 -0
- package/dist-es/commands/UpdateRecoveryPlanCommand.js +4 -0
- package/dist-es/commands/UpdateRecoveryPlanExecutionStepCommand.js +4 -0
- package/dist-es/commands/UpdateRecoveryPlanStepCommand.js +4 -0
- package/dist-es/commands/index.js +20 -0
- package/dist-es/models/enums.js +29 -0
- package/dist-es/pagination/ListRecoveryPlanExecutionStepsPaginator.js +4 -0
- package/dist-es/pagination/ListRecoveryPlanExecutionsPaginator.js +4 -0
- package/dist-es/pagination/ListRecoveryPlanStepsPaginator.js +4 -0
- package/dist-es/pagination/ListRecoveryPlansPaginator.js +4 -0
- package/dist-es/pagination/index.js +4 -0
- package/dist-es/schemas/schemas_0.js +488 -4
- package/dist-types/Drs.d.ts +170 -0
- package/dist-types/DrsClient.d.ts +22 -2
- package/dist-types/commands/CancelRecoveryPlanExecutionCommand.d.ts +106 -0
- package/dist-types/commands/CreateRecoveryPlanCommand.d.ts +107 -0
- package/dist-types/commands/CreateRecoveryPlanStepCommand.d.ts +130 -0
- package/dist-types/commands/DeleteRecoveryPlanCommand.d.ts +92 -0
- package/dist-types/commands/DeleteRecoveryPlanExecutionCommand.d.ts +92 -0
- package/dist-types/commands/DeleteRecoveryPlanStepCommand.d.ts +92 -0
- package/dist-types/commands/GetRecoveryPlanCommand.d.ts +99 -0
- package/dist-types/commands/GetRecoveryPlanExecutionCommand.d.ts +103 -0
- package/dist-types/commands/GetRecoveryPlanExecutionStepCommand.d.ts +115 -0
- package/dist-types/commands/GetRecoveryPlanStepCommand.d.ts +108 -0
- package/dist-types/commands/ListRecoveryPlanExecutionStepsCommand.d.ts +120 -0
- package/dist-types/commands/ListRecoveryPlanExecutionsCommand.d.ts +102 -0
- package/dist-types/commands/ListRecoveryPlanStepsCommand.d.ts +113 -0
- package/dist-types/commands/ListRecoveryPlansCommand.d.ts +96 -0
- package/dist-types/commands/ReorderRecoveryPlanStepsCommand.d.ts +116 -0
- package/dist-types/commands/RetryRecoveryPlanExecutionStepCommand.d.ts +118 -0
- package/dist-types/commands/StartRecoveryPlanExecutionCommand.d.ts +120 -0
- package/dist-types/commands/UpdateRecoveryPlanCommand.d.ts +104 -0
- package/dist-types/commands/UpdateRecoveryPlanExecutionStepCommand.d.ts +126 -0
- package/dist-types/commands/UpdateRecoveryPlanStepCommand.d.ts +125 -0
- package/dist-types/commands/index.d.ts +20 -0
- package/dist-types/models/enums.d.ts +69 -0
- package/dist-types/models/models_0.d.ts +1049 -2
- package/dist-types/pagination/ListRecoveryPlanExecutionStepsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListRecoveryPlanExecutionsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListRecoveryPlanStepsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListRecoveryPlansPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +4 -0
- package/dist-types/runtimeConfig.browser.d.ts +40 -40
- package/dist-types/runtimeConfig.d.ts +36 -36
- package/dist-types/runtimeConfig.native.d.ts +38 -38
- package/dist-types/runtimeConfig.shared.d.ts +2 -2
- package/dist-types/schemas/schemas_0.d.ts +77 -0
- package/dist-types/ts3.4/Drs.d.ts +370 -0
- package/dist-types/ts3.4/DrsClient.d.ts +120 -0
- package/dist-types/ts3.4/commands/CancelRecoveryPlanExecutionCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/CreateRecoveryPlanCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/CreateRecoveryPlanStepCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DeleteRecoveryPlanCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DeleteRecoveryPlanExecutionCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/DeleteRecoveryPlanStepCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/GetRecoveryPlanCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/GetRecoveryPlanExecutionCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/GetRecoveryPlanExecutionStepCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/GetRecoveryPlanStepCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListRecoveryPlanExecutionStepsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListRecoveryPlanExecutionsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListRecoveryPlanStepsCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListRecoveryPlansCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ReorderRecoveryPlanStepsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/RetryRecoveryPlanExecutionStepCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/StartRecoveryPlanExecutionCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/UpdateRecoveryPlanCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/UpdateRecoveryPlanExecutionStepCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/UpdateRecoveryPlanStepCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/index.d.ts +20 -0
- package/dist-types/ts3.4/models/enums.d.ts +38 -0
- package/dist-types/ts3.4/models/models_0.d.ts +299 -0
- package/dist-types/ts3.4/pagination/ListRecoveryPlanExecutionStepsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListRecoveryPlanExecutionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListRecoveryPlanStepsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListRecoveryPlansPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +56 -58
- package/dist-types/ts3.4/runtimeConfig.d.ts +58 -58
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +60 -62
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +3 -3
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +77 -0
- package/package.json +5 -5
package/dist-es/Drs.js
CHANGED
|
@@ -1,13 +1,19 @@
|
|
|
1
1
|
import { createAggregatedClient } from "@smithy/core/client";
|
|
2
2
|
import { AssociateSourceNetworkStackCommand, } from "./commands/AssociateSourceNetworkStackCommand";
|
|
3
|
+
import { CancelRecoveryPlanExecutionCommand, } from "./commands/CancelRecoveryPlanExecutionCommand";
|
|
3
4
|
import { CreateExtendedSourceServerCommand, } from "./commands/CreateExtendedSourceServerCommand";
|
|
4
5
|
import { CreateLaunchConfigurationTemplateCommand, } from "./commands/CreateLaunchConfigurationTemplateCommand";
|
|
6
|
+
import { CreateRecoveryPlanCommand, } from "./commands/CreateRecoveryPlanCommand";
|
|
7
|
+
import { CreateRecoveryPlanStepCommand, } from "./commands/CreateRecoveryPlanStepCommand";
|
|
5
8
|
import { CreateReplicationConfigurationTemplateCommand, } from "./commands/CreateReplicationConfigurationTemplateCommand";
|
|
6
9
|
import { CreateSourceNetworkCommand, } from "./commands/CreateSourceNetworkCommand";
|
|
7
10
|
import { DeleteJobCommand } from "./commands/DeleteJobCommand";
|
|
8
11
|
import { DeleteLaunchActionCommand, } from "./commands/DeleteLaunchActionCommand";
|
|
9
12
|
import { DeleteLaunchConfigurationTemplateCommand, } from "./commands/DeleteLaunchConfigurationTemplateCommand";
|
|
10
13
|
import { DeleteRecoveryInstanceCommand, } from "./commands/DeleteRecoveryInstanceCommand";
|
|
14
|
+
import { DeleteRecoveryPlanCommand, } from "./commands/DeleteRecoveryPlanCommand";
|
|
15
|
+
import { DeleteRecoveryPlanExecutionCommand, } from "./commands/DeleteRecoveryPlanExecutionCommand";
|
|
16
|
+
import { DeleteRecoveryPlanStepCommand, } from "./commands/DeleteRecoveryPlanStepCommand";
|
|
11
17
|
import { DeleteReplicationConfigurationTemplateCommand, } from "./commands/DeleteReplicationConfigurationTemplateCommand";
|
|
12
18
|
import { DeleteSourceNetworkCommand, } from "./commands/DeleteSourceNetworkCommand";
|
|
13
19
|
import { DeleteSourceServerCommand, } from "./commands/DeleteSourceServerCommand";
|
|
@@ -24,17 +30,28 @@ import { DisconnectSourceServerCommand, } from "./commands/DisconnectSourceServe
|
|
|
24
30
|
import { ExportSourceNetworkCfnTemplateCommand, } from "./commands/ExportSourceNetworkCfnTemplateCommand";
|
|
25
31
|
import { GetFailbackReplicationConfigurationCommand, } from "./commands/GetFailbackReplicationConfigurationCommand";
|
|
26
32
|
import { GetLaunchConfigurationCommand, } from "./commands/GetLaunchConfigurationCommand";
|
|
33
|
+
import { GetRecoveryPlanCommand, } from "./commands/GetRecoveryPlanCommand";
|
|
34
|
+
import { GetRecoveryPlanExecutionCommand, } from "./commands/GetRecoveryPlanExecutionCommand";
|
|
35
|
+
import { GetRecoveryPlanExecutionStepCommand, } from "./commands/GetRecoveryPlanExecutionStepCommand";
|
|
36
|
+
import { GetRecoveryPlanStepCommand, } from "./commands/GetRecoveryPlanStepCommand";
|
|
27
37
|
import { GetReplicationConfigurationCommand, } from "./commands/GetReplicationConfigurationCommand";
|
|
28
38
|
import { InitializeServiceCommand, } from "./commands/InitializeServiceCommand";
|
|
29
39
|
import { ListExtensibleSourceServersCommand, } from "./commands/ListExtensibleSourceServersCommand";
|
|
30
40
|
import { ListLaunchActionsCommand, } from "./commands/ListLaunchActionsCommand";
|
|
41
|
+
import { ListRecoveryPlanExecutionsCommand, } from "./commands/ListRecoveryPlanExecutionsCommand";
|
|
42
|
+
import { ListRecoveryPlanExecutionStepsCommand, } from "./commands/ListRecoveryPlanExecutionStepsCommand";
|
|
43
|
+
import { ListRecoveryPlansCommand, } from "./commands/ListRecoveryPlansCommand";
|
|
44
|
+
import { ListRecoveryPlanStepsCommand, } from "./commands/ListRecoveryPlanStepsCommand";
|
|
31
45
|
import { ListStagingAccountsCommand, } from "./commands/ListStagingAccountsCommand";
|
|
32
46
|
import { ListTagsForResourceCommand, } from "./commands/ListTagsForResourceCommand";
|
|
33
47
|
import { PutLaunchActionCommand, } from "./commands/PutLaunchActionCommand";
|
|
48
|
+
import { ReorderRecoveryPlanStepsCommand, } from "./commands/ReorderRecoveryPlanStepsCommand";
|
|
34
49
|
import { RetryDataReplicationCommand, } from "./commands/RetryDataReplicationCommand";
|
|
50
|
+
import { RetryRecoveryPlanExecutionStepCommand, } from "./commands/RetryRecoveryPlanExecutionStepCommand";
|
|
35
51
|
import { ReverseReplicationCommand, } from "./commands/ReverseReplicationCommand";
|
|
36
52
|
import { StartFailbackLaunchCommand, } from "./commands/StartFailbackLaunchCommand";
|
|
37
53
|
import { StartRecoveryCommand, } from "./commands/StartRecoveryCommand";
|
|
54
|
+
import { StartRecoveryPlanExecutionCommand, } from "./commands/StartRecoveryPlanExecutionCommand";
|
|
38
55
|
import { StartReplicationCommand, } from "./commands/StartReplicationCommand";
|
|
39
56
|
import { StartSourceNetworkRecoveryCommand, } from "./commands/StartSourceNetworkRecoveryCommand";
|
|
40
57
|
import { StartSourceNetworkReplicationCommand, } from "./commands/StartSourceNetworkReplicationCommand";
|
|
@@ -47,6 +64,9 @@ import { UntagResourceCommand, } from "./commands/UntagResourceCommand";
|
|
|
47
64
|
import { UpdateFailbackReplicationConfigurationCommand, } from "./commands/UpdateFailbackReplicationConfigurationCommand";
|
|
48
65
|
import { UpdateLaunchConfigurationCommand, } from "./commands/UpdateLaunchConfigurationCommand";
|
|
49
66
|
import { UpdateLaunchConfigurationTemplateCommand, } from "./commands/UpdateLaunchConfigurationTemplateCommand";
|
|
67
|
+
import { UpdateRecoveryPlanCommand, } from "./commands/UpdateRecoveryPlanCommand";
|
|
68
|
+
import { UpdateRecoveryPlanExecutionStepCommand, } from "./commands/UpdateRecoveryPlanExecutionStepCommand";
|
|
69
|
+
import { UpdateRecoveryPlanStepCommand, } from "./commands/UpdateRecoveryPlanStepCommand";
|
|
50
70
|
import { UpdateReplicationConfigurationCommand, } from "./commands/UpdateReplicationConfigurationCommand";
|
|
51
71
|
import { UpdateReplicationConfigurationTemplateCommand, } from "./commands/UpdateReplicationConfigurationTemplateCommand";
|
|
52
72
|
import { DrsClient } from "./DrsClient";
|
|
@@ -60,17 +80,27 @@ import { paginateDescribeSourceNetworks } from "./pagination/DescribeSourceNetwo
|
|
|
60
80
|
import { paginateDescribeSourceServers } from "./pagination/DescribeSourceServersPaginator";
|
|
61
81
|
import { paginateListExtensibleSourceServers } from "./pagination/ListExtensibleSourceServersPaginator";
|
|
62
82
|
import { paginateListLaunchActions } from "./pagination/ListLaunchActionsPaginator";
|
|
83
|
+
import { paginateListRecoveryPlanExecutions } from "./pagination/ListRecoveryPlanExecutionsPaginator";
|
|
84
|
+
import { paginateListRecoveryPlanExecutionSteps } from "./pagination/ListRecoveryPlanExecutionStepsPaginator";
|
|
85
|
+
import { paginateListRecoveryPlans } from "./pagination/ListRecoveryPlansPaginator";
|
|
86
|
+
import { paginateListRecoveryPlanSteps } from "./pagination/ListRecoveryPlanStepsPaginator";
|
|
63
87
|
import { paginateListStagingAccounts } from "./pagination/ListStagingAccountsPaginator";
|
|
64
88
|
const commands = {
|
|
65
89
|
AssociateSourceNetworkStackCommand,
|
|
90
|
+
CancelRecoveryPlanExecutionCommand,
|
|
66
91
|
CreateExtendedSourceServerCommand,
|
|
67
92
|
CreateLaunchConfigurationTemplateCommand,
|
|
93
|
+
CreateRecoveryPlanCommand,
|
|
94
|
+
CreateRecoveryPlanStepCommand,
|
|
68
95
|
CreateReplicationConfigurationTemplateCommand,
|
|
69
96
|
CreateSourceNetworkCommand,
|
|
70
97
|
DeleteJobCommand,
|
|
71
98
|
DeleteLaunchActionCommand,
|
|
72
99
|
DeleteLaunchConfigurationTemplateCommand,
|
|
73
100
|
DeleteRecoveryInstanceCommand,
|
|
101
|
+
DeleteRecoveryPlanCommand,
|
|
102
|
+
DeleteRecoveryPlanExecutionCommand,
|
|
103
|
+
DeleteRecoveryPlanStepCommand,
|
|
74
104
|
DeleteReplicationConfigurationTemplateCommand,
|
|
75
105
|
DeleteSourceNetworkCommand,
|
|
76
106
|
DeleteSourceServerCommand,
|
|
@@ -87,17 +117,28 @@ const commands = {
|
|
|
87
117
|
ExportSourceNetworkCfnTemplateCommand,
|
|
88
118
|
GetFailbackReplicationConfigurationCommand,
|
|
89
119
|
GetLaunchConfigurationCommand,
|
|
120
|
+
GetRecoveryPlanCommand,
|
|
121
|
+
GetRecoveryPlanExecutionCommand,
|
|
122
|
+
GetRecoveryPlanExecutionStepCommand,
|
|
123
|
+
GetRecoveryPlanStepCommand,
|
|
90
124
|
GetReplicationConfigurationCommand,
|
|
91
125
|
InitializeServiceCommand,
|
|
92
126
|
ListExtensibleSourceServersCommand,
|
|
93
127
|
ListLaunchActionsCommand,
|
|
128
|
+
ListRecoveryPlanExecutionsCommand,
|
|
129
|
+
ListRecoveryPlanExecutionStepsCommand,
|
|
130
|
+
ListRecoveryPlansCommand,
|
|
131
|
+
ListRecoveryPlanStepsCommand,
|
|
94
132
|
ListStagingAccountsCommand,
|
|
95
133
|
ListTagsForResourceCommand,
|
|
96
134
|
PutLaunchActionCommand,
|
|
135
|
+
ReorderRecoveryPlanStepsCommand,
|
|
97
136
|
RetryDataReplicationCommand,
|
|
137
|
+
RetryRecoveryPlanExecutionStepCommand,
|
|
98
138
|
ReverseReplicationCommand,
|
|
99
139
|
StartFailbackLaunchCommand,
|
|
100
140
|
StartRecoveryCommand,
|
|
141
|
+
StartRecoveryPlanExecutionCommand,
|
|
101
142
|
StartReplicationCommand,
|
|
102
143
|
StartSourceNetworkRecoveryCommand,
|
|
103
144
|
StartSourceNetworkReplicationCommand,
|
|
@@ -110,6 +151,9 @@ const commands = {
|
|
|
110
151
|
UpdateFailbackReplicationConfigurationCommand,
|
|
111
152
|
UpdateLaunchConfigurationCommand,
|
|
112
153
|
UpdateLaunchConfigurationTemplateCommand,
|
|
154
|
+
UpdateRecoveryPlanCommand,
|
|
155
|
+
UpdateRecoveryPlanExecutionStepCommand,
|
|
156
|
+
UpdateRecoveryPlanStepCommand,
|
|
113
157
|
UpdateReplicationConfigurationCommand,
|
|
114
158
|
UpdateReplicationConfigurationTemplateCommand,
|
|
115
159
|
};
|
|
@@ -124,6 +168,10 @@ const paginators = {
|
|
|
124
168
|
paginateDescribeSourceServers,
|
|
125
169
|
paginateListExtensibleSourceServers,
|
|
126
170
|
paginateListLaunchActions,
|
|
171
|
+
paginateListRecoveryPlanExecutions,
|
|
172
|
+
paginateListRecoveryPlanExecutionSteps,
|
|
173
|
+
paginateListRecoveryPlans,
|
|
174
|
+
paginateListRecoveryPlanSteps,
|
|
127
175
|
paginateListStagingAccounts,
|
|
128
176
|
};
|
|
129
177
|
export class Drs extends DrsClient {
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
2
|
+
import { GetRecoveryPlanExecutionStep$ } from "../schemas/schemas_0";
|
|
3
|
+
export class GetRecoveryPlanExecutionStepCommand extends command(_ep0, _mw0, "GetRecoveryPlanExecutionStep", GetRecoveryPlanExecutionStep$) {
|
|
4
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
2
|
+
import { ListRecoveryPlanExecutionSteps$ } from "../schemas/schemas_0";
|
|
3
|
+
export class ListRecoveryPlanExecutionStepsCommand extends command(_ep0, _mw0, "ListRecoveryPlanExecutionSteps", ListRecoveryPlanExecutionSteps$) {
|
|
4
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
2
|
+
import { RetryRecoveryPlanExecutionStep$ } from "../schemas/schemas_0";
|
|
3
|
+
export class RetryRecoveryPlanExecutionStepCommand extends command(_ep0, _mw0, "RetryRecoveryPlanExecutionStep", RetryRecoveryPlanExecutionStep$) {
|
|
4
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
2
|
+
import { UpdateRecoveryPlanExecutionStep$ } from "../schemas/schemas_0";
|
|
3
|
+
export class UpdateRecoveryPlanExecutionStepCommand extends command(_ep0, _mw0, "UpdateRecoveryPlanExecutionStep", UpdateRecoveryPlanExecutionStep$) {
|
|
4
|
+
}
|
|
@@ -1,12 +1,18 @@
|
|
|
1
1
|
export * from "./AssociateSourceNetworkStackCommand";
|
|
2
|
+
export * from "./CancelRecoveryPlanExecutionCommand";
|
|
2
3
|
export * from "./CreateExtendedSourceServerCommand";
|
|
3
4
|
export * from "./CreateLaunchConfigurationTemplateCommand";
|
|
5
|
+
export * from "./CreateRecoveryPlanCommand";
|
|
6
|
+
export * from "./CreateRecoveryPlanStepCommand";
|
|
4
7
|
export * from "./CreateReplicationConfigurationTemplateCommand";
|
|
5
8
|
export * from "./CreateSourceNetworkCommand";
|
|
6
9
|
export * from "./DeleteJobCommand";
|
|
7
10
|
export * from "./DeleteLaunchActionCommand";
|
|
8
11
|
export * from "./DeleteLaunchConfigurationTemplateCommand";
|
|
9
12
|
export * from "./DeleteRecoveryInstanceCommand";
|
|
13
|
+
export * from "./DeleteRecoveryPlanCommand";
|
|
14
|
+
export * from "./DeleteRecoveryPlanExecutionCommand";
|
|
15
|
+
export * from "./DeleteRecoveryPlanStepCommand";
|
|
10
16
|
export * from "./DeleteReplicationConfigurationTemplateCommand";
|
|
11
17
|
export * from "./DeleteSourceNetworkCommand";
|
|
12
18
|
export * from "./DeleteSourceServerCommand";
|
|
@@ -23,17 +29,28 @@ export * from "./DisconnectSourceServerCommand";
|
|
|
23
29
|
export * from "./ExportSourceNetworkCfnTemplateCommand";
|
|
24
30
|
export * from "./GetFailbackReplicationConfigurationCommand";
|
|
25
31
|
export * from "./GetLaunchConfigurationCommand";
|
|
32
|
+
export * from "./GetRecoveryPlanCommand";
|
|
33
|
+
export * from "./GetRecoveryPlanExecutionCommand";
|
|
34
|
+
export * from "./GetRecoveryPlanExecutionStepCommand";
|
|
35
|
+
export * from "./GetRecoveryPlanStepCommand";
|
|
26
36
|
export * from "./GetReplicationConfigurationCommand";
|
|
27
37
|
export * from "./InitializeServiceCommand";
|
|
28
38
|
export * from "./ListExtensibleSourceServersCommand";
|
|
29
39
|
export * from "./ListLaunchActionsCommand";
|
|
40
|
+
export * from "./ListRecoveryPlanExecutionStepsCommand";
|
|
41
|
+
export * from "./ListRecoveryPlanExecutionsCommand";
|
|
42
|
+
export * from "./ListRecoveryPlanStepsCommand";
|
|
43
|
+
export * from "./ListRecoveryPlansCommand";
|
|
30
44
|
export * from "./ListStagingAccountsCommand";
|
|
31
45
|
export * from "./ListTagsForResourceCommand";
|
|
32
46
|
export * from "./PutLaunchActionCommand";
|
|
47
|
+
export * from "./ReorderRecoveryPlanStepsCommand";
|
|
33
48
|
export * from "./RetryDataReplicationCommand";
|
|
49
|
+
export * from "./RetryRecoveryPlanExecutionStepCommand";
|
|
34
50
|
export * from "./ReverseReplicationCommand";
|
|
35
51
|
export * from "./StartFailbackLaunchCommand";
|
|
36
52
|
export * from "./StartRecoveryCommand";
|
|
53
|
+
export * from "./StartRecoveryPlanExecutionCommand";
|
|
37
54
|
export * from "./StartReplicationCommand";
|
|
38
55
|
export * from "./StartSourceNetworkRecoveryCommand";
|
|
39
56
|
export * from "./StartSourceNetworkReplicationCommand";
|
|
@@ -46,5 +63,8 @@ export * from "./UntagResourceCommand";
|
|
|
46
63
|
export * from "./UpdateFailbackReplicationConfigurationCommand";
|
|
47
64
|
export * from "./UpdateLaunchConfigurationCommand";
|
|
48
65
|
export * from "./UpdateLaunchConfigurationTemplateCommand";
|
|
66
|
+
export * from "./UpdateRecoveryPlanCommand";
|
|
67
|
+
export * from "./UpdateRecoveryPlanExecutionStepCommand";
|
|
68
|
+
export * from "./UpdateRecoveryPlanStepCommand";
|
|
49
69
|
export * from "./UpdateReplicationConfigurationCommand";
|
|
50
70
|
export * from "./UpdateReplicationConfigurationTemplateCommand";
|
package/dist-es/models/enums.js
CHANGED
|
@@ -52,6 +52,18 @@ export const ValidationExceptionReason = {
|
|
|
52
52
|
OTHER: "other",
|
|
53
53
|
UNKNOWN_OPERATION: "unknownOperation",
|
|
54
54
|
};
|
|
55
|
+
export const RecoveryPlanExecutionMode = {
|
|
56
|
+
DRILL: "DRILL",
|
|
57
|
+
RECOVERY: "RECOVERY",
|
|
58
|
+
};
|
|
59
|
+
export const RecoveryPlanExecutionStatus = {
|
|
60
|
+
CANCELLED: "CANCELLED",
|
|
61
|
+
CANCELLING: "CANCELLING",
|
|
62
|
+
COMPLETED: "COMPLETED",
|
|
63
|
+
CREATED: "CREATED",
|
|
64
|
+
FAILED: "FAILED",
|
|
65
|
+
IN_PROGRESS: "IN_PROGRESS",
|
|
66
|
+
};
|
|
55
67
|
export const ProductCodeMode = {
|
|
56
68
|
DISABLED: "DISABLED",
|
|
57
69
|
ENABLED: "ENABLED",
|
|
@@ -143,6 +155,14 @@ export const TargetInstanceTypeRightSizingMethod = {
|
|
|
143
155
|
IN_AWS: "IN_AWS",
|
|
144
156
|
NONE: "NONE",
|
|
145
157
|
};
|
|
158
|
+
export const RecoveryPlanStatus = {
|
|
159
|
+
ACTIVE: "ACTIVE",
|
|
160
|
+
INVALID: "INVALID",
|
|
161
|
+
};
|
|
162
|
+
export const RecoveryPlanServerImpactLevel = {
|
|
163
|
+
CRITICAL: "CRITICAL",
|
|
164
|
+
OPTIONAL: "OPTIONAL",
|
|
165
|
+
};
|
|
146
166
|
export const ReplicationConfigurationDataPlaneRouting = {
|
|
147
167
|
PRIVATE_IP: "PRIVATE_IP",
|
|
148
168
|
PUBLIC_IP: "PUBLIC_IP",
|
|
@@ -305,6 +325,15 @@ export const ReplicationStatus = {
|
|
|
305
325
|
PROTECTED: "PROTECTED",
|
|
306
326
|
STOPPED: "STOPPED",
|
|
307
327
|
};
|
|
328
|
+
export const RecoveryPlanExecutionStepStatus = {
|
|
329
|
+
COMPLETED: "COMPLETED",
|
|
330
|
+
EXECUTING: "EXECUTING",
|
|
331
|
+
FAILED: "FAILED",
|
|
332
|
+
NOT_STARTED: "NOT_STARTED",
|
|
333
|
+
SKIPPED: "SKIPPED",
|
|
334
|
+
TIMED_OUT: "TIMED_OUT",
|
|
335
|
+
WAITING: "WAITING",
|
|
336
|
+
};
|
|
308
337
|
export const ReplicationConfigurationReplicatedDiskStagingDiskType = {
|
|
309
338
|
AUTO: "AUTO",
|
|
310
339
|
GP2: "GP2",
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
2
|
+
import { ListRecoveryPlanExecutionStepsCommand, } from "../commands/ListRecoveryPlanExecutionStepsCommand";
|
|
3
|
+
import { DrsClient } from "../DrsClient";
|
|
4
|
+
export const paginateListRecoveryPlanExecutionSteps = createPaginator(DrsClient, ListRecoveryPlanExecutionStepsCommand, "nextToken", "nextToken", "maxResults");
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
2
|
+
import { ListRecoveryPlanExecutionsCommand, } from "../commands/ListRecoveryPlanExecutionsCommand";
|
|
3
|
+
import { DrsClient } from "../DrsClient";
|
|
4
|
+
export const paginateListRecoveryPlanExecutions = createPaginator(DrsClient, ListRecoveryPlanExecutionsCommand, "nextToken", "nextToken", "maxResults");
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
2
|
+
import { ListRecoveryPlanStepsCommand, } from "../commands/ListRecoveryPlanStepsCommand";
|
|
3
|
+
import { DrsClient } from "../DrsClient";
|
|
4
|
+
export const paginateListRecoveryPlanSteps = createPaginator(DrsClient, ListRecoveryPlanStepsCommand, "nextToken", "nextToken", "maxResults");
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
2
|
+
import { ListRecoveryPlansCommand, } from "../commands/ListRecoveryPlansCommand";
|
|
3
|
+
import { DrsClient } from "../DrsClient";
|
|
4
|
+
export const paginateListRecoveryPlans = createPaginator(DrsClient, ListRecoveryPlansCommand, "nextToken", "nextToken", "maxResults");
|
|
@@ -9,4 +9,8 @@ export * from "./DescribeSourceNetworksPaginator";
|
|
|
9
9
|
export * from "./DescribeSourceServersPaginator";
|
|
10
10
|
export * from "./ListExtensibleSourceServersPaginator";
|
|
11
11
|
export * from "./ListLaunchActionsPaginator";
|
|
12
|
+
export * from "./ListRecoveryPlanExecutionsPaginator";
|
|
13
|
+
export * from "./ListRecoveryPlanExecutionStepsPaginator";
|
|
14
|
+
export * from "./ListRecoveryPlansPaginator";
|
|
15
|
+
export * from "./ListRecoveryPlanStepsPaginator";
|
|
12
16
|
export * from "./ListStagingAccountsPaginator";
|