@aws-sdk/client-route53-recovery-readiness 3.300.0 → 3.303.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/models/models_0.js +6 -7
- package/dist-es/models/models_0.js +6 -7
- package/dist-types/commands/CreateCellCommand.d.ts +3 -3
- package/dist-types/commands/CreateCrossAccountAuthorizationCommand.d.ts +1 -1
- package/dist-types/commands/CreateReadinessCheckCommand.d.ts +2 -2
- package/dist-types/commands/CreateRecoveryGroupCommand.d.ts +3 -3
- package/dist-types/commands/CreateResourceSetCommand.d.ts +9 -9
- package/dist-types/commands/DeleteCellCommand.d.ts +1 -1
- package/dist-types/commands/DeleteCrossAccountAuthorizationCommand.d.ts +1 -1
- package/dist-types/commands/DeleteReadinessCheckCommand.d.ts +1 -1
- package/dist-types/commands/DeleteRecoveryGroupCommand.d.ts +1 -1
- package/dist-types/commands/DeleteResourceSetCommand.d.ts +1 -1
- package/dist-types/commands/GetArchitectureRecommendationsCommand.d.ts +1 -1
- package/dist-types/commands/GetCellCommand.d.ts +1 -1
- package/dist-types/commands/GetCellReadinessSummaryCommand.d.ts +1 -1
- package/dist-types/commands/GetReadinessCheckCommand.d.ts +1 -1
- package/dist-types/commands/GetReadinessCheckResourceStatusCommand.d.ts +1 -1
- package/dist-types/commands/GetReadinessCheckStatusCommand.d.ts +1 -1
- package/dist-types/commands/GetRecoveryGroupCommand.d.ts +1 -1
- package/dist-types/commands/GetRecoveryGroupReadinessSummaryCommand.d.ts +1 -1
- package/dist-types/commands/GetResourceSetCommand.d.ts +1 -1
- package/dist-types/commands/ListCellsCommand.d.ts +1 -1
- package/dist-types/commands/ListCrossAccountAuthorizationsCommand.d.ts +1 -1
- package/dist-types/commands/ListReadinessChecksCommand.d.ts +1 -1
- package/dist-types/commands/ListRecoveryGroupsCommand.d.ts +1 -1
- package/dist-types/commands/ListResourceSetsCommand.d.ts +1 -1
- package/dist-types/commands/ListRulesCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourcesCommand.d.ts +1 -1
- package/dist-types/commands/TagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UpdateCellCommand.d.ts +2 -2
- package/dist-types/commands/UpdateReadinessCheckCommand.d.ts +1 -1
- package/dist-types/commands/UpdateRecoveryGroupCommand.d.ts +2 -2
- package/dist-types/commands/UpdateResourceSetCommand.d.ts +8 -8
- package/dist-types/models/models_0.d.ts +11 -6
- package/dist-types/ts3.4/models/models_0.d.ts +7 -6
- package/package.json +34 -34
|
@@ -2,13 +2,12 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.ResourceNotFoundException = exports.ValidationException = exports.ThrottlingException = exports.InternalServerException = exports.ConflictException = exports.AccessDeniedException = exports.Readiness = void 0;
|
|
4
4
|
const Route53RecoveryReadinessServiceException_1 = require("./Route53RecoveryReadinessServiceException");
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
})(Readiness = exports.Readiness || (exports.Readiness = {}));
|
|
5
|
+
exports.Readiness = {
|
|
6
|
+
NOT_AUTHORIZED: "NOT_AUTHORIZED",
|
|
7
|
+
NOT_READY: "NOT_READY",
|
|
8
|
+
READY: "READY",
|
|
9
|
+
UNKNOWN: "UNKNOWN",
|
|
10
|
+
};
|
|
12
11
|
class AccessDeniedException extends Route53RecoveryReadinessServiceException_1.Route53RecoveryReadinessServiceException {
|
|
13
12
|
constructor(opts) {
|
|
14
13
|
super({
|
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
import { Route53RecoveryReadinessServiceException as __BaseException } from "./Route53RecoveryReadinessServiceException";
|
|
2
|
-
export
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
})(Readiness || (Readiness = {}));
|
|
2
|
+
export const Readiness = {
|
|
3
|
+
NOT_AUTHORIZED: "NOT_AUTHORIZED",
|
|
4
|
+
NOT_READY: "NOT_READY",
|
|
5
|
+
READY: "READY",
|
|
6
|
+
UNKNOWN: "UNKNOWN",
|
|
7
|
+
};
|
|
9
8
|
export class AccessDeniedException extends __BaseException {
|
|
10
9
|
constructor(opts) {
|
|
11
10
|
super({
|
|
@@ -26,12 +26,12 @@ export interface CreateCellCommandOutput extends CreateCellResponse, __MetadataB
|
|
|
26
26
|
* import { Route53RecoveryReadinessClient, CreateCellCommand } from "@aws-sdk/client-route53-recovery-readiness"; // ES Modules import
|
|
27
27
|
* // const { Route53RecoveryReadinessClient, CreateCellCommand } = require("@aws-sdk/client-route53-recovery-readiness"); // CommonJS import
|
|
28
28
|
* const client = new Route53RecoveryReadinessClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // CreateCellRequest
|
|
30
30
|
* CellName: "STRING_VALUE", // required
|
|
31
|
-
* Cells: [
|
|
31
|
+
* Cells: [ // __listOf__string
|
|
32
32
|
* "STRING_VALUE",
|
|
33
33
|
* ],
|
|
34
|
-
* Tags: {
|
|
34
|
+
* Tags: { // Tags
|
|
35
35
|
* "<keys>": "STRING_VALUE",
|
|
36
36
|
* },
|
|
37
37
|
* };
|
|
@@ -26,7 +26,7 @@ export interface CreateCrossAccountAuthorizationCommandOutput extends CreateCros
|
|
|
26
26
|
* import { Route53RecoveryReadinessClient, CreateCrossAccountAuthorizationCommand } from "@aws-sdk/client-route53-recovery-readiness"; // ES Modules import
|
|
27
27
|
* // const { Route53RecoveryReadinessClient, CreateCrossAccountAuthorizationCommand } = require("@aws-sdk/client-route53-recovery-readiness"); // CommonJS import
|
|
28
28
|
* const client = new Route53RecoveryReadinessClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // CreateCrossAccountAuthorizationRequest
|
|
30
30
|
* CrossAccountAuthorization: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new CreateCrossAccountAuthorizationCommand(input);
|
|
@@ -26,10 +26,10 @@ export interface CreateReadinessCheckCommandOutput extends CreateReadinessCheckR
|
|
|
26
26
|
* import { Route53RecoveryReadinessClient, CreateReadinessCheckCommand } from "@aws-sdk/client-route53-recovery-readiness"; // ES Modules import
|
|
27
27
|
* // const { Route53RecoveryReadinessClient, CreateReadinessCheckCommand } = require("@aws-sdk/client-route53-recovery-readiness"); // CommonJS import
|
|
28
28
|
* const client = new Route53RecoveryReadinessClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // CreateReadinessCheckRequest
|
|
30
30
|
* ReadinessCheckName: "STRING_VALUE", // required
|
|
31
31
|
* ResourceSetName: "STRING_VALUE", // required
|
|
32
|
-
* Tags: {
|
|
32
|
+
* Tags: { // Tags
|
|
33
33
|
* "<keys>": "STRING_VALUE",
|
|
34
34
|
* },
|
|
35
35
|
* };
|
|
@@ -26,12 +26,12 @@ export interface CreateRecoveryGroupCommandOutput extends CreateRecoveryGroupRes
|
|
|
26
26
|
* import { Route53RecoveryReadinessClient, CreateRecoveryGroupCommand } from "@aws-sdk/client-route53-recovery-readiness"; // ES Modules import
|
|
27
27
|
* // const { Route53RecoveryReadinessClient, CreateRecoveryGroupCommand } = require("@aws-sdk/client-route53-recovery-readiness"); // CommonJS import
|
|
28
28
|
* const client = new Route53RecoveryReadinessClient(config);
|
|
29
|
-
* const input = {
|
|
30
|
-
* Cells: [
|
|
29
|
+
* const input = { // CreateRecoveryGroupRequest
|
|
30
|
+
* Cells: [ // __listOf__string
|
|
31
31
|
* "STRING_VALUE",
|
|
32
32
|
* ],
|
|
33
33
|
* RecoveryGroupName: "STRING_VALUE", // required
|
|
34
|
-
* Tags: {
|
|
34
|
+
* Tags: { // Tags
|
|
35
35
|
* "<keys>": "STRING_VALUE",
|
|
36
36
|
* },
|
|
37
37
|
* };
|
|
@@ -26,34 +26,34 @@ export interface CreateResourceSetCommandOutput extends CreateResourceSetRespons
|
|
|
26
26
|
* import { Route53RecoveryReadinessClient, CreateResourceSetCommand } from "@aws-sdk/client-route53-recovery-readiness"; // ES Modules import
|
|
27
27
|
* // const { Route53RecoveryReadinessClient, CreateResourceSetCommand } = require("@aws-sdk/client-route53-recovery-readiness"); // CommonJS import
|
|
28
28
|
* const client = new Route53RecoveryReadinessClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // CreateResourceSetRequest
|
|
30
30
|
* ResourceSetName: "STRING_VALUE", // required
|
|
31
31
|
* ResourceSetType: "STRING_VALUE", // required
|
|
32
|
-
* Resources: [ // required
|
|
33
|
-
* {
|
|
32
|
+
* Resources: [ // __listOfResource // required
|
|
33
|
+
* { // Resource
|
|
34
34
|
* ComponentId: "STRING_VALUE",
|
|
35
|
-
* DnsTargetResource: {
|
|
35
|
+
* DnsTargetResource: { // DNSTargetResource
|
|
36
36
|
* DomainName: "STRING_VALUE",
|
|
37
37
|
* HostedZoneArn: "STRING_VALUE",
|
|
38
38
|
* RecordSetId: "STRING_VALUE",
|
|
39
39
|
* RecordType: "STRING_VALUE",
|
|
40
|
-
* TargetResource: {
|
|
41
|
-
* NLBResource: {
|
|
40
|
+
* TargetResource: { // TargetResource
|
|
41
|
+
* NLBResource: { // NLBResource
|
|
42
42
|
* Arn: "STRING_VALUE",
|
|
43
43
|
* },
|
|
44
|
-
* R53Resource: {
|
|
44
|
+
* R53Resource: { // R53ResourceRecord
|
|
45
45
|
* DomainName: "STRING_VALUE",
|
|
46
46
|
* RecordSetId: "STRING_VALUE",
|
|
47
47
|
* },
|
|
48
48
|
* },
|
|
49
49
|
* },
|
|
50
|
-
* ReadinessScopes: [
|
|
50
|
+
* ReadinessScopes: [ // __listOf__string
|
|
51
51
|
* "STRING_VALUE",
|
|
52
52
|
* ],
|
|
53
53
|
* ResourceArn: "STRING_VALUE",
|
|
54
54
|
* },
|
|
55
55
|
* ],
|
|
56
|
-
* Tags: {
|
|
56
|
+
* Tags: { // Tags
|
|
57
57
|
* "<keys>": "STRING_VALUE",
|
|
58
58
|
* },
|
|
59
59
|
* };
|
|
@@ -26,7 +26,7 @@ export interface DeleteCellCommandOutput extends __MetadataBearer {
|
|
|
26
26
|
* import { Route53RecoveryReadinessClient, DeleteCellCommand } from "@aws-sdk/client-route53-recovery-readiness"; // ES Modules import
|
|
27
27
|
* // const { Route53RecoveryReadinessClient, DeleteCellCommand } = require("@aws-sdk/client-route53-recovery-readiness"); // CommonJS import
|
|
28
28
|
* const client = new Route53RecoveryReadinessClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DeleteCellRequest
|
|
30
30
|
* CellName: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteCellCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface DeleteCrossAccountAuthorizationCommandOutput extends DeleteCros
|
|
|
26
26
|
* import { Route53RecoveryReadinessClient, DeleteCrossAccountAuthorizationCommand } from "@aws-sdk/client-route53-recovery-readiness"; // ES Modules import
|
|
27
27
|
* // const { Route53RecoveryReadinessClient, DeleteCrossAccountAuthorizationCommand } = require("@aws-sdk/client-route53-recovery-readiness"); // CommonJS import
|
|
28
28
|
* const client = new Route53RecoveryReadinessClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DeleteCrossAccountAuthorizationRequest
|
|
30
30
|
* CrossAccountAuthorization: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteCrossAccountAuthorizationCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface DeleteReadinessCheckCommandOutput extends __MetadataBearer {
|
|
|
26
26
|
* import { Route53RecoveryReadinessClient, DeleteReadinessCheckCommand } from "@aws-sdk/client-route53-recovery-readiness"; // ES Modules import
|
|
27
27
|
* // const { Route53RecoveryReadinessClient, DeleteReadinessCheckCommand } = require("@aws-sdk/client-route53-recovery-readiness"); // CommonJS import
|
|
28
28
|
* const client = new Route53RecoveryReadinessClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DeleteReadinessCheckRequest
|
|
30
30
|
* ReadinessCheckName: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteReadinessCheckCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface DeleteRecoveryGroupCommandOutput extends __MetadataBearer {
|
|
|
26
26
|
* import { Route53RecoveryReadinessClient, DeleteRecoveryGroupCommand } from "@aws-sdk/client-route53-recovery-readiness"; // ES Modules import
|
|
27
27
|
* // const { Route53RecoveryReadinessClient, DeleteRecoveryGroupCommand } = require("@aws-sdk/client-route53-recovery-readiness"); // CommonJS import
|
|
28
28
|
* const client = new Route53RecoveryReadinessClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DeleteRecoveryGroupRequest
|
|
30
30
|
* RecoveryGroupName: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteRecoveryGroupCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface DeleteResourceSetCommandOutput extends __MetadataBearer {
|
|
|
26
26
|
* import { Route53RecoveryReadinessClient, DeleteResourceSetCommand } from "@aws-sdk/client-route53-recovery-readiness"; // ES Modules import
|
|
27
27
|
* // const { Route53RecoveryReadinessClient, DeleteResourceSetCommand } = require("@aws-sdk/client-route53-recovery-readiness"); // CommonJS import
|
|
28
28
|
* const client = new Route53RecoveryReadinessClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DeleteResourceSetRequest
|
|
30
30
|
* ResourceSetName: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteResourceSetCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface GetArchitectureRecommendationsCommandOutput extends GetArchitec
|
|
|
26
26
|
* import { Route53RecoveryReadinessClient, GetArchitectureRecommendationsCommand } from "@aws-sdk/client-route53-recovery-readiness"; // ES Modules import
|
|
27
27
|
* // const { Route53RecoveryReadinessClient, GetArchitectureRecommendationsCommand } = require("@aws-sdk/client-route53-recovery-readiness"); // CommonJS import
|
|
28
28
|
* const client = new Route53RecoveryReadinessClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // GetArchitectureRecommendationsRequest
|
|
30
30
|
* MaxResults: Number("int"),
|
|
31
31
|
* NextToken: "STRING_VALUE",
|
|
32
32
|
* RecoveryGroupName: "STRING_VALUE", // required
|
|
@@ -26,7 +26,7 @@ export interface GetCellCommandOutput extends GetCellResponse, __MetadataBearer
|
|
|
26
26
|
* import { Route53RecoveryReadinessClient, GetCellCommand } from "@aws-sdk/client-route53-recovery-readiness"; // ES Modules import
|
|
27
27
|
* // const { Route53RecoveryReadinessClient, GetCellCommand } = require("@aws-sdk/client-route53-recovery-readiness"); // CommonJS import
|
|
28
28
|
* const client = new Route53RecoveryReadinessClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // GetCellRequest
|
|
30
30
|
* CellName: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetCellCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface GetCellReadinessSummaryCommandOutput extends GetCellReadinessSu
|
|
|
26
26
|
* import { Route53RecoveryReadinessClient, GetCellReadinessSummaryCommand } from "@aws-sdk/client-route53-recovery-readiness"; // ES Modules import
|
|
27
27
|
* // const { Route53RecoveryReadinessClient, GetCellReadinessSummaryCommand } = require("@aws-sdk/client-route53-recovery-readiness"); // CommonJS import
|
|
28
28
|
* const client = new Route53RecoveryReadinessClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // GetCellReadinessSummaryRequest
|
|
30
30
|
* CellName: "STRING_VALUE", // required
|
|
31
31
|
* MaxResults: Number("int"),
|
|
32
32
|
* NextToken: "STRING_VALUE",
|
|
@@ -26,7 +26,7 @@ export interface GetReadinessCheckCommandOutput extends GetReadinessCheckRespons
|
|
|
26
26
|
* import { Route53RecoveryReadinessClient, GetReadinessCheckCommand } from "@aws-sdk/client-route53-recovery-readiness"; // ES Modules import
|
|
27
27
|
* // const { Route53RecoveryReadinessClient, GetReadinessCheckCommand } = require("@aws-sdk/client-route53-recovery-readiness"); // CommonJS import
|
|
28
28
|
* const client = new Route53RecoveryReadinessClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // GetReadinessCheckRequest
|
|
30
30
|
* ReadinessCheckName: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetReadinessCheckCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface GetReadinessCheckResourceStatusCommandOutput extends GetReadine
|
|
|
26
26
|
* import { Route53RecoveryReadinessClient, GetReadinessCheckResourceStatusCommand } from "@aws-sdk/client-route53-recovery-readiness"; // ES Modules import
|
|
27
27
|
* // const { Route53RecoveryReadinessClient, GetReadinessCheckResourceStatusCommand } = require("@aws-sdk/client-route53-recovery-readiness"); // CommonJS import
|
|
28
28
|
* const client = new Route53RecoveryReadinessClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // GetReadinessCheckResourceStatusRequest
|
|
30
30
|
* MaxResults: Number("int"),
|
|
31
31
|
* NextToken: "STRING_VALUE",
|
|
32
32
|
* ReadinessCheckName: "STRING_VALUE", // required
|
|
@@ -26,7 +26,7 @@ export interface GetReadinessCheckStatusCommandOutput extends GetReadinessCheckS
|
|
|
26
26
|
* import { Route53RecoveryReadinessClient, GetReadinessCheckStatusCommand } from "@aws-sdk/client-route53-recovery-readiness"; // ES Modules import
|
|
27
27
|
* // const { Route53RecoveryReadinessClient, GetReadinessCheckStatusCommand } = require("@aws-sdk/client-route53-recovery-readiness"); // CommonJS import
|
|
28
28
|
* const client = new Route53RecoveryReadinessClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // GetReadinessCheckStatusRequest
|
|
30
30
|
* MaxResults: Number("int"),
|
|
31
31
|
* NextToken: "STRING_VALUE",
|
|
32
32
|
* ReadinessCheckName: "STRING_VALUE", // required
|
|
@@ -26,7 +26,7 @@ export interface GetRecoveryGroupCommandOutput extends GetRecoveryGroupResponse,
|
|
|
26
26
|
* import { Route53RecoveryReadinessClient, GetRecoveryGroupCommand } from "@aws-sdk/client-route53-recovery-readiness"; // ES Modules import
|
|
27
27
|
* // const { Route53RecoveryReadinessClient, GetRecoveryGroupCommand } = require("@aws-sdk/client-route53-recovery-readiness"); // CommonJS import
|
|
28
28
|
* const client = new Route53RecoveryReadinessClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // GetRecoveryGroupRequest
|
|
30
30
|
* RecoveryGroupName: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetRecoveryGroupCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface GetRecoveryGroupReadinessSummaryCommandOutput extends GetRecove
|
|
|
26
26
|
* import { Route53RecoveryReadinessClient, GetRecoveryGroupReadinessSummaryCommand } from "@aws-sdk/client-route53-recovery-readiness"; // ES Modules import
|
|
27
27
|
* // const { Route53RecoveryReadinessClient, GetRecoveryGroupReadinessSummaryCommand } = require("@aws-sdk/client-route53-recovery-readiness"); // CommonJS import
|
|
28
28
|
* const client = new Route53RecoveryReadinessClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // GetRecoveryGroupReadinessSummaryRequest
|
|
30
30
|
* MaxResults: Number("int"),
|
|
31
31
|
* NextToken: "STRING_VALUE",
|
|
32
32
|
* RecoveryGroupName: "STRING_VALUE", // required
|
|
@@ -26,7 +26,7 @@ export interface GetResourceSetCommandOutput extends GetResourceSetResponse, __M
|
|
|
26
26
|
* import { Route53RecoveryReadinessClient, GetResourceSetCommand } from "@aws-sdk/client-route53-recovery-readiness"; // ES Modules import
|
|
27
27
|
* // const { Route53RecoveryReadinessClient, GetResourceSetCommand } = require("@aws-sdk/client-route53-recovery-readiness"); // CommonJS import
|
|
28
28
|
* const client = new Route53RecoveryReadinessClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // GetResourceSetRequest
|
|
30
30
|
* ResourceSetName: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetResourceSetCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface ListCellsCommandOutput extends ListCellsResponse, __MetadataBea
|
|
|
26
26
|
* import { Route53RecoveryReadinessClient, ListCellsCommand } from "@aws-sdk/client-route53-recovery-readiness"; // ES Modules import
|
|
27
27
|
* // const { Route53RecoveryReadinessClient, ListCellsCommand } = require("@aws-sdk/client-route53-recovery-readiness"); // CommonJS import
|
|
28
28
|
* const client = new Route53RecoveryReadinessClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListCellsRequest
|
|
30
30
|
* MaxResults: Number("int"),
|
|
31
31
|
* NextToken: "STRING_VALUE",
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ export interface ListCrossAccountAuthorizationsCommandOutput extends ListCrossAc
|
|
|
26
26
|
* import { Route53RecoveryReadinessClient, ListCrossAccountAuthorizationsCommand } from "@aws-sdk/client-route53-recovery-readiness"; // ES Modules import
|
|
27
27
|
* // const { Route53RecoveryReadinessClient, ListCrossAccountAuthorizationsCommand } = require("@aws-sdk/client-route53-recovery-readiness"); // CommonJS import
|
|
28
28
|
* const client = new Route53RecoveryReadinessClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListCrossAccountAuthorizationsRequest
|
|
30
30
|
* MaxResults: Number("int"),
|
|
31
31
|
* NextToken: "STRING_VALUE",
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ export interface ListReadinessChecksCommandOutput extends ListReadinessChecksRes
|
|
|
26
26
|
* import { Route53RecoveryReadinessClient, ListReadinessChecksCommand } from "@aws-sdk/client-route53-recovery-readiness"; // ES Modules import
|
|
27
27
|
* // const { Route53RecoveryReadinessClient, ListReadinessChecksCommand } = require("@aws-sdk/client-route53-recovery-readiness"); // CommonJS import
|
|
28
28
|
* const client = new Route53RecoveryReadinessClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListReadinessChecksRequest
|
|
30
30
|
* MaxResults: Number("int"),
|
|
31
31
|
* NextToken: "STRING_VALUE",
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ export interface ListRecoveryGroupsCommandOutput extends ListRecoveryGroupsRespo
|
|
|
26
26
|
* import { Route53RecoveryReadinessClient, ListRecoveryGroupsCommand } from "@aws-sdk/client-route53-recovery-readiness"; // ES Modules import
|
|
27
27
|
* // const { Route53RecoveryReadinessClient, ListRecoveryGroupsCommand } = require("@aws-sdk/client-route53-recovery-readiness"); // CommonJS import
|
|
28
28
|
* const client = new Route53RecoveryReadinessClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListRecoveryGroupsRequest
|
|
30
30
|
* MaxResults: Number("int"),
|
|
31
31
|
* NextToken: "STRING_VALUE",
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ export interface ListResourceSetsCommandOutput extends ListResourceSetsResponse,
|
|
|
26
26
|
* import { Route53RecoveryReadinessClient, ListResourceSetsCommand } from "@aws-sdk/client-route53-recovery-readiness"; // ES Modules import
|
|
27
27
|
* // const { Route53RecoveryReadinessClient, ListResourceSetsCommand } = require("@aws-sdk/client-route53-recovery-readiness"); // CommonJS import
|
|
28
28
|
* const client = new Route53RecoveryReadinessClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListResourceSetsRequest
|
|
30
30
|
* MaxResults: Number("int"),
|
|
31
31
|
* NextToken: "STRING_VALUE",
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ export interface ListRulesCommandOutput extends ListRulesResponse, __MetadataBea
|
|
|
26
26
|
* import { Route53RecoveryReadinessClient, ListRulesCommand } from "@aws-sdk/client-route53-recovery-readiness"; // ES Modules import
|
|
27
27
|
* // const { Route53RecoveryReadinessClient, ListRulesCommand } = require("@aws-sdk/client-route53-recovery-readiness"); // CommonJS import
|
|
28
28
|
* const client = new Route53RecoveryReadinessClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListRulesRequest
|
|
30
30
|
* MaxResults: Number("int"),
|
|
31
31
|
* NextToken: "STRING_VALUE",
|
|
32
32
|
* ResourceType: "STRING_VALUE",
|
|
@@ -26,7 +26,7 @@ export interface ListTagsForResourcesCommandOutput extends ListTagsForResourcesR
|
|
|
26
26
|
* import { Route53RecoveryReadinessClient, ListTagsForResourcesCommand } from "@aws-sdk/client-route53-recovery-readiness"; // ES Modules import
|
|
27
27
|
* // const { Route53RecoveryReadinessClient, ListTagsForResourcesCommand } = require("@aws-sdk/client-route53-recovery-readiness"); // CommonJS import
|
|
28
28
|
* const client = new Route53RecoveryReadinessClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListTagsForResourcesRequest
|
|
30
30
|
* ResourceArn: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new ListTagsForResourcesCommand(input);
|
|
@@ -26,9 +26,9 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
26
26
|
* import { Route53RecoveryReadinessClient, TagResourceCommand } from "@aws-sdk/client-route53-recovery-readiness"; // ES Modules import
|
|
27
27
|
* // const { Route53RecoveryReadinessClient, TagResourceCommand } = require("@aws-sdk/client-route53-recovery-readiness"); // CommonJS import
|
|
28
28
|
* const client = new Route53RecoveryReadinessClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // TagResourceRequest
|
|
30
30
|
* ResourceArn: "STRING_VALUE", // required
|
|
31
|
-
* Tags: { // required
|
|
31
|
+
* Tags: { // Tags // required
|
|
32
32
|
* "<keys>": "STRING_VALUE",
|
|
33
33
|
* },
|
|
34
34
|
* };
|
|
@@ -26,9 +26,9 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {
|
|
|
26
26
|
* import { Route53RecoveryReadinessClient, UntagResourceCommand } from "@aws-sdk/client-route53-recovery-readiness"; // ES Modules import
|
|
27
27
|
* // const { Route53RecoveryReadinessClient, UntagResourceCommand } = require("@aws-sdk/client-route53-recovery-readiness"); // CommonJS import
|
|
28
28
|
* const client = new Route53RecoveryReadinessClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // UntagResourceRequest
|
|
30
30
|
* ResourceArn: "STRING_VALUE", // required
|
|
31
|
-
* TagKeys: [ // required
|
|
31
|
+
* TagKeys: [ // __listOf__string // required
|
|
32
32
|
* "STRING_VALUE",
|
|
33
33
|
* ],
|
|
34
34
|
* };
|
|
@@ -26,9 +26,9 @@ export interface UpdateCellCommandOutput extends UpdateCellResponse, __MetadataB
|
|
|
26
26
|
* import { Route53RecoveryReadinessClient, UpdateCellCommand } from "@aws-sdk/client-route53-recovery-readiness"; // ES Modules import
|
|
27
27
|
* // const { Route53RecoveryReadinessClient, UpdateCellCommand } = require("@aws-sdk/client-route53-recovery-readiness"); // CommonJS import
|
|
28
28
|
* const client = new Route53RecoveryReadinessClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // UpdateCellRequest
|
|
30
30
|
* CellName: "STRING_VALUE", // required
|
|
31
|
-
* Cells: [ // required
|
|
31
|
+
* Cells: [ // __listOf__string // required
|
|
32
32
|
* "STRING_VALUE",
|
|
33
33
|
* ],
|
|
34
34
|
* };
|
|
@@ -26,7 +26,7 @@ export interface UpdateReadinessCheckCommandOutput extends UpdateReadinessCheckR
|
|
|
26
26
|
* import { Route53RecoveryReadinessClient, UpdateReadinessCheckCommand } from "@aws-sdk/client-route53-recovery-readiness"; // ES Modules import
|
|
27
27
|
* // const { Route53RecoveryReadinessClient, UpdateReadinessCheckCommand } = require("@aws-sdk/client-route53-recovery-readiness"); // CommonJS import
|
|
28
28
|
* const client = new Route53RecoveryReadinessClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // UpdateReadinessCheckRequest
|
|
30
30
|
* ReadinessCheckName: "STRING_VALUE", // required
|
|
31
31
|
* ResourceSetName: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
@@ -26,8 +26,8 @@ export interface UpdateRecoveryGroupCommandOutput extends UpdateRecoveryGroupRes
|
|
|
26
26
|
* import { Route53RecoveryReadinessClient, UpdateRecoveryGroupCommand } from "@aws-sdk/client-route53-recovery-readiness"; // ES Modules import
|
|
27
27
|
* // const { Route53RecoveryReadinessClient, UpdateRecoveryGroupCommand } = require("@aws-sdk/client-route53-recovery-readiness"); // CommonJS import
|
|
28
28
|
* const client = new Route53RecoveryReadinessClient(config);
|
|
29
|
-
* const input = {
|
|
30
|
-
* Cells: [ // required
|
|
29
|
+
* const input = { // UpdateRecoveryGroupRequest
|
|
30
|
+
* Cells: [ // __listOf__string // required
|
|
31
31
|
* "STRING_VALUE",
|
|
32
32
|
* ],
|
|
33
33
|
* RecoveryGroupName: "STRING_VALUE", // required
|
|
@@ -26,28 +26,28 @@ export interface UpdateResourceSetCommandOutput extends UpdateResourceSetRespons
|
|
|
26
26
|
* import { Route53RecoveryReadinessClient, UpdateResourceSetCommand } from "@aws-sdk/client-route53-recovery-readiness"; // ES Modules import
|
|
27
27
|
* // const { Route53RecoveryReadinessClient, UpdateResourceSetCommand } = require("@aws-sdk/client-route53-recovery-readiness"); // CommonJS import
|
|
28
28
|
* const client = new Route53RecoveryReadinessClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // UpdateResourceSetRequest
|
|
30
30
|
* ResourceSetName: "STRING_VALUE", // required
|
|
31
31
|
* ResourceSetType: "STRING_VALUE", // required
|
|
32
|
-
* Resources: [ // required
|
|
33
|
-
* {
|
|
32
|
+
* Resources: [ // __listOfResource // required
|
|
33
|
+
* { // Resource
|
|
34
34
|
* ComponentId: "STRING_VALUE",
|
|
35
|
-
* DnsTargetResource: {
|
|
35
|
+
* DnsTargetResource: { // DNSTargetResource
|
|
36
36
|
* DomainName: "STRING_VALUE",
|
|
37
37
|
* HostedZoneArn: "STRING_VALUE",
|
|
38
38
|
* RecordSetId: "STRING_VALUE",
|
|
39
39
|
* RecordType: "STRING_VALUE",
|
|
40
|
-
* TargetResource: {
|
|
41
|
-
* NLBResource: {
|
|
40
|
+
* TargetResource: { // TargetResource
|
|
41
|
+
* NLBResource: { // NLBResource
|
|
42
42
|
* Arn: "STRING_VALUE",
|
|
43
43
|
* },
|
|
44
|
-
* R53Resource: {
|
|
44
|
+
* R53Resource: { // R53ResourceRecord
|
|
45
45
|
* DomainName: "STRING_VALUE",
|
|
46
46
|
* RecordSetId: "STRING_VALUE",
|
|
47
47
|
* },
|
|
48
48
|
* },
|
|
49
49
|
* },
|
|
50
|
-
* ReadinessScopes: [
|
|
50
|
+
* ReadinessScopes: [ // __listOf__string
|
|
51
51
|
* "STRING_VALUE",
|
|
52
52
|
* ],
|
|
53
53
|
* ResourceArn: "STRING_VALUE",
|
|
@@ -78,13 +78,18 @@ export interface ReadinessCheckOutput {
|
|
|
78
78
|
}
|
|
79
79
|
/**
|
|
80
80
|
* @public
|
|
81
|
+
* @enum
|
|
81
82
|
*/
|
|
82
|
-
export declare
|
|
83
|
-
NOT_AUTHORIZED
|
|
84
|
-
NOT_READY
|
|
85
|
-
READY
|
|
86
|
-
UNKNOWN
|
|
87
|
-
}
|
|
83
|
+
export declare const Readiness: {
|
|
84
|
+
readonly NOT_AUTHORIZED: "NOT_AUTHORIZED";
|
|
85
|
+
readonly NOT_READY: "NOT_READY";
|
|
86
|
+
readonly READY: "READY";
|
|
87
|
+
readonly UNKNOWN: "UNKNOWN";
|
|
88
|
+
};
|
|
89
|
+
/**
|
|
90
|
+
* @public
|
|
91
|
+
*/
|
|
92
|
+
export type Readiness = (typeof Readiness)[keyof typeof Readiness];
|
|
88
93
|
/**
|
|
89
94
|
* @public
|
|
90
95
|
* <p>Summary of all readiness check statuses in a recovery group, paginated in GetRecoveryGroupReadinessSummary and GetCellReadinessSummary.</p>
|
|
@@ -21,12 +21,13 @@ export interface ReadinessCheckOutput {
|
|
|
21
21
|
ResourceSet: string | undefined;
|
|
22
22
|
Tags?: Record<string, string>;
|
|
23
23
|
}
|
|
24
|
-
export declare
|
|
25
|
-
NOT_AUTHORIZED
|
|
26
|
-
NOT_READY
|
|
27
|
-
READY
|
|
28
|
-
UNKNOWN
|
|
29
|
-
}
|
|
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];
|
|
30
31
|
export interface ReadinessCheckSummary {
|
|
31
32
|
Readiness?: Readiness | string;
|
|
32
33
|
ReadinessCheckName?: string;
|
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.303.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,42 +21,42 @@
|
|
|
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/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-endpoint": "3.
|
|
32
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
33
|
-
"@aws-sdk/middleware-logger": "3.
|
|
34
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
36
|
-
"@aws-sdk/middleware-serde": "3.
|
|
37
|
-
"@aws-sdk/middleware-signing": "3.
|
|
38
|
-
"@aws-sdk/middleware-stack": "3.
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
40
|
-
"@aws-sdk/node-config-provider": "3.
|
|
41
|
-
"@aws-sdk/node-http-handler": "3.
|
|
42
|
-
"@aws-sdk/protocol-http": "3.
|
|
43
|
-
"@aws-sdk/smithy-client": "3.
|
|
44
|
-
"@aws-sdk/types": "3.
|
|
45
|
-
"@aws-sdk/url-parser": "3.
|
|
46
|
-
"@aws-sdk/util-base64": "3.
|
|
47
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
48
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
51
|
-
"@aws-sdk/util-endpoints": "3.
|
|
52
|
-
"@aws-sdk/util-retry": "3.
|
|
53
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
54
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
55
|
-
"@aws-sdk/util-utf8": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.303.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.303.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.303.0",
|
|
27
|
+
"@aws-sdk/fetch-http-handler": "3.303.0",
|
|
28
|
+
"@aws-sdk/hash-node": "3.303.0",
|
|
29
|
+
"@aws-sdk/invalid-dependency": "3.303.0",
|
|
30
|
+
"@aws-sdk/middleware-content-length": "3.303.0",
|
|
31
|
+
"@aws-sdk/middleware-endpoint": "3.303.0",
|
|
32
|
+
"@aws-sdk/middleware-host-header": "3.303.0",
|
|
33
|
+
"@aws-sdk/middleware-logger": "3.303.0",
|
|
34
|
+
"@aws-sdk/middleware-recursion-detection": "3.303.0",
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.303.0",
|
|
36
|
+
"@aws-sdk/middleware-serde": "3.303.0",
|
|
37
|
+
"@aws-sdk/middleware-signing": "3.303.0",
|
|
38
|
+
"@aws-sdk/middleware-stack": "3.303.0",
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.303.0",
|
|
40
|
+
"@aws-sdk/node-config-provider": "3.303.0",
|
|
41
|
+
"@aws-sdk/node-http-handler": "3.303.0",
|
|
42
|
+
"@aws-sdk/protocol-http": "3.303.0",
|
|
43
|
+
"@aws-sdk/smithy-client": "3.303.0",
|
|
44
|
+
"@aws-sdk/types": "3.303.0",
|
|
45
|
+
"@aws-sdk/url-parser": "3.303.0",
|
|
46
|
+
"@aws-sdk/util-base64": "3.303.0",
|
|
47
|
+
"@aws-sdk/util-body-length-browser": "3.303.0",
|
|
48
|
+
"@aws-sdk/util-body-length-node": "3.303.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-browser": "3.303.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.303.0",
|
|
51
|
+
"@aws-sdk/util-endpoints": "3.303.0",
|
|
52
|
+
"@aws-sdk/util-retry": "3.303.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-browser": "3.303.0",
|
|
54
|
+
"@aws-sdk/util-user-agent-node": "3.303.0",
|
|
55
|
+
"@aws-sdk/util-utf8": "3.303.0",
|
|
56
56
|
"tslib": "^2.5.0"
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|
|
59
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
59
|
+
"@aws-sdk/service-client-documentation-generator": "3.303.0",
|
|
60
60
|
"@tsconfig/node14": "1.0.3",
|
|
61
61
|
"@types/node": "^14.14.31",
|
|
62
62
|
"concurrently": "7.0.0",
|