@aws-sdk/client-route53-recovery-readiness 3.490.0 → 3.496.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/Route53RecoveryReadiness.js +1 -75
- package/dist-cjs/Route53RecoveryReadinessClient.js +1 -43
- package/dist-cjs/commands/CreateCellCommand.js +1 -28
- package/dist-cjs/commands/CreateCrossAccountAuthorizationCommand.js +1 -28
- package/dist-cjs/commands/CreateReadinessCheckCommand.js +1 -28
- package/dist-cjs/commands/CreateRecoveryGroupCommand.js +1 -28
- package/dist-cjs/commands/CreateResourceSetCommand.js +1 -28
- package/dist-cjs/commands/DeleteCellCommand.js +1 -28
- package/dist-cjs/commands/DeleteCrossAccountAuthorizationCommand.js +1 -28
- package/dist-cjs/commands/DeleteReadinessCheckCommand.js +1 -28
- package/dist-cjs/commands/DeleteRecoveryGroupCommand.js +1 -28
- package/dist-cjs/commands/DeleteResourceSetCommand.js +1 -28
- package/dist-cjs/commands/GetArchitectureRecommendationsCommand.js +1 -28
- package/dist-cjs/commands/GetCellCommand.js +1 -28
- package/dist-cjs/commands/GetCellReadinessSummaryCommand.js +1 -28
- package/dist-cjs/commands/GetReadinessCheckCommand.js +1 -28
- package/dist-cjs/commands/GetReadinessCheckResourceStatusCommand.js +1 -28
- package/dist-cjs/commands/GetReadinessCheckStatusCommand.js +1 -28
- package/dist-cjs/commands/GetRecoveryGroupCommand.js +1 -28
- package/dist-cjs/commands/GetRecoveryGroupReadinessSummaryCommand.js +1 -28
- package/dist-cjs/commands/GetResourceSetCommand.js +1 -28
- package/dist-cjs/commands/ListCellsCommand.js +1 -28
- package/dist-cjs/commands/ListCrossAccountAuthorizationsCommand.js +1 -28
- package/dist-cjs/commands/ListReadinessChecksCommand.js +1 -28
- package/dist-cjs/commands/ListRecoveryGroupsCommand.js +1 -28
- package/dist-cjs/commands/ListResourceSetsCommand.js +1 -28
- package/dist-cjs/commands/ListRulesCommand.js +1 -28
- package/dist-cjs/commands/ListTagsForResourcesCommand.js +1 -28
- package/dist-cjs/commands/TagResourceCommand.js +1 -28
- package/dist-cjs/commands/UntagResourceCommand.js +1 -28
- package/dist-cjs/commands/UpdateCellCommand.js +1 -28
- package/dist-cjs/commands/UpdateReadinessCheckCommand.js +1 -28
- package/dist-cjs/commands/UpdateRecoveryGroupCommand.js +1 -28
- package/dist-cjs/commands/UpdateResourceSetCommand.js +1 -28
- package/dist-cjs/commands/index.js +1 -35
- package/dist-cjs/endpoint/EndpointParameters.js +1 -18
- package/dist-cjs/extensionConfiguration.js +1 -2
- package/dist-cjs/index.js +3176 -11
- package/dist-cjs/models/Route53RecoveryReadinessServiceException.js +1 -12
- package/dist-cjs/models/index.js +1 -4
- package/dist-cjs/models/models_0.js +1 -94
- package/dist-cjs/pagination/GetCellReadinessSummaryPaginator.js +1 -7
- package/dist-cjs/pagination/GetReadinessCheckResourceStatusPaginator.js +1 -7
- package/dist-cjs/pagination/GetReadinessCheckStatusPaginator.js +1 -7
- package/dist-cjs/pagination/GetRecoveryGroupReadinessSummaryPaginator.js +1 -7
- package/dist-cjs/pagination/Interfaces.js +1 -2
- package/dist-cjs/pagination/ListCellsPaginator.js +1 -7
- package/dist-cjs/pagination/ListCrossAccountAuthorizationsPaginator.js +1 -7
- package/dist-cjs/pagination/ListReadinessChecksPaginator.js +1 -7
- package/dist-cjs/pagination/ListRecoveryGroupsPaginator.js +1 -7
- package/dist-cjs/pagination/ListResourceSetsPaginator.js +1 -7
- package/dist-cjs/pagination/ListRulesPaginator.js +1 -7
- package/dist-cjs/pagination/index.js +1 -14
- package/dist-cjs/protocols/Aws_restJson1.js +1 -2268
- package/dist-cjs/runtimeExtensions.js +1 -22
- package/package.json +40 -40
|
@@ -1,75 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.Route53RecoveryReadiness = void 0;
|
|
4
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
5
|
-
const CreateCellCommand_1 = require("./commands/CreateCellCommand");
|
|
6
|
-
const CreateCrossAccountAuthorizationCommand_1 = require("./commands/CreateCrossAccountAuthorizationCommand");
|
|
7
|
-
const CreateReadinessCheckCommand_1 = require("./commands/CreateReadinessCheckCommand");
|
|
8
|
-
const CreateRecoveryGroupCommand_1 = require("./commands/CreateRecoveryGroupCommand");
|
|
9
|
-
const CreateResourceSetCommand_1 = require("./commands/CreateResourceSetCommand");
|
|
10
|
-
const DeleteCellCommand_1 = require("./commands/DeleteCellCommand");
|
|
11
|
-
const DeleteCrossAccountAuthorizationCommand_1 = require("./commands/DeleteCrossAccountAuthorizationCommand");
|
|
12
|
-
const DeleteReadinessCheckCommand_1 = require("./commands/DeleteReadinessCheckCommand");
|
|
13
|
-
const DeleteRecoveryGroupCommand_1 = require("./commands/DeleteRecoveryGroupCommand");
|
|
14
|
-
const DeleteResourceSetCommand_1 = require("./commands/DeleteResourceSetCommand");
|
|
15
|
-
const GetArchitectureRecommendationsCommand_1 = require("./commands/GetArchitectureRecommendationsCommand");
|
|
16
|
-
const GetCellCommand_1 = require("./commands/GetCellCommand");
|
|
17
|
-
const GetCellReadinessSummaryCommand_1 = require("./commands/GetCellReadinessSummaryCommand");
|
|
18
|
-
const GetReadinessCheckCommand_1 = require("./commands/GetReadinessCheckCommand");
|
|
19
|
-
const GetReadinessCheckResourceStatusCommand_1 = require("./commands/GetReadinessCheckResourceStatusCommand");
|
|
20
|
-
const GetReadinessCheckStatusCommand_1 = require("./commands/GetReadinessCheckStatusCommand");
|
|
21
|
-
const GetRecoveryGroupCommand_1 = require("./commands/GetRecoveryGroupCommand");
|
|
22
|
-
const GetRecoveryGroupReadinessSummaryCommand_1 = require("./commands/GetRecoveryGroupReadinessSummaryCommand");
|
|
23
|
-
const GetResourceSetCommand_1 = require("./commands/GetResourceSetCommand");
|
|
24
|
-
const ListCellsCommand_1 = require("./commands/ListCellsCommand");
|
|
25
|
-
const ListCrossAccountAuthorizationsCommand_1 = require("./commands/ListCrossAccountAuthorizationsCommand");
|
|
26
|
-
const ListReadinessChecksCommand_1 = require("./commands/ListReadinessChecksCommand");
|
|
27
|
-
const ListRecoveryGroupsCommand_1 = require("./commands/ListRecoveryGroupsCommand");
|
|
28
|
-
const ListResourceSetsCommand_1 = require("./commands/ListResourceSetsCommand");
|
|
29
|
-
const ListRulesCommand_1 = require("./commands/ListRulesCommand");
|
|
30
|
-
const ListTagsForResourcesCommand_1 = require("./commands/ListTagsForResourcesCommand");
|
|
31
|
-
const TagResourceCommand_1 = require("./commands/TagResourceCommand");
|
|
32
|
-
const UntagResourceCommand_1 = require("./commands/UntagResourceCommand");
|
|
33
|
-
const UpdateCellCommand_1 = require("./commands/UpdateCellCommand");
|
|
34
|
-
const UpdateReadinessCheckCommand_1 = require("./commands/UpdateReadinessCheckCommand");
|
|
35
|
-
const UpdateRecoveryGroupCommand_1 = require("./commands/UpdateRecoveryGroupCommand");
|
|
36
|
-
const UpdateResourceSetCommand_1 = require("./commands/UpdateResourceSetCommand");
|
|
37
|
-
const Route53RecoveryReadinessClient_1 = require("./Route53RecoveryReadinessClient");
|
|
38
|
-
const commands = {
|
|
39
|
-
CreateCellCommand: CreateCellCommand_1.CreateCellCommand,
|
|
40
|
-
CreateCrossAccountAuthorizationCommand: CreateCrossAccountAuthorizationCommand_1.CreateCrossAccountAuthorizationCommand,
|
|
41
|
-
CreateReadinessCheckCommand: CreateReadinessCheckCommand_1.CreateReadinessCheckCommand,
|
|
42
|
-
CreateRecoveryGroupCommand: CreateRecoveryGroupCommand_1.CreateRecoveryGroupCommand,
|
|
43
|
-
CreateResourceSetCommand: CreateResourceSetCommand_1.CreateResourceSetCommand,
|
|
44
|
-
DeleteCellCommand: DeleteCellCommand_1.DeleteCellCommand,
|
|
45
|
-
DeleteCrossAccountAuthorizationCommand: DeleteCrossAccountAuthorizationCommand_1.DeleteCrossAccountAuthorizationCommand,
|
|
46
|
-
DeleteReadinessCheckCommand: DeleteReadinessCheckCommand_1.DeleteReadinessCheckCommand,
|
|
47
|
-
DeleteRecoveryGroupCommand: DeleteRecoveryGroupCommand_1.DeleteRecoveryGroupCommand,
|
|
48
|
-
DeleteResourceSetCommand: DeleteResourceSetCommand_1.DeleteResourceSetCommand,
|
|
49
|
-
GetArchitectureRecommendationsCommand: GetArchitectureRecommendationsCommand_1.GetArchitectureRecommendationsCommand,
|
|
50
|
-
GetCellCommand: GetCellCommand_1.GetCellCommand,
|
|
51
|
-
GetCellReadinessSummaryCommand: GetCellReadinessSummaryCommand_1.GetCellReadinessSummaryCommand,
|
|
52
|
-
GetReadinessCheckCommand: GetReadinessCheckCommand_1.GetReadinessCheckCommand,
|
|
53
|
-
GetReadinessCheckResourceStatusCommand: GetReadinessCheckResourceStatusCommand_1.GetReadinessCheckResourceStatusCommand,
|
|
54
|
-
GetReadinessCheckStatusCommand: GetReadinessCheckStatusCommand_1.GetReadinessCheckStatusCommand,
|
|
55
|
-
GetRecoveryGroupCommand: GetRecoveryGroupCommand_1.GetRecoveryGroupCommand,
|
|
56
|
-
GetRecoveryGroupReadinessSummaryCommand: GetRecoveryGroupReadinessSummaryCommand_1.GetRecoveryGroupReadinessSummaryCommand,
|
|
57
|
-
GetResourceSetCommand: GetResourceSetCommand_1.GetResourceSetCommand,
|
|
58
|
-
ListCellsCommand: ListCellsCommand_1.ListCellsCommand,
|
|
59
|
-
ListCrossAccountAuthorizationsCommand: ListCrossAccountAuthorizationsCommand_1.ListCrossAccountAuthorizationsCommand,
|
|
60
|
-
ListReadinessChecksCommand: ListReadinessChecksCommand_1.ListReadinessChecksCommand,
|
|
61
|
-
ListRecoveryGroupsCommand: ListRecoveryGroupsCommand_1.ListRecoveryGroupsCommand,
|
|
62
|
-
ListResourceSetsCommand: ListResourceSetsCommand_1.ListResourceSetsCommand,
|
|
63
|
-
ListRulesCommand: ListRulesCommand_1.ListRulesCommand,
|
|
64
|
-
ListTagsForResourcesCommand: ListTagsForResourcesCommand_1.ListTagsForResourcesCommand,
|
|
65
|
-
TagResourceCommand: TagResourceCommand_1.TagResourceCommand,
|
|
66
|
-
UntagResourceCommand: UntagResourceCommand_1.UntagResourceCommand,
|
|
67
|
-
UpdateCellCommand: UpdateCellCommand_1.UpdateCellCommand,
|
|
68
|
-
UpdateReadinessCheckCommand: UpdateReadinessCheckCommand_1.UpdateReadinessCheckCommand,
|
|
69
|
-
UpdateRecoveryGroupCommand: UpdateRecoveryGroupCommand_1.UpdateRecoveryGroupCommand,
|
|
70
|
-
UpdateResourceSetCommand: UpdateResourceSetCommand_1.UpdateResourceSetCommand,
|
|
71
|
-
};
|
|
72
|
-
class Route53RecoveryReadiness extends Route53RecoveryReadinessClient_1.Route53RecoveryReadinessClient {
|
|
73
|
-
}
|
|
74
|
-
exports.Route53RecoveryReadiness = Route53RecoveryReadiness;
|
|
75
|
-
(0, smithy_client_1.createAggregatedClient)(commands, Route53RecoveryReadiness);
|
|
1
|
+
module.exports = require("./index.js");
|
|
@@ -1,43 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.Route53RecoveryReadinessClient = exports.__Client = void 0;
|
|
4
|
-
const middleware_host_header_1 = require("@aws-sdk/middleware-host-header");
|
|
5
|
-
const middleware_logger_1 = require("@aws-sdk/middleware-logger");
|
|
6
|
-
const middleware_recursion_detection_1 = require("@aws-sdk/middleware-recursion-detection");
|
|
7
|
-
const middleware_signing_1 = require("@aws-sdk/middleware-signing");
|
|
8
|
-
const middleware_user_agent_1 = require("@aws-sdk/middleware-user-agent");
|
|
9
|
-
const config_resolver_1 = require("@smithy/config-resolver");
|
|
10
|
-
const middleware_content_length_1 = require("@smithy/middleware-content-length");
|
|
11
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
12
|
-
const middleware_retry_1 = require("@smithy/middleware-retry");
|
|
13
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
14
|
-
Object.defineProperty(exports, "__Client", { enumerable: true, get: function () { return smithy_client_1.Client; } });
|
|
15
|
-
const EndpointParameters_1 = require("./endpoint/EndpointParameters");
|
|
16
|
-
const runtimeConfig_1 = require("./runtimeConfig");
|
|
17
|
-
const runtimeExtensions_1 = require("./runtimeExtensions");
|
|
18
|
-
class Route53RecoveryReadinessClient extends smithy_client_1.Client {
|
|
19
|
-
constructor(...[configuration]) {
|
|
20
|
-
const _config_0 = (0, runtimeConfig_1.getRuntimeConfig)(configuration || {});
|
|
21
|
-
const _config_1 = (0, EndpointParameters_1.resolveClientEndpointParameters)(_config_0);
|
|
22
|
-
const _config_2 = (0, config_resolver_1.resolveRegionConfig)(_config_1);
|
|
23
|
-
const _config_3 = (0, middleware_endpoint_1.resolveEndpointConfig)(_config_2);
|
|
24
|
-
const _config_4 = (0, middleware_retry_1.resolveRetryConfig)(_config_3);
|
|
25
|
-
const _config_5 = (0, middleware_host_header_1.resolveHostHeaderConfig)(_config_4);
|
|
26
|
-
const _config_6 = (0, middleware_signing_1.resolveAwsAuthConfig)(_config_5);
|
|
27
|
-
const _config_7 = (0, middleware_user_agent_1.resolveUserAgentConfig)(_config_6);
|
|
28
|
-
const _config_8 = (0, runtimeExtensions_1.resolveRuntimeExtensions)(_config_7, configuration?.extensions || []);
|
|
29
|
-
super(_config_8);
|
|
30
|
-
this.config = _config_8;
|
|
31
|
-
this.middlewareStack.use((0, middleware_retry_1.getRetryPlugin)(this.config));
|
|
32
|
-
this.middlewareStack.use((0, middleware_content_length_1.getContentLengthPlugin)(this.config));
|
|
33
|
-
this.middlewareStack.use((0, middleware_host_header_1.getHostHeaderPlugin)(this.config));
|
|
34
|
-
this.middlewareStack.use((0, middleware_logger_1.getLoggerPlugin)(this.config));
|
|
35
|
-
this.middlewareStack.use((0, middleware_recursion_detection_1.getRecursionDetectionPlugin)(this.config));
|
|
36
|
-
this.middlewareStack.use((0, middleware_signing_1.getAwsAuthPlugin)(this.config));
|
|
37
|
-
this.middlewareStack.use((0, middleware_user_agent_1.getUserAgentPlugin)(this.config));
|
|
38
|
-
}
|
|
39
|
-
destroy() {
|
|
40
|
-
super.destroy();
|
|
41
|
-
}
|
|
42
|
-
}
|
|
43
|
-
exports.Route53RecoveryReadinessClient = Route53RecoveryReadinessClient;
|
|
1
|
+
module.exports = require("./index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CreateCellCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
-
class CreateCellCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("Route53RecoveryReadiness", "CreateCell", {})
|
|
22
|
-
.n("Route53RecoveryReadinessClient", "CreateCellCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_restJson1_1.se_CreateCellCommand)
|
|
25
|
-
.de(Aws_restJson1_1.de_CreateCellCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.CreateCellCommand = CreateCellCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CreateCrossAccountAuthorizationCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
-
class CreateCrossAccountAuthorizationCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("Route53RecoveryReadiness", "CreateCrossAccountAuthorization", {})
|
|
22
|
-
.n("Route53RecoveryReadinessClient", "CreateCrossAccountAuthorizationCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_restJson1_1.se_CreateCrossAccountAuthorizationCommand)
|
|
25
|
-
.de(Aws_restJson1_1.de_CreateCrossAccountAuthorizationCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.CreateCrossAccountAuthorizationCommand = CreateCrossAccountAuthorizationCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CreateReadinessCheckCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
-
class CreateReadinessCheckCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("Route53RecoveryReadiness", "CreateReadinessCheck", {})
|
|
22
|
-
.n("Route53RecoveryReadinessClient", "CreateReadinessCheckCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_restJson1_1.se_CreateReadinessCheckCommand)
|
|
25
|
-
.de(Aws_restJson1_1.de_CreateReadinessCheckCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.CreateReadinessCheckCommand = CreateReadinessCheckCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CreateRecoveryGroupCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
-
class CreateRecoveryGroupCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("Route53RecoveryReadiness", "CreateRecoveryGroup", {})
|
|
22
|
-
.n("Route53RecoveryReadinessClient", "CreateRecoveryGroupCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_restJson1_1.se_CreateRecoveryGroupCommand)
|
|
25
|
-
.de(Aws_restJson1_1.de_CreateRecoveryGroupCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.CreateRecoveryGroupCommand = CreateRecoveryGroupCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CreateResourceSetCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
-
class CreateResourceSetCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("Route53RecoveryReadiness", "CreateResourceSet", {})
|
|
22
|
-
.n("Route53RecoveryReadinessClient", "CreateResourceSetCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_restJson1_1.se_CreateResourceSetCommand)
|
|
25
|
-
.de(Aws_restJson1_1.de_CreateResourceSetCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.CreateResourceSetCommand = CreateResourceSetCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.DeleteCellCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
-
class DeleteCellCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("Route53RecoveryReadiness", "DeleteCell", {})
|
|
22
|
-
.n("Route53RecoveryReadinessClient", "DeleteCellCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_restJson1_1.se_DeleteCellCommand)
|
|
25
|
-
.de(Aws_restJson1_1.de_DeleteCellCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.DeleteCellCommand = DeleteCellCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.DeleteCrossAccountAuthorizationCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
-
class DeleteCrossAccountAuthorizationCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("Route53RecoveryReadiness", "DeleteCrossAccountAuthorization", {})
|
|
22
|
-
.n("Route53RecoveryReadinessClient", "DeleteCrossAccountAuthorizationCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_restJson1_1.se_DeleteCrossAccountAuthorizationCommand)
|
|
25
|
-
.de(Aws_restJson1_1.de_DeleteCrossAccountAuthorizationCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.DeleteCrossAccountAuthorizationCommand = DeleteCrossAccountAuthorizationCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.DeleteReadinessCheckCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
-
class DeleteReadinessCheckCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("Route53RecoveryReadiness", "DeleteReadinessCheck", {})
|
|
22
|
-
.n("Route53RecoveryReadinessClient", "DeleteReadinessCheckCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_restJson1_1.se_DeleteReadinessCheckCommand)
|
|
25
|
-
.de(Aws_restJson1_1.de_DeleteReadinessCheckCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.DeleteReadinessCheckCommand = DeleteReadinessCheckCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.DeleteRecoveryGroupCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
-
class DeleteRecoveryGroupCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("Route53RecoveryReadiness", "DeleteRecoveryGroup", {})
|
|
22
|
-
.n("Route53RecoveryReadinessClient", "DeleteRecoveryGroupCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_restJson1_1.se_DeleteRecoveryGroupCommand)
|
|
25
|
-
.de(Aws_restJson1_1.de_DeleteRecoveryGroupCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.DeleteRecoveryGroupCommand = DeleteRecoveryGroupCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.DeleteResourceSetCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
-
class DeleteResourceSetCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("Route53RecoveryReadiness", "DeleteResourceSet", {})
|
|
22
|
-
.n("Route53RecoveryReadinessClient", "DeleteResourceSetCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_restJson1_1.se_DeleteResourceSetCommand)
|
|
25
|
-
.de(Aws_restJson1_1.de_DeleteResourceSetCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.DeleteResourceSetCommand = DeleteResourceSetCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.GetArchitectureRecommendationsCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
-
class GetArchitectureRecommendationsCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("Route53RecoveryReadiness", "GetArchitectureRecommendations", {})
|
|
22
|
-
.n("Route53RecoveryReadinessClient", "GetArchitectureRecommendationsCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_restJson1_1.se_GetArchitectureRecommendationsCommand)
|
|
25
|
-
.de(Aws_restJson1_1.de_GetArchitectureRecommendationsCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.GetArchitectureRecommendationsCommand = GetArchitectureRecommendationsCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.GetCellCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
-
class GetCellCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("Route53RecoveryReadiness", "GetCell", {})
|
|
22
|
-
.n("Route53RecoveryReadinessClient", "GetCellCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_restJson1_1.se_GetCellCommand)
|
|
25
|
-
.de(Aws_restJson1_1.de_GetCellCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.GetCellCommand = GetCellCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.GetCellReadinessSummaryCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
-
class GetCellReadinessSummaryCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("Route53RecoveryReadiness", "GetCellReadinessSummary", {})
|
|
22
|
-
.n("Route53RecoveryReadinessClient", "GetCellReadinessSummaryCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_restJson1_1.se_GetCellReadinessSummaryCommand)
|
|
25
|
-
.de(Aws_restJson1_1.de_GetCellReadinessSummaryCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.GetCellReadinessSummaryCommand = GetCellReadinessSummaryCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.GetReadinessCheckCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
-
class GetReadinessCheckCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("Route53RecoveryReadiness", "GetReadinessCheck", {})
|
|
22
|
-
.n("Route53RecoveryReadinessClient", "GetReadinessCheckCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_restJson1_1.se_GetReadinessCheckCommand)
|
|
25
|
-
.de(Aws_restJson1_1.de_GetReadinessCheckCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.GetReadinessCheckCommand = GetReadinessCheckCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.GetReadinessCheckResourceStatusCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
-
class GetReadinessCheckResourceStatusCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("Route53RecoveryReadiness", "GetReadinessCheckResourceStatus", {})
|
|
22
|
-
.n("Route53RecoveryReadinessClient", "GetReadinessCheckResourceStatusCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_restJson1_1.se_GetReadinessCheckResourceStatusCommand)
|
|
25
|
-
.de(Aws_restJson1_1.de_GetReadinessCheckResourceStatusCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.GetReadinessCheckResourceStatusCommand = GetReadinessCheckResourceStatusCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.GetReadinessCheckStatusCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
-
class GetReadinessCheckStatusCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("Route53RecoveryReadiness", "GetReadinessCheckStatus", {})
|
|
22
|
-
.n("Route53RecoveryReadinessClient", "GetReadinessCheckStatusCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_restJson1_1.se_GetReadinessCheckStatusCommand)
|
|
25
|
-
.de(Aws_restJson1_1.de_GetReadinessCheckStatusCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.GetReadinessCheckStatusCommand = GetReadinessCheckStatusCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.GetRecoveryGroupCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
-
class GetRecoveryGroupCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("Route53RecoveryReadiness", "GetRecoveryGroup", {})
|
|
22
|
-
.n("Route53RecoveryReadinessClient", "GetRecoveryGroupCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_restJson1_1.se_GetRecoveryGroupCommand)
|
|
25
|
-
.de(Aws_restJson1_1.de_GetRecoveryGroupCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.GetRecoveryGroupCommand = GetRecoveryGroupCommand;
|
|
1
|
+
module.exports = require("../index.js");
|