@aws-sdk/client-route53-recovery-readiness 3.952.0 → 3.953.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 +374 -247
- package/dist-cjs/runtimeConfig.shared.js +6 -1
- package/dist-es/commands/CreateCellCommand.js +2 -2
- package/dist-es/commands/CreateCrossAccountAuthorizationCommand.js +2 -2
- package/dist-es/commands/CreateReadinessCheckCommand.js +2 -2
- package/dist-es/commands/CreateRecoveryGroupCommand.js +2 -2
- package/dist-es/commands/CreateResourceSetCommand.js +2 -2
- package/dist-es/commands/DeleteCellCommand.js +2 -2
- package/dist-es/commands/DeleteCrossAccountAuthorizationCommand.js +2 -2
- package/dist-es/commands/DeleteReadinessCheckCommand.js +2 -2
- package/dist-es/commands/DeleteRecoveryGroupCommand.js +2 -2
- package/dist-es/commands/DeleteResourceSetCommand.js +2 -2
- package/dist-es/commands/GetArchitectureRecommendationsCommand.js +2 -2
- package/dist-es/commands/GetCellCommand.js +2 -2
- package/dist-es/commands/GetCellReadinessSummaryCommand.js +2 -2
- package/dist-es/commands/GetReadinessCheckCommand.js +2 -2
- package/dist-es/commands/GetReadinessCheckResourceStatusCommand.js +2 -2
- package/dist-es/commands/GetReadinessCheckStatusCommand.js +2 -2
- package/dist-es/commands/GetRecoveryGroupCommand.js +2 -2
- package/dist-es/commands/GetRecoveryGroupReadinessSummaryCommand.js +2 -2
- package/dist-es/commands/GetResourceSetCommand.js +2 -2
- package/dist-es/commands/ListCellsCommand.js +2 -2
- package/dist-es/commands/ListCrossAccountAuthorizationsCommand.js +2 -2
- package/dist-es/commands/ListReadinessChecksCommand.js +2 -2
- package/dist-es/commands/ListRecoveryGroupsCommand.js +2 -2
- package/dist-es/commands/ListResourceSetsCommand.js +2 -2
- package/dist-es/commands/ListRulesCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourcesCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdateCellCommand.js +2 -2
- package/dist-es/commands/UpdateReadinessCheckCommand.js +2 -2
- package/dist-es/commands/UpdateRecoveryGroupCommand.js +2 -2
- package/dist-es/commands/UpdateResourceSetCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +6 -1
- package/dist-es/schemas/schemas_0.js +214 -200
- package/dist-types/Route53RecoveryReadinessClient.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +114 -129
- package/dist-types/ts3.4/Route53RecoveryReadinessClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +113 -129
- package/package.json +34 -34
|
@@ -26,7 +26,12 @@ const getRuntimeConfig = (config) => {
|
|
|
26
26
|
},
|
|
27
27
|
],
|
|
28
28
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
|
29
|
-
protocol: config?.protocol ??
|
|
29
|
+
protocol: config?.protocol ?? protocols_1.AwsRestJsonProtocol,
|
|
30
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
31
|
+
defaultNamespace: "com.amazonaws.route53recoveryreadiness",
|
|
32
|
+
version: "2019-12-02",
|
|
33
|
+
serviceTarget: "Route53RecoveryReadiness",
|
|
34
|
+
},
|
|
30
35
|
serviceId: config?.serviceId ?? "Route53 Recovery Readiness",
|
|
31
36
|
urlParser: config?.urlParser ?? url_parser_1.parseUrl,
|
|
32
37
|
utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateCell } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateCell$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateCellCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateCellCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Route53RecoveryReadiness", "CreateCell", {})
|
|
13
13
|
.n("Route53RecoveryReadinessClient", "CreateCellCommand")
|
|
14
|
-
.sc(CreateCell)
|
|
14
|
+
.sc(CreateCell$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateCrossAccountAuthorization } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateCrossAccountAuthorization$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateCrossAccountAuthorizationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateCrossAccountAuthorizationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Route53RecoveryReadiness", "CreateCrossAccountAuthorization", {})
|
|
13
13
|
.n("Route53RecoveryReadinessClient", "CreateCrossAccountAuthorizationCommand")
|
|
14
|
-
.sc(CreateCrossAccountAuthorization)
|
|
14
|
+
.sc(CreateCrossAccountAuthorization$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateReadinessCheck } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateReadinessCheck$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateReadinessCheckCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateReadinessCheckCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Route53RecoveryReadiness", "CreateReadinessCheck", {})
|
|
13
13
|
.n("Route53RecoveryReadinessClient", "CreateReadinessCheckCommand")
|
|
14
|
-
.sc(CreateReadinessCheck)
|
|
14
|
+
.sc(CreateReadinessCheck$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateRecoveryGroup } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateRecoveryGroup$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateRecoveryGroupCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateRecoveryGroupCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Route53RecoveryReadiness", "CreateRecoveryGroup", {})
|
|
13
13
|
.n("Route53RecoveryReadinessClient", "CreateRecoveryGroupCommand")
|
|
14
|
-
.sc(CreateRecoveryGroup)
|
|
14
|
+
.sc(CreateRecoveryGroup$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateResourceSet } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateResourceSet$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateResourceSetCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateResourceSetCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Route53RecoveryReadiness", "CreateResourceSet", {})
|
|
13
13
|
.n("Route53RecoveryReadinessClient", "CreateResourceSetCommand")
|
|
14
|
-
.sc(CreateResourceSet)
|
|
14
|
+
.sc(CreateResourceSet$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteCell } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteCell$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteCellCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteCellCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Route53RecoveryReadiness", "DeleteCell", {})
|
|
13
13
|
.n("Route53RecoveryReadinessClient", "DeleteCellCommand")
|
|
14
|
-
.sc(DeleteCell)
|
|
14
|
+
.sc(DeleteCell$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteCrossAccountAuthorization } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteCrossAccountAuthorization$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteCrossAccountAuthorizationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteCrossAccountAuthorizationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Route53RecoveryReadiness", "DeleteCrossAccountAuthorization", {})
|
|
13
13
|
.n("Route53RecoveryReadinessClient", "DeleteCrossAccountAuthorizationCommand")
|
|
14
|
-
.sc(DeleteCrossAccountAuthorization)
|
|
14
|
+
.sc(DeleteCrossAccountAuthorization$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteReadinessCheck } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteReadinessCheck$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteReadinessCheckCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteReadinessCheckCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Route53RecoveryReadiness", "DeleteReadinessCheck", {})
|
|
13
13
|
.n("Route53RecoveryReadinessClient", "DeleteReadinessCheckCommand")
|
|
14
|
-
.sc(DeleteReadinessCheck)
|
|
14
|
+
.sc(DeleteReadinessCheck$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteRecoveryGroup } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteRecoveryGroup$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteRecoveryGroupCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteRecoveryGroupCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Route53RecoveryReadiness", "DeleteRecoveryGroup", {})
|
|
13
13
|
.n("Route53RecoveryReadinessClient", "DeleteRecoveryGroupCommand")
|
|
14
|
-
.sc(DeleteRecoveryGroup)
|
|
14
|
+
.sc(DeleteRecoveryGroup$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteResourceSet } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteResourceSet$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteResourceSetCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteResourceSetCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Route53RecoveryReadiness", "DeleteResourceSet", {})
|
|
13
13
|
.n("Route53RecoveryReadinessClient", "DeleteResourceSetCommand")
|
|
14
|
-
.sc(DeleteResourceSet)
|
|
14
|
+
.sc(DeleteResourceSet$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetArchitectureRecommendations } from "../schemas/schemas_0";
|
|
4
|
+
import { GetArchitectureRecommendations$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetArchitectureRecommendationsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetArchitectureRecommendationsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Route53RecoveryReadiness", "GetArchitectureRecommendations", {})
|
|
13
13
|
.n("Route53RecoveryReadinessClient", "GetArchitectureRecommendationsCommand")
|
|
14
|
-
.sc(GetArchitectureRecommendations)
|
|
14
|
+
.sc(GetArchitectureRecommendations$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetCell } from "../schemas/schemas_0";
|
|
4
|
+
import { GetCell$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetCellCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetCellCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Route53RecoveryReadiness", "GetCell", {})
|
|
13
13
|
.n("Route53RecoveryReadinessClient", "GetCellCommand")
|
|
14
|
-
.sc(GetCell)
|
|
14
|
+
.sc(GetCell$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetCellReadinessSummary } from "../schemas/schemas_0";
|
|
4
|
+
import { GetCellReadinessSummary$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetCellReadinessSummaryCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetCellReadinessSummaryCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Route53RecoveryReadiness", "GetCellReadinessSummary", {})
|
|
13
13
|
.n("Route53RecoveryReadinessClient", "GetCellReadinessSummaryCommand")
|
|
14
|
-
.sc(GetCellReadinessSummary)
|
|
14
|
+
.sc(GetCellReadinessSummary$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetReadinessCheck } from "../schemas/schemas_0";
|
|
4
|
+
import { GetReadinessCheck$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetReadinessCheckCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetReadinessCheckCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Route53RecoveryReadiness", "GetReadinessCheck", {})
|
|
13
13
|
.n("Route53RecoveryReadinessClient", "GetReadinessCheckCommand")
|
|
14
|
-
.sc(GetReadinessCheck)
|
|
14
|
+
.sc(GetReadinessCheck$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetReadinessCheckResourceStatus } from "../schemas/schemas_0";
|
|
4
|
+
import { GetReadinessCheckResourceStatus$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetReadinessCheckResourceStatusCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetReadinessCheckResourceStatusCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Route53RecoveryReadiness", "GetReadinessCheckResourceStatus", {})
|
|
13
13
|
.n("Route53RecoveryReadinessClient", "GetReadinessCheckResourceStatusCommand")
|
|
14
|
-
.sc(GetReadinessCheckResourceStatus)
|
|
14
|
+
.sc(GetReadinessCheckResourceStatus$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetReadinessCheckStatus } from "../schemas/schemas_0";
|
|
4
|
+
import { GetReadinessCheckStatus$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetReadinessCheckStatusCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetReadinessCheckStatusCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Route53RecoveryReadiness", "GetReadinessCheckStatus", {})
|
|
13
13
|
.n("Route53RecoveryReadinessClient", "GetReadinessCheckStatusCommand")
|
|
14
|
-
.sc(GetReadinessCheckStatus)
|
|
14
|
+
.sc(GetReadinessCheckStatus$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetRecoveryGroup } from "../schemas/schemas_0";
|
|
4
|
+
import { GetRecoveryGroup$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetRecoveryGroupCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetRecoveryGroupCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Route53RecoveryReadiness", "GetRecoveryGroup", {})
|
|
13
13
|
.n("Route53RecoveryReadinessClient", "GetRecoveryGroupCommand")
|
|
14
|
-
.sc(GetRecoveryGroup)
|
|
14
|
+
.sc(GetRecoveryGroup$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetRecoveryGroupReadinessSummary } from "../schemas/schemas_0";
|
|
4
|
+
import { GetRecoveryGroupReadinessSummary$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetRecoveryGroupReadinessSummaryCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetRecoveryGroupReadinessSummaryCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Route53RecoveryReadiness", "GetRecoveryGroupReadinessSummary", {})
|
|
13
13
|
.n("Route53RecoveryReadinessClient", "GetRecoveryGroupReadinessSummaryCommand")
|
|
14
|
-
.sc(GetRecoveryGroupReadinessSummary)
|
|
14
|
+
.sc(GetRecoveryGroupReadinessSummary$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetResourceSet } from "../schemas/schemas_0";
|
|
4
|
+
import { GetResourceSet$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetResourceSetCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetResourceSetCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Route53RecoveryReadiness", "GetResourceSet", {})
|
|
13
13
|
.n("Route53RecoveryReadinessClient", "GetResourceSetCommand")
|
|
14
|
-
.sc(GetResourceSet)
|
|
14
|
+
.sc(GetResourceSet$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListCells } from "../schemas/schemas_0";
|
|
4
|
+
import { ListCells$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListCellsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListCellsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Route53RecoveryReadiness", "ListCells", {})
|
|
13
13
|
.n("Route53RecoveryReadinessClient", "ListCellsCommand")
|
|
14
|
-
.sc(ListCells)
|
|
14
|
+
.sc(ListCells$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListCrossAccountAuthorizations } from "../schemas/schemas_0";
|
|
4
|
+
import { ListCrossAccountAuthorizations$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListCrossAccountAuthorizationsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListCrossAccountAuthorizationsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Route53RecoveryReadiness", "ListCrossAccountAuthorizations", {})
|
|
13
13
|
.n("Route53RecoveryReadinessClient", "ListCrossAccountAuthorizationsCommand")
|
|
14
|
-
.sc(ListCrossAccountAuthorizations)
|
|
14
|
+
.sc(ListCrossAccountAuthorizations$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListReadinessChecks } from "../schemas/schemas_0";
|
|
4
|
+
import { ListReadinessChecks$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListReadinessChecksCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListReadinessChecksCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Route53RecoveryReadiness", "ListReadinessChecks", {})
|
|
13
13
|
.n("Route53RecoveryReadinessClient", "ListReadinessChecksCommand")
|
|
14
|
-
.sc(ListReadinessChecks)
|
|
14
|
+
.sc(ListReadinessChecks$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListRecoveryGroups } from "../schemas/schemas_0";
|
|
4
|
+
import { ListRecoveryGroups$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListRecoveryGroupsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListRecoveryGroupsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Route53RecoveryReadiness", "ListRecoveryGroups", {})
|
|
13
13
|
.n("Route53RecoveryReadinessClient", "ListRecoveryGroupsCommand")
|
|
14
|
-
.sc(ListRecoveryGroups)
|
|
14
|
+
.sc(ListRecoveryGroups$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListResourceSets } from "../schemas/schemas_0";
|
|
4
|
+
import { ListResourceSets$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListResourceSetsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListResourceSetsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Route53RecoveryReadiness", "ListResourceSets", {})
|
|
13
13
|
.n("Route53RecoveryReadinessClient", "ListResourceSetsCommand")
|
|
14
|
-
.sc(ListResourceSets)
|
|
14
|
+
.sc(ListResourceSets$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListRules } from "../schemas/schemas_0";
|
|
4
|
+
import { ListRules$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListRulesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListRulesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Route53RecoveryReadiness", "ListRules", {})
|
|
13
13
|
.n("Route53RecoveryReadinessClient", "ListRulesCommand")
|
|
14
|
-
.sc(ListRules)
|
|
14
|
+
.sc(ListRules$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListTagsForResources } from "../schemas/schemas_0";
|
|
4
|
+
import { ListTagsForResources$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListTagsForResourcesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListTagsForResourcesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Route53RecoveryReadiness", "ListTagsForResources", {})
|
|
13
13
|
.n("Route53RecoveryReadinessClient", "ListTagsForResourcesCommand")
|
|
14
|
-
.sc(ListTagsForResources)
|
|
14
|
+
.sc(ListTagsForResources$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { TagResource } from "../schemas/schemas_0";
|
|
4
|
+
import { TagResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class TagResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class TagResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Route53RecoveryReadiness", "TagResource", {})
|
|
13
13
|
.n("Route53RecoveryReadinessClient", "TagResourceCommand")
|
|
14
|
-
.sc(TagResource)
|
|
14
|
+
.sc(TagResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UntagResource } from "../schemas/schemas_0";
|
|
4
|
+
import { UntagResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UntagResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UntagResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Route53RecoveryReadiness", "UntagResource", {})
|
|
13
13
|
.n("Route53RecoveryReadinessClient", "UntagResourceCommand")
|
|
14
|
-
.sc(UntagResource)
|
|
14
|
+
.sc(UntagResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateCell } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateCell$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateCellCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateCellCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Route53RecoveryReadiness", "UpdateCell", {})
|
|
13
13
|
.n("Route53RecoveryReadinessClient", "UpdateCellCommand")
|
|
14
|
-
.sc(UpdateCell)
|
|
14
|
+
.sc(UpdateCell$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateReadinessCheck } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateReadinessCheck$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateReadinessCheckCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateReadinessCheckCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Route53RecoveryReadiness", "UpdateReadinessCheck", {})
|
|
13
13
|
.n("Route53RecoveryReadinessClient", "UpdateReadinessCheckCommand")
|
|
14
|
-
.sc(UpdateReadinessCheck)
|
|
14
|
+
.sc(UpdateReadinessCheck$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateRecoveryGroup } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateRecoveryGroup$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateRecoveryGroupCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateRecoveryGroupCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Route53RecoveryReadiness", "UpdateRecoveryGroup", {})
|
|
13
13
|
.n("Route53RecoveryReadinessClient", "UpdateRecoveryGroupCommand")
|
|
14
|
-
.sc(UpdateRecoveryGroup)
|
|
14
|
+
.sc(UpdateRecoveryGroup$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateResourceSet } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateResourceSet$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateResourceSetCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateResourceSetCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Route53RecoveryReadiness", "UpdateResourceSet", {})
|
|
13
13
|
.n("Route53RecoveryReadinessClient", "UpdateResourceSetCommand")
|
|
14
|
-
.sc(UpdateResourceSet)
|
|
14
|
+
.sc(UpdateResourceSet$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
package/dist-es/index.js
CHANGED
|
@@ -23,7 +23,12 @@ export const getRuntimeConfig = (config) => {
|
|
|
23
23
|
},
|
|
24
24
|
],
|
|
25
25
|
logger: config?.logger ?? new NoOpLogger(),
|
|
26
|
-
protocol: config?.protocol ??
|
|
26
|
+
protocol: config?.protocol ?? AwsRestJsonProtocol,
|
|
27
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
28
|
+
defaultNamespace: "com.amazonaws.route53recoveryreadiness",
|
|
29
|
+
version: "2019-12-02",
|
|
30
|
+
serviceTarget: "Route53RecoveryReadiness",
|
|
31
|
+
},
|
|
27
32
|
serviceId: config?.serviceId ?? "Route53 Recovery Readiness",
|
|
28
33
|
urlParser: config?.urlParser ?? parseUrl,
|
|
29
34
|
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|