@aws-sdk/client-drs 3.1111.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.
Files changed (94) hide show
  1. package/README.md +147 -7
  2. package/dist-cjs/index.js +715 -5
  3. package/dist-es/Drs.js +48 -0
  4. package/dist-es/commands/CancelRecoveryPlanExecutionCommand.js +4 -0
  5. package/dist-es/commands/CreateRecoveryPlanCommand.js +4 -0
  6. package/dist-es/commands/CreateRecoveryPlanStepCommand.js +4 -0
  7. package/dist-es/commands/DeleteRecoveryPlanCommand.js +4 -0
  8. package/dist-es/commands/DeleteRecoveryPlanExecutionCommand.js +4 -0
  9. package/dist-es/commands/DeleteRecoveryPlanStepCommand.js +4 -0
  10. package/dist-es/commands/GetRecoveryPlanCommand.js +4 -0
  11. package/dist-es/commands/GetRecoveryPlanExecutionCommand.js +4 -0
  12. package/dist-es/commands/GetRecoveryPlanExecutionStepCommand.js +4 -0
  13. package/dist-es/commands/GetRecoveryPlanStepCommand.js +4 -0
  14. package/dist-es/commands/ListRecoveryPlanExecutionStepsCommand.js +4 -0
  15. package/dist-es/commands/ListRecoveryPlanExecutionsCommand.js +4 -0
  16. package/dist-es/commands/ListRecoveryPlanStepsCommand.js +4 -0
  17. package/dist-es/commands/ListRecoveryPlansCommand.js +4 -0
  18. package/dist-es/commands/ReorderRecoveryPlanStepsCommand.js +4 -0
  19. package/dist-es/commands/RetryRecoveryPlanExecutionStepCommand.js +4 -0
  20. package/dist-es/commands/StartRecoveryPlanExecutionCommand.js +4 -0
  21. package/dist-es/commands/UpdateRecoveryPlanCommand.js +4 -0
  22. package/dist-es/commands/UpdateRecoveryPlanExecutionStepCommand.js +4 -0
  23. package/dist-es/commands/UpdateRecoveryPlanStepCommand.js +4 -0
  24. package/dist-es/commands/index.js +20 -0
  25. package/dist-es/models/enums.js +29 -0
  26. package/dist-es/pagination/ListRecoveryPlanExecutionStepsPaginator.js +4 -0
  27. package/dist-es/pagination/ListRecoveryPlanExecutionsPaginator.js +4 -0
  28. package/dist-es/pagination/ListRecoveryPlanStepsPaginator.js +4 -0
  29. package/dist-es/pagination/ListRecoveryPlansPaginator.js +4 -0
  30. package/dist-es/pagination/index.js +4 -0
  31. package/dist-es/schemas/schemas_0.js +488 -4
  32. package/dist-types/Drs.d.ts +170 -0
  33. package/dist-types/DrsClient.d.ts +22 -2
  34. package/dist-types/commands/CancelRecoveryPlanExecutionCommand.d.ts +106 -0
  35. package/dist-types/commands/CreateRecoveryPlanCommand.d.ts +107 -0
  36. package/dist-types/commands/CreateRecoveryPlanStepCommand.d.ts +130 -0
  37. package/dist-types/commands/DeleteRecoveryPlanCommand.d.ts +92 -0
  38. package/dist-types/commands/DeleteRecoveryPlanExecutionCommand.d.ts +92 -0
  39. package/dist-types/commands/DeleteRecoveryPlanStepCommand.d.ts +92 -0
  40. package/dist-types/commands/GetRecoveryPlanCommand.d.ts +99 -0
  41. package/dist-types/commands/GetRecoveryPlanExecutionCommand.d.ts +103 -0
  42. package/dist-types/commands/GetRecoveryPlanExecutionStepCommand.d.ts +115 -0
  43. package/dist-types/commands/GetRecoveryPlanStepCommand.d.ts +108 -0
  44. package/dist-types/commands/ListRecoveryPlanExecutionStepsCommand.d.ts +120 -0
  45. package/dist-types/commands/ListRecoveryPlanExecutionsCommand.d.ts +102 -0
  46. package/dist-types/commands/ListRecoveryPlanStepsCommand.d.ts +113 -0
  47. package/dist-types/commands/ListRecoveryPlansCommand.d.ts +96 -0
  48. package/dist-types/commands/ReorderRecoveryPlanStepsCommand.d.ts +116 -0
  49. package/dist-types/commands/RetryRecoveryPlanExecutionStepCommand.d.ts +118 -0
  50. package/dist-types/commands/StartRecoveryPlanExecutionCommand.d.ts +120 -0
  51. package/dist-types/commands/UpdateRecoveryPlanCommand.d.ts +104 -0
  52. package/dist-types/commands/UpdateRecoveryPlanExecutionStepCommand.d.ts +126 -0
  53. package/dist-types/commands/UpdateRecoveryPlanStepCommand.d.ts +125 -0
  54. package/dist-types/commands/index.d.ts +20 -0
  55. package/dist-types/models/enums.d.ts +69 -0
  56. package/dist-types/models/models_0.d.ts +1049 -2
  57. package/dist-types/pagination/ListRecoveryPlanExecutionStepsPaginator.d.ts +7 -0
  58. package/dist-types/pagination/ListRecoveryPlanExecutionsPaginator.d.ts +7 -0
  59. package/dist-types/pagination/ListRecoveryPlanStepsPaginator.d.ts +7 -0
  60. package/dist-types/pagination/ListRecoveryPlansPaginator.d.ts +7 -0
  61. package/dist-types/pagination/index.d.ts +4 -0
  62. package/dist-types/schemas/schemas_0.d.ts +77 -0
  63. package/dist-types/ts3.4/Drs.d.ts +370 -0
  64. package/dist-types/ts3.4/DrsClient.d.ts +120 -0
  65. package/dist-types/ts3.4/commands/CancelRecoveryPlanExecutionCommand.d.ts +42 -0
  66. package/dist-types/ts3.4/commands/CreateRecoveryPlanCommand.d.ts +39 -0
  67. package/dist-types/ts3.4/commands/CreateRecoveryPlanStepCommand.d.ts +39 -0
  68. package/dist-types/ts3.4/commands/DeleteRecoveryPlanCommand.d.ts +39 -0
  69. package/dist-types/ts3.4/commands/DeleteRecoveryPlanExecutionCommand.d.ts +42 -0
  70. package/dist-types/ts3.4/commands/DeleteRecoveryPlanStepCommand.d.ts +39 -0
  71. package/dist-types/ts3.4/commands/GetRecoveryPlanCommand.d.ts +38 -0
  72. package/dist-types/ts3.4/commands/GetRecoveryPlanExecutionCommand.d.ts +42 -0
  73. package/dist-types/ts3.4/commands/GetRecoveryPlanExecutionStepCommand.d.ts +42 -0
  74. package/dist-types/ts3.4/commands/GetRecoveryPlanStepCommand.d.ts +39 -0
  75. package/dist-types/ts3.4/commands/ListRecoveryPlanExecutionStepsCommand.d.ts +42 -0
  76. package/dist-types/ts3.4/commands/ListRecoveryPlanExecutionsCommand.d.ts +42 -0
  77. package/dist-types/ts3.4/commands/ListRecoveryPlanStepsCommand.d.ts +39 -0
  78. package/dist-types/ts3.4/commands/ListRecoveryPlansCommand.d.ts +39 -0
  79. package/dist-types/ts3.4/commands/ReorderRecoveryPlanStepsCommand.d.ts +42 -0
  80. package/dist-types/ts3.4/commands/RetryRecoveryPlanExecutionStepCommand.d.ts +42 -0
  81. package/dist-types/ts3.4/commands/StartRecoveryPlanExecutionCommand.d.ts +42 -0
  82. package/dist-types/ts3.4/commands/UpdateRecoveryPlanCommand.d.ts +39 -0
  83. package/dist-types/ts3.4/commands/UpdateRecoveryPlanExecutionStepCommand.d.ts +42 -0
  84. package/dist-types/ts3.4/commands/UpdateRecoveryPlanStepCommand.d.ts +39 -0
  85. package/dist-types/ts3.4/commands/index.d.ts +20 -0
  86. package/dist-types/ts3.4/models/enums.d.ts +38 -0
  87. package/dist-types/ts3.4/models/models_0.d.ts +299 -0
  88. package/dist-types/ts3.4/pagination/ListRecoveryPlanExecutionStepsPaginator.d.ts +11 -0
  89. package/dist-types/ts3.4/pagination/ListRecoveryPlanExecutionsPaginator.d.ts +11 -0
  90. package/dist-types/ts3.4/pagination/ListRecoveryPlanStepsPaginator.d.ts +11 -0
  91. package/dist-types/ts3.4/pagination/ListRecoveryPlansPaginator.d.ts +11 -0
  92. package/dist-types/ts3.4/pagination/index.d.ts +4 -0
  93. package/dist-types/ts3.4/schemas/schemas_0.d.ts +77 -0
  94. package/package.json +1 -1
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 { CancelRecoveryPlanExecution$ } from "../schemas/schemas_0";
3
+ export class CancelRecoveryPlanExecutionCommand extends command(_ep0, _mw0, "CancelRecoveryPlanExecution", CancelRecoveryPlanExecution$) {
4
+ }
@@ -0,0 +1,4 @@
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
2
+ import { CreateRecoveryPlan$ } from "../schemas/schemas_0";
3
+ export class CreateRecoveryPlanCommand extends command(_ep0, _mw0, "CreateRecoveryPlan", CreateRecoveryPlan$) {
4
+ }
@@ -0,0 +1,4 @@
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
2
+ import { CreateRecoveryPlanStep$ } from "../schemas/schemas_0";
3
+ export class CreateRecoveryPlanStepCommand extends command(_ep0, _mw0, "CreateRecoveryPlanStep", CreateRecoveryPlanStep$) {
4
+ }
@@ -0,0 +1,4 @@
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
2
+ import { DeleteRecoveryPlan$ } from "../schemas/schemas_0";
3
+ export class DeleteRecoveryPlanCommand extends command(_ep0, _mw0, "DeleteRecoveryPlan", DeleteRecoveryPlan$) {
4
+ }
@@ -0,0 +1,4 @@
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
2
+ import { DeleteRecoveryPlanExecution$ } from "../schemas/schemas_0";
3
+ export class DeleteRecoveryPlanExecutionCommand extends command(_ep0, _mw0, "DeleteRecoveryPlanExecution", DeleteRecoveryPlanExecution$) {
4
+ }
@@ -0,0 +1,4 @@
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
2
+ import { DeleteRecoveryPlanStep$ } from "../schemas/schemas_0";
3
+ export class DeleteRecoveryPlanStepCommand extends command(_ep0, _mw0, "DeleteRecoveryPlanStep", DeleteRecoveryPlanStep$) {
4
+ }
@@ -0,0 +1,4 @@
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
2
+ import { GetRecoveryPlan$ } from "../schemas/schemas_0";
3
+ export class GetRecoveryPlanCommand extends command(_ep0, _mw0, "GetRecoveryPlan", GetRecoveryPlan$) {
4
+ }
@@ -0,0 +1,4 @@
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
2
+ import { GetRecoveryPlanExecution$ } from "../schemas/schemas_0";
3
+ export class GetRecoveryPlanExecutionCommand extends command(_ep0, _mw0, "GetRecoveryPlanExecution", GetRecoveryPlanExecution$) {
4
+ }
@@ -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 { GetRecoveryPlanStep$ } from "../schemas/schemas_0";
3
+ export class GetRecoveryPlanStepCommand extends command(_ep0, _mw0, "GetRecoveryPlanStep", GetRecoveryPlanStep$) {
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 { ListRecoveryPlanExecutions$ } from "../schemas/schemas_0";
3
+ export class ListRecoveryPlanExecutionsCommand extends command(_ep0, _mw0, "ListRecoveryPlanExecutions", ListRecoveryPlanExecutions$) {
4
+ }
@@ -0,0 +1,4 @@
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
2
+ import { ListRecoveryPlanSteps$ } from "../schemas/schemas_0";
3
+ export class ListRecoveryPlanStepsCommand extends command(_ep0, _mw0, "ListRecoveryPlanSteps", ListRecoveryPlanSteps$) {
4
+ }
@@ -0,0 +1,4 @@
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
2
+ import { ListRecoveryPlans$ } from "../schemas/schemas_0";
3
+ export class ListRecoveryPlansCommand extends command(_ep0, _mw0, "ListRecoveryPlans", ListRecoveryPlans$) {
4
+ }
@@ -0,0 +1,4 @@
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
2
+ import { ReorderRecoveryPlanSteps$ } from "../schemas/schemas_0";
3
+ export class ReorderRecoveryPlanStepsCommand extends command(_ep0, _mw0, "ReorderRecoveryPlanSteps", ReorderRecoveryPlanSteps$) {
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 { StartRecoveryPlanExecution$ } from "../schemas/schemas_0";
3
+ export class StartRecoveryPlanExecutionCommand extends command(_ep0, _mw0, "StartRecoveryPlanExecution", StartRecoveryPlanExecution$) {
4
+ }
@@ -0,0 +1,4 @@
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
2
+ import { UpdateRecoveryPlan$ } from "../schemas/schemas_0";
3
+ export class UpdateRecoveryPlanCommand extends command(_ep0, _mw0, "UpdateRecoveryPlan", UpdateRecoveryPlan$) {
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
+ }
@@ -0,0 +1,4 @@
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
2
+ import { UpdateRecoveryPlanStep$ } from "../schemas/schemas_0";
3
+ export class UpdateRecoveryPlanStepCommand extends command(_ep0, _mw0, "UpdateRecoveryPlanStep", UpdateRecoveryPlanStep$) {
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";
@@ -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";