@aws-sdk/client-route53-recovery-cluster 3.169.0 → 3.171.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/CHANGELOG.md +16 -0
- package/dist-types/ts3.4/Route53RecoveryCluster.d.ts +72 -25
- package/dist-types/ts3.4/Route53RecoveryClusterClient.d.ts +129 -77
- package/dist-types/ts3.4/commands/GetRoutingControlStateCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/ListRoutingControlsCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/UpdateRoutingControlStateCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/UpdateRoutingControlStatesCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/index.d.ts +4 -4
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/Route53RecoveryClusterServiceException.d.ts +7 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +159 -185
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListRoutingControlsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +2 -2
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +53 -14
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +67 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +67 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +68 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +12 -11
- package/package.json +34 -34
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,22 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.171.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.170.0...v3.171.0) (2022-09-14)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-route53-recovery-cluster
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [3.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @aws-sdk/client-route53-recovery-cluster
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
6
22
|
# [3.169.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.168.0...v3.169.0) (2022-09-12)
|
|
7
23
|
|
|
8
24
|
**Note:** Version bump only for package @aws-sdk/client-route53-recovery-cluster
|
|
@@ -1,25 +1,72 @@
|
|
|
1
|
-
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
import {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
1
|
+
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
GetRoutingControlStateCommandInput,
|
|
4
|
+
GetRoutingControlStateCommandOutput,
|
|
5
|
+
} from "./commands/GetRoutingControlStateCommand";
|
|
6
|
+
import {
|
|
7
|
+
ListRoutingControlsCommandInput,
|
|
8
|
+
ListRoutingControlsCommandOutput,
|
|
9
|
+
} from "./commands/ListRoutingControlsCommand";
|
|
10
|
+
import {
|
|
11
|
+
UpdateRoutingControlStateCommandInput,
|
|
12
|
+
UpdateRoutingControlStateCommandOutput,
|
|
13
|
+
} from "./commands/UpdateRoutingControlStateCommand";
|
|
14
|
+
import {
|
|
15
|
+
UpdateRoutingControlStatesCommandInput,
|
|
16
|
+
UpdateRoutingControlStatesCommandOutput,
|
|
17
|
+
} from "./commands/UpdateRoutingControlStatesCommand";
|
|
18
|
+
import { Route53RecoveryClusterClient } from "./Route53RecoveryClusterClient";
|
|
19
|
+
export declare class Route53RecoveryCluster extends Route53RecoveryClusterClient {
|
|
20
|
+
getRoutingControlState(
|
|
21
|
+
args: GetRoutingControlStateCommandInput,
|
|
22
|
+
options?: __HttpHandlerOptions
|
|
23
|
+
): Promise<GetRoutingControlStateCommandOutput>;
|
|
24
|
+
getRoutingControlState(
|
|
25
|
+
args: GetRoutingControlStateCommandInput,
|
|
26
|
+
cb: (err: any, data?: GetRoutingControlStateCommandOutput) => void
|
|
27
|
+
): void;
|
|
28
|
+
getRoutingControlState(
|
|
29
|
+
args: GetRoutingControlStateCommandInput,
|
|
30
|
+
options: __HttpHandlerOptions,
|
|
31
|
+
cb: (err: any, data?: GetRoutingControlStateCommandOutput) => void
|
|
32
|
+
): void;
|
|
33
|
+
listRoutingControls(
|
|
34
|
+
args: ListRoutingControlsCommandInput,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Promise<ListRoutingControlsCommandOutput>;
|
|
37
|
+
listRoutingControls(
|
|
38
|
+
args: ListRoutingControlsCommandInput,
|
|
39
|
+
cb: (err: any, data?: ListRoutingControlsCommandOutput) => void
|
|
40
|
+
): void;
|
|
41
|
+
listRoutingControls(
|
|
42
|
+
args: ListRoutingControlsCommandInput,
|
|
43
|
+
options: __HttpHandlerOptions,
|
|
44
|
+
cb: (err: any, data?: ListRoutingControlsCommandOutput) => void
|
|
45
|
+
): void;
|
|
46
|
+
updateRoutingControlState(
|
|
47
|
+
args: UpdateRoutingControlStateCommandInput,
|
|
48
|
+
options?: __HttpHandlerOptions
|
|
49
|
+
): Promise<UpdateRoutingControlStateCommandOutput>;
|
|
50
|
+
updateRoutingControlState(
|
|
51
|
+
args: UpdateRoutingControlStateCommandInput,
|
|
52
|
+
cb: (err: any, data?: UpdateRoutingControlStateCommandOutput) => void
|
|
53
|
+
): void;
|
|
54
|
+
updateRoutingControlState(
|
|
55
|
+
args: UpdateRoutingControlStateCommandInput,
|
|
56
|
+
options: __HttpHandlerOptions,
|
|
57
|
+
cb: (err: any, data?: UpdateRoutingControlStateCommandOutput) => void
|
|
58
|
+
): void;
|
|
59
|
+
updateRoutingControlStates(
|
|
60
|
+
args: UpdateRoutingControlStatesCommandInput,
|
|
61
|
+
options?: __HttpHandlerOptions
|
|
62
|
+
): Promise<UpdateRoutingControlStatesCommandOutput>;
|
|
63
|
+
updateRoutingControlStates(
|
|
64
|
+
args: UpdateRoutingControlStatesCommandInput,
|
|
65
|
+
cb: (err: any, data?: UpdateRoutingControlStatesCommandOutput) => void
|
|
66
|
+
): void;
|
|
67
|
+
updateRoutingControlStates(
|
|
68
|
+
args: UpdateRoutingControlStatesCommandInput,
|
|
69
|
+
options: __HttpHandlerOptions,
|
|
70
|
+
cb: (err: any, data?: UpdateRoutingControlStatesCommandOutput) => void
|
|
71
|
+
): void;
|
|
72
|
+
}
|
|
@@ -1,77 +1,129 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
import {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
import {
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
}
|
|
61
|
-
declare type
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
1
|
+
import {
|
|
2
|
+
EndpointsInputConfig,
|
|
3
|
+
EndpointsResolvedConfig,
|
|
4
|
+
RegionInputConfig,
|
|
5
|
+
RegionResolvedConfig,
|
|
6
|
+
} from "@aws-sdk/config-resolver";
|
|
7
|
+
import {
|
|
8
|
+
HostHeaderInputConfig,
|
|
9
|
+
HostHeaderResolvedConfig,
|
|
10
|
+
} from "@aws-sdk/middleware-host-header";
|
|
11
|
+
import {
|
|
12
|
+
RetryInputConfig,
|
|
13
|
+
RetryResolvedConfig,
|
|
14
|
+
} from "@aws-sdk/middleware-retry";
|
|
15
|
+
import {
|
|
16
|
+
AwsAuthInputConfig,
|
|
17
|
+
AwsAuthResolvedConfig,
|
|
18
|
+
} from "@aws-sdk/middleware-signing";
|
|
19
|
+
import {
|
|
20
|
+
UserAgentInputConfig,
|
|
21
|
+
UserAgentResolvedConfig,
|
|
22
|
+
} from "@aws-sdk/middleware-user-agent";
|
|
23
|
+
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
24
|
+
import {
|
|
25
|
+
Client as __Client,
|
|
26
|
+
DefaultsMode,
|
|
27
|
+
SmithyConfiguration as __SmithyConfiguration,
|
|
28
|
+
SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
|
|
29
|
+
} from "@aws-sdk/smithy-client";
|
|
30
|
+
import {
|
|
31
|
+
BodyLengthCalculator as __BodyLengthCalculator,
|
|
32
|
+
Credentials as __Credentials,
|
|
33
|
+
Decoder as __Decoder,
|
|
34
|
+
Encoder as __Encoder,
|
|
35
|
+
HashConstructor as __HashConstructor,
|
|
36
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
37
|
+
Logger as __Logger,
|
|
38
|
+
Provider as __Provider,
|
|
39
|
+
Provider,
|
|
40
|
+
RegionInfoProvider,
|
|
41
|
+
StreamCollector as __StreamCollector,
|
|
42
|
+
UrlParser as __UrlParser,
|
|
43
|
+
UserAgent as __UserAgent,
|
|
44
|
+
} from "@aws-sdk/types";
|
|
45
|
+
import {
|
|
46
|
+
GetRoutingControlStateCommandInput,
|
|
47
|
+
GetRoutingControlStateCommandOutput,
|
|
48
|
+
} from "./commands/GetRoutingControlStateCommand";
|
|
49
|
+
import {
|
|
50
|
+
ListRoutingControlsCommandInput,
|
|
51
|
+
ListRoutingControlsCommandOutput,
|
|
52
|
+
} from "./commands/ListRoutingControlsCommand";
|
|
53
|
+
import {
|
|
54
|
+
UpdateRoutingControlStateCommandInput,
|
|
55
|
+
UpdateRoutingControlStateCommandOutput,
|
|
56
|
+
} from "./commands/UpdateRoutingControlStateCommand";
|
|
57
|
+
import {
|
|
58
|
+
UpdateRoutingControlStatesCommandInput,
|
|
59
|
+
UpdateRoutingControlStatesCommandOutput,
|
|
60
|
+
} from "./commands/UpdateRoutingControlStatesCommand";
|
|
61
|
+
export declare type ServiceInputTypes =
|
|
62
|
+
| GetRoutingControlStateCommandInput
|
|
63
|
+
| ListRoutingControlsCommandInput
|
|
64
|
+
| UpdateRoutingControlStateCommandInput
|
|
65
|
+
| UpdateRoutingControlStatesCommandInput;
|
|
66
|
+
export declare type ServiceOutputTypes =
|
|
67
|
+
| GetRoutingControlStateCommandOutput
|
|
68
|
+
| ListRoutingControlsCommandOutput
|
|
69
|
+
| UpdateRoutingControlStateCommandOutput
|
|
70
|
+
| UpdateRoutingControlStatesCommandOutput;
|
|
71
|
+
export interface ClientDefaults
|
|
72
|
+
extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
73
|
+
requestHandler?: __HttpHandler;
|
|
74
|
+
sha256?: __HashConstructor;
|
|
75
|
+
urlParser?: __UrlParser;
|
|
76
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
77
|
+
streamCollector?: __StreamCollector;
|
|
78
|
+
base64Decoder?: __Decoder;
|
|
79
|
+
base64Encoder?: __Encoder;
|
|
80
|
+
utf8Decoder?: __Decoder;
|
|
81
|
+
utf8Encoder?: __Encoder;
|
|
82
|
+
runtime?: string;
|
|
83
|
+
disableHostPrefix?: boolean;
|
|
84
|
+
maxAttempts?: number | __Provider<number>;
|
|
85
|
+
retryMode?: string | __Provider<string>;
|
|
86
|
+
logger?: __Logger;
|
|
87
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
88
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
89
|
+
serviceId?: string;
|
|
90
|
+
region?: string | __Provider<string>;
|
|
91
|
+
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
92
|
+
regionInfoProvider?: RegionInfoProvider;
|
|
93
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
94
|
+
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
95
|
+
}
|
|
96
|
+
declare type Route53RecoveryClusterClientConfigType = Partial<
|
|
97
|
+
__SmithyConfiguration<__HttpHandlerOptions>
|
|
98
|
+
> &
|
|
99
|
+
ClientDefaults &
|
|
100
|
+
RegionInputConfig &
|
|
101
|
+
EndpointsInputConfig &
|
|
102
|
+
RetryInputConfig &
|
|
103
|
+
HostHeaderInputConfig &
|
|
104
|
+
AwsAuthInputConfig &
|
|
105
|
+
UserAgentInputConfig;
|
|
106
|
+
export interface Route53RecoveryClusterClientConfig
|
|
107
|
+
extends Route53RecoveryClusterClientConfigType {}
|
|
108
|
+
declare type Route53RecoveryClusterClientResolvedConfigType =
|
|
109
|
+
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
110
|
+
Required<ClientDefaults> &
|
|
111
|
+
RegionResolvedConfig &
|
|
112
|
+
EndpointsResolvedConfig &
|
|
113
|
+
RetryResolvedConfig &
|
|
114
|
+
HostHeaderResolvedConfig &
|
|
115
|
+
AwsAuthResolvedConfig &
|
|
116
|
+
UserAgentResolvedConfig;
|
|
117
|
+
export interface Route53RecoveryClusterClientResolvedConfig
|
|
118
|
+
extends Route53RecoveryClusterClientResolvedConfigType {}
|
|
119
|
+
export declare class Route53RecoveryClusterClient extends __Client<
|
|
120
|
+
__HttpHandlerOptions,
|
|
121
|
+
ServiceInputTypes,
|
|
122
|
+
ServiceOutputTypes,
|
|
123
|
+
Route53RecoveryClusterClientResolvedConfig
|
|
124
|
+
> {
|
|
125
|
+
readonly config: Route53RecoveryClusterClientResolvedConfig;
|
|
126
|
+
constructor(configuration: Route53RecoveryClusterClientConfig);
|
|
127
|
+
destroy(): void;
|
|
128
|
+
}
|
|
129
|
+
export {};
|
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
GetRoutingControlStateRequest,
|
|
10
|
+
GetRoutingControlStateResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
Route53RecoveryClusterClientResolvedConfig,
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
} from "../Route53RecoveryClusterClient";
|
|
17
|
+
export interface GetRoutingControlStateCommandInput
|
|
18
|
+
extends GetRoutingControlStateRequest {}
|
|
19
|
+
export interface GetRoutingControlStateCommandOutput
|
|
20
|
+
extends GetRoutingControlStateResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class GetRoutingControlStateCommand extends $Command<
|
|
23
|
+
GetRoutingControlStateCommandInput,
|
|
24
|
+
GetRoutingControlStateCommandOutput,
|
|
25
|
+
Route53RecoveryClusterClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: GetRoutingControlStateCommandInput;
|
|
28
|
+
constructor(input: GetRoutingControlStateCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: Route53RecoveryClusterClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
GetRoutingControlStateCommandInput,
|
|
35
|
+
GetRoutingControlStateCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,36 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
ListRoutingControlsRequest,
|
|
10
|
+
ListRoutingControlsResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
Route53RecoveryClusterClientResolvedConfig,
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
} from "../Route53RecoveryClusterClient";
|
|
17
|
+
export interface ListRoutingControlsCommandInput
|
|
18
|
+
extends ListRoutingControlsRequest {}
|
|
19
|
+
export interface ListRoutingControlsCommandOutput
|
|
20
|
+
extends ListRoutingControlsResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class ListRoutingControlsCommand extends $Command<
|
|
23
|
+
ListRoutingControlsCommandInput,
|
|
24
|
+
ListRoutingControlsCommandOutput,
|
|
25
|
+
Route53RecoveryClusterClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ListRoutingControlsCommandInput;
|
|
28
|
+
constructor(input: ListRoutingControlsCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: Route53RecoveryClusterClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<ListRoutingControlsCommandInput, ListRoutingControlsCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
UpdateRoutingControlStateRequest,
|
|
10
|
+
UpdateRoutingControlStateResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
Route53RecoveryClusterClientResolvedConfig,
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
} from "../Route53RecoveryClusterClient";
|
|
17
|
+
export interface UpdateRoutingControlStateCommandInput
|
|
18
|
+
extends UpdateRoutingControlStateRequest {}
|
|
19
|
+
export interface UpdateRoutingControlStateCommandOutput
|
|
20
|
+
extends UpdateRoutingControlStateResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class UpdateRoutingControlStateCommand extends $Command<
|
|
23
|
+
UpdateRoutingControlStateCommandInput,
|
|
24
|
+
UpdateRoutingControlStateCommandOutput,
|
|
25
|
+
Route53RecoveryClusterClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: UpdateRoutingControlStateCommandInput;
|
|
28
|
+
constructor(input: UpdateRoutingControlStateCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: Route53RecoveryClusterClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
UpdateRoutingControlStateCommandInput,
|
|
35
|
+
UpdateRoutingControlStateCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
UpdateRoutingControlStatesRequest,
|
|
10
|
+
UpdateRoutingControlStatesResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
Route53RecoveryClusterClientResolvedConfig,
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
} from "../Route53RecoveryClusterClient";
|
|
17
|
+
export interface UpdateRoutingControlStatesCommandInput
|
|
18
|
+
extends UpdateRoutingControlStatesRequest {}
|
|
19
|
+
export interface UpdateRoutingControlStatesCommandOutput
|
|
20
|
+
extends UpdateRoutingControlStatesResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class UpdateRoutingControlStatesCommand extends $Command<
|
|
23
|
+
UpdateRoutingControlStatesCommandInput,
|
|
24
|
+
UpdateRoutingControlStatesCommandOutput,
|
|
25
|
+
Route53RecoveryClusterClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: UpdateRoutingControlStatesCommandInput;
|
|
28
|
+
constructor(input: UpdateRoutingControlStatesCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: Route53RecoveryClusterClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
UpdateRoutingControlStatesCommandInput,
|
|
35
|
+
UpdateRoutingControlStatesCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export * from "./GetRoutingControlStateCommand";
|
|
2
|
-
export * from "./ListRoutingControlsCommand";
|
|
3
|
-
export * from "./UpdateRoutingControlStateCommand";
|
|
4
|
-
export * from "./UpdateRoutingControlStatesCommand";
|
|
1
|
+
export * from "./GetRoutingControlStateCommand";
|
|
2
|
+
export * from "./ListRoutingControlsCommand";
|
|
3
|
+
export * from "./UpdateRoutingControlStateCommand";
|
|
4
|
+
export * from "./UpdateRoutingControlStatesCommand";
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { RegionInfoProvider } from "@aws-sdk/types";
|
|
2
|
-
export declare const defaultRegionInfoProvider: RegionInfoProvider;
|
|
1
|
+
import { RegionInfoProvider } from "@aws-sdk/types";
|
|
2
|
+
export declare const defaultRegionInfoProvider: RegionInfoProvider;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export * from "./Route53RecoveryCluster";
|
|
2
|
-
export * from "./Route53RecoveryClusterClient";
|
|
3
|
-
export * from "./commands";
|
|
4
|
-
export * from "./models";
|
|
5
|
-
export * from "./pagination";
|
|
6
|
-
export { Route53RecoveryClusterServiceException } from "./models/Route53RecoveryClusterServiceException";
|
|
1
|
+
export * from "./Route53RecoveryCluster";
|
|
2
|
+
export * from "./Route53RecoveryClusterClient";
|
|
3
|
+
export * from "./commands";
|
|
4
|
+
export * from "./models";
|
|
5
|
+
export * from "./pagination";
|
|
6
|
+
export { Route53RecoveryClusterServiceException } from "./models/Route53RecoveryClusterServiceException";
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import {
|
|
2
|
+
ServiceException as __ServiceException,
|
|
3
|
+
ServiceExceptionOptions as __ServiceExceptionOptions,
|
|
4
|
+
} from "@aws-sdk/smithy-client";
|
|
5
|
+
export declare class Route53RecoveryClusterServiceException extends __ServiceException {
|
|
6
|
+
constructor(options: __ServiceExceptionOptions);
|
|
7
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
1
|
+
export * from "./models_0";
|