@aws-sdk/client-route53-recovery-cluster 3.427.0 → 3.429.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.
|
@@ -81,7 +81,7 @@ export interface GetRoutingControlStateResponse {
|
|
|
81
81
|
* @public
|
|
82
82
|
* <p>The state of the routing control.</p>
|
|
83
83
|
*/
|
|
84
|
-
RoutingControlState: RoutingControlState |
|
|
84
|
+
RoutingControlState: RoutingControlState | undefined;
|
|
85
85
|
/**
|
|
86
86
|
* @public
|
|
87
87
|
* <p>The routing control name.</p>
|
|
@@ -185,7 +185,7 @@ export declare class ValidationException extends __BaseException {
|
|
|
185
185
|
* @public
|
|
186
186
|
* Reason the request failed validation
|
|
187
187
|
*/
|
|
188
|
-
reason?: ValidationExceptionReason
|
|
188
|
+
reason?: ValidationExceptionReason;
|
|
189
189
|
/**
|
|
190
190
|
* @public
|
|
191
191
|
* The fields that caused the error, if applicable
|
|
@@ -248,7 +248,7 @@ export interface RoutingControl {
|
|
|
248
248
|
* <p>The current state of the routing control. When a routing control state is On, traffic flows to a cell. When
|
|
249
249
|
* the state is Off, traffic does not flow. </p>
|
|
250
250
|
*/
|
|
251
|
-
RoutingControlState?: RoutingControlState
|
|
251
|
+
RoutingControlState?: RoutingControlState;
|
|
252
252
|
}
|
|
253
253
|
/**
|
|
254
254
|
* @public
|
|
@@ -310,7 +310,7 @@ export interface UpdateRoutingControlStateRequest {
|
|
|
310
310
|
* @public
|
|
311
311
|
* <p>The state of the routing control. You can set the value to be On or Off.</p>
|
|
312
312
|
*/
|
|
313
|
-
RoutingControlState: RoutingControlState |
|
|
313
|
+
RoutingControlState: RoutingControlState | undefined;
|
|
314
314
|
/**
|
|
315
315
|
* @public
|
|
316
316
|
* <p>The Amazon Resource Names (ARNs) for the safety rules that you want to override when you're updating the state of
|
|
@@ -340,7 +340,7 @@ export interface UpdateRoutingControlStateEntry {
|
|
|
340
340
|
* @public
|
|
341
341
|
* <p>The routing control state in a set of routing control state entries.</p>
|
|
342
342
|
*/
|
|
343
|
-
RoutingControlState: RoutingControlState |
|
|
343
|
+
RoutingControlState: RoutingControlState | undefined;
|
|
344
344
|
}
|
|
345
345
|
/**
|
|
346
346
|
* @public
|
|
@@ -35,7 +35,7 @@ export type RoutingControlState =
|
|
|
35
35
|
(typeof RoutingControlState)[keyof typeof RoutingControlState];
|
|
36
36
|
export interface GetRoutingControlStateResponse {
|
|
37
37
|
RoutingControlArn: string | undefined;
|
|
38
|
-
RoutingControlState: RoutingControlState |
|
|
38
|
+
RoutingControlState: RoutingControlState | undefined;
|
|
39
39
|
RoutingControlName?: string;
|
|
40
40
|
}
|
|
41
41
|
export declare class InternalServerException extends __BaseException {
|
|
@@ -78,7 +78,7 @@ export type ValidationExceptionReason =
|
|
|
78
78
|
export declare class ValidationException extends __BaseException {
|
|
79
79
|
readonly name: "ValidationException";
|
|
80
80
|
readonly $fault: "client";
|
|
81
|
-
reason?: ValidationExceptionReason
|
|
81
|
+
reason?: ValidationExceptionReason;
|
|
82
82
|
fields?: ValidationExceptionField[];
|
|
83
83
|
constructor(
|
|
84
84
|
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
@@ -94,7 +94,7 @@ export interface RoutingControl {
|
|
|
94
94
|
ControlPanelName?: string;
|
|
95
95
|
RoutingControlArn?: string;
|
|
96
96
|
RoutingControlName?: string;
|
|
97
|
-
RoutingControlState?: RoutingControlState
|
|
97
|
+
RoutingControlState?: RoutingControlState;
|
|
98
98
|
}
|
|
99
99
|
export interface ListRoutingControlsResponse {
|
|
100
100
|
RoutingControls: RoutingControl[] | undefined;
|
|
@@ -113,13 +113,13 @@ export declare class ServiceLimitExceededException extends __BaseException {
|
|
|
113
113
|
}
|
|
114
114
|
export interface UpdateRoutingControlStateRequest {
|
|
115
115
|
RoutingControlArn: string | undefined;
|
|
116
|
-
RoutingControlState: RoutingControlState |
|
|
116
|
+
RoutingControlState: RoutingControlState | undefined;
|
|
117
117
|
SafetyRulesToOverride?: string[];
|
|
118
118
|
}
|
|
119
119
|
export interface UpdateRoutingControlStateResponse {}
|
|
120
120
|
export interface UpdateRoutingControlStateEntry {
|
|
121
121
|
RoutingControlArn: string | undefined;
|
|
122
|
-
RoutingControlState: RoutingControlState |
|
|
122
|
+
RoutingControlState: RoutingControlState | undefined;
|
|
123
123
|
}
|
|
124
124
|
export interface UpdateRoutingControlStatesRequest {
|
|
125
125
|
UpdateRoutingControlStateEntries:
|
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.429.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",
|
|
@@ -21,39 +21,39 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
27
|
-
"@aws-sdk/middleware-logger": "3.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
29
|
-
"@aws-sdk/middleware-signing": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
32
|
-
"@aws-sdk/types": "3.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^2.0.
|
|
37
|
-
"@smithy/fetch-http-handler": "^2.2.
|
|
38
|
-
"@smithy/hash-node": "^2.0.
|
|
39
|
-
"@smithy/invalid-dependency": "^2.0.
|
|
40
|
-
"@smithy/middleware-content-length": "^2.0.
|
|
41
|
-
"@smithy/middleware-endpoint": "^2.
|
|
42
|
-
"@smithy/middleware-retry": "^2.0.
|
|
43
|
-
"@smithy/middleware-serde": "^2.0.
|
|
44
|
-
"@smithy/middleware-stack": "^2.0.
|
|
45
|
-
"@smithy/node-config-provider": "^2.
|
|
46
|
-
"@smithy/node-http-handler": "^2.1.
|
|
47
|
-
"@smithy/protocol-http": "^3.0.
|
|
48
|
-
"@smithy/smithy-client": "^2.1.
|
|
49
|
-
"@smithy/types": "^2.3.
|
|
50
|
-
"@smithy/url-parser": "^2.0.
|
|
24
|
+
"@aws-sdk/client-sts": "3.429.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.429.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.429.0",
|
|
27
|
+
"@aws-sdk/middleware-logger": "3.428.0",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "3.428.0",
|
|
29
|
+
"@aws-sdk/middleware-signing": "3.428.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.428.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.428.0",
|
|
32
|
+
"@aws-sdk/types": "3.428.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.428.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.428.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.428.0",
|
|
36
|
+
"@smithy/config-resolver": "^2.0.14",
|
|
37
|
+
"@smithy/fetch-http-handler": "^2.2.3",
|
|
38
|
+
"@smithy/hash-node": "^2.0.11",
|
|
39
|
+
"@smithy/invalid-dependency": "^2.0.11",
|
|
40
|
+
"@smithy/middleware-content-length": "^2.0.13",
|
|
41
|
+
"@smithy/middleware-endpoint": "^2.1.1",
|
|
42
|
+
"@smithy/middleware-retry": "^2.0.16",
|
|
43
|
+
"@smithy/middleware-serde": "^2.0.11",
|
|
44
|
+
"@smithy/middleware-stack": "^2.0.5",
|
|
45
|
+
"@smithy/node-config-provider": "^2.1.1",
|
|
46
|
+
"@smithy/node-http-handler": "^2.1.7",
|
|
47
|
+
"@smithy/protocol-http": "^3.0.7",
|
|
48
|
+
"@smithy/smithy-client": "^2.1.11",
|
|
49
|
+
"@smithy/types": "^2.3.5",
|
|
50
|
+
"@smithy/url-parser": "^2.0.11",
|
|
51
51
|
"@smithy/util-base64": "^2.0.0",
|
|
52
52
|
"@smithy/util-body-length-browser": "^2.0.0",
|
|
53
53
|
"@smithy/util-body-length-node": "^2.1.0",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^2.0.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^2.0.
|
|
56
|
-
"@smithy/util-retry": "^2.0.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^2.0.15",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^2.0.19",
|
|
56
|
+
"@smithy/util-retry": "^2.0.4",
|
|
57
57
|
"@smithy/util-utf8": "^2.0.0",
|
|
58
58
|
"tslib": "^2.5.0"
|
|
59
59
|
},
|