@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
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListRecoveryPlanExecutionStepsRequest,
|
|
4
|
+
ListRecoveryPlanExecutionStepsResponse,
|
|
5
|
+
} from "../models/models_0";
|
|
6
|
+
export { __MetadataBearer };
|
|
7
|
+
export interface ListRecoveryPlanExecutionStepsCommandInput extends ListRecoveryPlanExecutionStepsRequest {}
|
|
8
|
+
export interface ListRecoveryPlanExecutionStepsCommandOutput
|
|
9
|
+
extends ListRecoveryPlanExecutionStepsResponse, __MetadataBearer {}
|
|
10
|
+
declare const ListRecoveryPlanExecutionStepsCommand_base: {
|
|
11
|
+
new (
|
|
12
|
+
input: ListRecoveryPlanExecutionStepsCommandInput,
|
|
13
|
+
): import("@smithy/core/client").CommandImpl<
|
|
14
|
+
ListRecoveryPlanExecutionStepsCommandInput,
|
|
15
|
+
ListRecoveryPlanExecutionStepsCommandOutput,
|
|
16
|
+
import("..").DrsClientResolvedConfig,
|
|
17
|
+
import("..").ServiceInputTypes,
|
|
18
|
+
import("..").ServiceOutputTypes
|
|
19
|
+
>;
|
|
20
|
+
new (
|
|
21
|
+
input: ListRecoveryPlanExecutionStepsCommandInput,
|
|
22
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
|
+
ListRecoveryPlanExecutionStepsCommandInput,
|
|
24
|
+
ListRecoveryPlanExecutionStepsCommandOutput,
|
|
25
|
+
import("..").DrsClientResolvedConfig,
|
|
26
|
+
import("..").ServiceInputTypes,
|
|
27
|
+
import("..").ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
|
+
};
|
|
31
|
+
export declare class ListRecoveryPlanExecutionStepsCommand extends ListRecoveryPlanExecutionStepsCommand_base {
|
|
32
|
+
protected static __types: {
|
|
33
|
+
api: {
|
|
34
|
+
input: ListRecoveryPlanExecutionStepsRequest;
|
|
35
|
+
output: ListRecoveryPlanExecutionStepsResponse;
|
|
36
|
+
};
|
|
37
|
+
sdk: {
|
|
38
|
+
input: ListRecoveryPlanExecutionStepsCommandInput;
|
|
39
|
+
output: ListRecoveryPlanExecutionStepsCommandOutput;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListRecoveryPlanExecutionsRequest,
|
|
4
|
+
ListRecoveryPlanExecutionsResponse,
|
|
5
|
+
} from "../models/models_0";
|
|
6
|
+
export { __MetadataBearer };
|
|
7
|
+
export interface ListRecoveryPlanExecutionsCommandInput extends ListRecoveryPlanExecutionsRequest {}
|
|
8
|
+
export interface ListRecoveryPlanExecutionsCommandOutput
|
|
9
|
+
extends ListRecoveryPlanExecutionsResponse, __MetadataBearer {}
|
|
10
|
+
declare const ListRecoveryPlanExecutionsCommand_base: {
|
|
11
|
+
new (
|
|
12
|
+
input: ListRecoveryPlanExecutionsCommandInput,
|
|
13
|
+
): import("@smithy/core/client").CommandImpl<
|
|
14
|
+
ListRecoveryPlanExecutionsCommandInput,
|
|
15
|
+
ListRecoveryPlanExecutionsCommandOutput,
|
|
16
|
+
import("..").DrsClientResolvedConfig,
|
|
17
|
+
import("..").ServiceInputTypes,
|
|
18
|
+
import("..").ServiceOutputTypes
|
|
19
|
+
>;
|
|
20
|
+
new (
|
|
21
|
+
...[input]: [] | [ListRecoveryPlanExecutionsCommandInput]
|
|
22
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
|
+
ListRecoveryPlanExecutionsCommandInput,
|
|
24
|
+
ListRecoveryPlanExecutionsCommandOutput,
|
|
25
|
+
import("..").DrsClientResolvedConfig,
|
|
26
|
+
import("..").ServiceInputTypes,
|
|
27
|
+
import("..").ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
|
+
};
|
|
31
|
+
export declare class ListRecoveryPlanExecutionsCommand extends ListRecoveryPlanExecutionsCommand_base {
|
|
32
|
+
protected static __types: {
|
|
33
|
+
api: {
|
|
34
|
+
input: ListRecoveryPlanExecutionsRequest;
|
|
35
|
+
output: ListRecoveryPlanExecutionsResponse;
|
|
36
|
+
};
|
|
37
|
+
sdk: {
|
|
38
|
+
input: ListRecoveryPlanExecutionsCommandInput;
|
|
39
|
+
output: ListRecoveryPlanExecutionsCommandOutput;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import { ListRecoveryPlanStepsRequest, ListRecoveryPlanStepsResponse } from "../models/models_0";
|
|
3
|
+
export { __MetadataBearer };
|
|
4
|
+
export interface ListRecoveryPlanStepsCommandInput extends ListRecoveryPlanStepsRequest {}
|
|
5
|
+
export interface ListRecoveryPlanStepsCommandOutput
|
|
6
|
+
extends ListRecoveryPlanStepsResponse, __MetadataBearer {}
|
|
7
|
+
declare const ListRecoveryPlanStepsCommand_base: {
|
|
8
|
+
new (
|
|
9
|
+
input: ListRecoveryPlanStepsCommandInput,
|
|
10
|
+
): import("@smithy/core/client").CommandImpl<
|
|
11
|
+
ListRecoveryPlanStepsCommandInput,
|
|
12
|
+
ListRecoveryPlanStepsCommandOutput,
|
|
13
|
+
import("..").DrsClientResolvedConfig,
|
|
14
|
+
import("..").ServiceInputTypes,
|
|
15
|
+
import("..").ServiceOutputTypes
|
|
16
|
+
>;
|
|
17
|
+
new (
|
|
18
|
+
input: ListRecoveryPlanStepsCommandInput,
|
|
19
|
+
): import("@smithy/core/client").CommandImpl<
|
|
20
|
+
ListRecoveryPlanStepsCommandInput,
|
|
21
|
+
ListRecoveryPlanStepsCommandOutput,
|
|
22
|
+
import("..").DrsClientResolvedConfig,
|
|
23
|
+
import("..").ServiceInputTypes,
|
|
24
|
+
import("..").ServiceOutputTypes
|
|
25
|
+
>;
|
|
26
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
27
|
+
};
|
|
28
|
+
export declare class ListRecoveryPlanStepsCommand extends ListRecoveryPlanStepsCommand_base {
|
|
29
|
+
protected static __types: {
|
|
30
|
+
api: {
|
|
31
|
+
input: ListRecoveryPlanStepsRequest;
|
|
32
|
+
output: ListRecoveryPlanStepsResponse;
|
|
33
|
+
};
|
|
34
|
+
sdk: {
|
|
35
|
+
input: ListRecoveryPlanStepsCommandInput;
|
|
36
|
+
output: ListRecoveryPlanStepsCommandOutput;
|
|
37
|
+
};
|
|
38
|
+
};
|
|
39
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import { ListRecoveryPlansRequest, ListRecoveryPlansResponse } from "../models/models_0";
|
|
3
|
+
export { __MetadataBearer };
|
|
4
|
+
export interface ListRecoveryPlansCommandInput extends ListRecoveryPlansRequest {}
|
|
5
|
+
export interface ListRecoveryPlansCommandOutput
|
|
6
|
+
extends ListRecoveryPlansResponse, __MetadataBearer {}
|
|
7
|
+
declare const ListRecoveryPlansCommand_base: {
|
|
8
|
+
new (
|
|
9
|
+
input: ListRecoveryPlansCommandInput,
|
|
10
|
+
): import("@smithy/core/client").CommandImpl<
|
|
11
|
+
ListRecoveryPlansCommandInput,
|
|
12
|
+
ListRecoveryPlansCommandOutput,
|
|
13
|
+
import("..").DrsClientResolvedConfig,
|
|
14
|
+
import("..").ServiceInputTypes,
|
|
15
|
+
import("..").ServiceOutputTypes
|
|
16
|
+
>;
|
|
17
|
+
new (
|
|
18
|
+
...[input]: [] | [ListRecoveryPlansCommandInput]
|
|
19
|
+
): import("@smithy/core/client").CommandImpl<
|
|
20
|
+
ListRecoveryPlansCommandInput,
|
|
21
|
+
ListRecoveryPlansCommandOutput,
|
|
22
|
+
import("..").DrsClientResolvedConfig,
|
|
23
|
+
import("..").ServiceInputTypes,
|
|
24
|
+
import("..").ServiceOutputTypes
|
|
25
|
+
>;
|
|
26
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
27
|
+
};
|
|
28
|
+
export declare class ListRecoveryPlansCommand extends ListRecoveryPlansCommand_base {
|
|
29
|
+
protected static __types: {
|
|
30
|
+
api: {
|
|
31
|
+
input: ListRecoveryPlansRequest;
|
|
32
|
+
output: ListRecoveryPlansResponse;
|
|
33
|
+
};
|
|
34
|
+
sdk: {
|
|
35
|
+
input: ListRecoveryPlansCommandInput;
|
|
36
|
+
output: ListRecoveryPlansCommandOutput;
|
|
37
|
+
};
|
|
38
|
+
};
|
|
39
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ReorderRecoveryPlanStepsRequest,
|
|
4
|
+
ReorderRecoveryPlanStepsResponse,
|
|
5
|
+
} from "../models/models_0";
|
|
6
|
+
export { __MetadataBearer };
|
|
7
|
+
export interface ReorderRecoveryPlanStepsCommandInput extends ReorderRecoveryPlanStepsRequest {}
|
|
8
|
+
export interface ReorderRecoveryPlanStepsCommandOutput
|
|
9
|
+
extends ReorderRecoveryPlanStepsResponse, __MetadataBearer {}
|
|
10
|
+
declare const ReorderRecoveryPlanStepsCommand_base: {
|
|
11
|
+
new (
|
|
12
|
+
input: ReorderRecoveryPlanStepsCommandInput,
|
|
13
|
+
): import("@smithy/core/client").CommandImpl<
|
|
14
|
+
ReorderRecoveryPlanStepsCommandInput,
|
|
15
|
+
ReorderRecoveryPlanStepsCommandOutput,
|
|
16
|
+
import("..").DrsClientResolvedConfig,
|
|
17
|
+
import("..").ServiceInputTypes,
|
|
18
|
+
import("..").ServiceOutputTypes
|
|
19
|
+
>;
|
|
20
|
+
new (
|
|
21
|
+
input: ReorderRecoveryPlanStepsCommandInput,
|
|
22
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
|
+
ReorderRecoveryPlanStepsCommandInput,
|
|
24
|
+
ReorderRecoveryPlanStepsCommandOutput,
|
|
25
|
+
import("..").DrsClientResolvedConfig,
|
|
26
|
+
import("..").ServiceInputTypes,
|
|
27
|
+
import("..").ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
|
+
};
|
|
31
|
+
export declare class ReorderRecoveryPlanStepsCommand extends ReorderRecoveryPlanStepsCommand_base {
|
|
32
|
+
protected static __types: {
|
|
33
|
+
api: {
|
|
34
|
+
input: ReorderRecoveryPlanStepsRequest;
|
|
35
|
+
output: ReorderRecoveryPlanStepsResponse;
|
|
36
|
+
};
|
|
37
|
+
sdk: {
|
|
38
|
+
input: ReorderRecoveryPlanStepsCommandInput;
|
|
39
|
+
output: ReorderRecoveryPlanStepsCommandOutput;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
RetryRecoveryPlanExecutionStepRequest,
|
|
4
|
+
RetryRecoveryPlanExecutionStepResponse,
|
|
5
|
+
} from "../models/models_0";
|
|
6
|
+
export { __MetadataBearer };
|
|
7
|
+
export interface RetryRecoveryPlanExecutionStepCommandInput extends RetryRecoveryPlanExecutionStepRequest {}
|
|
8
|
+
export interface RetryRecoveryPlanExecutionStepCommandOutput
|
|
9
|
+
extends RetryRecoveryPlanExecutionStepResponse, __MetadataBearer {}
|
|
10
|
+
declare const RetryRecoveryPlanExecutionStepCommand_base: {
|
|
11
|
+
new (
|
|
12
|
+
input: RetryRecoveryPlanExecutionStepCommandInput,
|
|
13
|
+
): import("@smithy/core/client").CommandImpl<
|
|
14
|
+
RetryRecoveryPlanExecutionStepCommandInput,
|
|
15
|
+
RetryRecoveryPlanExecutionStepCommandOutput,
|
|
16
|
+
import("..").DrsClientResolvedConfig,
|
|
17
|
+
import("..").ServiceInputTypes,
|
|
18
|
+
import("..").ServiceOutputTypes
|
|
19
|
+
>;
|
|
20
|
+
new (
|
|
21
|
+
input: RetryRecoveryPlanExecutionStepCommandInput,
|
|
22
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
|
+
RetryRecoveryPlanExecutionStepCommandInput,
|
|
24
|
+
RetryRecoveryPlanExecutionStepCommandOutput,
|
|
25
|
+
import("..").DrsClientResolvedConfig,
|
|
26
|
+
import("..").ServiceInputTypes,
|
|
27
|
+
import("..").ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
|
+
};
|
|
31
|
+
export declare class RetryRecoveryPlanExecutionStepCommand extends RetryRecoveryPlanExecutionStepCommand_base {
|
|
32
|
+
protected static __types: {
|
|
33
|
+
api: {
|
|
34
|
+
input: RetryRecoveryPlanExecutionStepRequest;
|
|
35
|
+
output: RetryRecoveryPlanExecutionStepResponse;
|
|
36
|
+
};
|
|
37
|
+
sdk: {
|
|
38
|
+
input: RetryRecoveryPlanExecutionStepCommandInput;
|
|
39
|
+
output: RetryRecoveryPlanExecutionStepCommandOutput;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
StartRecoveryPlanExecutionRequest,
|
|
4
|
+
StartRecoveryPlanExecutionResponse,
|
|
5
|
+
} from "../models/models_0";
|
|
6
|
+
export { __MetadataBearer };
|
|
7
|
+
export interface StartRecoveryPlanExecutionCommandInput extends StartRecoveryPlanExecutionRequest {}
|
|
8
|
+
export interface StartRecoveryPlanExecutionCommandOutput
|
|
9
|
+
extends StartRecoveryPlanExecutionResponse, __MetadataBearer {}
|
|
10
|
+
declare const StartRecoveryPlanExecutionCommand_base: {
|
|
11
|
+
new (
|
|
12
|
+
input: StartRecoveryPlanExecutionCommandInput,
|
|
13
|
+
): import("@smithy/core/client").CommandImpl<
|
|
14
|
+
StartRecoveryPlanExecutionCommandInput,
|
|
15
|
+
StartRecoveryPlanExecutionCommandOutput,
|
|
16
|
+
import("..").DrsClientResolvedConfig,
|
|
17
|
+
import("..").ServiceInputTypes,
|
|
18
|
+
import("..").ServiceOutputTypes
|
|
19
|
+
>;
|
|
20
|
+
new (
|
|
21
|
+
input: StartRecoveryPlanExecutionCommandInput,
|
|
22
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
|
+
StartRecoveryPlanExecutionCommandInput,
|
|
24
|
+
StartRecoveryPlanExecutionCommandOutput,
|
|
25
|
+
import("..").DrsClientResolvedConfig,
|
|
26
|
+
import("..").ServiceInputTypes,
|
|
27
|
+
import("..").ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
|
+
};
|
|
31
|
+
export declare class StartRecoveryPlanExecutionCommand extends StartRecoveryPlanExecutionCommand_base {
|
|
32
|
+
protected static __types: {
|
|
33
|
+
api: {
|
|
34
|
+
input: StartRecoveryPlanExecutionRequest;
|
|
35
|
+
output: StartRecoveryPlanExecutionResponse;
|
|
36
|
+
};
|
|
37
|
+
sdk: {
|
|
38
|
+
input: StartRecoveryPlanExecutionCommandInput;
|
|
39
|
+
output: StartRecoveryPlanExecutionCommandOutput;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import { UpdateRecoveryPlanRequest, UpdateRecoveryPlanResponse } from "../models/models_0";
|
|
3
|
+
export { __MetadataBearer };
|
|
4
|
+
export interface UpdateRecoveryPlanCommandInput extends UpdateRecoveryPlanRequest {}
|
|
5
|
+
export interface UpdateRecoveryPlanCommandOutput
|
|
6
|
+
extends UpdateRecoveryPlanResponse, __MetadataBearer {}
|
|
7
|
+
declare const UpdateRecoveryPlanCommand_base: {
|
|
8
|
+
new (
|
|
9
|
+
input: UpdateRecoveryPlanCommandInput,
|
|
10
|
+
): import("@smithy/core/client").CommandImpl<
|
|
11
|
+
UpdateRecoveryPlanCommandInput,
|
|
12
|
+
UpdateRecoveryPlanCommandOutput,
|
|
13
|
+
import("..").DrsClientResolvedConfig,
|
|
14
|
+
import("..").ServiceInputTypes,
|
|
15
|
+
import("..").ServiceOutputTypes
|
|
16
|
+
>;
|
|
17
|
+
new (
|
|
18
|
+
input: UpdateRecoveryPlanCommandInput,
|
|
19
|
+
): import("@smithy/core/client").CommandImpl<
|
|
20
|
+
UpdateRecoveryPlanCommandInput,
|
|
21
|
+
UpdateRecoveryPlanCommandOutput,
|
|
22
|
+
import("..").DrsClientResolvedConfig,
|
|
23
|
+
import("..").ServiceInputTypes,
|
|
24
|
+
import("..").ServiceOutputTypes
|
|
25
|
+
>;
|
|
26
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
27
|
+
};
|
|
28
|
+
export declare class UpdateRecoveryPlanCommand extends UpdateRecoveryPlanCommand_base {
|
|
29
|
+
protected static __types: {
|
|
30
|
+
api: {
|
|
31
|
+
input: UpdateRecoveryPlanRequest;
|
|
32
|
+
output: UpdateRecoveryPlanResponse;
|
|
33
|
+
};
|
|
34
|
+
sdk: {
|
|
35
|
+
input: UpdateRecoveryPlanCommandInput;
|
|
36
|
+
output: UpdateRecoveryPlanCommandOutput;
|
|
37
|
+
};
|
|
38
|
+
};
|
|
39
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
UpdateRecoveryPlanExecutionStepRequest,
|
|
4
|
+
UpdateRecoveryPlanExecutionStepResponse,
|
|
5
|
+
} from "../models/models_0";
|
|
6
|
+
export { __MetadataBearer };
|
|
7
|
+
export interface UpdateRecoveryPlanExecutionStepCommandInput extends UpdateRecoveryPlanExecutionStepRequest {}
|
|
8
|
+
export interface UpdateRecoveryPlanExecutionStepCommandOutput
|
|
9
|
+
extends UpdateRecoveryPlanExecutionStepResponse, __MetadataBearer {}
|
|
10
|
+
declare const UpdateRecoveryPlanExecutionStepCommand_base: {
|
|
11
|
+
new (
|
|
12
|
+
input: UpdateRecoveryPlanExecutionStepCommandInput,
|
|
13
|
+
): import("@smithy/core/client").CommandImpl<
|
|
14
|
+
UpdateRecoveryPlanExecutionStepCommandInput,
|
|
15
|
+
UpdateRecoveryPlanExecutionStepCommandOutput,
|
|
16
|
+
import("..").DrsClientResolvedConfig,
|
|
17
|
+
import("..").ServiceInputTypes,
|
|
18
|
+
import("..").ServiceOutputTypes
|
|
19
|
+
>;
|
|
20
|
+
new (
|
|
21
|
+
input: UpdateRecoveryPlanExecutionStepCommandInput,
|
|
22
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
|
+
UpdateRecoveryPlanExecutionStepCommandInput,
|
|
24
|
+
UpdateRecoveryPlanExecutionStepCommandOutput,
|
|
25
|
+
import("..").DrsClientResolvedConfig,
|
|
26
|
+
import("..").ServiceInputTypes,
|
|
27
|
+
import("..").ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
|
+
};
|
|
31
|
+
export declare class UpdateRecoveryPlanExecutionStepCommand extends UpdateRecoveryPlanExecutionStepCommand_base {
|
|
32
|
+
protected static __types: {
|
|
33
|
+
api: {
|
|
34
|
+
input: UpdateRecoveryPlanExecutionStepRequest;
|
|
35
|
+
output: UpdateRecoveryPlanExecutionStepResponse;
|
|
36
|
+
};
|
|
37
|
+
sdk: {
|
|
38
|
+
input: UpdateRecoveryPlanExecutionStepCommandInput;
|
|
39
|
+
output: UpdateRecoveryPlanExecutionStepCommandOutput;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import { UpdateRecoveryPlanStepRequest, UpdateRecoveryPlanStepResponse } from "../models/models_0";
|
|
3
|
+
export { __MetadataBearer };
|
|
4
|
+
export interface UpdateRecoveryPlanStepCommandInput extends UpdateRecoveryPlanStepRequest {}
|
|
5
|
+
export interface UpdateRecoveryPlanStepCommandOutput
|
|
6
|
+
extends UpdateRecoveryPlanStepResponse, __MetadataBearer {}
|
|
7
|
+
declare const UpdateRecoveryPlanStepCommand_base: {
|
|
8
|
+
new (
|
|
9
|
+
input: UpdateRecoveryPlanStepCommandInput,
|
|
10
|
+
): import("@smithy/core/client").CommandImpl<
|
|
11
|
+
UpdateRecoveryPlanStepCommandInput,
|
|
12
|
+
UpdateRecoveryPlanStepCommandOutput,
|
|
13
|
+
import("..").DrsClientResolvedConfig,
|
|
14
|
+
import("..").ServiceInputTypes,
|
|
15
|
+
import("..").ServiceOutputTypes
|
|
16
|
+
>;
|
|
17
|
+
new (
|
|
18
|
+
input: UpdateRecoveryPlanStepCommandInput,
|
|
19
|
+
): import("@smithy/core/client").CommandImpl<
|
|
20
|
+
UpdateRecoveryPlanStepCommandInput,
|
|
21
|
+
UpdateRecoveryPlanStepCommandOutput,
|
|
22
|
+
import("..").DrsClientResolvedConfig,
|
|
23
|
+
import("..").ServiceInputTypes,
|
|
24
|
+
import("..").ServiceOutputTypes
|
|
25
|
+
>;
|
|
26
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
27
|
+
};
|
|
28
|
+
export declare class UpdateRecoveryPlanStepCommand extends UpdateRecoveryPlanStepCommand_base {
|
|
29
|
+
protected static __types: {
|
|
30
|
+
api: {
|
|
31
|
+
input: UpdateRecoveryPlanStepRequest;
|
|
32
|
+
output: UpdateRecoveryPlanStepResponse;
|
|
33
|
+
};
|
|
34
|
+
sdk: {
|
|
35
|
+
input: UpdateRecoveryPlanStepCommandInput;
|
|
36
|
+
output: UpdateRecoveryPlanStepCommandOutput;
|
|
37
|
+
};
|
|
38
|
+
};
|
|
39
|
+
}
|
|
@@ -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";
|
|
@@ -64,6 +64,22 @@ export declare const ValidationExceptionReason: {
|
|
|
64
64
|
};
|
|
65
65
|
export type ValidationExceptionReason =
|
|
66
66
|
(typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
|
|
67
|
+
export declare const RecoveryPlanExecutionMode: {
|
|
68
|
+
readonly DRILL: "DRILL";
|
|
69
|
+
readonly RECOVERY: "RECOVERY";
|
|
70
|
+
};
|
|
71
|
+
export type RecoveryPlanExecutionMode =
|
|
72
|
+
(typeof RecoveryPlanExecutionMode)[keyof typeof RecoveryPlanExecutionMode];
|
|
73
|
+
export declare const RecoveryPlanExecutionStatus: {
|
|
74
|
+
readonly CANCELLED: "CANCELLED";
|
|
75
|
+
readonly CANCELLING: "CANCELLING";
|
|
76
|
+
readonly COMPLETED: "COMPLETED";
|
|
77
|
+
readonly CREATED: "CREATED";
|
|
78
|
+
readonly FAILED: "FAILED";
|
|
79
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
80
|
+
};
|
|
81
|
+
export type RecoveryPlanExecutionStatus =
|
|
82
|
+
(typeof RecoveryPlanExecutionStatus)[keyof typeof RecoveryPlanExecutionStatus];
|
|
67
83
|
export declare const ProductCodeMode: {
|
|
68
84
|
readonly DISABLED: "DISABLED";
|
|
69
85
|
readonly ENABLED: "ENABLED";
|
|
@@ -172,6 +188,17 @@ export declare const TargetInstanceTypeRightSizingMethod: {
|
|
|
172
188
|
};
|
|
173
189
|
export type TargetInstanceTypeRightSizingMethod =
|
|
174
190
|
(typeof TargetInstanceTypeRightSizingMethod)[keyof typeof TargetInstanceTypeRightSizingMethod];
|
|
191
|
+
export declare const RecoveryPlanStatus: {
|
|
192
|
+
readonly ACTIVE: "ACTIVE";
|
|
193
|
+
readonly INVALID: "INVALID";
|
|
194
|
+
};
|
|
195
|
+
export type RecoveryPlanStatus = (typeof RecoveryPlanStatus)[keyof typeof RecoveryPlanStatus];
|
|
196
|
+
export declare const RecoveryPlanServerImpactLevel: {
|
|
197
|
+
readonly CRITICAL: "CRITICAL";
|
|
198
|
+
readonly OPTIONAL: "OPTIONAL";
|
|
199
|
+
};
|
|
200
|
+
export type RecoveryPlanServerImpactLevel =
|
|
201
|
+
(typeof RecoveryPlanServerImpactLevel)[keyof typeof RecoveryPlanServerImpactLevel];
|
|
175
202
|
export declare const ReplicationConfigurationDataPlaneRouting: {
|
|
176
203
|
readonly PRIVATE_IP: "PRIVATE_IP";
|
|
177
204
|
readonly PUBLIC_IP: "PUBLIC_IP";
|
|
@@ -359,6 +386,17 @@ export declare const ReplicationStatus: {
|
|
|
359
386
|
readonly STOPPED: "STOPPED";
|
|
360
387
|
};
|
|
361
388
|
export type ReplicationStatus = (typeof ReplicationStatus)[keyof typeof ReplicationStatus];
|
|
389
|
+
export declare const RecoveryPlanExecutionStepStatus: {
|
|
390
|
+
readonly COMPLETED: "COMPLETED";
|
|
391
|
+
readonly EXECUTING: "EXECUTING";
|
|
392
|
+
readonly FAILED: "FAILED";
|
|
393
|
+
readonly NOT_STARTED: "NOT_STARTED";
|
|
394
|
+
readonly SKIPPED: "SKIPPED";
|
|
395
|
+
readonly TIMED_OUT: "TIMED_OUT";
|
|
396
|
+
readonly WAITING: "WAITING";
|
|
397
|
+
};
|
|
398
|
+
export type RecoveryPlanExecutionStepStatus =
|
|
399
|
+
(typeof RecoveryPlanExecutionStepStatus)[keyof typeof RecoveryPlanExecutionStepStatus];
|
|
362
400
|
export declare const ReplicationConfigurationReplicatedDiskStagingDiskType: {
|
|
363
401
|
readonly AUTO: "AUTO";
|
|
364
402
|
readonly GP2: "GP2";
|