@aws-sdk/client-route53-recovery-readiness 3.934.0 → 3.936.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/dist-cjs/index.js +7 -6
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +6 -0
- package/dist-es/models/errors.js +85 -0
- package/dist-es/models/models_0.js +1 -91
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +14 -0
- package/dist-types/models/errors.d.ts +80 -0
- package/dist-types/models/models_0.d.ts +1 -94
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +7 -0
- package/dist-types/ts3.4/models/errors.d.ts +48 -0
- package/dist-types/ts3.4/models/models_0.d.ts +1 -55
- package/package.json +19 -19
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
package/dist-cjs/index.js
CHANGED
|
@@ -117,12 +117,6 @@ let Route53RecoveryReadinessServiceException$1 = class Route53RecoveryReadinessS
|
|
|
117
117
|
}
|
|
118
118
|
};
|
|
119
119
|
|
|
120
|
-
const Readiness = {
|
|
121
|
-
NOT_AUTHORIZED: "NOT_AUTHORIZED",
|
|
122
|
-
NOT_READY: "NOT_READY",
|
|
123
|
-
READY: "READY",
|
|
124
|
-
UNKNOWN: "UNKNOWN",
|
|
125
|
-
};
|
|
126
120
|
let AccessDeniedException$1 = class AccessDeniedException extends Route53RecoveryReadinessServiceException$1 {
|
|
127
121
|
name = "AccessDeniedException";
|
|
128
122
|
$fault = "client";
|
|
@@ -2960,6 +2954,13 @@ const paginateListResourceSets = core.createPaginator(Route53RecoveryReadinessCl
|
|
|
2960
2954
|
|
|
2961
2955
|
const paginateListRules = core.createPaginator(Route53RecoveryReadinessClient, ListRulesCommand, "NextToken", "NextToken", "MaxResults");
|
|
2962
2956
|
|
|
2957
|
+
const Readiness = {
|
|
2958
|
+
NOT_AUTHORIZED: "NOT_AUTHORIZED",
|
|
2959
|
+
NOT_READY: "NOT_READY",
|
|
2960
|
+
READY: "READY",
|
|
2961
|
+
UNKNOWN: "UNKNOWN",
|
|
2962
|
+
};
|
|
2963
|
+
|
|
2963
2964
|
Object.defineProperty(exports, "$Command", {
|
|
2964
2965
|
enumerable: true,
|
|
2965
2966
|
get: function () { return smithyClient.Command; }
|
package/dist-es/index.js
CHANGED
|
@@ -2,5 +2,6 @@ export * from "./Route53RecoveryReadinessClient";
|
|
|
2
2
|
export * from "./Route53RecoveryReadiness";
|
|
3
3
|
export * from "./commands";
|
|
4
4
|
export * from "./pagination";
|
|
5
|
-
export * from "./models";
|
|
5
|
+
export * from "./models/enums";
|
|
6
|
+
export * from "./models/errors";
|
|
6
7
|
export { Route53RecoveryReadinessServiceException } from "./models/Route53RecoveryReadinessServiceException";
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
import { Route53RecoveryReadinessServiceException as __BaseException } from "./Route53RecoveryReadinessServiceException";
|
|
2
|
+
export class AccessDeniedException extends __BaseException {
|
|
3
|
+
name = "AccessDeniedException";
|
|
4
|
+
$fault = "client";
|
|
5
|
+
Message;
|
|
6
|
+
constructor(opts) {
|
|
7
|
+
super({
|
|
8
|
+
name: "AccessDeniedException",
|
|
9
|
+
$fault: "client",
|
|
10
|
+
...opts,
|
|
11
|
+
});
|
|
12
|
+
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
13
|
+
this.Message = opts.Message;
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
export class ConflictException extends __BaseException {
|
|
17
|
+
name = "ConflictException";
|
|
18
|
+
$fault = "client";
|
|
19
|
+
Message;
|
|
20
|
+
constructor(opts) {
|
|
21
|
+
super({
|
|
22
|
+
name: "ConflictException",
|
|
23
|
+
$fault: "client",
|
|
24
|
+
...opts,
|
|
25
|
+
});
|
|
26
|
+
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
27
|
+
this.Message = opts.Message;
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
export class InternalServerException extends __BaseException {
|
|
31
|
+
name = "InternalServerException";
|
|
32
|
+
$fault = "server";
|
|
33
|
+
Message;
|
|
34
|
+
constructor(opts) {
|
|
35
|
+
super({
|
|
36
|
+
name: "InternalServerException",
|
|
37
|
+
$fault: "server",
|
|
38
|
+
...opts,
|
|
39
|
+
});
|
|
40
|
+
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
41
|
+
this.Message = opts.Message;
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
export class ThrottlingException extends __BaseException {
|
|
45
|
+
name = "ThrottlingException";
|
|
46
|
+
$fault = "client";
|
|
47
|
+
Message;
|
|
48
|
+
constructor(opts) {
|
|
49
|
+
super({
|
|
50
|
+
name: "ThrottlingException",
|
|
51
|
+
$fault: "client",
|
|
52
|
+
...opts,
|
|
53
|
+
});
|
|
54
|
+
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
55
|
+
this.Message = opts.Message;
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
export class ValidationException extends __BaseException {
|
|
59
|
+
name = "ValidationException";
|
|
60
|
+
$fault = "client";
|
|
61
|
+
Message;
|
|
62
|
+
constructor(opts) {
|
|
63
|
+
super({
|
|
64
|
+
name: "ValidationException",
|
|
65
|
+
$fault: "client",
|
|
66
|
+
...opts,
|
|
67
|
+
});
|
|
68
|
+
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
69
|
+
this.Message = opts.Message;
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
export class ResourceNotFoundException extends __BaseException {
|
|
73
|
+
name = "ResourceNotFoundException";
|
|
74
|
+
$fault = "client";
|
|
75
|
+
Message;
|
|
76
|
+
constructor(opts) {
|
|
77
|
+
super({
|
|
78
|
+
name: "ResourceNotFoundException",
|
|
79
|
+
$fault: "client",
|
|
80
|
+
...opts,
|
|
81
|
+
});
|
|
82
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
83
|
+
this.Message = opts.Message;
|
|
84
|
+
}
|
|
85
|
+
}
|
|
@@ -1,91 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export const Readiness = {
|
|
3
|
-
NOT_AUTHORIZED: "NOT_AUTHORIZED",
|
|
4
|
-
NOT_READY: "NOT_READY",
|
|
5
|
-
READY: "READY",
|
|
6
|
-
UNKNOWN: "UNKNOWN",
|
|
7
|
-
};
|
|
8
|
-
export class AccessDeniedException extends __BaseException {
|
|
9
|
-
name = "AccessDeniedException";
|
|
10
|
-
$fault = "client";
|
|
11
|
-
Message;
|
|
12
|
-
constructor(opts) {
|
|
13
|
-
super({
|
|
14
|
-
name: "AccessDeniedException",
|
|
15
|
-
$fault: "client",
|
|
16
|
-
...opts,
|
|
17
|
-
});
|
|
18
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
19
|
-
this.Message = opts.Message;
|
|
20
|
-
}
|
|
21
|
-
}
|
|
22
|
-
export class ConflictException extends __BaseException {
|
|
23
|
-
name = "ConflictException";
|
|
24
|
-
$fault = "client";
|
|
25
|
-
Message;
|
|
26
|
-
constructor(opts) {
|
|
27
|
-
super({
|
|
28
|
-
name: "ConflictException",
|
|
29
|
-
$fault: "client",
|
|
30
|
-
...opts,
|
|
31
|
-
});
|
|
32
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
33
|
-
this.Message = opts.Message;
|
|
34
|
-
}
|
|
35
|
-
}
|
|
36
|
-
export class InternalServerException extends __BaseException {
|
|
37
|
-
name = "InternalServerException";
|
|
38
|
-
$fault = "server";
|
|
39
|
-
Message;
|
|
40
|
-
constructor(opts) {
|
|
41
|
-
super({
|
|
42
|
-
name: "InternalServerException",
|
|
43
|
-
$fault: "server",
|
|
44
|
-
...opts,
|
|
45
|
-
});
|
|
46
|
-
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
47
|
-
this.Message = opts.Message;
|
|
48
|
-
}
|
|
49
|
-
}
|
|
50
|
-
export class ThrottlingException extends __BaseException {
|
|
51
|
-
name = "ThrottlingException";
|
|
52
|
-
$fault = "client";
|
|
53
|
-
Message;
|
|
54
|
-
constructor(opts) {
|
|
55
|
-
super({
|
|
56
|
-
name: "ThrottlingException",
|
|
57
|
-
$fault: "client",
|
|
58
|
-
...opts,
|
|
59
|
-
});
|
|
60
|
-
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
61
|
-
this.Message = opts.Message;
|
|
62
|
-
}
|
|
63
|
-
}
|
|
64
|
-
export class ValidationException extends __BaseException {
|
|
65
|
-
name = "ValidationException";
|
|
66
|
-
$fault = "client";
|
|
67
|
-
Message;
|
|
68
|
-
constructor(opts) {
|
|
69
|
-
super({
|
|
70
|
-
name: "ValidationException",
|
|
71
|
-
$fault: "client",
|
|
72
|
-
...opts,
|
|
73
|
-
});
|
|
74
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
75
|
-
this.Message = opts.Message;
|
|
76
|
-
}
|
|
77
|
-
}
|
|
78
|
-
export class ResourceNotFoundException extends __BaseException {
|
|
79
|
-
name = "ResourceNotFoundException";
|
|
80
|
-
$fault = "client";
|
|
81
|
-
Message;
|
|
82
|
-
constructor(opts) {
|
|
83
|
-
super({
|
|
84
|
-
name: "ResourceNotFoundException",
|
|
85
|
-
$fault: "client",
|
|
86
|
-
...opts,
|
|
87
|
-
});
|
|
88
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
89
|
-
this.Message = opts.Message;
|
|
90
|
-
}
|
|
91
|
-
}
|
|
1
|
+
export {};
|
|
@@ -221,7 +221,7 @@ const _tK = "tagKeys";
|
|
|
221
221
|
const _tR = "targetResource";
|
|
222
222
|
const n0 = "com.amazonaws.route53recoveryreadiness";
|
|
223
223
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
224
|
-
import { AccessDeniedException as __AccessDeniedException, ConflictException as __ConflictException, InternalServerException as __InternalServerException, ResourceNotFoundException as __ResourceNotFoundException, ThrottlingException as __ThrottlingException, ValidationException as __ValidationException, } from "../models/
|
|
224
|
+
import { AccessDeniedException as __AccessDeniedException, ConflictException as __ConflictException, InternalServerException as __InternalServerException, ResourceNotFoundException as __ResourceNotFoundException, ThrottlingException as __ThrottlingException, ValidationException as __ValidationException, } from "../models/errors";
|
|
225
225
|
import { Route53RecoveryReadinessServiceException as __Route53RecoveryReadinessServiceException } from "../models/Route53RecoveryReadinessServiceException";
|
|
226
226
|
export var AccessDeniedException = [
|
|
227
227
|
-3,
|
package/dist-types/index.d.ts
CHANGED
|
@@ -10,5 +10,7 @@ export type { RuntimeExtension } from "./runtimeExtensions";
|
|
|
10
10
|
export type { Route53RecoveryReadinessExtensionConfiguration } from "./extensionConfiguration";
|
|
11
11
|
export * from "./commands";
|
|
12
12
|
export * from "./pagination";
|
|
13
|
-
export * from "./models";
|
|
13
|
+
export * from "./models/enums";
|
|
14
|
+
export * from "./models/errors";
|
|
15
|
+
export type * from "./models/models_0";
|
|
14
16
|
export { Route53RecoveryReadinessServiceException } from "./models/Route53RecoveryReadinessServiceException";
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @public
|
|
3
|
+
* @enum
|
|
4
|
+
*/
|
|
5
|
+
export declare const Readiness: {
|
|
6
|
+
readonly NOT_AUTHORIZED: "NOT_AUTHORIZED";
|
|
7
|
+
readonly NOT_READY: "NOT_READY";
|
|
8
|
+
readonly READY: "READY";
|
|
9
|
+
readonly UNKNOWN: "UNKNOWN";
|
|
10
|
+
};
|
|
11
|
+
/**
|
|
12
|
+
* @public
|
|
13
|
+
*/
|
|
14
|
+
export type Readiness = (typeof Readiness)[keyof typeof Readiness];
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { Route53RecoveryReadinessServiceException as __BaseException } from "./Route53RecoveryReadinessServiceException";
|
|
3
|
+
/**
|
|
4
|
+
* User does not have sufficient access to perform this action.
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
8
|
+
readonly name: "AccessDeniedException";
|
|
9
|
+
readonly $fault: "client";
|
|
10
|
+
Message?: string | undefined;
|
|
11
|
+
/**
|
|
12
|
+
* @internal
|
|
13
|
+
*/
|
|
14
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* Updating or deleting a resource can cause an inconsistent state.
|
|
18
|
+
* @public
|
|
19
|
+
*/
|
|
20
|
+
export declare class ConflictException extends __BaseException {
|
|
21
|
+
readonly name: "ConflictException";
|
|
22
|
+
readonly $fault: "client";
|
|
23
|
+
Message?: string | undefined;
|
|
24
|
+
/**
|
|
25
|
+
* @internal
|
|
26
|
+
*/
|
|
27
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
28
|
+
}
|
|
29
|
+
/**
|
|
30
|
+
* An unexpected error occurred.
|
|
31
|
+
* @public
|
|
32
|
+
*/
|
|
33
|
+
export declare class InternalServerException extends __BaseException {
|
|
34
|
+
readonly name: "InternalServerException";
|
|
35
|
+
readonly $fault: "server";
|
|
36
|
+
Message?: string | undefined;
|
|
37
|
+
/**
|
|
38
|
+
* @internal
|
|
39
|
+
*/
|
|
40
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
41
|
+
}
|
|
42
|
+
/**
|
|
43
|
+
* Request was denied due to request throttling.
|
|
44
|
+
* @public
|
|
45
|
+
*/
|
|
46
|
+
export declare class ThrottlingException extends __BaseException {
|
|
47
|
+
readonly name: "ThrottlingException";
|
|
48
|
+
readonly $fault: "client";
|
|
49
|
+
Message?: string | undefined;
|
|
50
|
+
/**
|
|
51
|
+
* @internal
|
|
52
|
+
*/
|
|
53
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
54
|
+
}
|
|
55
|
+
/**
|
|
56
|
+
* The input fails to satisfy the constraints specified by an AWS service.
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
59
|
+
export declare class ValidationException extends __BaseException {
|
|
60
|
+
readonly name: "ValidationException";
|
|
61
|
+
readonly $fault: "client";
|
|
62
|
+
Message?: string | undefined;
|
|
63
|
+
/**
|
|
64
|
+
* @internal
|
|
65
|
+
*/
|
|
66
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
67
|
+
}
|
|
68
|
+
/**
|
|
69
|
+
* The requested resource does not exist.
|
|
70
|
+
* @public
|
|
71
|
+
*/
|
|
72
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
73
|
+
readonly name: "ResourceNotFoundException";
|
|
74
|
+
readonly $fault: "client";
|
|
75
|
+
Message?: string | undefined;
|
|
76
|
+
/**
|
|
77
|
+
* @internal
|
|
78
|
+
*/
|
|
79
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
80
|
+
}
|
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { Route53RecoveryReadinessServiceException as __BaseException } from "./Route53RecoveryReadinessServiceException";
|
|
1
|
+
import { Readiness } from "./enums";
|
|
3
2
|
/**
|
|
4
3
|
* <p>Information about a cell.</p>
|
|
5
4
|
* @public
|
|
@@ -89,20 +88,6 @@ export interface ReadinessCheckOutput {
|
|
|
89
88
|
*/
|
|
90
89
|
Tags?: Record<string, string> | undefined;
|
|
91
90
|
}
|
|
92
|
-
/**
|
|
93
|
-
* @public
|
|
94
|
-
* @enum
|
|
95
|
-
*/
|
|
96
|
-
export declare const Readiness: {
|
|
97
|
-
readonly NOT_AUTHORIZED: "NOT_AUTHORIZED";
|
|
98
|
-
readonly NOT_READY: "NOT_READY";
|
|
99
|
-
readonly READY: "READY";
|
|
100
|
-
readonly UNKNOWN: "UNKNOWN";
|
|
101
|
-
};
|
|
102
|
-
/**
|
|
103
|
-
* @public
|
|
104
|
-
*/
|
|
105
|
-
export type Readiness = (typeof Readiness)[keyof typeof Readiness];
|
|
106
91
|
/**
|
|
107
92
|
* <p>Summary of all readiness check statuses in a recovery group, paginated in GetRecoveryGroupReadinessSummary and GetCellReadinessSummary.</p>
|
|
108
93
|
* @public
|
|
@@ -339,32 +324,6 @@ export interface RuleResult {
|
|
|
339
324
|
*/
|
|
340
325
|
RuleId: string | undefined;
|
|
341
326
|
}
|
|
342
|
-
/**
|
|
343
|
-
* User does not have sufficient access to perform this action.
|
|
344
|
-
* @public
|
|
345
|
-
*/
|
|
346
|
-
export declare class AccessDeniedException extends __BaseException {
|
|
347
|
-
readonly name: "AccessDeniedException";
|
|
348
|
-
readonly $fault: "client";
|
|
349
|
-
Message?: string | undefined;
|
|
350
|
-
/**
|
|
351
|
-
* @internal
|
|
352
|
-
*/
|
|
353
|
-
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
354
|
-
}
|
|
355
|
-
/**
|
|
356
|
-
* Updating or deleting a resource can cause an inconsistent state.
|
|
357
|
-
* @public
|
|
358
|
-
*/
|
|
359
|
-
export declare class ConflictException extends __BaseException {
|
|
360
|
-
readonly name: "ConflictException";
|
|
361
|
-
readonly $fault: "client";
|
|
362
|
-
Message?: string | undefined;
|
|
363
|
-
/**
|
|
364
|
-
* @internal
|
|
365
|
-
*/
|
|
366
|
-
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
367
|
-
}
|
|
368
327
|
/**
|
|
369
328
|
* @public
|
|
370
329
|
*/
|
|
@@ -415,45 +374,6 @@ export interface CreateCellResponse {
|
|
|
415
374
|
*/
|
|
416
375
|
Tags?: Record<string, string> | undefined;
|
|
417
376
|
}
|
|
418
|
-
/**
|
|
419
|
-
* An unexpected error occurred.
|
|
420
|
-
* @public
|
|
421
|
-
*/
|
|
422
|
-
export declare class InternalServerException extends __BaseException {
|
|
423
|
-
readonly name: "InternalServerException";
|
|
424
|
-
readonly $fault: "server";
|
|
425
|
-
Message?: string | undefined;
|
|
426
|
-
/**
|
|
427
|
-
* @internal
|
|
428
|
-
*/
|
|
429
|
-
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
430
|
-
}
|
|
431
|
-
/**
|
|
432
|
-
* Request was denied due to request throttling.
|
|
433
|
-
* @public
|
|
434
|
-
*/
|
|
435
|
-
export declare class ThrottlingException extends __BaseException {
|
|
436
|
-
readonly name: "ThrottlingException";
|
|
437
|
-
readonly $fault: "client";
|
|
438
|
-
Message?: string | undefined;
|
|
439
|
-
/**
|
|
440
|
-
* @internal
|
|
441
|
-
*/
|
|
442
|
-
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
443
|
-
}
|
|
444
|
-
/**
|
|
445
|
-
* The input fails to satisfy the constraints specified by an AWS service.
|
|
446
|
-
* @public
|
|
447
|
-
*/
|
|
448
|
-
export declare class ValidationException extends __BaseException {
|
|
449
|
-
readonly name: "ValidationException";
|
|
450
|
-
readonly $fault: "client";
|
|
451
|
-
Message?: string | undefined;
|
|
452
|
-
/**
|
|
453
|
-
* @internal
|
|
454
|
-
*/
|
|
455
|
-
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
456
|
-
}
|
|
457
377
|
/**
|
|
458
378
|
* @public
|
|
459
379
|
*/
|
|
@@ -629,19 +549,6 @@ export interface DeleteCellRequest {
|
|
|
629
549
|
*/
|
|
630
550
|
CellName: string | undefined;
|
|
631
551
|
}
|
|
632
|
-
/**
|
|
633
|
-
* The requested resource does not exist.
|
|
634
|
-
* @public
|
|
635
|
-
*/
|
|
636
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
637
|
-
readonly name: "ResourceNotFoundException";
|
|
638
|
-
readonly $fault: "client";
|
|
639
|
-
Message?: string | undefined;
|
|
640
|
-
/**
|
|
641
|
-
* @internal
|
|
642
|
-
*/
|
|
643
|
-
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
644
|
-
}
|
|
645
552
|
/**
|
|
646
553
|
* @public
|
|
647
554
|
*/
|
|
@@ -5,5 +5,7 @@ export { RuntimeExtension } from "./runtimeExtensions";
|
|
|
5
5
|
export { Route53RecoveryReadinessExtensionConfiguration } from "./extensionConfiguration";
|
|
6
6
|
export * from "./commands";
|
|
7
7
|
export * from "./pagination";
|
|
8
|
-
export * from "./models";
|
|
8
|
+
export * from "./models/enums";
|
|
9
|
+
export * from "./models/errors";
|
|
10
|
+
export * from "./models/models_0";
|
|
9
11
|
export { Route53RecoveryReadinessServiceException } from "./models/Route53RecoveryReadinessServiceException";
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { Route53RecoveryReadinessServiceException as __BaseException } from "./Route53RecoveryReadinessServiceException";
|
|
3
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
4
|
+
readonly name: "AccessDeniedException";
|
|
5
|
+
readonly $fault: "client";
|
|
6
|
+
Message?: string | undefined;
|
|
7
|
+
constructor(
|
|
8
|
+
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
9
|
+
);
|
|
10
|
+
}
|
|
11
|
+
export declare class ConflictException extends __BaseException {
|
|
12
|
+
readonly name: "ConflictException";
|
|
13
|
+
readonly $fault: "client";
|
|
14
|
+
Message?: string | undefined;
|
|
15
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
16
|
+
}
|
|
17
|
+
export declare class InternalServerException extends __BaseException {
|
|
18
|
+
readonly name: "InternalServerException";
|
|
19
|
+
readonly $fault: "server";
|
|
20
|
+
Message?: string | undefined;
|
|
21
|
+
constructor(
|
|
22
|
+
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
23
|
+
);
|
|
24
|
+
}
|
|
25
|
+
export declare class ThrottlingException extends __BaseException {
|
|
26
|
+
readonly name: "ThrottlingException";
|
|
27
|
+
readonly $fault: "client";
|
|
28
|
+
Message?: string | undefined;
|
|
29
|
+
constructor(
|
|
30
|
+
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
31
|
+
);
|
|
32
|
+
}
|
|
33
|
+
export declare class ValidationException extends __BaseException {
|
|
34
|
+
readonly name: "ValidationException";
|
|
35
|
+
readonly $fault: "client";
|
|
36
|
+
Message?: string | undefined;
|
|
37
|
+
constructor(
|
|
38
|
+
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
39
|
+
);
|
|
40
|
+
}
|
|
41
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
42
|
+
readonly name: "ResourceNotFoundException";
|
|
43
|
+
readonly $fault: "client";
|
|
44
|
+
Message?: string | undefined;
|
|
45
|
+
constructor(
|
|
46
|
+
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
47
|
+
);
|
|
48
|
+
}
|
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { Route53RecoveryReadinessServiceException as __BaseException } from "./Route53RecoveryReadinessServiceException";
|
|
1
|
+
import { Readiness } from "./enums";
|
|
3
2
|
export interface CellOutput {
|
|
4
3
|
CellArn: string | undefined;
|
|
5
4
|
CellName: string | undefined;
|
|
@@ -21,13 +20,6 @@ export interface ReadinessCheckOutput {
|
|
|
21
20
|
ResourceSet: string | undefined;
|
|
22
21
|
Tags?: Record<string, string> | undefined;
|
|
23
22
|
}
|
|
24
|
-
export declare const Readiness: {
|
|
25
|
-
readonly NOT_AUTHORIZED: "NOT_AUTHORIZED";
|
|
26
|
-
readonly NOT_READY: "NOT_READY";
|
|
27
|
-
readonly READY: "READY";
|
|
28
|
-
readonly UNKNOWN: "UNKNOWN";
|
|
29
|
-
};
|
|
30
|
-
export type Readiness = (typeof Readiness)[keyof typeof Readiness];
|
|
31
23
|
export interface ReadinessCheckSummary {
|
|
32
24
|
Readiness?: Readiness | undefined;
|
|
33
25
|
ReadinessCheckName?: string | undefined;
|
|
@@ -84,20 +76,6 @@ export interface RuleResult {
|
|
|
84
76
|
Readiness: Readiness | undefined;
|
|
85
77
|
RuleId: string | undefined;
|
|
86
78
|
}
|
|
87
|
-
export declare class AccessDeniedException extends __BaseException {
|
|
88
|
-
readonly name: "AccessDeniedException";
|
|
89
|
-
readonly $fault: "client";
|
|
90
|
-
Message?: string | undefined;
|
|
91
|
-
constructor(
|
|
92
|
-
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
93
|
-
);
|
|
94
|
-
}
|
|
95
|
-
export declare class ConflictException extends __BaseException {
|
|
96
|
-
readonly name: "ConflictException";
|
|
97
|
-
readonly $fault: "client";
|
|
98
|
-
Message?: string | undefined;
|
|
99
|
-
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
100
|
-
}
|
|
101
79
|
export interface CreateCellRequest {
|
|
102
80
|
CellName: string | undefined;
|
|
103
81
|
Cells?: string[] | undefined;
|
|
@@ -110,30 +88,6 @@ export interface CreateCellResponse {
|
|
|
110
88
|
ParentReadinessScopes?: string[] | undefined;
|
|
111
89
|
Tags?: Record<string, string> | undefined;
|
|
112
90
|
}
|
|
113
|
-
export declare class InternalServerException extends __BaseException {
|
|
114
|
-
readonly name: "InternalServerException";
|
|
115
|
-
readonly $fault: "server";
|
|
116
|
-
Message?: string | undefined;
|
|
117
|
-
constructor(
|
|
118
|
-
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
119
|
-
);
|
|
120
|
-
}
|
|
121
|
-
export declare class ThrottlingException extends __BaseException {
|
|
122
|
-
readonly name: "ThrottlingException";
|
|
123
|
-
readonly $fault: "client";
|
|
124
|
-
Message?: string | undefined;
|
|
125
|
-
constructor(
|
|
126
|
-
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
127
|
-
);
|
|
128
|
-
}
|
|
129
|
-
export declare class ValidationException extends __BaseException {
|
|
130
|
-
readonly name: "ValidationException";
|
|
131
|
-
readonly $fault: "client";
|
|
132
|
-
Message?: string | undefined;
|
|
133
|
-
constructor(
|
|
134
|
-
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
135
|
-
);
|
|
136
|
-
}
|
|
137
91
|
export interface CreateCrossAccountAuthorizationRequest {
|
|
138
92
|
CrossAccountAuthorization: string | undefined;
|
|
139
93
|
}
|
|
@@ -178,14 +132,6 @@ export interface CreateResourceSetResponse {
|
|
|
178
132
|
export interface DeleteCellRequest {
|
|
179
133
|
CellName: string | undefined;
|
|
180
134
|
}
|
|
181
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
182
|
-
readonly name: "ResourceNotFoundException";
|
|
183
|
-
readonly $fault: "client";
|
|
184
|
-
Message?: string | undefined;
|
|
185
|
-
constructor(
|
|
186
|
-
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
187
|
-
);
|
|
188
|
-
}
|
|
189
135
|
export interface DeleteCrossAccountAuthorizationRequest {
|
|
190
136
|
CrossAccountAuthorization: string | undefined;
|
|
191
137
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-route53-recovery-readiness",
|
|
3
3
|
"description": "AWS SDK for JavaScript Route53 Recovery Readiness Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.936.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-route53-recovery-readiness",
|
|
@@ -20,38 +20,38 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
26
|
-
"@aws-sdk/middleware-logger": "3.
|
|
27
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
29
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
30
|
-
"@aws-sdk/types": "3.
|
|
31
|
-
"@aws-sdk/util-endpoints": "3.
|
|
32
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.936.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.936.0",
|
|
25
|
+
"@aws-sdk/middleware-host-header": "3.936.0",
|
|
26
|
+
"@aws-sdk/middleware-logger": "3.936.0",
|
|
27
|
+
"@aws-sdk/middleware-recursion-detection": "3.936.0",
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.936.0",
|
|
29
|
+
"@aws-sdk/region-config-resolver": "3.936.0",
|
|
30
|
+
"@aws-sdk/types": "3.936.0",
|
|
31
|
+
"@aws-sdk/util-endpoints": "3.936.0",
|
|
32
|
+
"@aws-sdk/util-user-agent-browser": "3.936.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.936.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.4.3",
|
|
35
|
-
"@smithy/core": "^3.18.
|
|
35
|
+
"@smithy/core": "^3.18.5",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.3.6",
|
|
37
37
|
"@smithy/hash-node": "^4.2.5",
|
|
38
38
|
"@smithy/invalid-dependency": "^4.2.5",
|
|
39
39
|
"@smithy/middleware-content-length": "^4.2.5",
|
|
40
|
-
"@smithy/middleware-endpoint": "^4.3.
|
|
41
|
-
"@smithy/middleware-retry": "^4.4.
|
|
42
|
-
"@smithy/middleware-serde": "^4.2.
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.3.12",
|
|
41
|
+
"@smithy/middleware-retry": "^4.4.12",
|
|
42
|
+
"@smithy/middleware-serde": "^4.2.6",
|
|
43
43
|
"@smithy/middleware-stack": "^4.2.5",
|
|
44
44
|
"@smithy/node-config-provider": "^4.3.5",
|
|
45
45
|
"@smithy/node-http-handler": "^4.4.5",
|
|
46
46
|
"@smithy/protocol-http": "^5.3.5",
|
|
47
|
-
"@smithy/smithy-client": "^4.9.
|
|
47
|
+
"@smithy/smithy-client": "^4.9.8",
|
|
48
48
|
"@smithy/types": "^4.9.0",
|
|
49
49
|
"@smithy/url-parser": "^4.2.5",
|
|
50
50
|
"@smithy/util-base64": "^4.3.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
52
52
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.3.11",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.2.14",
|
|
55
55
|
"@smithy/util-endpoints": "^3.2.5",
|
|
56
56
|
"@smithy/util-middleware": "^4.2.5",
|
|
57
57
|
"@smithy/util-retry": "^4.2.5",
|
package/dist-es/models/index.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|