@aws-sdk/client-route53-recovery-readiness 3.37.0 → 3.38.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 +12 -0
- package/dist-cjs/commands/index.js +35 -0
- package/dist-cjs/index.js +4 -45
- package/dist-cjs/pagination/index.js +14 -0
- package/dist-es/commands/index.js +32 -0
- package/dist-es/index.js +4 -45
- package/dist-es/pagination/index.js +11 -0
- package/dist-types/commands/index.d.ts +32 -0
- package/dist-types/index.d.ts +4 -45
- package/dist-types/pagination/index.d.ts +11 -0
- package/dist-types/ts3.4/commands/index.d.ts +32 -0
- package/dist-types/ts3.4/index.d.ts +4 -45
- package/dist-types/ts3.4/pagination/index.d.ts +11 -0
- package/package.json +24 -24
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,18 @@
|
|
|
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.38.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.37.0...v3.38.0) (2021-10-22)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **client-documentation-generator:** rename package ([#2916](https://github.com/aws/aws-sdk-js-v3/issues/2916)) ([1a80bfd](https://github.com/aws/aws-sdk-js-v3/commit/1a80bfd2dfc583001ddb4a21b6432eaaad699aa7))
|
|
12
|
+
* **clients:** export folder from index.ts ([#2912](https://github.com/aws/aws-sdk-js-v3/issues/2912)) ([183b46d](https://github.com/aws/aws-sdk-js-v3/commit/183b46dde7f5613128038bf1c076f3c0b693203b))
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
|
|
6
18
|
# [3.37.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.36.1...v3.37.0) (2021-10-15)
|
|
7
19
|
|
|
8
20
|
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const tslib_1 = require("tslib");
|
|
4
|
+
tslib_1.__exportStar(require("./CreateCellCommand"), exports);
|
|
5
|
+
tslib_1.__exportStar(require("./CreateCrossAccountAuthorizationCommand"), exports);
|
|
6
|
+
tslib_1.__exportStar(require("./CreateReadinessCheckCommand"), exports);
|
|
7
|
+
tslib_1.__exportStar(require("./CreateRecoveryGroupCommand"), exports);
|
|
8
|
+
tslib_1.__exportStar(require("./CreateResourceSetCommand"), exports);
|
|
9
|
+
tslib_1.__exportStar(require("./DeleteCellCommand"), exports);
|
|
10
|
+
tslib_1.__exportStar(require("./DeleteCrossAccountAuthorizationCommand"), exports);
|
|
11
|
+
tslib_1.__exportStar(require("./DeleteReadinessCheckCommand"), exports);
|
|
12
|
+
tslib_1.__exportStar(require("./DeleteRecoveryGroupCommand"), exports);
|
|
13
|
+
tslib_1.__exportStar(require("./DeleteResourceSetCommand"), exports);
|
|
14
|
+
tslib_1.__exportStar(require("./GetArchitectureRecommendationsCommand"), exports);
|
|
15
|
+
tslib_1.__exportStar(require("./GetCellCommand"), exports);
|
|
16
|
+
tslib_1.__exportStar(require("./GetCellReadinessSummaryCommand"), exports);
|
|
17
|
+
tslib_1.__exportStar(require("./GetReadinessCheckCommand"), exports);
|
|
18
|
+
tslib_1.__exportStar(require("./GetReadinessCheckResourceStatusCommand"), exports);
|
|
19
|
+
tslib_1.__exportStar(require("./GetReadinessCheckStatusCommand"), exports);
|
|
20
|
+
tslib_1.__exportStar(require("./GetRecoveryGroupCommand"), exports);
|
|
21
|
+
tslib_1.__exportStar(require("./GetRecoveryGroupReadinessSummaryCommand"), exports);
|
|
22
|
+
tslib_1.__exportStar(require("./GetResourceSetCommand"), exports);
|
|
23
|
+
tslib_1.__exportStar(require("./ListCellsCommand"), exports);
|
|
24
|
+
tslib_1.__exportStar(require("./ListCrossAccountAuthorizationsCommand"), exports);
|
|
25
|
+
tslib_1.__exportStar(require("./ListReadinessChecksCommand"), exports);
|
|
26
|
+
tslib_1.__exportStar(require("./ListRecoveryGroupsCommand"), exports);
|
|
27
|
+
tslib_1.__exportStar(require("./ListResourceSetsCommand"), exports);
|
|
28
|
+
tslib_1.__exportStar(require("./ListRulesCommand"), exports);
|
|
29
|
+
tslib_1.__exportStar(require("./ListTagsForResourcesCommand"), exports);
|
|
30
|
+
tslib_1.__exportStar(require("./TagResourceCommand"), exports);
|
|
31
|
+
tslib_1.__exportStar(require("./UntagResourceCommand"), exports);
|
|
32
|
+
tslib_1.__exportStar(require("./UpdateCellCommand"), exports);
|
|
33
|
+
tslib_1.__exportStar(require("./UpdateReadinessCheckCommand"), exports);
|
|
34
|
+
tslib_1.__exportStar(require("./UpdateRecoveryGroupCommand"), exports);
|
|
35
|
+
tslib_1.__exportStar(require("./UpdateResourceSetCommand"), exports);
|
package/dist-cjs/index.js
CHANGED
|
@@ -1,49 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const tslib_1 = require("tslib");
|
|
4
|
-
tslib_1.__exportStar(require("./Route53RecoveryReadinessClient"), exports);
|
|
5
4
|
tslib_1.__exportStar(require("./Route53RecoveryReadiness"), exports);
|
|
6
|
-
tslib_1.__exportStar(require("./
|
|
7
|
-
tslib_1.__exportStar(require("./commands
|
|
8
|
-
tslib_1.__exportStar(require("./
|
|
9
|
-
tslib_1.__exportStar(require("./
|
|
10
|
-
tslib_1.__exportStar(require("./commands/CreateResourceSetCommand"), exports);
|
|
11
|
-
tslib_1.__exportStar(require("./commands/DeleteCellCommand"), exports);
|
|
12
|
-
tslib_1.__exportStar(require("./commands/DeleteCrossAccountAuthorizationCommand"), exports);
|
|
13
|
-
tslib_1.__exportStar(require("./commands/DeleteReadinessCheckCommand"), exports);
|
|
14
|
-
tslib_1.__exportStar(require("./commands/DeleteRecoveryGroupCommand"), exports);
|
|
15
|
-
tslib_1.__exportStar(require("./commands/DeleteResourceSetCommand"), exports);
|
|
16
|
-
tslib_1.__exportStar(require("./commands/GetArchitectureRecommendationsCommand"), exports);
|
|
17
|
-
tslib_1.__exportStar(require("./commands/GetCellCommand"), exports);
|
|
18
|
-
tslib_1.__exportStar(require("./commands/GetCellReadinessSummaryCommand"), exports);
|
|
19
|
-
tslib_1.__exportStar(require("./pagination/GetCellReadinessSummaryPaginator"), exports);
|
|
20
|
-
tslib_1.__exportStar(require("./commands/GetReadinessCheckCommand"), exports);
|
|
21
|
-
tslib_1.__exportStar(require("./commands/GetReadinessCheckResourceStatusCommand"), exports);
|
|
22
|
-
tslib_1.__exportStar(require("./pagination/GetReadinessCheckResourceStatusPaginator"), exports);
|
|
23
|
-
tslib_1.__exportStar(require("./commands/GetReadinessCheckStatusCommand"), exports);
|
|
24
|
-
tslib_1.__exportStar(require("./pagination/GetReadinessCheckStatusPaginator"), exports);
|
|
25
|
-
tslib_1.__exportStar(require("./commands/GetRecoveryGroupCommand"), exports);
|
|
26
|
-
tslib_1.__exportStar(require("./commands/GetRecoveryGroupReadinessSummaryCommand"), exports);
|
|
27
|
-
tslib_1.__exportStar(require("./pagination/GetRecoveryGroupReadinessSummaryPaginator"), exports);
|
|
28
|
-
tslib_1.__exportStar(require("./commands/GetResourceSetCommand"), exports);
|
|
29
|
-
tslib_1.__exportStar(require("./commands/ListCellsCommand"), exports);
|
|
30
|
-
tslib_1.__exportStar(require("./pagination/ListCellsPaginator"), exports);
|
|
31
|
-
tslib_1.__exportStar(require("./commands/ListCrossAccountAuthorizationsCommand"), exports);
|
|
32
|
-
tslib_1.__exportStar(require("./pagination/ListCrossAccountAuthorizationsPaginator"), exports);
|
|
33
|
-
tslib_1.__exportStar(require("./commands/ListReadinessChecksCommand"), exports);
|
|
34
|
-
tslib_1.__exportStar(require("./pagination/ListReadinessChecksPaginator"), exports);
|
|
35
|
-
tslib_1.__exportStar(require("./commands/ListRecoveryGroupsCommand"), exports);
|
|
36
|
-
tslib_1.__exportStar(require("./pagination/ListRecoveryGroupsPaginator"), exports);
|
|
37
|
-
tslib_1.__exportStar(require("./commands/ListResourceSetsCommand"), exports);
|
|
38
|
-
tslib_1.__exportStar(require("./pagination/ListResourceSetsPaginator"), exports);
|
|
39
|
-
tslib_1.__exportStar(require("./commands/ListRulesCommand"), exports);
|
|
40
|
-
tslib_1.__exportStar(require("./pagination/ListRulesPaginator"), exports);
|
|
41
|
-
tslib_1.__exportStar(require("./commands/ListTagsForResourcesCommand"), exports);
|
|
42
|
-
tslib_1.__exportStar(require("./commands/TagResourceCommand"), exports);
|
|
43
|
-
tslib_1.__exportStar(require("./commands/UntagResourceCommand"), exports);
|
|
44
|
-
tslib_1.__exportStar(require("./commands/UpdateCellCommand"), exports);
|
|
45
|
-
tslib_1.__exportStar(require("./commands/UpdateReadinessCheckCommand"), exports);
|
|
46
|
-
tslib_1.__exportStar(require("./commands/UpdateRecoveryGroupCommand"), exports);
|
|
47
|
-
tslib_1.__exportStar(require("./commands/UpdateResourceSetCommand"), exports);
|
|
48
|
-
tslib_1.__exportStar(require("./pagination/Interfaces"), exports);
|
|
49
|
-
tslib_1.__exportStar(require("./models/index"), exports);
|
|
5
|
+
tslib_1.__exportStar(require("./Route53RecoveryReadinessClient"), exports);
|
|
6
|
+
tslib_1.__exportStar(require("./commands"), exports);
|
|
7
|
+
tslib_1.__exportStar(require("./models"), exports);
|
|
8
|
+
tslib_1.__exportStar(require("./pagination"), exports);
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const tslib_1 = require("tslib");
|
|
4
|
+
tslib_1.__exportStar(require("./GetCellReadinessSummaryPaginator"), exports);
|
|
5
|
+
tslib_1.__exportStar(require("./GetReadinessCheckResourceStatusPaginator"), exports);
|
|
6
|
+
tslib_1.__exportStar(require("./GetReadinessCheckStatusPaginator"), exports);
|
|
7
|
+
tslib_1.__exportStar(require("./GetRecoveryGroupReadinessSummaryPaginator"), exports);
|
|
8
|
+
tslib_1.__exportStar(require("./Interfaces"), exports);
|
|
9
|
+
tslib_1.__exportStar(require("./ListCellsPaginator"), exports);
|
|
10
|
+
tslib_1.__exportStar(require("./ListCrossAccountAuthorizationsPaginator"), exports);
|
|
11
|
+
tslib_1.__exportStar(require("./ListReadinessChecksPaginator"), exports);
|
|
12
|
+
tslib_1.__exportStar(require("./ListRecoveryGroupsPaginator"), exports);
|
|
13
|
+
tslib_1.__exportStar(require("./ListResourceSetsPaginator"), exports);
|
|
14
|
+
tslib_1.__exportStar(require("./ListRulesPaginator"), exports);
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
export * from "./CreateCellCommand";
|
|
2
|
+
export * from "./CreateCrossAccountAuthorizationCommand";
|
|
3
|
+
export * from "./CreateReadinessCheckCommand";
|
|
4
|
+
export * from "./CreateRecoveryGroupCommand";
|
|
5
|
+
export * from "./CreateResourceSetCommand";
|
|
6
|
+
export * from "./DeleteCellCommand";
|
|
7
|
+
export * from "./DeleteCrossAccountAuthorizationCommand";
|
|
8
|
+
export * from "./DeleteReadinessCheckCommand";
|
|
9
|
+
export * from "./DeleteRecoveryGroupCommand";
|
|
10
|
+
export * from "./DeleteResourceSetCommand";
|
|
11
|
+
export * from "./GetArchitectureRecommendationsCommand";
|
|
12
|
+
export * from "./GetCellCommand";
|
|
13
|
+
export * from "./GetCellReadinessSummaryCommand";
|
|
14
|
+
export * from "./GetReadinessCheckCommand";
|
|
15
|
+
export * from "./GetReadinessCheckResourceStatusCommand";
|
|
16
|
+
export * from "./GetReadinessCheckStatusCommand";
|
|
17
|
+
export * from "./GetRecoveryGroupCommand";
|
|
18
|
+
export * from "./GetRecoveryGroupReadinessSummaryCommand";
|
|
19
|
+
export * from "./GetResourceSetCommand";
|
|
20
|
+
export * from "./ListCellsCommand";
|
|
21
|
+
export * from "./ListCrossAccountAuthorizationsCommand";
|
|
22
|
+
export * from "./ListReadinessChecksCommand";
|
|
23
|
+
export * from "./ListRecoveryGroupsCommand";
|
|
24
|
+
export * from "./ListResourceSetsCommand";
|
|
25
|
+
export * from "./ListRulesCommand";
|
|
26
|
+
export * from "./ListTagsForResourcesCommand";
|
|
27
|
+
export * from "./TagResourceCommand";
|
|
28
|
+
export * from "./UntagResourceCommand";
|
|
29
|
+
export * from "./UpdateCellCommand";
|
|
30
|
+
export * from "./UpdateReadinessCheckCommand";
|
|
31
|
+
export * from "./UpdateRecoveryGroupCommand";
|
|
32
|
+
export * from "./UpdateResourceSetCommand";
|
package/dist-es/index.js
CHANGED
|
@@ -1,46 +1,5 @@
|
|
|
1
|
-
export * from "./Route53RecoveryReadinessClient";
|
|
2
1
|
export * from "./Route53RecoveryReadiness";
|
|
3
|
-
export * from "./
|
|
4
|
-
export * from "./commands
|
|
5
|
-
export * from "./
|
|
6
|
-
export * from "./
|
|
7
|
-
export * from "./commands/CreateResourceSetCommand";
|
|
8
|
-
export * from "./commands/DeleteCellCommand";
|
|
9
|
-
export * from "./commands/DeleteCrossAccountAuthorizationCommand";
|
|
10
|
-
export * from "./commands/DeleteReadinessCheckCommand";
|
|
11
|
-
export * from "./commands/DeleteRecoveryGroupCommand";
|
|
12
|
-
export * from "./commands/DeleteResourceSetCommand";
|
|
13
|
-
export * from "./commands/GetArchitectureRecommendationsCommand";
|
|
14
|
-
export * from "./commands/GetCellCommand";
|
|
15
|
-
export * from "./commands/GetCellReadinessSummaryCommand";
|
|
16
|
-
export * from "./pagination/GetCellReadinessSummaryPaginator";
|
|
17
|
-
export * from "./commands/GetReadinessCheckCommand";
|
|
18
|
-
export * from "./commands/GetReadinessCheckResourceStatusCommand";
|
|
19
|
-
export * from "./pagination/GetReadinessCheckResourceStatusPaginator";
|
|
20
|
-
export * from "./commands/GetReadinessCheckStatusCommand";
|
|
21
|
-
export * from "./pagination/GetReadinessCheckStatusPaginator";
|
|
22
|
-
export * from "./commands/GetRecoveryGroupCommand";
|
|
23
|
-
export * from "./commands/GetRecoveryGroupReadinessSummaryCommand";
|
|
24
|
-
export * from "./pagination/GetRecoveryGroupReadinessSummaryPaginator";
|
|
25
|
-
export * from "./commands/GetResourceSetCommand";
|
|
26
|
-
export * from "./commands/ListCellsCommand";
|
|
27
|
-
export * from "./pagination/ListCellsPaginator";
|
|
28
|
-
export * from "./commands/ListCrossAccountAuthorizationsCommand";
|
|
29
|
-
export * from "./pagination/ListCrossAccountAuthorizationsPaginator";
|
|
30
|
-
export * from "./commands/ListReadinessChecksCommand";
|
|
31
|
-
export * from "./pagination/ListReadinessChecksPaginator";
|
|
32
|
-
export * from "./commands/ListRecoveryGroupsCommand";
|
|
33
|
-
export * from "./pagination/ListRecoveryGroupsPaginator";
|
|
34
|
-
export * from "./commands/ListResourceSetsCommand";
|
|
35
|
-
export * from "./pagination/ListResourceSetsPaginator";
|
|
36
|
-
export * from "./commands/ListRulesCommand";
|
|
37
|
-
export * from "./pagination/ListRulesPaginator";
|
|
38
|
-
export * from "./commands/ListTagsForResourcesCommand";
|
|
39
|
-
export * from "./commands/TagResourceCommand";
|
|
40
|
-
export * from "./commands/UntagResourceCommand";
|
|
41
|
-
export * from "./commands/UpdateCellCommand";
|
|
42
|
-
export * from "./commands/UpdateReadinessCheckCommand";
|
|
43
|
-
export * from "./commands/UpdateRecoveryGroupCommand";
|
|
44
|
-
export * from "./commands/UpdateResourceSetCommand";
|
|
45
|
-
export * from "./pagination/Interfaces";
|
|
46
|
-
export * from "./models/index";
|
|
2
|
+
export * from "./Route53RecoveryReadinessClient";
|
|
3
|
+
export * from "./commands";
|
|
4
|
+
export * from "./models";
|
|
5
|
+
export * from "./pagination";
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export * from "./GetCellReadinessSummaryPaginator";
|
|
2
|
+
export * from "./GetReadinessCheckResourceStatusPaginator";
|
|
3
|
+
export * from "./GetReadinessCheckStatusPaginator";
|
|
4
|
+
export * from "./GetRecoveryGroupReadinessSummaryPaginator";
|
|
5
|
+
export * from "./Interfaces";
|
|
6
|
+
export * from "./ListCellsPaginator";
|
|
7
|
+
export * from "./ListCrossAccountAuthorizationsPaginator";
|
|
8
|
+
export * from "./ListReadinessChecksPaginator";
|
|
9
|
+
export * from "./ListRecoveryGroupsPaginator";
|
|
10
|
+
export * from "./ListResourceSetsPaginator";
|
|
11
|
+
export * from "./ListRulesPaginator";
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
export * from "./CreateCellCommand";
|
|
2
|
+
export * from "./CreateCrossAccountAuthorizationCommand";
|
|
3
|
+
export * from "./CreateReadinessCheckCommand";
|
|
4
|
+
export * from "./CreateRecoveryGroupCommand";
|
|
5
|
+
export * from "./CreateResourceSetCommand";
|
|
6
|
+
export * from "./DeleteCellCommand";
|
|
7
|
+
export * from "./DeleteCrossAccountAuthorizationCommand";
|
|
8
|
+
export * from "./DeleteReadinessCheckCommand";
|
|
9
|
+
export * from "./DeleteRecoveryGroupCommand";
|
|
10
|
+
export * from "./DeleteResourceSetCommand";
|
|
11
|
+
export * from "./GetArchitectureRecommendationsCommand";
|
|
12
|
+
export * from "./GetCellCommand";
|
|
13
|
+
export * from "./GetCellReadinessSummaryCommand";
|
|
14
|
+
export * from "./GetReadinessCheckCommand";
|
|
15
|
+
export * from "./GetReadinessCheckResourceStatusCommand";
|
|
16
|
+
export * from "./GetReadinessCheckStatusCommand";
|
|
17
|
+
export * from "./GetRecoveryGroupCommand";
|
|
18
|
+
export * from "./GetRecoveryGroupReadinessSummaryCommand";
|
|
19
|
+
export * from "./GetResourceSetCommand";
|
|
20
|
+
export * from "./ListCellsCommand";
|
|
21
|
+
export * from "./ListCrossAccountAuthorizationsCommand";
|
|
22
|
+
export * from "./ListReadinessChecksCommand";
|
|
23
|
+
export * from "./ListRecoveryGroupsCommand";
|
|
24
|
+
export * from "./ListResourceSetsCommand";
|
|
25
|
+
export * from "./ListRulesCommand";
|
|
26
|
+
export * from "./ListTagsForResourcesCommand";
|
|
27
|
+
export * from "./TagResourceCommand";
|
|
28
|
+
export * from "./UntagResourceCommand";
|
|
29
|
+
export * from "./UpdateCellCommand";
|
|
30
|
+
export * from "./UpdateReadinessCheckCommand";
|
|
31
|
+
export * from "./UpdateRecoveryGroupCommand";
|
|
32
|
+
export * from "./UpdateResourceSetCommand";
|
package/dist-types/index.d.ts
CHANGED
|
@@ -1,46 +1,5 @@
|
|
|
1
|
-
export * from "./Route53RecoveryReadinessClient";
|
|
2
1
|
export * from "./Route53RecoveryReadiness";
|
|
3
|
-
export * from "./
|
|
4
|
-
export * from "./commands
|
|
5
|
-
export * from "./
|
|
6
|
-
export * from "./
|
|
7
|
-
export * from "./commands/CreateResourceSetCommand";
|
|
8
|
-
export * from "./commands/DeleteCellCommand";
|
|
9
|
-
export * from "./commands/DeleteCrossAccountAuthorizationCommand";
|
|
10
|
-
export * from "./commands/DeleteReadinessCheckCommand";
|
|
11
|
-
export * from "./commands/DeleteRecoveryGroupCommand";
|
|
12
|
-
export * from "./commands/DeleteResourceSetCommand";
|
|
13
|
-
export * from "./commands/GetArchitectureRecommendationsCommand";
|
|
14
|
-
export * from "./commands/GetCellCommand";
|
|
15
|
-
export * from "./commands/GetCellReadinessSummaryCommand";
|
|
16
|
-
export * from "./pagination/GetCellReadinessSummaryPaginator";
|
|
17
|
-
export * from "./commands/GetReadinessCheckCommand";
|
|
18
|
-
export * from "./commands/GetReadinessCheckResourceStatusCommand";
|
|
19
|
-
export * from "./pagination/GetReadinessCheckResourceStatusPaginator";
|
|
20
|
-
export * from "./commands/GetReadinessCheckStatusCommand";
|
|
21
|
-
export * from "./pagination/GetReadinessCheckStatusPaginator";
|
|
22
|
-
export * from "./commands/GetRecoveryGroupCommand";
|
|
23
|
-
export * from "./commands/GetRecoveryGroupReadinessSummaryCommand";
|
|
24
|
-
export * from "./pagination/GetRecoveryGroupReadinessSummaryPaginator";
|
|
25
|
-
export * from "./commands/GetResourceSetCommand";
|
|
26
|
-
export * from "./commands/ListCellsCommand";
|
|
27
|
-
export * from "./pagination/ListCellsPaginator";
|
|
28
|
-
export * from "./commands/ListCrossAccountAuthorizationsCommand";
|
|
29
|
-
export * from "./pagination/ListCrossAccountAuthorizationsPaginator";
|
|
30
|
-
export * from "./commands/ListReadinessChecksCommand";
|
|
31
|
-
export * from "./pagination/ListReadinessChecksPaginator";
|
|
32
|
-
export * from "./commands/ListRecoveryGroupsCommand";
|
|
33
|
-
export * from "./pagination/ListRecoveryGroupsPaginator";
|
|
34
|
-
export * from "./commands/ListResourceSetsCommand";
|
|
35
|
-
export * from "./pagination/ListResourceSetsPaginator";
|
|
36
|
-
export * from "./commands/ListRulesCommand";
|
|
37
|
-
export * from "./pagination/ListRulesPaginator";
|
|
38
|
-
export * from "./commands/ListTagsForResourcesCommand";
|
|
39
|
-
export * from "./commands/TagResourceCommand";
|
|
40
|
-
export * from "./commands/UntagResourceCommand";
|
|
41
|
-
export * from "./commands/UpdateCellCommand";
|
|
42
|
-
export * from "./commands/UpdateReadinessCheckCommand";
|
|
43
|
-
export * from "./commands/UpdateRecoveryGroupCommand";
|
|
44
|
-
export * from "./commands/UpdateResourceSetCommand";
|
|
45
|
-
export * from "./pagination/Interfaces";
|
|
46
|
-
export * from "./models/index";
|
|
2
|
+
export * from "./Route53RecoveryReadinessClient";
|
|
3
|
+
export * from "./commands";
|
|
4
|
+
export * from "./models";
|
|
5
|
+
export * from "./pagination";
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export * from "./GetCellReadinessSummaryPaginator";
|
|
2
|
+
export * from "./GetReadinessCheckResourceStatusPaginator";
|
|
3
|
+
export * from "./GetReadinessCheckStatusPaginator";
|
|
4
|
+
export * from "./GetRecoveryGroupReadinessSummaryPaginator";
|
|
5
|
+
export * from "./Interfaces";
|
|
6
|
+
export * from "./ListCellsPaginator";
|
|
7
|
+
export * from "./ListCrossAccountAuthorizationsPaginator";
|
|
8
|
+
export * from "./ListReadinessChecksPaginator";
|
|
9
|
+
export * from "./ListRecoveryGroupsPaginator";
|
|
10
|
+
export * from "./ListResourceSetsPaginator";
|
|
11
|
+
export * from "./ListRulesPaginator";
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
export * from "./CreateCellCommand";
|
|
2
|
+
export * from "./CreateCrossAccountAuthorizationCommand";
|
|
3
|
+
export * from "./CreateReadinessCheckCommand";
|
|
4
|
+
export * from "./CreateRecoveryGroupCommand";
|
|
5
|
+
export * from "./CreateResourceSetCommand";
|
|
6
|
+
export * from "./DeleteCellCommand";
|
|
7
|
+
export * from "./DeleteCrossAccountAuthorizationCommand";
|
|
8
|
+
export * from "./DeleteReadinessCheckCommand";
|
|
9
|
+
export * from "./DeleteRecoveryGroupCommand";
|
|
10
|
+
export * from "./DeleteResourceSetCommand";
|
|
11
|
+
export * from "./GetArchitectureRecommendationsCommand";
|
|
12
|
+
export * from "./GetCellCommand";
|
|
13
|
+
export * from "./GetCellReadinessSummaryCommand";
|
|
14
|
+
export * from "./GetReadinessCheckCommand";
|
|
15
|
+
export * from "./GetReadinessCheckResourceStatusCommand";
|
|
16
|
+
export * from "./GetReadinessCheckStatusCommand";
|
|
17
|
+
export * from "./GetRecoveryGroupCommand";
|
|
18
|
+
export * from "./GetRecoveryGroupReadinessSummaryCommand";
|
|
19
|
+
export * from "./GetResourceSetCommand";
|
|
20
|
+
export * from "./ListCellsCommand";
|
|
21
|
+
export * from "./ListCrossAccountAuthorizationsCommand";
|
|
22
|
+
export * from "./ListReadinessChecksCommand";
|
|
23
|
+
export * from "./ListRecoveryGroupsCommand";
|
|
24
|
+
export * from "./ListResourceSetsCommand";
|
|
25
|
+
export * from "./ListRulesCommand";
|
|
26
|
+
export * from "./ListTagsForResourcesCommand";
|
|
27
|
+
export * from "./TagResourceCommand";
|
|
28
|
+
export * from "./UntagResourceCommand";
|
|
29
|
+
export * from "./UpdateCellCommand";
|
|
30
|
+
export * from "./UpdateReadinessCheckCommand";
|
|
31
|
+
export * from "./UpdateRecoveryGroupCommand";
|
|
32
|
+
export * from "./UpdateResourceSetCommand";
|
|
@@ -1,46 +1,5 @@
|
|
|
1
|
-
export * from "./Route53RecoveryReadinessClient";
|
|
2
1
|
export * from "./Route53RecoveryReadiness";
|
|
3
|
-
export * from "./
|
|
4
|
-
export * from "./commands
|
|
5
|
-
export * from "./
|
|
6
|
-
export * from "./
|
|
7
|
-
export * from "./commands/CreateResourceSetCommand";
|
|
8
|
-
export * from "./commands/DeleteCellCommand";
|
|
9
|
-
export * from "./commands/DeleteCrossAccountAuthorizationCommand";
|
|
10
|
-
export * from "./commands/DeleteReadinessCheckCommand";
|
|
11
|
-
export * from "./commands/DeleteRecoveryGroupCommand";
|
|
12
|
-
export * from "./commands/DeleteResourceSetCommand";
|
|
13
|
-
export * from "./commands/GetArchitectureRecommendationsCommand";
|
|
14
|
-
export * from "./commands/GetCellCommand";
|
|
15
|
-
export * from "./commands/GetCellReadinessSummaryCommand";
|
|
16
|
-
export * from "./pagination/GetCellReadinessSummaryPaginator";
|
|
17
|
-
export * from "./commands/GetReadinessCheckCommand";
|
|
18
|
-
export * from "./commands/GetReadinessCheckResourceStatusCommand";
|
|
19
|
-
export * from "./pagination/GetReadinessCheckResourceStatusPaginator";
|
|
20
|
-
export * from "./commands/GetReadinessCheckStatusCommand";
|
|
21
|
-
export * from "./pagination/GetReadinessCheckStatusPaginator";
|
|
22
|
-
export * from "./commands/GetRecoveryGroupCommand";
|
|
23
|
-
export * from "./commands/GetRecoveryGroupReadinessSummaryCommand";
|
|
24
|
-
export * from "./pagination/GetRecoveryGroupReadinessSummaryPaginator";
|
|
25
|
-
export * from "./commands/GetResourceSetCommand";
|
|
26
|
-
export * from "./commands/ListCellsCommand";
|
|
27
|
-
export * from "./pagination/ListCellsPaginator";
|
|
28
|
-
export * from "./commands/ListCrossAccountAuthorizationsCommand";
|
|
29
|
-
export * from "./pagination/ListCrossAccountAuthorizationsPaginator";
|
|
30
|
-
export * from "./commands/ListReadinessChecksCommand";
|
|
31
|
-
export * from "./pagination/ListReadinessChecksPaginator";
|
|
32
|
-
export * from "./commands/ListRecoveryGroupsCommand";
|
|
33
|
-
export * from "./pagination/ListRecoveryGroupsPaginator";
|
|
34
|
-
export * from "./commands/ListResourceSetsCommand";
|
|
35
|
-
export * from "./pagination/ListResourceSetsPaginator";
|
|
36
|
-
export * from "./commands/ListRulesCommand";
|
|
37
|
-
export * from "./pagination/ListRulesPaginator";
|
|
38
|
-
export * from "./commands/ListTagsForResourcesCommand";
|
|
39
|
-
export * from "./commands/TagResourceCommand";
|
|
40
|
-
export * from "./commands/UntagResourceCommand";
|
|
41
|
-
export * from "./commands/UpdateCellCommand";
|
|
42
|
-
export * from "./commands/UpdateReadinessCheckCommand";
|
|
43
|
-
export * from "./commands/UpdateRecoveryGroupCommand";
|
|
44
|
-
export * from "./commands/UpdateResourceSetCommand";
|
|
45
|
-
export * from "./pagination/Interfaces";
|
|
46
|
-
export * from "./models/index";
|
|
2
|
+
export * from "./Route53RecoveryReadinessClient";
|
|
3
|
+
export * from "./commands";
|
|
4
|
+
export * from "./models";
|
|
5
|
+
export * from "./pagination";
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export * from "./GetCellReadinessSummaryPaginator";
|
|
2
|
+
export * from "./GetReadinessCheckResourceStatusPaginator";
|
|
3
|
+
export * from "./GetReadinessCheckStatusPaginator";
|
|
4
|
+
export * from "./GetRecoveryGroupReadinessSummaryPaginator";
|
|
5
|
+
export * from "./Interfaces";
|
|
6
|
+
export * from "./ListCellsPaginator";
|
|
7
|
+
export * from "./ListCrossAccountAuthorizationsPaginator";
|
|
8
|
+
export * from "./ListReadinessChecksPaginator";
|
|
9
|
+
export * from "./ListRecoveryGroupsPaginator";
|
|
10
|
+
export * from "./ListResourceSetsPaginator";
|
|
11
|
+
export * from "./ListRulesPaginator";
|
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.38.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "yarn build:cjs && yarn build:es && yarn build:types",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.json",
|
|
@@ -21,38 +21,38 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "^1.1.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "^1.1.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
28
|
-
"@aws-sdk/hash-node": "3.
|
|
29
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
30
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
31
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
32
|
-
"@aws-sdk/middleware-logger": "3.
|
|
33
|
-
"@aws-sdk/middleware-retry": "3.
|
|
34
|
-
"@aws-sdk/middleware-serde": "3.
|
|
35
|
-
"@aws-sdk/middleware-signing": "3.
|
|
36
|
-
"@aws-sdk/middleware-stack": "3.
|
|
37
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
38
|
-
"@aws-sdk/node-config-provider": "3.
|
|
39
|
-
"@aws-sdk/node-http-handler": "3.
|
|
40
|
-
"@aws-sdk/protocol-http": "3.
|
|
41
|
-
"@aws-sdk/smithy-client": "3.
|
|
42
|
-
"@aws-sdk/types": "3.
|
|
43
|
-
"@aws-sdk/url-parser": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.38.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.38.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.38.0",
|
|
27
|
+
"@aws-sdk/fetch-http-handler": "3.38.0",
|
|
28
|
+
"@aws-sdk/hash-node": "3.38.0",
|
|
29
|
+
"@aws-sdk/invalid-dependency": "3.38.0",
|
|
30
|
+
"@aws-sdk/middleware-content-length": "3.38.0",
|
|
31
|
+
"@aws-sdk/middleware-host-header": "3.38.0",
|
|
32
|
+
"@aws-sdk/middleware-logger": "3.38.0",
|
|
33
|
+
"@aws-sdk/middleware-retry": "3.38.0",
|
|
34
|
+
"@aws-sdk/middleware-serde": "3.38.0",
|
|
35
|
+
"@aws-sdk/middleware-signing": "3.38.0",
|
|
36
|
+
"@aws-sdk/middleware-stack": "3.38.0",
|
|
37
|
+
"@aws-sdk/middleware-user-agent": "3.38.0",
|
|
38
|
+
"@aws-sdk/node-config-provider": "3.38.0",
|
|
39
|
+
"@aws-sdk/node-http-handler": "3.38.0",
|
|
40
|
+
"@aws-sdk/protocol-http": "3.38.0",
|
|
41
|
+
"@aws-sdk/smithy-client": "3.38.0",
|
|
42
|
+
"@aws-sdk/types": "3.38.0",
|
|
43
|
+
"@aws-sdk/url-parser": "3.38.0",
|
|
44
44
|
"@aws-sdk/util-base64-browser": "3.37.0",
|
|
45
45
|
"@aws-sdk/util-base64-node": "3.37.0",
|
|
46
46
|
"@aws-sdk/util-body-length-browser": "3.37.0",
|
|
47
47
|
"@aws-sdk/util-body-length-node": "3.37.0",
|
|
48
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
49
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
48
|
+
"@aws-sdk/util-user-agent-browser": "3.38.0",
|
|
49
|
+
"@aws-sdk/util-user-agent-node": "3.38.0",
|
|
50
50
|
"@aws-sdk/util-utf8-browser": "3.37.0",
|
|
51
51
|
"@aws-sdk/util-utf8-node": "3.37.0",
|
|
52
52
|
"tslib": "^2.3.0"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
|
-
"@aws-sdk/client-documentation-generator": "3.
|
|
55
|
+
"@aws-sdk/service-client-documentation-generator": "3.38.0",
|
|
56
56
|
"@types/node": "^12.7.5",
|
|
57
57
|
"downlevel-dts": "0.7.0",
|
|
58
58
|
"jest": "^26.1.0",
|