@aws-sdk/client-route53-recovery-cluster 3.379.1 → 3.385.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.
|
@@ -20,10 +20,12 @@ export declare class ConflictException extends __BaseException {
|
|
|
20
20
|
readonly name: "ConflictException";
|
|
21
21
|
readonly $fault: "client";
|
|
22
22
|
/**
|
|
23
|
+
* @public
|
|
23
24
|
* Identifier of the resource in use
|
|
24
25
|
*/
|
|
25
26
|
resourceId: string | undefined;
|
|
26
27
|
/**
|
|
28
|
+
* @public
|
|
27
29
|
* Type of the resource in use
|
|
28
30
|
*/
|
|
29
31
|
resourceType: string | undefined;
|
|
@@ -49,6 +51,7 @@ export declare class EndpointTemporarilyUnavailableException extends __BaseExcep
|
|
|
49
51
|
*/
|
|
50
52
|
export interface GetRoutingControlStateRequest {
|
|
51
53
|
/**
|
|
54
|
+
* @public
|
|
52
55
|
* <p>The Amazon Resource Name (ARN) for the routing control that you want to get the state for.</p>
|
|
53
56
|
*/
|
|
54
57
|
RoutingControlArn: string | undefined;
|
|
@@ -70,14 +73,17 @@ export type RoutingControlState = (typeof RoutingControlState)[keyof typeof Rout
|
|
|
70
73
|
*/
|
|
71
74
|
export interface GetRoutingControlStateResponse {
|
|
72
75
|
/**
|
|
76
|
+
* @public
|
|
73
77
|
* <p>The Amazon Resource Name (ARN) of the response.</p>
|
|
74
78
|
*/
|
|
75
79
|
RoutingControlArn: string | undefined;
|
|
76
80
|
/**
|
|
81
|
+
* @public
|
|
77
82
|
* <p>The state of the routing control.</p>
|
|
78
83
|
*/
|
|
79
84
|
RoutingControlState: RoutingControlState | string | undefined;
|
|
80
85
|
/**
|
|
86
|
+
* @public
|
|
81
87
|
* <p>The routing control name.</p>
|
|
82
88
|
*/
|
|
83
89
|
RoutingControlName?: string;
|
|
@@ -90,6 +96,7 @@ export declare class InternalServerException extends __BaseException {
|
|
|
90
96
|
readonly name: "InternalServerException";
|
|
91
97
|
readonly $fault: "server";
|
|
92
98
|
/**
|
|
99
|
+
* @public
|
|
93
100
|
* Advice to clients on when the call can be safely retried
|
|
94
101
|
*/
|
|
95
102
|
retryAfterSeconds?: number;
|
|
@@ -106,10 +113,12 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
106
113
|
readonly name: "ResourceNotFoundException";
|
|
107
114
|
readonly $fault: "client";
|
|
108
115
|
/**
|
|
116
|
+
* @public
|
|
109
117
|
* Hypothetical resource identifier that was not found
|
|
110
118
|
*/
|
|
111
119
|
resourceId: string | undefined;
|
|
112
120
|
/**
|
|
121
|
+
* @public
|
|
113
122
|
* Hypothetical resource type that was not found
|
|
114
123
|
*/
|
|
115
124
|
resourceType: string | undefined;
|
|
@@ -126,6 +135,7 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
126
135
|
readonly name: "ThrottlingException";
|
|
127
136
|
readonly $fault: "client";
|
|
128
137
|
/**
|
|
138
|
+
* @public
|
|
129
139
|
* Advice to clients on when the call can be safely retried
|
|
130
140
|
*/
|
|
131
141
|
retryAfterSeconds?: number;
|
|
@@ -140,10 +150,12 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
140
150
|
*/
|
|
141
151
|
export interface ValidationExceptionField {
|
|
142
152
|
/**
|
|
153
|
+
* @public
|
|
143
154
|
* <p>The field that had the validation exception.</p>
|
|
144
155
|
*/
|
|
145
156
|
name: string | undefined;
|
|
146
157
|
/**
|
|
158
|
+
* @public
|
|
147
159
|
* <p>Information about the validation exception.</p>
|
|
148
160
|
*/
|
|
149
161
|
message: string | undefined;
|
|
@@ -170,10 +182,12 @@ export declare class ValidationException extends __BaseException {
|
|
|
170
182
|
readonly name: "ValidationException";
|
|
171
183
|
readonly $fault: "client";
|
|
172
184
|
/**
|
|
185
|
+
* @public
|
|
173
186
|
* Reason the request failed validation
|
|
174
187
|
*/
|
|
175
188
|
reason?: ValidationExceptionReason | string;
|
|
176
189
|
/**
|
|
190
|
+
* @public
|
|
177
191
|
* The fields that caused the error, if applicable
|
|
178
192
|
*/
|
|
179
193
|
fields?: ValidationExceptionField[];
|
|
@@ -187,14 +201,17 @@ export declare class ValidationException extends __BaseException {
|
|
|
187
201
|
*/
|
|
188
202
|
export interface ListRoutingControlsRequest {
|
|
189
203
|
/**
|
|
204
|
+
* @public
|
|
190
205
|
* <p>The Amazon Resource Name (ARN) of the control panel of the routing controls to list.</p>
|
|
191
206
|
*/
|
|
192
207
|
ControlPanelArn?: string;
|
|
193
208
|
/**
|
|
209
|
+
* @public
|
|
194
210
|
* <p>The token for the next set of results. You receive this token from a previous call.</p>
|
|
195
211
|
*/
|
|
196
212
|
NextToken?: string;
|
|
197
213
|
/**
|
|
214
|
+
* @public
|
|
198
215
|
* <p>The number of routing controls objects that you want to return with this call. The default value is 500.</p>
|
|
199
216
|
*/
|
|
200
217
|
MaxResults?: number;
|
|
@@ -207,22 +224,27 @@ export interface ListRoutingControlsRequest {
|
|
|
207
224
|
*/
|
|
208
225
|
export interface RoutingControl {
|
|
209
226
|
/**
|
|
227
|
+
* @public
|
|
210
228
|
* <p>The Amazon Resource Name (ARN) of the control panel where the routing control is located.</p>
|
|
211
229
|
*/
|
|
212
230
|
ControlPanelArn?: string;
|
|
213
231
|
/**
|
|
232
|
+
* @public
|
|
214
233
|
* <p>The name of the control panel where the routing control is located.</p>
|
|
215
234
|
*/
|
|
216
235
|
ControlPanelName?: string;
|
|
217
236
|
/**
|
|
237
|
+
* @public
|
|
218
238
|
* <p>The Amazon Resource Name (ARN) of the routing control.</p>
|
|
219
239
|
*/
|
|
220
240
|
RoutingControlArn?: string;
|
|
221
241
|
/**
|
|
242
|
+
* @public
|
|
222
243
|
* <p>The name of the routing control.</p>
|
|
223
244
|
*/
|
|
224
245
|
RoutingControlName?: string;
|
|
225
246
|
/**
|
|
247
|
+
* @public
|
|
226
248
|
* <p>The current state of the routing control. When a routing control state is On, traffic flows to a cell. When
|
|
227
249
|
* the state is Off, traffic does not flow. </p>
|
|
228
250
|
*/
|
|
@@ -233,10 +255,12 @@ export interface RoutingControl {
|
|
|
233
255
|
*/
|
|
234
256
|
export interface ListRoutingControlsResponse {
|
|
235
257
|
/**
|
|
258
|
+
* @public
|
|
236
259
|
* <p>The list of routing controls.</p>
|
|
237
260
|
*/
|
|
238
261
|
RoutingControls: RoutingControl[] | undefined;
|
|
239
262
|
/**
|
|
263
|
+
* @public
|
|
240
264
|
* <p>The token for the next set of results. You receive this token from a previous call.</p>
|
|
241
265
|
*/
|
|
242
266
|
NextToken?: string;
|
|
@@ -249,18 +273,22 @@ export declare class ServiceLimitExceededException extends __BaseException {
|
|
|
249
273
|
readonly name: "ServiceLimitExceededException";
|
|
250
274
|
readonly $fault: "client";
|
|
251
275
|
/**
|
|
276
|
+
* @public
|
|
252
277
|
* <p>The resource identifier of the limit that was exceeded.</p>
|
|
253
278
|
*/
|
|
254
279
|
resourceId?: string;
|
|
255
280
|
/**
|
|
281
|
+
* @public
|
|
256
282
|
* <p>The resource type of the limit that was exceeded.</p>
|
|
257
283
|
*/
|
|
258
284
|
resourceType?: string;
|
|
259
285
|
/**
|
|
286
|
+
* @public
|
|
260
287
|
* <p>The code of the limit that was exceeded.</p>
|
|
261
288
|
*/
|
|
262
289
|
limitCode: string | undefined;
|
|
263
290
|
/**
|
|
291
|
+
* @public
|
|
264
292
|
* <p>The service code of the limit that was exceeded.</p>
|
|
265
293
|
*/
|
|
266
294
|
serviceCode: string | undefined;
|
|
@@ -274,14 +302,17 @@ export declare class ServiceLimitExceededException extends __BaseException {
|
|
|
274
302
|
*/
|
|
275
303
|
export interface UpdateRoutingControlStateRequest {
|
|
276
304
|
/**
|
|
305
|
+
* @public
|
|
277
306
|
* <p>The Amazon Resource Name (ARN) for the routing control that you want to update the state for.</p>
|
|
278
307
|
*/
|
|
279
308
|
RoutingControlArn: string | undefined;
|
|
280
309
|
/**
|
|
310
|
+
* @public
|
|
281
311
|
* <p>The state of the routing control. You can set the value to be On or Off.</p>
|
|
282
312
|
*/
|
|
283
313
|
RoutingControlState: RoutingControlState | string | undefined;
|
|
284
314
|
/**
|
|
315
|
+
* @public
|
|
285
316
|
* <p>The Amazon Resource Names (ARNs) for the safety rules that you want to override when you're updating the state of
|
|
286
317
|
* a routing control. You can override one safety rule or multiple safety rules by including one or more ARNs, separated
|
|
287
318
|
* by commas.</p>
|
|
@@ -301,10 +332,12 @@ export interface UpdateRoutingControlStateResponse {
|
|
|
301
332
|
*/
|
|
302
333
|
export interface UpdateRoutingControlStateEntry {
|
|
303
334
|
/**
|
|
335
|
+
* @public
|
|
304
336
|
* <p>The Amazon Resource Name (ARN) for a routing control state entry.</p>
|
|
305
337
|
*/
|
|
306
338
|
RoutingControlArn: string | undefined;
|
|
307
339
|
/**
|
|
340
|
+
* @public
|
|
308
341
|
* <p>The routing control state in a set of routing control state entries.</p>
|
|
309
342
|
*/
|
|
310
343
|
RoutingControlState: RoutingControlState | string | undefined;
|
|
@@ -314,10 +347,12 @@ export interface UpdateRoutingControlStateEntry {
|
|
|
314
347
|
*/
|
|
315
348
|
export interface UpdateRoutingControlStatesRequest {
|
|
316
349
|
/**
|
|
350
|
+
* @public
|
|
317
351
|
* <p>A set of routing control entries that you want to update.</p>
|
|
318
352
|
*/
|
|
319
353
|
UpdateRoutingControlStateEntries: UpdateRoutingControlStateEntry[] | undefined;
|
|
320
354
|
/**
|
|
355
|
+
* @public
|
|
321
356
|
* <p>The Amazon Resource Names (ARNs) for the safety rules that you want to override when you're updating routing
|
|
322
357
|
* control states. You can override one safety rule or multiple safety rules by including one or more ARNs, separated
|
|
323
358
|
* by commas.</p>
|
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.385.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,15 +21,15 @@
|
|
|
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.
|
|
24
|
+
"@aws-sdk/client-sts": "3.385.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.385.0",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "3.379.1",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.378.0",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "3.378.0",
|
|
29
29
|
"@aws-sdk/middleware-signing": "3.379.1",
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.382.0",
|
|
31
31
|
"@aws-sdk/types": "3.378.0",
|
|
32
|
-
"@aws-sdk/util-endpoints": "3.
|
|
32
|
+
"@aws-sdk/util-endpoints": "3.382.0",
|
|
33
33
|
"@aws-sdk/util-user-agent-browser": "3.378.0",
|
|
34
34
|
"@aws-sdk/util-user-agent-node": "3.378.0",
|
|
35
35
|
"@smithy/config-resolver": "^2.0.1",
|