@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,7 @@
|
|
|
1
|
+
import type { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListRecoveryPlanExecutionStepsCommandInput, ListRecoveryPlanExecutionStepsCommandOutput } from "../commands/ListRecoveryPlanExecutionStepsCommand";
|
|
3
|
+
import type { DrsPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListRecoveryPlanExecutionSteps: (config: DrsPaginationConfiguration, input: ListRecoveryPlanExecutionStepsCommandInput, ...rest: any[]) => Paginator<ListRecoveryPlanExecutionStepsCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListRecoveryPlanExecutionsCommandInput, ListRecoveryPlanExecutionsCommandOutput } from "../commands/ListRecoveryPlanExecutionsCommand";
|
|
3
|
+
import type { DrsPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListRecoveryPlanExecutions: (config: DrsPaginationConfiguration, input: ListRecoveryPlanExecutionsCommandInput, ...rest: any[]) => Paginator<ListRecoveryPlanExecutionsCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListRecoveryPlanStepsCommandInput, ListRecoveryPlanStepsCommandOutput } from "../commands/ListRecoveryPlanStepsCommand";
|
|
3
|
+
import type { DrsPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListRecoveryPlanSteps: (config: DrsPaginationConfiguration, input: ListRecoveryPlanStepsCommandInput, ...rest: any[]) => Paginator<ListRecoveryPlanStepsCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListRecoveryPlansCommandInput, ListRecoveryPlansCommandOutput } from "../commands/ListRecoveryPlansCommand";
|
|
3
|
+
import type { DrsPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListRecoveryPlans: (config: DrsPaginationConfiguration, input: ListRecoveryPlansCommandInput, ...rest: any[]) => Paginator<ListRecoveryPlansCommandOutput>;
|
|
@@ -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";
|
|
@@ -4,49 +4,14 @@ import type { DrsClientConfig } from "./DrsClient";
|
|
|
4
4
|
* @internal
|
|
5
5
|
*/
|
|
6
6
|
export declare const getRuntimeConfig: (config: DrsClientConfig) => {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
-
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
|
-
defaultUserAgentProvider: (config?: import("@aws-sdk/core/client").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
|
|
12
|
-
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
|
-
region: string | import("@smithy/types").Provider<any>;
|
|
14
|
-
requestHandler: import("@smithy/core/protocols").HttpHandler<any> | RequestHandler;
|
|
15
|
-
retryMode: string | import("@smithy/types").Provider<string>;
|
|
16
|
-
streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
|
|
17
|
-
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
18
|
-
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
19
|
-
cacheMiddleware?: boolean | undefined;
|
|
20
|
-
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
|
|
21
|
-
protocolSettings: {
|
|
22
|
-
defaultNamespace?: string;
|
|
23
|
-
[setting: string]: unknown;
|
|
24
|
-
};
|
|
25
|
-
apiVersion: string;
|
|
26
|
-
sha256: import("@smithy/types").HashConstructor;
|
|
27
|
-
urlParser: import("@smithy/types").UrlParser;
|
|
28
|
-
base64Decoder: import("@smithy/types").Decoder;
|
|
29
|
-
base64Encoder: (_input: Uint8Array | string) => string;
|
|
30
|
-
utf8Decoder: import("@smithy/types").Decoder;
|
|
31
|
-
utf8Encoder: (input: Uint8Array | string) => string;
|
|
32
|
-
disableHostPrefix: boolean;
|
|
33
|
-
serviceId: string;
|
|
34
|
-
profile?: string;
|
|
35
|
-
logger: import("@smithy/types").Logger;
|
|
36
|
-
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
37
|
-
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
38
|
-
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
39
|
-
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
40
|
-
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
41
|
-
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
42
|
-
logger?: import("@smithy/types").Logger;
|
|
43
|
-
}) => import("@smithy/types").EndpointV2;
|
|
7
|
+
cacheMiddleware?: boolean;
|
|
8
|
+
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Endpoint | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<string> | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
44
9
|
tls?: boolean;
|
|
45
10
|
ignoreConfiguredEndpointUrls?: boolean;
|
|
46
11
|
serviceConfiguredEndpoint?: never;
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
12
|
+
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
13
|
+
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
14
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
50
15
|
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider;
|
|
51
16
|
signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme) => Promise<import("@smithy/types").RequestSigner>);
|
|
52
17
|
signingEscapePath?: boolean;
|
|
@@ -54,4 +19,39 @@ export declare const getRuntimeConfig: (config: DrsClientConfig) => {
|
|
|
54
19
|
signingRegion?: string;
|
|
55
20
|
signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
|
|
56
21
|
disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
|
|
22
|
+
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
23
|
+
apiVersion: string;
|
|
24
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
25
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
26
|
+
disableHostPrefix: boolean;
|
|
27
|
+
endpointProvider: (params: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
28
|
+
logger?: import("@smithy/types").Logger;
|
|
29
|
+
}) => import("@smithy/types").EndpointV2;
|
|
30
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
31
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").DrsHttpAuthSchemeProvider;
|
|
32
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
33
|
+
logger: import("@smithy/types").Logger;
|
|
34
|
+
protocol: import("@smithy/types").$ClientProtocol<any, any> | import("@smithy/types").$ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
|
|
35
|
+
protocolSettings: {
|
|
36
|
+
[setting: string]: unknown;
|
|
37
|
+
defaultNamespace?: string;
|
|
38
|
+
};
|
|
39
|
+
serviceId: string;
|
|
40
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
41
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
42
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
43
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
44
|
+
profile?: string;
|
|
45
|
+
runtime: string;
|
|
46
|
+
defaultsMode: import("@smithy/types").Provider<import("@smithy/core/client").ResolvedDefaultsMode>;
|
|
47
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
48
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
49
|
+
defaultUserAgentProvider: (config?: import("@aws-sdk/core/client").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
|
|
50
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
51
|
+
region: string | import("@smithy/types").Provider<any>;
|
|
52
|
+
requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
|
|
53
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
54
|
+
streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
|
|
55
|
+
useDualstackEndpoint: boolean | (() => Promise<boolean>);
|
|
56
|
+
useFipsEndpoint: boolean | (() => Promise<boolean>);
|
|
57
57
|
};
|
|
@@ -4,11 +4,46 @@ import type { DrsClientConfig } from "./DrsClient";
|
|
|
4
4
|
* @internal
|
|
5
5
|
*/
|
|
6
6
|
export declare const getRuntimeConfig: (config: DrsClientConfig) => {
|
|
7
|
+
cacheMiddleware?: boolean;
|
|
8
|
+
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Endpoint | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<string> | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
9
|
+
tls?: boolean;
|
|
10
|
+
ignoreConfiguredEndpointUrls?: boolean;
|
|
11
|
+
serviceConfiguredEndpoint?: never;
|
|
12
|
+
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
13
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
14
|
+
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider;
|
|
15
|
+
signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme) => Promise<import("@smithy/types").RequestSigner>);
|
|
16
|
+
signingEscapePath?: boolean;
|
|
17
|
+
systemClockOffset?: number;
|
|
18
|
+
signingRegion?: string;
|
|
19
|
+
signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
|
|
20
|
+
disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
|
|
21
|
+
apiVersion: string;
|
|
22
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
23
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
24
|
+
disableHostPrefix: boolean;
|
|
25
|
+
endpointProvider: (params: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
26
|
+
logger?: import("@smithy/types").Logger;
|
|
27
|
+
}) => import("@smithy/types").EndpointV2;
|
|
28
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
29
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").DrsHttpAuthSchemeProvider;
|
|
30
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
31
|
+
logger: import("@smithy/types").Logger;
|
|
32
|
+
protocol: import("@smithy/types").$ClientProtocol<any, any> | import("@smithy/types").$ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
|
|
33
|
+
protocolSettings: {
|
|
34
|
+
[setting: string]: unknown;
|
|
35
|
+
defaultNamespace?: string;
|
|
36
|
+
};
|
|
37
|
+
serviceId: string;
|
|
38
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
39
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
40
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
41
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
7
42
|
runtime: string;
|
|
8
43
|
defaultsMode: import("@smithy/types").Provider<import("@smithy/core/client").ResolvedDefaultsMode>;
|
|
9
44
|
authSchemePreference: string[] | import("@smithy/types").Provider<string[]>;
|
|
10
45
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
11
|
-
credentialDefaultProvider: ((
|
|
46
|
+
credentialDefaultProvider: ((init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit) => import("@aws-sdk/credential-provider-node").MemoizedRuntimeConfigAwsCredentialIdentityProvider) | ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider);
|
|
12
47
|
defaultUserAgentProvider: (config?: import("@aws-sdk/core/client").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
|
|
13
48
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
14
49
|
region: string | import("@smithy/types").Provider<string>;
|
|
@@ -18,40 +53,5 @@ export declare const getRuntimeConfig: (config: DrsClientConfig) => {
|
|
|
18
53
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
19
54
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
20
55
|
userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
|
|
21
|
-
cacheMiddleware?: boolean | undefined;
|
|
22
|
-
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
|
|
23
|
-
protocolSettings: {
|
|
24
|
-
defaultNamespace?: string;
|
|
25
|
-
[setting: string]: unknown;
|
|
26
|
-
};
|
|
27
|
-
apiVersion: string;
|
|
28
|
-
sha256: import("@smithy/types").HashConstructor;
|
|
29
|
-
urlParser: import("@smithy/types").UrlParser;
|
|
30
|
-
base64Decoder: import("@smithy/types").Decoder;
|
|
31
|
-
base64Encoder: (_input: Uint8Array | string) => string;
|
|
32
|
-
utf8Decoder: import("@smithy/types").Decoder;
|
|
33
|
-
utf8Encoder: (input: Uint8Array | string) => string;
|
|
34
|
-
disableHostPrefix: boolean;
|
|
35
|
-
serviceId: string;
|
|
36
56
|
profile?: string;
|
|
37
|
-
logger: import("@smithy/types").Logger;
|
|
38
|
-
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
39
|
-
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
40
|
-
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
41
|
-
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
42
|
-
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
43
|
-
logger?: import("@smithy/types").Logger;
|
|
44
|
-
}) => import("@smithy/types").EndpointV2;
|
|
45
|
-
tls?: boolean;
|
|
46
|
-
ignoreConfiguredEndpointUrls?: boolean;
|
|
47
|
-
serviceConfiguredEndpoint?: never;
|
|
48
|
-
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
49
|
-
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").DrsHttpAuthSchemeProvider;
|
|
50
|
-
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider;
|
|
51
|
-
signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme) => Promise<import("@smithy/types").RequestSigner>);
|
|
52
|
-
signingEscapePath?: boolean;
|
|
53
|
-
systemClockOffset?: number;
|
|
54
|
-
signingRegion?: string;
|
|
55
|
-
signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
|
|
56
|
-
disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
|
|
57
57
|
};
|
|
@@ -3,54 +3,54 @@ import type { DrsClientConfig } from "./DrsClient";
|
|
|
3
3
|
* @internal
|
|
4
4
|
*/
|
|
5
5
|
export declare const getRuntimeConfig: (config: DrsClientConfig) => {
|
|
6
|
-
runtime: string;
|
|
7
|
-
requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/core/protocols").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
|
|
8
6
|
cacheMiddleware?: boolean;
|
|
9
|
-
|
|
7
|
+
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Endpoint | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<string> | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
8
|
+
tls?: boolean;
|
|
9
|
+
ignoreConfiguredEndpointUrls?: boolean;
|
|
10
|
+
serviceConfiguredEndpoint?: never;
|
|
11
|
+
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
12
|
+
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
13
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
14
|
+
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider;
|
|
15
|
+
signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme) => Promise<import("@smithy/types").RequestSigner>);
|
|
16
|
+
signingEscapePath?: boolean;
|
|
17
|
+
systemClockOffset?: number;
|
|
18
|
+
signingRegion?: string;
|
|
19
|
+
signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
|
|
20
|
+
disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
|
|
21
|
+
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
22
|
+
apiVersion: string;
|
|
23
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
24
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
25
|
+
disableHostPrefix: boolean;
|
|
26
|
+
endpointProvider: (params: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
27
|
+
logger?: import("@smithy/types").Logger;
|
|
28
|
+
}) => import("@smithy/types").EndpointV2;
|
|
29
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
30
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").DrsHttpAuthSchemeProvider;
|
|
31
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
32
|
+
logger: import("@smithy/types").Logger;
|
|
33
|
+
protocol: import("@smithy/types").$ClientProtocol<any, any> | import("@smithy/types").$ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
|
|
10
34
|
protocolSettings: {
|
|
11
|
-
defaultNamespace?: string;
|
|
12
35
|
[setting: string]: unknown;
|
|
36
|
+
defaultNamespace?: string;
|
|
13
37
|
};
|
|
14
|
-
|
|
38
|
+
serviceId: string;
|
|
15
39
|
sha256: import("@smithy/types").HashConstructor;
|
|
16
40
|
urlParser: import("@smithy/types").UrlParser;
|
|
17
|
-
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
18
|
-
streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
|
|
19
|
-
base64Decoder: import("@smithy/types").Decoder;
|
|
20
|
-
base64Encoder: (_input: Uint8Array | string) => string;
|
|
21
41
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
22
42
|
utf8Encoder: (input: Uint8Array | string) => string;
|
|
23
|
-
disableHostPrefix: boolean;
|
|
24
|
-
serviceId: string;
|
|
25
|
-
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
26
|
-
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
27
|
-
region: string | import("@smithy/types").Provider<any>;
|
|
28
43
|
profile?: string;
|
|
29
|
-
|
|
44
|
+
defaultsMode: import("@smithy/types").Provider<import("@smithy/core/client").DefaultsMode> | import("@smithy/core/client").DefaultsMode;
|
|
45
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
30
46
|
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
47
|
+
defaultUserAgentProvider: (config?: import("@aws-sdk/core/client").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
|
|
31
48
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
49
|
+
region: string | import("@smithy/types").Provider<any>;
|
|
50
|
+
requestHandler: import("@smithy/fetch-http-handler").FetchHttpHandler | import("@smithy/types").FetchHttpHandlerOptions | import("@smithy/types").NodeHttpHandlerOptions | Record<string, unknown> | import("@smithy/core/protocols").HttpHandler<any>;
|
|
32
51
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
38
|
-
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
39
|
-
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
40
|
-
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
41
|
-
logger?: import("@smithy/types").Logger;
|
|
42
|
-
}) => import("@smithy/types").EndpointV2;
|
|
43
|
-
tls?: boolean;
|
|
44
|
-
ignoreConfiguredEndpointUrls?: boolean;
|
|
45
|
-
serviceConfiguredEndpoint?: never;
|
|
46
|
-
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
47
|
-
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
48
|
-
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").DrsHttpAuthSchemeProvider;
|
|
49
|
-
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider;
|
|
50
|
-
signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme) => Promise<import("@smithy/types").RequestSigner>);
|
|
51
|
-
signingEscapePath?: boolean;
|
|
52
|
-
systemClockOffset?: number;
|
|
53
|
-
signingRegion?: string;
|
|
54
|
-
signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
|
|
55
|
-
disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
|
|
52
|
+
streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
|
|
53
|
+
useDualstackEndpoint: boolean | (() => Promise<boolean>);
|
|
54
|
+
useFipsEndpoint: boolean | (() => Promise<boolean>);
|
|
55
|
+
runtime: string;
|
|
56
56
|
};
|
|
@@ -8,14 +8,14 @@ export declare const getRuntimeConfig: (config: DrsClientConfig) => {
|
|
|
8
8
|
base64Decoder: import("@smithy/types").Decoder;
|
|
9
9
|
base64Encoder: (_input: Uint8Array | string) => string;
|
|
10
10
|
disableHostPrefix: boolean;
|
|
11
|
-
endpointProvider: (
|
|
11
|
+
endpointProvider: (params: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
12
12
|
logger?: import("@smithy/types").Logger;
|
|
13
13
|
}) => import("@smithy/types").EndpointV2;
|
|
14
14
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
15
15
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").DrsHttpAuthSchemeProvider;
|
|
16
16
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
17
17
|
logger: import("@smithy/types").Logger;
|
|
18
|
-
protocol: import("@smithy/types")
|
|
18
|
+
protocol: import("@smithy/types").$ClientProtocol<any, any> | import("@smithy/types").$ClientProtocolCtor<any, any> | typeof AwsRestJsonProtocol;
|
|
19
19
|
protocolSettings: {
|
|
20
20
|
[setting: string]: unknown;
|
|
21
21
|
defaultNamespace?: string;
|
|
@@ -18,12 +18,18 @@ export declare const errorTypeRegistries: TypeRegistry[];
|
|
|
18
18
|
export declare var Account$: StaticStructureSchema;
|
|
19
19
|
export declare var AssociateSourceNetworkStackRequest$: StaticStructureSchema;
|
|
20
20
|
export declare var AssociateSourceNetworkStackResponse$: StaticStructureSchema;
|
|
21
|
+
export declare var CancelRecoveryPlanExecutionRequest$: StaticStructureSchema;
|
|
22
|
+
export declare var CancelRecoveryPlanExecutionResponse$: StaticStructureSchema;
|
|
21
23
|
export declare var ConversionProperties$: StaticStructureSchema;
|
|
22
24
|
export declare var CPU$: StaticStructureSchema;
|
|
23
25
|
export declare var CreateExtendedSourceServerRequest$: StaticStructureSchema;
|
|
24
26
|
export declare var CreateExtendedSourceServerResponse$: StaticStructureSchema;
|
|
25
27
|
export declare var CreateLaunchConfigurationTemplateRequest$: StaticStructureSchema;
|
|
26
28
|
export declare var CreateLaunchConfigurationTemplateResponse$: StaticStructureSchema;
|
|
29
|
+
export declare var CreateRecoveryPlanRequest$: StaticStructureSchema;
|
|
30
|
+
export declare var CreateRecoveryPlanResponse$: StaticStructureSchema;
|
|
31
|
+
export declare var CreateRecoveryPlanStepRequest$: StaticStructureSchema;
|
|
32
|
+
export declare var CreateRecoveryPlanStepResponse$: StaticStructureSchema;
|
|
27
33
|
export declare var CreateReplicationConfigurationTemplateRequest$: StaticStructureSchema;
|
|
28
34
|
export declare var CreateSourceNetworkRequest$: StaticStructureSchema;
|
|
29
35
|
export declare var CreateSourceNetworkResponse$: StaticStructureSchema;
|
|
@@ -39,6 +45,12 @@ export declare var DeleteLaunchActionResponse$: StaticStructureSchema;
|
|
|
39
45
|
export declare var DeleteLaunchConfigurationTemplateRequest$: StaticStructureSchema;
|
|
40
46
|
export declare var DeleteLaunchConfigurationTemplateResponse$: StaticStructureSchema;
|
|
41
47
|
export declare var DeleteRecoveryInstanceRequest$: StaticStructureSchema;
|
|
48
|
+
export declare var DeleteRecoveryPlanExecutionRequest$: StaticStructureSchema;
|
|
49
|
+
export declare var DeleteRecoveryPlanExecutionResponse$: StaticStructureSchema;
|
|
50
|
+
export declare var DeleteRecoveryPlanRequest$: StaticStructureSchema;
|
|
51
|
+
export declare var DeleteRecoveryPlanResponse$: StaticStructureSchema;
|
|
52
|
+
export declare var DeleteRecoveryPlanStepRequest$: StaticStructureSchema;
|
|
53
|
+
export declare var DeleteRecoveryPlanStepResponse$: StaticStructureSchema;
|
|
42
54
|
export declare var DeleteReplicationConfigurationTemplateRequest$: StaticStructureSchema;
|
|
43
55
|
export declare var DeleteReplicationConfigurationTemplateResponse$: StaticStructureSchema;
|
|
44
56
|
export declare var DeleteSourceNetworkRequest$: StaticStructureSchema;
|
|
@@ -69,11 +81,21 @@ export declare var DescribeSourceServersResponse$: StaticStructureSchema;
|
|
|
69
81
|
export declare var DisconnectRecoveryInstanceRequest$: StaticStructureSchema;
|
|
70
82
|
export declare var DisconnectSourceServerRequest$: StaticStructureSchema;
|
|
71
83
|
export declare var Disk$: StaticStructureSchema;
|
|
84
|
+
export declare var ErrorDetail$: StaticStructureSchema;
|
|
85
|
+
export declare var ExecutionServerStepConfiguration$: StaticStructureSchema;
|
|
72
86
|
export declare var ExportSourceNetworkCfnTemplateRequest$: StaticStructureSchema;
|
|
73
87
|
export declare var ExportSourceNetworkCfnTemplateResponse$: StaticStructureSchema;
|
|
74
88
|
export declare var GetFailbackReplicationConfigurationRequest$: StaticStructureSchema;
|
|
75
89
|
export declare var GetFailbackReplicationConfigurationResponse$: StaticStructureSchema;
|
|
76
90
|
export declare var GetLaunchConfigurationRequest$: StaticStructureSchema;
|
|
91
|
+
export declare var GetRecoveryPlanExecutionRequest$: StaticStructureSchema;
|
|
92
|
+
export declare var GetRecoveryPlanExecutionResponse$: StaticStructureSchema;
|
|
93
|
+
export declare var GetRecoveryPlanExecutionStepRequest$: StaticStructureSchema;
|
|
94
|
+
export declare var GetRecoveryPlanExecutionStepResponse$: StaticStructureSchema;
|
|
95
|
+
export declare var GetRecoveryPlanRequest$: StaticStructureSchema;
|
|
96
|
+
export declare var GetRecoveryPlanResponse$: StaticStructureSchema;
|
|
97
|
+
export declare var GetRecoveryPlanStepRequest$: StaticStructureSchema;
|
|
98
|
+
export declare var GetRecoveryPlanStepResponse$: StaticStructureSchema;
|
|
77
99
|
export declare var GetReplicationConfigurationRequest$: StaticStructureSchema;
|
|
78
100
|
export declare var IdentificationHints$: StaticStructureSchema;
|
|
79
101
|
export declare var InitializeServiceRequest$: StaticStructureSchema;
|
|
@@ -97,6 +119,15 @@ export declare var ListExtensibleSourceServersRequest$: StaticStructureSchema;
|
|
|
97
119
|
export declare var ListExtensibleSourceServersResponse$: StaticStructureSchema;
|
|
98
120
|
export declare var ListLaunchActionsRequest$: StaticStructureSchema;
|
|
99
121
|
export declare var ListLaunchActionsResponse$: StaticStructureSchema;
|
|
122
|
+
export declare var ListRecoveryPlanExecutionsRequest$: StaticStructureSchema;
|
|
123
|
+
export declare var ListRecoveryPlanExecutionsResponse$: StaticStructureSchema;
|
|
124
|
+
export declare var ListRecoveryPlanExecutionStepsFilter$: StaticStructureSchema;
|
|
125
|
+
export declare var ListRecoveryPlanExecutionStepsRequest$: StaticStructureSchema;
|
|
126
|
+
export declare var ListRecoveryPlanExecutionStepsResponse$: StaticStructureSchema;
|
|
127
|
+
export declare var ListRecoveryPlansRequest$: StaticStructureSchema;
|
|
128
|
+
export declare var ListRecoveryPlansResponse$: StaticStructureSchema;
|
|
129
|
+
export declare var ListRecoveryPlanStepsRequest$: StaticStructureSchema;
|
|
130
|
+
export declare var ListRecoveryPlanStepsResponse$: StaticStructureSchema;
|
|
100
131
|
export declare var ListStagingAccountsRequest$: StaticStructureSchema;
|
|
101
132
|
export declare var ListStagingAccountsResponse$: StaticStructureSchema;
|
|
102
133
|
export declare var ListTagsForResourceRequest$: StaticStructureSchema;
|
|
@@ -119,13 +150,28 @@ export declare var RecoveryInstanceDisk$: StaticStructureSchema;
|
|
|
119
150
|
export declare var RecoveryInstanceFailback$: StaticStructureSchema;
|
|
120
151
|
export declare var RecoveryInstanceProperties$: StaticStructureSchema;
|
|
121
152
|
export declare var RecoveryLifeCycle$: StaticStructureSchema;
|
|
153
|
+
export declare var RecoveryPlan$: StaticStructureSchema;
|
|
154
|
+
export declare var RecoveryPlanExecution$: StaticStructureSchema;
|
|
155
|
+
export declare var RecoveryPlanExecutionServer$: StaticStructureSchema;
|
|
156
|
+
export declare var RecoveryPlanExecutionSourceServer$: StaticStructureSchema;
|
|
157
|
+
export declare var RecoveryPlanExecutionStep$: StaticStructureSchema;
|
|
158
|
+
export declare var RecoveryPlanExecutionStepSummary$: StaticStructureSchema;
|
|
159
|
+
export declare var RecoveryPlanExecutionSummary$: StaticStructureSchema;
|
|
160
|
+
export declare var RecoveryPlanServer$: StaticStructureSchema;
|
|
161
|
+
export declare var RecoveryPlanStep$: StaticStructureSchema;
|
|
162
|
+
export declare var RecoveryPlanSummary$: StaticStructureSchema;
|
|
122
163
|
export declare var RecoverySnapshot$: StaticStructureSchema;
|
|
164
|
+
export declare var ReorderRecoveryPlanStepsRequest$: StaticStructureSchema;
|
|
165
|
+
export declare var ReorderRecoveryPlanStepsResponse$: StaticStructureSchema;
|
|
123
166
|
export declare var ReplicationConfiguration$: StaticStructureSchema;
|
|
124
167
|
export declare var ReplicationConfigurationReplicatedDisk$: StaticStructureSchema;
|
|
125
168
|
export declare var ReplicationConfigurationTemplate$: StaticStructureSchema;
|
|
126
169
|
export declare var RetryDataReplicationRequest$: StaticStructureSchema;
|
|
170
|
+
export declare var RetryRecoveryPlanExecutionStepRequest$: StaticStructureSchema;
|
|
171
|
+
export declare var RetryRecoveryPlanExecutionStepResponse$: StaticStructureSchema;
|
|
127
172
|
export declare var ReverseReplicationRequest$: StaticStructureSchema;
|
|
128
173
|
export declare var ReverseReplicationResponse$: StaticStructureSchema;
|
|
174
|
+
export declare var ServerStepConfiguration$: StaticStructureSchema;
|
|
129
175
|
export declare var SourceCloudProperties$: StaticStructureSchema;
|
|
130
176
|
export declare var SourceNetwork$: StaticStructureSchema;
|
|
131
177
|
export declare var SourceNetworkData$: StaticStructureSchema;
|
|
@@ -135,6 +181,8 @@ export declare var StagingArea$: StaticStructureSchema;
|
|
|
135
181
|
export declare var StagingSourceServer$: StaticStructureSchema;
|
|
136
182
|
export declare var StartFailbackLaunchRequest$: StaticStructureSchema;
|
|
137
183
|
export declare var StartFailbackLaunchResponse$: StaticStructureSchema;
|
|
184
|
+
export declare var StartRecoveryPlanExecutionRequest$: StaticStructureSchema;
|
|
185
|
+
export declare var StartRecoveryPlanExecutionResponse$: StaticStructureSchema;
|
|
138
186
|
export declare var StartRecoveryRequest$: StaticStructureSchema;
|
|
139
187
|
export declare var StartRecoveryRequestSourceServer$: StaticStructureSchema;
|
|
140
188
|
export declare var StartRecoveryResponse$: StaticStructureSchema;
|
|
@@ -158,20 +206,35 @@ export declare var UpdateFailbackReplicationConfigurationRequest$: StaticStructu
|
|
|
158
206
|
export declare var UpdateLaunchConfigurationRequest$: StaticStructureSchema;
|
|
159
207
|
export declare var UpdateLaunchConfigurationTemplateRequest$: StaticStructureSchema;
|
|
160
208
|
export declare var UpdateLaunchConfigurationTemplateResponse$: StaticStructureSchema;
|
|
209
|
+
export declare var UpdateRecoveryPlanExecutionStepRequest$: StaticStructureSchema;
|
|
210
|
+
export declare var UpdateRecoveryPlanExecutionStepResponse$: StaticStructureSchema;
|
|
211
|
+
export declare var UpdateRecoveryPlanRequest$: StaticStructureSchema;
|
|
212
|
+
export declare var UpdateRecoveryPlanResponse$: StaticStructureSchema;
|
|
213
|
+
export declare var UpdateRecoveryPlanStepRequest$: StaticStructureSchema;
|
|
214
|
+
export declare var UpdateRecoveryPlanStepResponse$: StaticStructureSchema;
|
|
161
215
|
export declare var UpdateReplicationConfigurationRequest$: StaticStructureSchema;
|
|
162
216
|
export declare var UpdateReplicationConfigurationTemplateRequest$: StaticStructureSchema;
|
|
163
217
|
export declare var ValidationExceptionField$: StaticStructureSchema;
|
|
218
|
+
export declare var WaitStepConfiguration$: StaticStructureSchema;
|
|
164
219
|
export declare var EventResourceData$: StaticUnionSchema;
|
|
165
220
|
export declare var ParticipatingResourceID$: StaticUnionSchema;
|
|
221
|
+
export declare var RecoveryPlanExecutionStepConfiguration$: StaticUnionSchema;
|
|
222
|
+
export declare var RecoveryPlanStepConfiguration$: StaticUnionSchema;
|
|
166
223
|
export declare var AssociateSourceNetworkStack$: StaticOperationSchema;
|
|
224
|
+
export declare var CancelRecoveryPlanExecution$: StaticOperationSchema;
|
|
167
225
|
export declare var CreateExtendedSourceServer$: StaticOperationSchema;
|
|
168
226
|
export declare var CreateLaunchConfigurationTemplate$: StaticOperationSchema;
|
|
227
|
+
export declare var CreateRecoveryPlan$: StaticOperationSchema;
|
|
228
|
+
export declare var CreateRecoveryPlanStep$: StaticOperationSchema;
|
|
169
229
|
export declare var CreateReplicationConfigurationTemplate$: StaticOperationSchema;
|
|
170
230
|
export declare var CreateSourceNetwork$: StaticOperationSchema;
|
|
171
231
|
export declare var DeleteJob$: StaticOperationSchema;
|
|
172
232
|
export declare var DeleteLaunchAction$: StaticOperationSchema;
|
|
173
233
|
export declare var DeleteLaunchConfigurationTemplate$: StaticOperationSchema;
|
|
174
234
|
export declare var DeleteRecoveryInstance$: StaticOperationSchema;
|
|
235
|
+
export declare var DeleteRecoveryPlan$: StaticOperationSchema;
|
|
236
|
+
export declare var DeleteRecoveryPlanExecution$: StaticOperationSchema;
|
|
237
|
+
export declare var DeleteRecoveryPlanStep$: StaticOperationSchema;
|
|
175
238
|
export declare var DeleteReplicationConfigurationTemplate$: StaticOperationSchema;
|
|
176
239
|
export declare var DeleteSourceNetwork$: StaticOperationSchema;
|
|
177
240
|
export declare var DeleteSourceServer$: StaticOperationSchema;
|
|
@@ -188,17 +251,28 @@ export declare var DisconnectSourceServer$: StaticOperationSchema;
|
|
|
188
251
|
export declare var ExportSourceNetworkCfnTemplate$: StaticOperationSchema;
|
|
189
252
|
export declare var GetFailbackReplicationConfiguration$: StaticOperationSchema;
|
|
190
253
|
export declare var GetLaunchConfiguration$: StaticOperationSchema;
|
|
254
|
+
export declare var GetRecoveryPlan$: StaticOperationSchema;
|
|
255
|
+
export declare var GetRecoveryPlanExecution$: StaticOperationSchema;
|
|
256
|
+
export declare var GetRecoveryPlanExecutionStep$: StaticOperationSchema;
|
|
257
|
+
export declare var GetRecoveryPlanStep$: StaticOperationSchema;
|
|
191
258
|
export declare var GetReplicationConfiguration$: StaticOperationSchema;
|
|
192
259
|
export declare var InitializeService$: StaticOperationSchema;
|
|
193
260
|
export declare var ListExtensibleSourceServers$: StaticOperationSchema;
|
|
194
261
|
export declare var ListLaunchActions$: StaticOperationSchema;
|
|
262
|
+
export declare var ListRecoveryPlanExecutions$: StaticOperationSchema;
|
|
263
|
+
export declare var ListRecoveryPlanExecutionSteps$: StaticOperationSchema;
|
|
264
|
+
export declare var ListRecoveryPlans$: StaticOperationSchema;
|
|
265
|
+
export declare var ListRecoveryPlanSteps$: StaticOperationSchema;
|
|
195
266
|
export declare var ListStagingAccounts$: StaticOperationSchema;
|
|
196
267
|
export declare var ListTagsForResource$: StaticOperationSchema;
|
|
197
268
|
export declare var PutLaunchAction$: StaticOperationSchema;
|
|
269
|
+
export declare var ReorderRecoveryPlanSteps$: StaticOperationSchema;
|
|
198
270
|
export declare var RetryDataReplication$: StaticOperationSchema;
|
|
271
|
+
export declare var RetryRecoveryPlanExecutionStep$: StaticOperationSchema;
|
|
199
272
|
export declare var ReverseReplication$: StaticOperationSchema;
|
|
200
273
|
export declare var StartFailbackLaunch$: StaticOperationSchema;
|
|
201
274
|
export declare var StartRecovery$: StaticOperationSchema;
|
|
275
|
+
export declare var StartRecoveryPlanExecution$: StaticOperationSchema;
|
|
202
276
|
export declare var StartReplication$: StaticOperationSchema;
|
|
203
277
|
export declare var StartSourceNetworkRecovery$: StaticOperationSchema;
|
|
204
278
|
export declare var StartSourceNetworkReplication$: StaticOperationSchema;
|
|
@@ -211,5 +285,8 @@ export declare var UntagResource$: StaticOperationSchema;
|
|
|
211
285
|
export declare var UpdateFailbackReplicationConfiguration$: StaticOperationSchema;
|
|
212
286
|
export declare var UpdateLaunchConfiguration$: StaticOperationSchema;
|
|
213
287
|
export declare var UpdateLaunchConfigurationTemplate$: StaticOperationSchema;
|
|
288
|
+
export declare var UpdateRecoveryPlan$: StaticOperationSchema;
|
|
289
|
+
export declare var UpdateRecoveryPlanExecutionStep$: StaticOperationSchema;
|
|
290
|
+
export declare var UpdateRecoveryPlanStep$: StaticOperationSchema;
|
|
214
291
|
export declare var UpdateReplicationConfiguration$: StaticOperationSchema;
|
|
215
292
|
export declare var UpdateReplicationConfigurationTemplate$: StaticOperationSchema;
|