@aws-sdk/client-route53-recovery-cluster 3.170.0 → 3.178.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/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/Route53RecoveryCluster.d.ts +0 -4
- package/dist-types/ts3.4/Route53RecoveryClusterClient.d.ts +0 -25
- package/dist-types/ts3.4/commands/GetRoutingControlStateCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListRoutingControlsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateRoutingControlStateCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateRoutingControlStatesCommand.d.ts +0 -2
- package/dist-types/ts3.4/models/Route53RecoveryClusterServiceException.d.ts +0 -1
- package/dist-types/ts3.4/models/models_0.d.ts +0 -56
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +3 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +3 -2
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +3 -2
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +0 -1
- package/package.json +26 -26
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.178.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.177.0...v3.178.0) (2022-09-23)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-route53-recovery-cluster
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [3.171.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.170.0...v3.171.0) (2022-09-14)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @aws-sdk/client-route53-recovery-cluster
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
6
22
|
# [3.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
|
|
7
23
|
|
|
8
24
|
**Note:** Version bump only for package @aws-sdk/client-route53-recovery-cluster
|
|
@@ -31,7 +31,7 @@ export declare const getRuntimeConfig: (config: Route53RecoveryClusterClientConf
|
|
|
31
31
|
tls?: boolean | undefined;
|
|
32
32
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
33
33
|
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
34
|
-
signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").
|
|
34
|
+
signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
|
|
35
35
|
signingEscapePath?: boolean | undefined;
|
|
36
36
|
systemClockOffset?: number | undefined;
|
|
37
37
|
signingRegion?: string | undefined;
|
|
@@ -31,7 +31,7 @@ export declare const getRuntimeConfig: (config: Route53RecoveryClusterClientConf
|
|
|
31
31
|
tls?: boolean | undefined;
|
|
32
32
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
33
33
|
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
34
|
-
signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").
|
|
34
|
+
signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
|
|
35
35
|
signingEscapePath?: boolean | undefined;
|
|
36
36
|
systemClockOffset?: number | undefined;
|
|
37
37
|
signingRegion?: string | undefined;
|
|
@@ -30,7 +30,7 @@ export declare const getRuntimeConfig: (config: Route53RecoveryClusterClientConf
|
|
|
30
30
|
tls?: boolean | undefined;
|
|
31
31
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
32
32
|
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
33
|
-
signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").
|
|
33
|
+
signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
|
|
34
34
|
signingEscapePath?: boolean | undefined;
|
|
35
35
|
systemClockOffset?: number | undefined;
|
|
36
36
|
signingRegion?: string | undefined;
|
|
@@ -16,7 +16,6 @@ import {
|
|
|
16
16
|
UpdateRoutingControlStatesCommandOutput,
|
|
17
17
|
} from "./commands/UpdateRoutingControlStatesCommand";
|
|
18
18
|
import { Route53RecoveryClusterClient } from "./Route53RecoveryClusterClient";
|
|
19
|
-
|
|
20
19
|
export declare class Route53RecoveryCluster extends Route53RecoveryClusterClient {
|
|
21
20
|
getRoutingControlState(
|
|
22
21
|
args: GetRoutingControlStateCommandInput,
|
|
@@ -31,7 +30,6 @@ export declare class Route53RecoveryCluster extends Route53RecoveryClusterClient
|
|
|
31
30
|
options: __HttpHandlerOptions,
|
|
32
31
|
cb: (err: any, data?: GetRoutingControlStateCommandOutput) => void
|
|
33
32
|
): void;
|
|
34
|
-
|
|
35
33
|
listRoutingControls(
|
|
36
34
|
args: ListRoutingControlsCommandInput,
|
|
37
35
|
options?: __HttpHandlerOptions
|
|
@@ -45,7 +43,6 @@ export declare class Route53RecoveryCluster extends Route53RecoveryClusterClient
|
|
|
45
43
|
options: __HttpHandlerOptions,
|
|
46
44
|
cb: (err: any, data?: ListRoutingControlsCommandOutput) => void
|
|
47
45
|
): void;
|
|
48
|
-
|
|
49
46
|
updateRoutingControlState(
|
|
50
47
|
args: UpdateRoutingControlStateCommandInput,
|
|
51
48
|
options?: __HttpHandlerOptions
|
|
@@ -59,7 +56,6 @@ export declare class Route53RecoveryCluster extends Route53RecoveryClusterClient
|
|
|
59
56
|
options: __HttpHandlerOptions,
|
|
60
57
|
cb: (err: any, data?: UpdateRoutingControlStateCommandOutput) => void
|
|
61
58
|
): void;
|
|
62
|
-
|
|
63
59
|
updateRoutingControlStates(
|
|
64
60
|
args: UpdateRoutingControlStatesCommandInput,
|
|
65
61
|
options?: __HttpHandlerOptions
|
|
@@ -71,47 +71,26 @@ export declare type ServiceOutputTypes =
|
|
|
71
71
|
export interface ClientDefaults
|
|
72
72
|
extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
73
73
|
requestHandler?: __HttpHandler;
|
|
74
|
-
|
|
75
74
|
sha256?: __HashConstructor;
|
|
76
|
-
|
|
77
75
|
urlParser?: __UrlParser;
|
|
78
|
-
|
|
79
76
|
bodyLengthChecker?: __BodyLengthCalculator;
|
|
80
|
-
|
|
81
77
|
streamCollector?: __StreamCollector;
|
|
82
|
-
|
|
83
78
|
base64Decoder?: __Decoder;
|
|
84
|
-
|
|
85
79
|
base64Encoder?: __Encoder;
|
|
86
|
-
|
|
87
80
|
utf8Decoder?: __Decoder;
|
|
88
|
-
|
|
89
81
|
utf8Encoder?: __Encoder;
|
|
90
|
-
|
|
91
82
|
runtime?: string;
|
|
92
|
-
|
|
93
83
|
disableHostPrefix?: boolean;
|
|
94
|
-
|
|
95
84
|
maxAttempts?: number | __Provider<number>;
|
|
96
|
-
|
|
97
85
|
retryMode?: string | __Provider<string>;
|
|
98
|
-
|
|
99
86
|
logger?: __Logger;
|
|
100
|
-
|
|
101
87
|
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
102
|
-
|
|
103
88
|
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
104
|
-
|
|
105
89
|
serviceId?: string;
|
|
106
|
-
|
|
107
90
|
region?: string | __Provider<string>;
|
|
108
|
-
|
|
109
91
|
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
110
|
-
|
|
111
92
|
regionInfoProvider?: RegionInfoProvider;
|
|
112
|
-
|
|
113
93
|
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
114
|
-
|
|
115
94
|
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
116
95
|
}
|
|
117
96
|
declare type Route53RecoveryClusterClientConfigType = Partial<
|
|
@@ -124,7 +103,6 @@ declare type Route53RecoveryClusterClientConfigType = Partial<
|
|
|
124
103
|
HostHeaderInputConfig &
|
|
125
104
|
AwsAuthInputConfig &
|
|
126
105
|
UserAgentInputConfig;
|
|
127
|
-
|
|
128
106
|
export interface Route53RecoveryClusterClientConfig
|
|
129
107
|
extends Route53RecoveryClusterClientConfigType {}
|
|
130
108
|
declare type Route53RecoveryClusterClientResolvedConfigType =
|
|
@@ -136,10 +114,8 @@ declare type Route53RecoveryClusterClientResolvedConfigType =
|
|
|
136
114
|
HostHeaderResolvedConfig &
|
|
137
115
|
AwsAuthResolvedConfig &
|
|
138
116
|
UserAgentResolvedConfig;
|
|
139
|
-
|
|
140
117
|
export interface Route53RecoveryClusterClientResolvedConfig
|
|
141
118
|
extends Route53RecoveryClusterClientResolvedConfigType {}
|
|
142
|
-
|
|
143
119
|
export declare class Route53RecoveryClusterClient extends __Client<
|
|
144
120
|
__HttpHandlerOptions,
|
|
145
121
|
ServiceInputTypes,
|
|
@@ -148,7 +124,6 @@ export declare class Route53RecoveryClusterClient extends __Client<
|
|
|
148
124
|
> {
|
|
149
125
|
readonly config: Route53RecoveryClusterClientResolvedConfig;
|
|
150
126
|
constructor(configuration: Route53RecoveryClusterClientConfig);
|
|
151
|
-
|
|
152
127
|
destroy(): void;
|
|
153
128
|
}
|
|
154
129
|
export {};
|
|
@@ -19,7 +19,6 @@ export interface GetRoutingControlStateCommandInput
|
|
|
19
19
|
export interface GetRoutingControlStateCommandOutput
|
|
20
20
|
extends GetRoutingControlStateResponse,
|
|
21
21
|
__MetadataBearer {}
|
|
22
|
-
|
|
23
22
|
export declare class GetRoutingControlStateCommand extends $Command<
|
|
24
23
|
GetRoutingControlStateCommandInput,
|
|
25
24
|
GetRoutingControlStateCommandOutput,
|
|
@@ -27,7 +26,6 @@ export declare class GetRoutingControlStateCommand extends $Command<
|
|
|
27
26
|
> {
|
|
28
27
|
readonly input: GetRoutingControlStateCommandInput;
|
|
29
28
|
constructor(input: GetRoutingControlStateCommandInput);
|
|
30
|
-
|
|
31
29
|
resolveMiddleware(
|
|
32
30
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
31
|
configuration: Route53RecoveryClusterClientResolvedConfig,
|
|
@@ -19,7 +19,6 @@ export interface ListRoutingControlsCommandInput
|
|
|
19
19
|
export interface ListRoutingControlsCommandOutput
|
|
20
20
|
extends ListRoutingControlsResponse,
|
|
21
21
|
__MetadataBearer {}
|
|
22
|
-
|
|
23
22
|
export declare class ListRoutingControlsCommand extends $Command<
|
|
24
23
|
ListRoutingControlsCommandInput,
|
|
25
24
|
ListRoutingControlsCommandOutput,
|
|
@@ -27,7 +26,6 @@ export declare class ListRoutingControlsCommand extends $Command<
|
|
|
27
26
|
> {
|
|
28
27
|
readonly input: ListRoutingControlsCommandInput;
|
|
29
28
|
constructor(input: ListRoutingControlsCommandInput);
|
|
30
|
-
|
|
31
29
|
resolveMiddleware(
|
|
32
30
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
31
|
configuration: Route53RecoveryClusterClientResolvedConfig,
|
|
@@ -19,7 +19,6 @@ export interface UpdateRoutingControlStateCommandInput
|
|
|
19
19
|
export interface UpdateRoutingControlStateCommandOutput
|
|
20
20
|
extends UpdateRoutingControlStateResponse,
|
|
21
21
|
__MetadataBearer {}
|
|
22
|
-
|
|
23
22
|
export declare class UpdateRoutingControlStateCommand extends $Command<
|
|
24
23
|
UpdateRoutingControlStateCommandInput,
|
|
25
24
|
UpdateRoutingControlStateCommandOutput,
|
|
@@ -27,7 +26,6 @@ export declare class UpdateRoutingControlStateCommand extends $Command<
|
|
|
27
26
|
> {
|
|
28
27
|
readonly input: UpdateRoutingControlStateCommandInput;
|
|
29
28
|
constructor(input: UpdateRoutingControlStateCommandInput);
|
|
30
|
-
|
|
31
29
|
resolveMiddleware(
|
|
32
30
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
31
|
configuration: Route53RecoveryClusterClientResolvedConfig,
|
|
@@ -19,7 +19,6 @@ export interface UpdateRoutingControlStatesCommandInput
|
|
|
19
19
|
export interface UpdateRoutingControlStatesCommandOutput
|
|
20
20
|
extends UpdateRoutingControlStatesResponse,
|
|
21
21
|
__MetadataBearer {}
|
|
22
|
-
|
|
23
22
|
export declare class UpdateRoutingControlStatesCommand extends $Command<
|
|
24
23
|
UpdateRoutingControlStatesCommandInput,
|
|
25
24
|
UpdateRoutingControlStatesCommandOutput,
|
|
@@ -27,7 +26,6 @@ export declare class UpdateRoutingControlStatesCommand extends $Command<
|
|
|
27
26
|
> {
|
|
28
27
|
readonly input: UpdateRoutingControlStatesCommandInput;
|
|
29
28
|
constructor(input: UpdateRoutingControlStatesCommandInput);
|
|
30
|
-
|
|
31
29
|
resolveMiddleware(
|
|
32
30
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
31
|
configuration: Route53RecoveryClusterClientResolvedConfig,
|
|
@@ -2,7 +2,6 @@ import {
|
|
|
2
2
|
ServiceException as __ServiceException,
|
|
3
3
|
ServiceExceptionOptions as __ServiceExceptionOptions,
|
|
4
4
|
} from "@aws-sdk/smithy-client";
|
|
5
|
-
|
|
6
5
|
export declare class Route53RecoveryClusterServiceException extends __ServiceException {
|
|
7
6
|
constructor(options: __ServiceExceptionOptions);
|
|
8
7
|
}
|
|
@@ -1,30 +1,22 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { Route53RecoveryClusterServiceException as __BaseException } from "./Route53RecoveryClusterServiceException";
|
|
3
|
-
|
|
4
3
|
export declare class AccessDeniedException extends __BaseException {
|
|
5
4
|
readonly name: "AccessDeniedException";
|
|
6
5
|
readonly $fault: "client";
|
|
7
|
-
|
|
8
6
|
constructor(
|
|
9
7
|
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
10
8
|
);
|
|
11
9
|
}
|
|
12
|
-
|
|
13
10
|
export declare class ConflictException extends __BaseException {
|
|
14
11
|
readonly name: "ConflictException";
|
|
15
12
|
readonly $fault: "client";
|
|
16
|
-
|
|
17
13
|
resourceId: string | undefined;
|
|
18
|
-
|
|
19
14
|
resourceType: string | undefined;
|
|
20
|
-
|
|
21
15
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
22
16
|
}
|
|
23
|
-
|
|
24
17
|
export declare class EndpointTemporarilyUnavailableException extends __BaseException {
|
|
25
18
|
readonly name: "EndpointTemporarilyUnavailableException";
|
|
26
19
|
readonly $fault: "server";
|
|
27
|
-
|
|
28
20
|
constructor(
|
|
29
21
|
opts: __ExceptionOptionType<
|
|
30
22
|
EndpointTemporarilyUnavailableException,
|
|
@@ -41,50 +33,36 @@ export declare enum RoutingControlState {
|
|
|
41
33
|
}
|
|
42
34
|
export interface GetRoutingControlStateResponse {
|
|
43
35
|
RoutingControlArn: string | undefined;
|
|
44
|
-
|
|
45
36
|
RoutingControlState: RoutingControlState | string | undefined;
|
|
46
|
-
|
|
47
37
|
RoutingControlName?: string;
|
|
48
38
|
}
|
|
49
|
-
|
|
50
39
|
export declare class InternalServerException extends __BaseException {
|
|
51
40
|
readonly name: "InternalServerException";
|
|
52
41
|
readonly $fault: "server";
|
|
53
|
-
|
|
54
42
|
retryAfterSeconds?: number;
|
|
55
|
-
|
|
56
43
|
constructor(
|
|
57
44
|
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
58
45
|
);
|
|
59
46
|
}
|
|
60
|
-
|
|
61
47
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
62
48
|
readonly name: "ResourceNotFoundException";
|
|
63
49
|
readonly $fault: "client";
|
|
64
|
-
|
|
65
50
|
resourceId: string | undefined;
|
|
66
|
-
|
|
67
51
|
resourceType: string | undefined;
|
|
68
|
-
|
|
69
52
|
constructor(
|
|
70
53
|
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
71
54
|
);
|
|
72
55
|
}
|
|
73
|
-
|
|
74
56
|
export declare class ThrottlingException extends __BaseException {
|
|
75
57
|
readonly name: "ThrottlingException";
|
|
76
58
|
readonly $fault: "client";
|
|
77
|
-
|
|
78
59
|
retryAfterSeconds?: number;
|
|
79
|
-
|
|
80
60
|
constructor(
|
|
81
61
|
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
82
62
|
);
|
|
83
63
|
}
|
|
84
|
-
|
|
85
64
|
export interface ValidationExceptionField {
|
|
86
65
|
name: string | undefined;
|
|
87
|
-
|
|
88
66
|
message: string | undefined;
|
|
89
67
|
}
|
|
90
68
|
export declare enum ValidationExceptionReason {
|
|
@@ -93,123 +71,89 @@ export declare enum ValidationExceptionReason {
|
|
|
93
71
|
OTHER = "other",
|
|
94
72
|
UNKNOWN_OPERATION = "unknownOperation",
|
|
95
73
|
}
|
|
96
|
-
|
|
97
74
|
export declare class ValidationException extends __BaseException {
|
|
98
75
|
readonly name: "ValidationException";
|
|
99
76
|
readonly $fault: "client";
|
|
100
|
-
|
|
101
77
|
reason?: ValidationExceptionReason | string;
|
|
102
|
-
|
|
103
78
|
fields?: ValidationExceptionField[];
|
|
104
|
-
|
|
105
79
|
constructor(
|
|
106
80
|
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
107
81
|
);
|
|
108
82
|
}
|
|
109
83
|
export interface ListRoutingControlsRequest {
|
|
110
84
|
ControlPanelArn?: string;
|
|
111
|
-
|
|
112
85
|
NextToken?: string;
|
|
113
|
-
|
|
114
86
|
MaxResults?: number;
|
|
115
87
|
}
|
|
116
|
-
|
|
117
88
|
export interface RoutingControl {
|
|
118
89
|
ControlPanelArn?: string;
|
|
119
|
-
|
|
120
90
|
ControlPanelName?: string;
|
|
121
|
-
|
|
122
91
|
RoutingControlArn?: string;
|
|
123
|
-
|
|
124
92
|
RoutingControlName?: string;
|
|
125
|
-
|
|
126
93
|
RoutingControlState?: RoutingControlState | string;
|
|
127
94
|
}
|
|
128
95
|
export interface ListRoutingControlsResponse {
|
|
129
96
|
RoutingControls: RoutingControl[] | undefined;
|
|
130
|
-
|
|
131
97
|
NextToken?: string;
|
|
132
98
|
}
|
|
133
|
-
|
|
134
99
|
export declare class ServiceLimitExceededException extends __BaseException {
|
|
135
100
|
readonly name: "ServiceLimitExceededException";
|
|
136
101
|
readonly $fault: "client";
|
|
137
|
-
|
|
138
102
|
resourceId?: string;
|
|
139
|
-
|
|
140
103
|
resourceType?: string;
|
|
141
|
-
|
|
142
104
|
limitCode: string | undefined;
|
|
143
|
-
|
|
144
105
|
serviceCode: string | undefined;
|
|
145
|
-
|
|
146
106
|
constructor(
|
|
147
107
|
opts: __ExceptionOptionType<ServiceLimitExceededException, __BaseException>
|
|
148
108
|
);
|
|
149
109
|
}
|
|
150
110
|
export interface UpdateRoutingControlStateRequest {
|
|
151
111
|
RoutingControlArn: string | undefined;
|
|
152
|
-
|
|
153
112
|
RoutingControlState: RoutingControlState | string | undefined;
|
|
154
|
-
|
|
155
113
|
SafetyRulesToOverride?: string[];
|
|
156
114
|
}
|
|
157
115
|
export interface UpdateRoutingControlStateResponse {}
|
|
158
|
-
|
|
159
116
|
export interface UpdateRoutingControlStateEntry {
|
|
160
117
|
RoutingControlArn: string | undefined;
|
|
161
|
-
|
|
162
118
|
RoutingControlState: RoutingControlState | string | undefined;
|
|
163
119
|
}
|
|
164
120
|
export interface UpdateRoutingControlStatesRequest {
|
|
165
121
|
UpdateRoutingControlStateEntries:
|
|
166
122
|
| UpdateRoutingControlStateEntry[]
|
|
167
123
|
| undefined;
|
|
168
|
-
|
|
169
124
|
SafetyRulesToOverride?: string[];
|
|
170
125
|
}
|
|
171
126
|
export interface UpdateRoutingControlStatesResponse {}
|
|
172
|
-
|
|
173
127
|
export declare const GetRoutingControlStateRequestFilterSensitiveLog: (
|
|
174
128
|
obj: GetRoutingControlStateRequest
|
|
175
129
|
) => any;
|
|
176
|
-
|
|
177
130
|
export declare const GetRoutingControlStateResponseFilterSensitiveLog: (
|
|
178
131
|
obj: GetRoutingControlStateResponse
|
|
179
132
|
) => any;
|
|
180
|
-
|
|
181
133
|
export declare const ValidationExceptionFieldFilterSensitiveLog: (
|
|
182
134
|
obj: ValidationExceptionField
|
|
183
135
|
) => any;
|
|
184
|
-
|
|
185
136
|
export declare const ListRoutingControlsRequestFilterSensitiveLog: (
|
|
186
137
|
obj: ListRoutingControlsRequest
|
|
187
138
|
) => any;
|
|
188
|
-
|
|
189
139
|
export declare const RoutingControlFilterSensitiveLog: (
|
|
190
140
|
obj: RoutingControl
|
|
191
141
|
) => any;
|
|
192
|
-
|
|
193
142
|
export declare const ListRoutingControlsResponseFilterSensitiveLog: (
|
|
194
143
|
obj: ListRoutingControlsResponse
|
|
195
144
|
) => any;
|
|
196
|
-
|
|
197
145
|
export declare const UpdateRoutingControlStateRequestFilterSensitiveLog: (
|
|
198
146
|
obj: UpdateRoutingControlStateRequest
|
|
199
147
|
) => any;
|
|
200
|
-
|
|
201
148
|
export declare const UpdateRoutingControlStateResponseFilterSensitiveLog: (
|
|
202
149
|
obj: UpdateRoutingControlStateResponse
|
|
203
150
|
) => any;
|
|
204
|
-
|
|
205
151
|
export declare const UpdateRoutingControlStateEntryFilterSensitiveLog: (
|
|
206
152
|
obj: UpdateRoutingControlStateEntry
|
|
207
153
|
) => any;
|
|
208
|
-
|
|
209
154
|
export declare const UpdateRoutingControlStatesRequestFilterSensitiveLog: (
|
|
210
155
|
obj: UpdateRoutingControlStatesRequest
|
|
211
156
|
) => any;
|
|
212
|
-
|
|
213
157
|
export declare const UpdateRoutingControlStatesResponseFilterSensitiveLog: (
|
|
214
158
|
obj: UpdateRoutingControlStatesResponse
|
|
215
159
|
) => any;
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
2
|
import { Route53RecoveryClusterClientConfig } from "./Route53RecoveryClusterClient";
|
|
3
|
-
|
|
4
3
|
export declare const getRuntimeConfig: (
|
|
5
4
|
config: Route53RecoveryClusterClientConfig
|
|
6
5
|
) => {
|
|
@@ -53,7 +52,9 @@ export declare const getRuntimeConfig: (
|
|
|
53
52
|
| undefined;
|
|
54
53
|
signer?:
|
|
55
54
|
| import("@aws-sdk/types").RequestSigner
|
|
56
|
-
|
|
|
55
|
+
| ((
|
|
56
|
+
authScheme?: import("@aws-sdk/types").AuthScheme | undefined
|
|
57
|
+
) => Promise<import("@aws-sdk/types").RequestSigner>)
|
|
57
58
|
| undefined;
|
|
58
59
|
signingEscapePath?: boolean | undefined;
|
|
59
60
|
systemClockOffset?: number | undefined;
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
|
|
2
2
|
import { Route53RecoveryClusterClientConfig } from "./Route53RecoveryClusterClient";
|
|
3
|
-
|
|
4
3
|
export declare const getRuntimeConfig: (
|
|
5
4
|
config: Route53RecoveryClusterClientConfig
|
|
6
5
|
) => {
|
|
@@ -53,7 +52,9 @@ export declare const getRuntimeConfig: (
|
|
|
53
52
|
| undefined;
|
|
54
53
|
signer?:
|
|
55
54
|
| import("@aws-sdk/types").RequestSigner
|
|
56
|
-
|
|
|
55
|
+
| ((
|
|
56
|
+
authScheme?: import("@aws-sdk/types").AuthScheme | undefined
|
|
57
|
+
) => Promise<import("@aws-sdk/types").RequestSigner>)
|
|
57
58
|
| undefined;
|
|
58
59
|
signingEscapePath?: boolean | undefined;
|
|
59
60
|
systemClockOffset?: number | undefined;
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { Route53RecoveryClusterClientConfig } from "./Route53RecoveryClusterClient";
|
|
2
|
-
|
|
3
2
|
export declare const getRuntimeConfig: (
|
|
4
3
|
config: Route53RecoveryClusterClientConfig
|
|
5
4
|
) => {
|
|
@@ -54,7 +53,9 @@ export declare const getRuntimeConfig: (
|
|
|
54
53
|
| undefined;
|
|
55
54
|
signer?:
|
|
56
55
|
| import("@aws-sdk/types").RequestSigner
|
|
57
|
-
|
|
|
56
|
+
| ((
|
|
57
|
+
authScheme?: import("@aws-sdk/types").AuthScheme | undefined
|
|
58
|
+
) => Promise<import("@aws-sdk/types").RequestSigner>)
|
|
58
59
|
| undefined;
|
|
59
60
|
signingEscapePath?: boolean | undefined;
|
|
60
61
|
systemClockOffset?: number | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-route53-recovery-cluster",
|
|
3
3
|
"description": "AWS SDK for JavaScript Route53 Recovery Cluster Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.178.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -19,35 +19,35 @@
|
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
21
21
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
22
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
-
"@aws-sdk/config-resolver": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
26
|
-
"@aws-sdk/hash-node": "3.
|
|
27
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
28
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
29
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
30
|
-
"@aws-sdk/middleware-logger": "3.
|
|
31
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
32
|
-
"@aws-sdk/middleware-retry": "3.
|
|
33
|
-
"@aws-sdk/middleware-serde": "3.
|
|
34
|
-
"@aws-sdk/middleware-signing": "3.
|
|
35
|
-
"@aws-sdk/middleware-stack": "3.
|
|
36
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
37
|
-
"@aws-sdk/node-config-provider": "3.
|
|
38
|
-
"@aws-sdk/node-http-handler": "3.
|
|
39
|
-
"@aws-sdk/protocol-http": "3.
|
|
40
|
-
"@aws-sdk/smithy-client": "3.
|
|
41
|
-
"@aws-sdk/types": "3.
|
|
42
|
-
"@aws-sdk/url-parser": "3.
|
|
22
|
+
"@aws-sdk/client-sts": "3.178.0",
|
|
23
|
+
"@aws-sdk/config-resolver": "3.178.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.178.0",
|
|
25
|
+
"@aws-sdk/fetch-http-handler": "3.178.0",
|
|
26
|
+
"@aws-sdk/hash-node": "3.178.0",
|
|
27
|
+
"@aws-sdk/invalid-dependency": "3.178.0",
|
|
28
|
+
"@aws-sdk/middleware-content-length": "3.178.0",
|
|
29
|
+
"@aws-sdk/middleware-host-header": "3.178.0",
|
|
30
|
+
"@aws-sdk/middleware-logger": "3.178.0",
|
|
31
|
+
"@aws-sdk/middleware-recursion-detection": "3.178.0",
|
|
32
|
+
"@aws-sdk/middleware-retry": "3.178.0",
|
|
33
|
+
"@aws-sdk/middleware-serde": "3.178.0",
|
|
34
|
+
"@aws-sdk/middleware-signing": "3.178.0",
|
|
35
|
+
"@aws-sdk/middleware-stack": "3.178.0",
|
|
36
|
+
"@aws-sdk/middleware-user-agent": "3.178.0",
|
|
37
|
+
"@aws-sdk/node-config-provider": "3.178.0",
|
|
38
|
+
"@aws-sdk/node-http-handler": "3.178.0",
|
|
39
|
+
"@aws-sdk/protocol-http": "3.178.0",
|
|
40
|
+
"@aws-sdk/smithy-client": "3.178.0",
|
|
41
|
+
"@aws-sdk/types": "3.178.0",
|
|
42
|
+
"@aws-sdk/url-parser": "3.178.0",
|
|
43
43
|
"@aws-sdk/util-base64-browser": "3.170.0",
|
|
44
44
|
"@aws-sdk/util-base64-node": "3.170.0",
|
|
45
45
|
"@aws-sdk/util-body-length-browser": "3.170.0",
|
|
46
46
|
"@aws-sdk/util-body-length-node": "3.170.0",
|
|
47
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
48
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
49
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
50
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
47
|
+
"@aws-sdk/util-defaults-mode-browser": "3.178.0",
|
|
48
|
+
"@aws-sdk/util-defaults-mode-node": "3.178.0",
|
|
49
|
+
"@aws-sdk/util-user-agent-browser": "3.178.0",
|
|
50
|
+
"@aws-sdk/util-user-agent-node": "3.178.0",
|
|
51
51
|
"@aws-sdk/util-utf8-browser": "3.170.0",
|
|
52
52
|
"@aws-sdk/util-utf8-node": "3.170.0",
|
|
53
53
|
"tslib": "^2.3.1"
|