@aws-sdk/client-route53-recovery-cluster 3.52.0 → 3.54.1
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 +30 -0
- package/README.md +31 -14
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/Route53RecoveryClusterServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +101 -1
- package/dist-cjs/protocols/Aws_json1_0.js +75 -186
- package/dist-es/index.js +1 -0
- package/dist-es/models/Route53RecoveryClusterServiceException.js +12 -0
- package/dist-es/models/models_0.js +94 -1
- package/dist-es/protocols/Aws_json1_0.js +121 -188
- package/dist-types/Route53RecoveryCluster.d.ts +131 -36
- package/dist-types/Route53RecoveryClusterClient.d.ts +36 -19
- package/dist-types/commands/GetRoutingControlStateCommand.d.ts +30 -10
- package/dist-types/commands/UpdateRoutingControlStateCommand.d.ts +34 -5
- package/dist-types/commands/UpdateRoutingControlStatesCommand.d.ts +33 -4
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/Route53RecoveryClusterServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +69 -34
- 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/Route53RecoveryClusterClient.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/Route53RecoveryClusterServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +41 -30
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/package.json +27 -27
|
@@ -1,22 +1,22 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Route53RecoveryClusterServiceException as __BaseException } from "./Route53RecoveryClusterServiceException";
|
|
2
3
|
/**
|
|
3
4
|
* <p>You don't have sufficient permissions to query the routing control state.</p>
|
|
4
5
|
*/
|
|
5
|
-
export
|
|
6
|
-
name: "AccessDeniedException";
|
|
7
|
-
$fault: "client";
|
|
8
|
-
|
|
6
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
7
|
+
readonly name: "AccessDeniedException";
|
|
8
|
+
readonly $fault: "client";
|
|
9
|
+
/**
|
|
10
|
+
* @internal
|
|
11
|
+
*/
|
|
12
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
9
13
|
}
|
|
10
14
|
/**
|
|
11
15
|
* <p>There was a conflict with this request. Try again.</p>
|
|
12
16
|
*/
|
|
13
|
-
export
|
|
14
|
-
name: "ConflictException";
|
|
15
|
-
$fault: "client";
|
|
16
|
-
/**
|
|
17
|
-
* Description of the ConflictException error
|
|
18
|
-
*/
|
|
19
|
-
message: string | undefined;
|
|
17
|
+
export declare class ConflictException extends __BaseException {
|
|
18
|
+
readonly name: "ConflictException";
|
|
19
|
+
readonly $fault: "client";
|
|
20
20
|
/**
|
|
21
21
|
* Identifier of the resource in use
|
|
22
22
|
*/
|
|
@@ -25,14 +25,21 @@ export interface ConflictException extends __SmithyException, $MetadataBearer {
|
|
|
25
25
|
* Type of the resource in use
|
|
26
26
|
*/
|
|
27
27
|
resourceType: string | undefined;
|
|
28
|
+
/**
|
|
29
|
+
* @internal
|
|
30
|
+
*/
|
|
31
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
28
32
|
}
|
|
29
33
|
/**
|
|
30
34
|
* <p>The cluster endpoint isn't available. Try another cluster endpoint.</p>
|
|
31
35
|
*/
|
|
32
|
-
export
|
|
33
|
-
name: "EndpointTemporarilyUnavailableException";
|
|
34
|
-
$fault: "server";
|
|
35
|
-
|
|
36
|
+
export declare class EndpointTemporarilyUnavailableException extends __BaseException {
|
|
37
|
+
readonly name: "EndpointTemporarilyUnavailableException";
|
|
38
|
+
readonly $fault: "server";
|
|
39
|
+
/**
|
|
40
|
+
* @internal
|
|
41
|
+
*/
|
|
42
|
+
constructor(opts: __ExceptionOptionType<EndpointTemporarilyUnavailableException, __BaseException>);
|
|
36
43
|
}
|
|
37
44
|
export interface GetRoutingControlStateRequest {
|
|
38
45
|
/**
|
|
@@ -69,22 +76,24 @@ export declare namespace GetRoutingControlStateResponse {
|
|
|
69
76
|
/**
|
|
70
77
|
* <p>There was an unexpected error during processing of the request.</p>
|
|
71
78
|
*/
|
|
72
|
-
export
|
|
73
|
-
name: "InternalServerException";
|
|
74
|
-
$fault: "server";
|
|
75
|
-
message: string | undefined;
|
|
79
|
+
export declare class InternalServerException extends __BaseException {
|
|
80
|
+
readonly name: "InternalServerException";
|
|
81
|
+
readonly $fault: "server";
|
|
76
82
|
/**
|
|
77
83
|
* Advice to clients on when the call can be safely retried
|
|
78
84
|
*/
|
|
79
85
|
retryAfterSeconds?: number;
|
|
86
|
+
/**
|
|
87
|
+
* @internal
|
|
88
|
+
*/
|
|
89
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
80
90
|
}
|
|
81
91
|
/**
|
|
82
92
|
* <p>The request references a routing control that was not found.</p>
|
|
83
93
|
*/
|
|
84
|
-
export
|
|
85
|
-
name: "ResourceNotFoundException";
|
|
86
|
-
$fault: "client";
|
|
87
|
-
message: string | undefined;
|
|
94
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
95
|
+
readonly name: "ResourceNotFoundException";
|
|
96
|
+
readonly $fault: "client";
|
|
88
97
|
/**
|
|
89
98
|
* Hypothetical resource identifier that was not found
|
|
90
99
|
*/
|
|
@@ -93,18 +102,25 @@ export interface ResourceNotFoundException extends __SmithyException, $MetadataB
|
|
|
93
102
|
* Hypothetical resource type that was not found
|
|
94
103
|
*/
|
|
95
104
|
resourceType: string | undefined;
|
|
105
|
+
/**
|
|
106
|
+
* @internal
|
|
107
|
+
*/
|
|
108
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
96
109
|
}
|
|
97
110
|
/**
|
|
98
111
|
* <p>The request was denied because of request throttling.</p>
|
|
99
112
|
*/
|
|
100
|
-
export
|
|
101
|
-
name: "ThrottlingException";
|
|
102
|
-
$fault: "client";
|
|
103
|
-
message: string | undefined;
|
|
113
|
+
export declare class ThrottlingException extends __BaseException {
|
|
114
|
+
readonly name: "ThrottlingException";
|
|
115
|
+
readonly $fault: "client";
|
|
104
116
|
/**
|
|
105
117
|
* Advice to clients on when the call can be safely retried
|
|
106
118
|
*/
|
|
107
119
|
retryAfterSeconds?: number;
|
|
120
|
+
/**
|
|
121
|
+
* @internal
|
|
122
|
+
*/
|
|
123
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
108
124
|
}
|
|
109
125
|
/**
|
|
110
126
|
* <p>There was a validation error on the request.</p>
|
|
@@ -134,10 +150,9 @@ export declare enum ValidationExceptionReason {
|
|
|
134
150
|
/**
|
|
135
151
|
* <p>There was a validation error on the request.</p>
|
|
136
152
|
*/
|
|
137
|
-
export
|
|
138
|
-
name: "ValidationException";
|
|
139
|
-
$fault: "client";
|
|
140
|
-
message: string | undefined;
|
|
153
|
+
export declare class ValidationException extends __BaseException {
|
|
154
|
+
readonly name: "ValidationException";
|
|
155
|
+
readonly $fault: "client";
|
|
141
156
|
/**
|
|
142
157
|
* Reason the request failed validation
|
|
143
158
|
*/
|
|
@@ -146,6 +161,10 @@ export interface ValidationException extends __SmithyException, $MetadataBearer
|
|
|
146
161
|
* The fields that caused the error, if applicable
|
|
147
162
|
*/
|
|
148
163
|
fields?: ValidationExceptionField[];
|
|
164
|
+
/**
|
|
165
|
+
* @internal
|
|
166
|
+
*/
|
|
167
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
149
168
|
}
|
|
150
169
|
export interface UpdateRoutingControlStateRequest {
|
|
151
170
|
/**
|
|
@@ -156,6 +175,14 @@ export interface UpdateRoutingControlStateRequest {
|
|
|
156
175
|
* <p>The state of the routing control. You can set the value to be On or Off.</p>
|
|
157
176
|
*/
|
|
158
177
|
RoutingControlState: RoutingControlState | string | undefined;
|
|
178
|
+
/**
|
|
179
|
+
* <p>The Amazon Resource Numbers (ARNs) for the safety rules that you want to override when you're updating the state of
|
|
180
|
+
* a routing control. You can override one safety rule or multiple safety rules by including one or more ARNs, separated
|
|
181
|
+
* by commas.</p>
|
|
182
|
+
* <p>For more information, see <a href="https://docs.aws.amazon.com/r53recovery/latest/dg/routing-control.override-safety-rule.html">
|
|
183
|
+
* Override safety rules to reroute traffic</a> in the Amazon Route 53 Application Recovery Controller Developer Guide.</p>
|
|
184
|
+
*/
|
|
185
|
+
SafetyRulesToOverride?: string[];
|
|
159
186
|
}
|
|
160
187
|
export declare namespace UpdateRoutingControlStateRequest {
|
|
161
188
|
/**
|
|
@@ -172,11 +199,11 @@ export declare namespace UpdateRoutingControlStateResponse {
|
|
|
172
199
|
const filterSensitiveLog: (obj: UpdateRoutingControlStateResponse) => any;
|
|
173
200
|
}
|
|
174
201
|
/**
|
|
175
|
-
* <p>A routing control state.</p>
|
|
202
|
+
* <p>A routing control state entry.</p>
|
|
176
203
|
*/
|
|
177
204
|
export interface UpdateRoutingControlStateEntry {
|
|
178
205
|
/**
|
|
179
|
-
* <p>The Amazon Resource Number (ARN) for
|
|
206
|
+
* <p>The Amazon Resource Number (ARN) for a routing control state entry.</p>
|
|
180
207
|
*/
|
|
181
208
|
RoutingControlArn: string | undefined;
|
|
182
209
|
/**
|
|
@@ -195,6 +222,14 @@ export interface UpdateRoutingControlStatesRequest {
|
|
|
195
222
|
* <p>A set of routing control entries that you want to update.</p>
|
|
196
223
|
*/
|
|
197
224
|
UpdateRoutingControlStateEntries: UpdateRoutingControlStateEntry[] | undefined;
|
|
225
|
+
/**
|
|
226
|
+
* <p>The Amazon Resource Numbers (ARNs) for the safety rules that you want to override when you're updating routing
|
|
227
|
+
* control states. You can override one safety rule or multiple safety rules by including one or more ARNs, separated
|
|
228
|
+
* by commas.</p>
|
|
229
|
+
* <p>For more information, see <a href="https://docs.aws.amazon.com/r53recovery/latest/dg/routing-control.override-safety-rule.html">
|
|
230
|
+
* Override safety rules to reroute traffic</a> in the Amazon Route 53 Application Recovery Controller Developer Guide.</p>
|
|
231
|
+
*/
|
|
232
|
+
SafetyRulesToOverride?: string[];
|
|
198
233
|
}
|
|
199
234
|
export declare namespace UpdateRoutingControlStatesRequest {
|
|
200
235
|
/**
|
|
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: Route53RecoveryClusterClientConf
|
|
|
8
8
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
10
10
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
11
|
-
bodyLengthChecker: (
|
|
11
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
12
12
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
13
13
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
14
14
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: Route53RecoveryClusterClientConf
|
|
|
8
8
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
10
10
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
11
|
-
bodyLengthChecker: (
|
|
11
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
12
12
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
13
13
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
14
14
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: Route53RecoveryClusterClientConf
|
|
|
8
8
|
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
|
|
9
9
|
apiVersion: string;
|
|
10
10
|
urlParser: import("@aws-sdk/types").UrlParser;
|
|
11
|
-
bodyLengthChecker: (
|
|
11
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
12
12
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
13
13
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
14
14
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
@@ -5,7 +5,7 @@ import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-s
|
|
|
5
5
|
import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
|
|
6
6
|
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
7
7
|
import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
8
|
-
import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
8
|
+
import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
9
9
|
import { GetRoutingControlStateCommandInput, GetRoutingControlStateCommandOutput } from "./commands/GetRoutingControlStateCommand";
|
|
10
10
|
import { UpdateRoutingControlStateCommandInput, UpdateRoutingControlStateCommandOutput } from "./commands/UpdateRoutingControlStateCommand";
|
|
11
11
|
import { UpdateRoutingControlStatesCommandInput, UpdateRoutingControlStatesCommandOutput } from "./commands/UpdateRoutingControlStatesCommand";
|
|
@@ -19,7 +19,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
19
19
|
|
|
20
20
|
urlParser?: __UrlParser;
|
|
21
21
|
|
|
22
|
-
bodyLengthChecker?:
|
|
22
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
23
23
|
|
|
24
24
|
streamCollector?: __StreamCollector;
|
|
25
25
|
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
|
+
|
|
3
|
+
export declare class Route53RecoveryClusterServiceException extends __ServiceException {
|
|
4
|
+
|
|
5
|
+
constructor(options: __ServiceExceptionOptions);
|
|
6
|
+
}
|
|
@@ -1,26 +1,29 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Route53RecoveryClusterServiceException as __BaseException } from "./Route53RecoveryClusterServiceException";
|
|
2
3
|
|
|
3
|
-
export
|
|
4
|
-
name: "AccessDeniedException";
|
|
5
|
-
$fault: "client";
|
|
6
|
-
|
|
4
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
5
|
+
readonly name: "AccessDeniedException";
|
|
6
|
+
readonly $fault: "client";
|
|
7
|
+
|
|
8
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
7
9
|
}
|
|
8
10
|
|
|
9
|
-
export
|
|
10
|
-
name: "ConflictException";
|
|
11
|
-
$fault: "client";
|
|
12
|
-
|
|
13
|
-
message: string | undefined;
|
|
11
|
+
export declare class ConflictException extends __BaseException {
|
|
12
|
+
readonly name: "ConflictException";
|
|
13
|
+
readonly $fault: "client";
|
|
14
14
|
|
|
15
15
|
resourceId: string | undefined;
|
|
16
16
|
|
|
17
17
|
resourceType: string | undefined;
|
|
18
|
+
|
|
19
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
18
20
|
}
|
|
19
21
|
|
|
20
|
-
export
|
|
21
|
-
name: "EndpointTemporarilyUnavailableException";
|
|
22
|
-
$fault: "server";
|
|
23
|
-
|
|
22
|
+
export declare class EndpointTemporarilyUnavailableException extends __BaseException {
|
|
23
|
+
readonly name: "EndpointTemporarilyUnavailableException";
|
|
24
|
+
readonly $fault: "server";
|
|
25
|
+
|
|
26
|
+
constructor(opts: __ExceptionOptionType<EndpointTemporarilyUnavailableException, __BaseException>);
|
|
24
27
|
}
|
|
25
28
|
export interface GetRoutingControlStateRequest {
|
|
26
29
|
|
|
@@ -45,30 +48,33 @@ export declare namespace GetRoutingControlStateResponse {
|
|
|
45
48
|
const filterSensitiveLog: (obj: GetRoutingControlStateResponse) => any;
|
|
46
49
|
}
|
|
47
50
|
|
|
48
|
-
export
|
|
49
|
-
name: "InternalServerException";
|
|
50
|
-
$fault: "server";
|
|
51
|
-
message: string | undefined;
|
|
51
|
+
export declare class InternalServerException extends __BaseException {
|
|
52
|
+
readonly name: "InternalServerException";
|
|
53
|
+
readonly $fault: "server";
|
|
52
54
|
|
|
53
55
|
retryAfterSeconds?: number;
|
|
56
|
+
|
|
57
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
54
58
|
}
|
|
55
59
|
|
|
56
|
-
export
|
|
57
|
-
name: "ResourceNotFoundException";
|
|
58
|
-
$fault: "client";
|
|
59
|
-
message: string | undefined;
|
|
60
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
61
|
+
readonly name: "ResourceNotFoundException";
|
|
62
|
+
readonly $fault: "client";
|
|
60
63
|
|
|
61
64
|
resourceId: string | undefined;
|
|
62
65
|
|
|
63
66
|
resourceType: string | undefined;
|
|
67
|
+
|
|
68
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
64
69
|
}
|
|
65
70
|
|
|
66
|
-
export
|
|
67
|
-
name: "ThrottlingException";
|
|
68
|
-
$fault: "client";
|
|
69
|
-
message: string | undefined;
|
|
71
|
+
export declare class ThrottlingException extends __BaseException {
|
|
72
|
+
readonly name: "ThrottlingException";
|
|
73
|
+
readonly $fault: "client";
|
|
70
74
|
|
|
71
75
|
retryAfterSeconds?: number;
|
|
76
|
+
|
|
77
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
72
78
|
}
|
|
73
79
|
|
|
74
80
|
export interface ValidationExceptionField {
|
|
@@ -88,20 +94,23 @@ export declare enum ValidationExceptionReason {
|
|
|
88
94
|
UNKNOWN_OPERATION = "unknownOperation"
|
|
89
95
|
}
|
|
90
96
|
|
|
91
|
-
export
|
|
92
|
-
name: "ValidationException";
|
|
93
|
-
$fault: "client";
|
|
94
|
-
message: string | undefined;
|
|
97
|
+
export declare class ValidationException extends __BaseException {
|
|
98
|
+
readonly name: "ValidationException";
|
|
99
|
+
readonly $fault: "client";
|
|
95
100
|
|
|
96
101
|
reason?: ValidationExceptionReason | string;
|
|
97
102
|
|
|
98
103
|
fields?: ValidationExceptionField[];
|
|
104
|
+
|
|
105
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
99
106
|
}
|
|
100
107
|
export interface UpdateRoutingControlStateRequest {
|
|
101
108
|
|
|
102
109
|
RoutingControlArn: string | undefined;
|
|
103
110
|
|
|
104
111
|
RoutingControlState: RoutingControlState | string | undefined;
|
|
112
|
+
|
|
113
|
+
SafetyRulesToOverride?: string[];
|
|
105
114
|
}
|
|
106
115
|
export declare namespace UpdateRoutingControlStateRequest {
|
|
107
116
|
|
|
@@ -127,6 +136,8 @@ export declare namespace UpdateRoutingControlStateEntry {
|
|
|
127
136
|
export interface UpdateRoutingControlStatesRequest {
|
|
128
137
|
|
|
129
138
|
UpdateRoutingControlStateEntries: UpdateRoutingControlStateEntry[] | undefined;
|
|
139
|
+
|
|
140
|
+
SafetyRulesToOverride?: string[];
|
|
130
141
|
}
|
|
131
142
|
export declare namespace UpdateRoutingControlStatesRequest {
|
|
132
143
|
|
|
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: Route53RecoveryClusterClientConf
|
|
|
6
6
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
7
7
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
8
8
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
9
|
-
bodyLengthChecker: (
|
|
9
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
10
10
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
11
11
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: Route53RecoveryClusterClientConf
|
|
|
6
6
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
7
7
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
8
8
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
9
|
-
bodyLengthChecker: (
|
|
9
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
10
10
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
11
11
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: Route53RecoveryClusterClientConf
|
|
|
6
6
|
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
|
|
7
7
|
apiVersion: string;
|
|
8
8
|
urlParser: import("@aws-sdk/types").UrlParser;
|
|
9
|
-
bodyLengthChecker: (
|
|
9
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
10
10
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
11
11
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
12
12
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
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.54.1",
|
|
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",
|
|
@@ -18,34 +18,34 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
22
|
-
"@aws-sdk/config-resolver": "3.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
25
|
-
"@aws-sdk/hash-node": "3.
|
|
26
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
27
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
28
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
29
|
-
"@aws-sdk/middleware-logger": "3.
|
|
30
|
-
"@aws-sdk/middleware-retry": "3.
|
|
31
|
-
"@aws-sdk/middleware-serde": "3.
|
|
32
|
-
"@aws-sdk/middleware-signing": "3.
|
|
33
|
-
"@aws-sdk/middleware-stack": "3.
|
|
34
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
35
|
-
"@aws-sdk/node-config-provider": "3.
|
|
36
|
-
"@aws-sdk/node-http-handler": "3.
|
|
37
|
-
"@aws-sdk/protocol-http": "3.
|
|
38
|
-
"@aws-sdk/smithy-client": "3.
|
|
39
|
-
"@aws-sdk/types": "3.
|
|
40
|
-
"@aws-sdk/url-parser": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.54.1",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.54.1",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.54.1",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.54.1",
|
|
25
|
+
"@aws-sdk/hash-node": "3.54.1",
|
|
26
|
+
"@aws-sdk/invalid-dependency": "3.54.1",
|
|
27
|
+
"@aws-sdk/middleware-content-length": "3.54.1",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.54.1",
|
|
29
|
+
"@aws-sdk/middleware-logger": "3.54.1",
|
|
30
|
+
"@aws-sdk/middleware-retry": "3.54.1",
|
|
31
|
+
"@aws-sdk/middleware-serde": "3.54.1",
|
|
32
|
+
"@aws-sdk/middleware-signing": "3.54.1",
|
|
33
|
+
"@aws-sdk/middleware-stack": "3.54.1",
|
|
34
|
+
"@aws-sdk/middleware-user-agent": "3.54.1",
|
|
35
|
+
"@aws-sdk/node-config-provider": "3.54.1",
|
|
36
|
+
"@aws-sdk/node-http-handler": "3.54.1",
|
|
37
|
+
"@aws-sdk/protocol-http": "3.54.1",
|
|
38
|
+
"@aws-sdk/smithy-client": "3.54.1",
|
|
39
|
+
"@aws-sdk/types": "3.54.1",
|
|
40
|
+
"@aws-sdk/url-parser": "3.54.1",
|
|
41
41
|
"@aws-sdk/util-base64-browser": "3.52.0",
|
|
42
42
|
"@aws-sdk/util-base64-node": "3.52.0",
|
|
43
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
44
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
45
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
46
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
47
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
48
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
43
|
+
"@aws-sdk/util-body-length-browser": "3.54.0",
|
|
44
|
+
"@aws-sdk/util-body-length-node": "3.54.0",
|
|
45
|
+
"@aws-sdk/util-defaults-mode-browser": "3.54.1",
|
|
46
|
+
"@aws-sdk/util-defaults-mode-node": "3.54.1",
|
|
47
|
+
"@aws-sdk/util-user-agent-browser": "3.54.1",
|
|
48
|
+
"@aws-sdk/util-user-agent-node": "3.54.1",
|
|
49
49
|
"@aws-sdk/util-utf8-browser": "3.52.0",
|
|
50
50
|
"@aws-sdk/util-utf8-node": "3.52.0",
|
|
51
51
|
"tslib": "^2.3.0"
|