@aws-sdk/client-drs 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 +661 -460
- package/dist-cjs/runtimeConfig.shared.js +6 -1
- package/dist-es/commands/AssociateSourceNetworkStackCommand.js +2 -2
- package/dist-es/commands/CreateExtendedSourceServerCommand.js +2 -2
- package/dist-es/commands/CreateLaunchConfigurationTemplateCommand.js +2 -2
- package/dist-es/commands/CreateReplicationConfigurationTemplateCommand.js +2 -2
- package/dist-es/commands/CreateSourceNetworkCommand.js +2 -2
- package/dist-es/commands/DeleteJobCommand.js +2 -2
- package/dist-es/commands/DeleteLaunchActionCommand.js +2 -2
- package/dist-es/commands/DeleteLaunchConfigurationTemplateCommand.js +2 -2
- package/dist-es/commands/DeleteRecoveryInstanceCommand.js +2 -2
- package/dist-es/commands/DeleteReplicationConfigurationTemplateCommand.js +2 -2
- package/dist-es/commands/DeleteSourceNetworkCommand.js +2 -2
- package/dist-es/commands/DeleteSourceServerCommand.js +2 -2
- package/dist-es/commands/DescribeJobLogItemsCommand.js +2 -2
- package/dist-es/commands/DescribeJobsCommand.js +2 -2
- package/dist-es/commands/DescribeLaunchConfigurationTemplatesCommand.js +2 -2
- package/dist-es/commands/DescribeRecoveryInstancesCommand.js +2 -2
- package/dist-es/commands/DescribeRecoverySnapshotsCommand.js +2 -2
- package/dist-es/commands/DescribeReplicationConfigurationTemplatesCommand.js +2 -2
- package/dist-es/commands/DescribeSourceNetworksCommand.js +2 -2
- package/dist-es/commands/DescribeSourceServersCommand.js +2 -2
- package/dist-es/commands/DisconnectRecoveryInstanceCommand.js +2 -2
- package/dist-es/commands/DisconnectSourceServerCommand.js +2 -2
- package/dist-es/commands/ExportSourceNetworkCfnTemplateCommand.js +2 -2
- package/dist-es/commands/GetFailbackReplicationConfigurationCommand.js +2 -2
- package/dist-es/commands/GetLaunchConfigurationCommand.js +2 -2
- package/dist-es/commands/GetReplicationConfigurationCommand.js +2 -2
- package/dist-es/commands/InitializeServiceCommand.js +2 -2
- package/dist-es/commands/ListExtensibleSourceServersCommand.js +2 -2
- package/dist-es/commands/ListLaunchActionsCommand.js +2 -2
- package/dist-es/commands/ListStagingAccountsCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/PutLaunchActionCommand.js +2 -2
- package/dist-es/commands/RetryDataReplicationCommand.js +2 -2
- package/dist-es/commands/ReverseReplicationCommand.js +2 -2
- package/dist-es/commands/StartFailbackLaunchCommand.js +2 -2
- package/dist-es/commands/StartRecoveryCommand.js +2 -2
- package/dist-es/commands/StartReplicationCommand.js +2 -2
- package/dist-es/commands/StartSourceNetworkRecoveryCommand.js +2 -2
- package/dist-es/commands/StartSourceNetworkReplicationCommand.js +2 -2
- package/dist-es/commands/StopFailbackCommand.js +2 -2
- package/dist-es/commands/StopReplicationCommand.js +2 -2
- package/dist-es/commands/StopSourceNetworkReplicationCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/TerminateRecoveryInstancesCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdateFailbackReplicationConfigurationCommand.js +2 -2
- package/dist-es/commands/UpdateLaunchConfigurationCommand.js +2 -2
- package/dist-es/commands/UpdateLaunchConfigurationTemplateCommand.js +2 -2
- package/dist-es/commands/UpdateReplicationConfigurationCommand.js +2 -2
- package/dist-es/commands/UpdateReplicationConfigurationTemplateCommand.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 +409 -415
- package/dist-types/DrsClient.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 +208 -260
- package/dist-types/ts3.4/DrsClient.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 +207 -262
- 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.drs",
|
|
32
|
+
version: "2020-02-26",
|
|
33
|
+
serviceTarget: "ElasticDisasterRecoveryService",
|
|
34
|
+
},
|
|
30
35
|
serviceId: config?.serviceId ?? "drs",
|
|
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 { AssociateSourceNetworkStack } from "../schemas/schemas_0";
|
|
4
|
+
import { AssociateSourceNetworkStack$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class AssociateSourceNetworkStackCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class AssociateSourceNetworkStackCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ElasticDisasterRecoveryService", "AssociateSourceNetworkStack", {})
|
|
13
13
|
.n("DrsClient", "AssociateSourceNetworkStackCommand")
|
|
14
|
-
.sc(AssociateSourceNetworkStack)
|
|
14
|
+
.sc(AssociateSourceNetworkStack$)
|
|
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 { CreateExtendedSourceServer } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateExtendedSourceServer$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateExtendedSourceServerCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateExtendedSourceServerCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ElasticDisasterRecoveryService", "CreateExtendedSourceServer", {})
|
|
13
13
|
.n("DrsClient", "CreateExtendedSourceServerCommand")
|
|
14
|
-
.sc(CreateExtendedSourceServer)
|
|
14
|
+
.sc(CreateExtendedSourceServer$)
|
|
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 { CreateLaunchConfigurationTemplate } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateLaunchConfigurationTemplate$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateLaunchConfigurationTemplateCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateLaunchConfigurationTemplateCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ElasticDisasterRecoveryService", "CreateLaunchConfigurationTemplate", {})
|
|
13
13
|
.n("DrsClient", "CreateLaunchConfigurationTemplateCommand")
|
|
14
|
-
.sc(CreateLaunchConfigurationTemplate)
|
|
14
|
+
.sc(CreateLaunchConfigurationTemplate$)
|
|
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 { CreateReplicationConfigurationTemplate } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateReplicationConfigurationTemplate$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateReplicationConfigurationTemplateCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateReplicationConfigurationTemplateCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ElasticDisasterRecoveryService", "CreateReplicationConfigurationTemplate", {})
|
|
13
13
|
.n("DrsClient", "CreateReplicationConfigurationTemplateCommand")
|
|
14
|
-
.sc(CreateReplicationConfigurationTemplate)
|
|
14
|
+
.sc(CreateReplicationConfigurationTemplate$)
|
|
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 { CreateSourceNetwork } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateSourceNetwork$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateSourceNetworkCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateSourceNetworkCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ElasticDisasterRecoveryService", "CreateSourceNetwork", {})
|
|
13
13
|
.n("DrsClient", "CreateSourceNetworkCommand")
|
|
14
|
-
.sc(CreateSourceNetwork)
|
|
14
|
+
.sc(CreateSourceNetwork$)
|
|
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 { DeleteJob } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteJob$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteJobCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteJobCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ElasticDisasterRecoveryService", "DeleteJob", {})
|
|
13
13
|
.n("DrsClient", "DeleteJobCommand")
|
|
14
|
-
.sc(DeleteJob)
|
|
14
|
+
.sc(DeleteJob$)
|
|
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 { DeleteLaunchAction } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteLaunchAction$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteLaunchActionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteLaunchActionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ElasticDisasterRecoveryService", "DeleteLaunchAction", {})
|
|
13
13
|
.n("DrsClient", "DeleteLaunchActionCommand")
|
|
14
|
-
.sc(DeleteLaunchAction)
|
|
14
|
+
.sc(DeleteLaunchAction$)
|
|
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 { DeleteLaunchConfigurationTemplate } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteLaunchConfigurationTemplate$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteLaunchConfigurationTemplateCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteLaunchConfigurationTemplateCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ElasticDisasterRecoveryService", "DeleteLaunchConfigurationTemplate", {})
|
|
13
13
|
.n("DrsClient", "DeleteLaunchConfigurationTemplateCommand")
|
|
14
|
-
.sc(DeleteLaunchConfigurationTemplate)
|
|
14
|
+
.sc(DeleteLaunchConfigurationTemplate$)
|
|
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 { DeleteRecoveryInstance } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteRecoveryInstance$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteRecoveryInstanceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteRecoveryInstanceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ElasticDisasterRecoveryService", "DeleteRecoveryInstance", {})
|
|
13
13
|
.n("DrsClient", "DeleteRecoveryInstanceCommand")
|
|
14
|
-
.sc(DeleteRecoveryInstance)
|
|
14
|
+
.sc(DeleteRecoveryInstance$)
|
|
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 { DeleteReplicationConfigurationTemplate } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteReplicationConfigurationTemplate$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteReplicationConfigurationTemplateCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteReplicationConfigurationTemplateCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ElasticDisasterRecoveryService", "DeleteReplicationConfigurationTemplate", {})
|
|
13
13
|
.n("DrsClient", "DeleteReplicationConfigurationTemplateCommand")
|
|
14
|
-
.sc(DeleteReplicationConfigurationTemplate)
|
|
14
|
+
.sc(DeleteReplicationConfigurationTemplate$)
|
|
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 { DeleteSourceNetwork } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteSourceNetwork$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteSourceNetworkCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteSourceNetworkCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ElasticDisasterRecoveryService", "DeleteSourceNetwork", {})
|
|
13
13
|
.n("DrsClient", "DeleteSourceNetworkCommand")
|
|
14
|
-
.sc(DeleteSourceNetwork)
|
|
14
|
+
.sc(DeleteSourceNetwork$)
|
|
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 { DeleteSourceServer } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteSourceServer$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteSourceServerCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteSourceServerCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ElasticDisasterRecoveryService", "DeleteSourceServer", {})
|
|
13
13
|
.n("DrsClient", "DeleteSourceServerCommand")
|
|
14
|
-
.sc(DeleteSourceServer)
|
|
14
|
+
.sc(DeleteSourceServer$)
|
|
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 { DescribeJobLogItems } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeJobLogItems$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeJobLogItemsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeJobLogItemsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ElasticDisasterRecoveryService", "DescribeJobLogItems", {})
|
|
13
13
|
.n("DrsClient", "DescribeJobLogItemsCommand")
|
|
14
|
-
.sc(DescribeJobLogItems)
|
|
14
|
+
.sc(DescribeJobLogItems$)
|
|
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 { DescribeJobs } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeJobs$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeJobsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeJobsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ElasticDisasterRecoveryService", "DescribeJobs", {})
|
|
13
13
|
.n("DrsClient", "DescribeJobsCommand")
|
|
14
|
-
.sc(DescribeJobs)
|
|
14
|
+
.sc(DescribeJobs$)
|
|
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 { DescribeLaunchConfigurationTemplates } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeLaunchConfigurationTemplates$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeLaunchConfigurationTemplatesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeLaunchConfigurationTemplatesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ElasticDisasterRecoveryService", "DescribeLaunchConfigurationTemplates", {})
|
|
13
13
|
.n("DrsClient", "DescribeLaunchConfigurationTemplatesCommand")
|
|
14
|
-
.sc(DescribeLaunchConfigurationTemplates)
|
|
14
|
+
.sc(DescribeLaunchConfigurationTemplates$)
|
|
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 { DescribeRecoveryInstances } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeRecoveryInstances$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeRecoveryInstancesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeRecoveryInstancesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ElasticDisasterRecoveryService", "DescribeRecoveryInstances", {})
|
|
13
13
|
.n("DrsClient", "DescribeRecoveryInstancesCommand")
|
|
14
|
-
.sc(DescribeRecoveryInstances)
|
|
14
|
+
.sc(DescribeRecoveryInstances$)
|
|
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 { DescribeRecoverySnapshots } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeRecoverySnapshots$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeRecoverySnapshotsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeRecoverySnapshotsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ElasticDisasterRecoveryService", "DescribeRecoverySnapshots", {})
|
|
13
13
|
.n("DrsClient", "DescribeRecoverySnapshotsCommand")
|
|
14
|
-
.sc(DescribeRecoverySnapshots)
|
|
14
|
+
.sc(DescribeRecoverySnapshots$)
|
|
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 { DescribeReplicationConfigurationTemplates } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeReplicationConfigurationTemplates$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeReplicationConfigurationTemplatesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeReplicationConfigurationTemplatesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ElasticDisasterRecoveryService", "DescribeReplicationConfigurationTemplates", {})
|
|
13
13
|
.n("DrsClient", "DescribeReplicationConfigurationTemplatesCommand")
|
|
14
|
-
.sc(DescribeReplicationConfigurationTemplates)
|
|
14
|
+
.sc(DescribeReplicationConfigurationTemplates$)
|
|
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 { DescribeSourceNetworks } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeSourceNetworks$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeSourceNetworksCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeSourceNetworksCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ElasticDisasterRecoveryService", "DescribeSourceNetworks", {})
|
|
13
13
|
.n("DrsClient", "DescribeSourceNetworksCommand")
|
|
14
|
-
.sc(DescribeSourceNetworks)
|
|
14
|
+
.sc(DescribeSourceNetworks$)
|
|
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 { DescribeSourceServers } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeSourceServers$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeSourceServersCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeSourceServersCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ElasticDisasterRecoveryService", "DescribeSourceServers", {})
|
|
13
13
|
.n("DrsClient", "DescribeSourceServersCommand")
|
|
14
|
-
.sc(DescribeSourceServers)
|
|
14
|
+
.sc(DescribeSourceServers$)
|
|
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 { DisconnectRecoveryInstance } from "../schemas/schemas_0";
|
|
4
|
+
import { DisconnectRecoveryInstance$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DisconnectRecoveryInstanceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DisconnectRecoveryInstanceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ElasticDisasterRecoveryService", "DisconnectRecoveryInstance", {})
|
|
13
13
|
.n("DrsClient", "DisconnectRecoveryInstanceCommand")
|
|
14
|
-
.sc(DisconnectRecoveryInstance)
|
|
14
|
+
.sc(DisconnectRecoveryInstance$)
|
|
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 { DisconnectSourceServer } from "../schemas/schemas_0";
|
|
4
|
+
import { DisconnectSourceServer$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DisconnectSourceServerCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DisconnectSourceServerCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ElasticDisasterRecoveryService", "DisconnectSourceServer", {})
|
|
13
13
|
.n("DrsClient", "DisconnectSourceServerCommand")
|
|
14
|
-
.sc(DisconnectSourceServer)
|
|
14
|
+
.sc(DisconnectSourceServer$)
|
|
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 { ExportSourceNetworkCfnTemplate } from "../schemas/schemas_0";
|
|
4
|
+
import { ExportSourceNetworkCfnTemplate$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ExportSourceNetworkCfnTemplateCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ExportSourceNetworkCfnTemplateCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ElasticDisasterRecoveryService", "ExportSourceNetworkCfnTemplate", {})
|
|
13
13
|
.n("DrsClient", "ExportSourceNetworkCfnTemplateCommand")
|
|
14
|
-
.sc(ExportSourceNetworkCfnTemplate)
|
|
14
|
+
.sc(ExportSourceNetworkCfnTemplate$)
|
|
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 { GetFailbackReplicationConfiguration } from "../schemas/schemas_0";
|
|
4
|
+
import { GetFailbackReplicationConfiguration$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetFailbackReplicationConfigurationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetFailbackReplicationConfigurationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ElasticDisasterRecoveryService", "GetFailbackReplicationConfiguration", {})
|
|
13
13
|
.n("DrsClient", "GetFailbackReplicationConfigurationCommand")
|
|
14
|
-
.sc(GetFailbackReplicationConfiguration)
|
|
14
|
+
.sc(GetFailbackReplicationConfiguration$)
|
|
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 { GetLaunchConfiguration } from "../schemas/schemas_0";
|
|
4
|
+
import { GetLaunchConfiguration$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetLaunchConfigurationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetLaunchConfigurationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ElasticDisasterRecoveryService", "GetLaunchConfiguration", {})
|
|
13
13
|
.n("DrsClient", "GetLaunchConfigurationCommand")
|
|
14
|
-
.sc(GetLaunchConfiguration)
|
|
14
|
+
.sc(GetLaunchConfiguration$)
|
|
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 { GetReplicationConfiguration } from "../schemas/schemas_0";
|
|
4
|
+
import { GetReplicationConfiguration$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetReplicationConfigurationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetReplicationConfigurationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ElasticDisasterRecoveryService", "GetReplicationConfiguration", {})
|
|
13
13
|
.n("DrsClient", "GetReplicationConfigurationCommand")
|
|
14
|
-
.sc(GetReplicationConfiguration)
|
|
14
|
+
.sc(GetReplicationConfiguration$)
|
|
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 { InitializeService } from "../schemas/schemas_0";
|
|
4
|
+
import { InitializeService$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class InitializeServiceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class InitializeServiceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ElasticDisasterRecoveryService", "InitializeService", {})
|
|
13
13
|
.n("DrsClient", "InitializeServiceCommand")
|
|
14
|
-
.sc(InitializeService)
|
|
14
|
+
.sc(InitializeService$)
|
|
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 { ListExtensibleSourceServers } from "../schemas/schemas_0";
|
|
4
|
+
import { ListExtensibleSourceServers$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListExtensibleSourceServersCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListExtensibleSourceServersCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ElasticDisasterRecoveryService", "ListExtensibleSourceServers", {})
|
|
13
13
|
.n("DrsClient", "ListExtensibleSourceServersCommand")
|
|
14
|
-
.sc(ListExtensibleSourceServers)
|
|
14
|
+
.sc(ListExtensibleSourceServers$)
|
|
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 { ListLaunchActions } from "../schemas/schemas_0";
|
|
4
|
+
import { ListLaunchActions$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListLaunchActionsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListLaunchActionsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ElasticDisasterRecoveryService", "ListLaunchActions", {})
|
|
13
13
|
.n("DrsClient", "ListLaunchActionsCommand")
|
|
14
|
-
.sc(ListLaunchActions)
|
|
14
|
+
.sc(ListLaunchActions$)
|
|
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 { ListStagingAccounts } from "../schemas/schemas_0";
|
|
4
|
+
import { ListStagingAccounts$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListStagingAccountsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListStagingAccountsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ElasticDisasterRecoveryService", "ListStagingAccounts", {})
|
|
13
13
|
.n("DrsClient", "ListStagingAccountsCommand")
|
|
14
|
-
.sc(ListStagingAccounts)
|
|
14
|
+
.sc(ListStagingAccounts$)
|
|
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 { ListTagsForResource } from "../schemas/schemas_0";
|
|
4
|
+
import { ListTagsForResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListTagsForResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListTagsForResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ElasticDisasterRecoveryService", "ListTagsForResource", {})
|
|
13
13
|
.n("DrsClient", "ListTagsForResourceCommand")
|
|
14
|
-
.sc(ListTagsForResource)
|
|
14
|
+
.sc(ListTagsForResource$)
|
|
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 { PutLaunchAction } from "../schemas/schemas_0";
|
|
4
|
+
import { PutLaunchAction$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class PutLaunchActionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class PutLaunchActionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ElasticDisasterRecoveryService", "PutLaunchAction", {})
|
|
13
13
|
.n("DrsClient", "PutLaunchActionCommand")
|
|
14
|
-
.sc(PutLaunchAction)
|
|
14
|
+
.sc(PutLaunchAction$)
|
|
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 { RetryDataReplication } from "../schemas/schemas_0";
|
|
4
|
+
import { RetryDataReplication$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class RetryDataReplicationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class RetryDataReplicationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ElasticDisasterRecoveryService", "RetryDataReplication", {})
|
|
13
13
|
.n("DrsClient", "RetryDataReplicationCommand")
|
|
14
|
-
.sc(RetryDataReplication)
|
|
14
|
+
.sc(RetryDataReplication$)
|
|
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 { ReverseReplication } from "../schemas/schemas_0";
|
|
4
|
+
import { ReverseReplication$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ReverseReplicationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ReverseReplicationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ElasticDisasterRecoveryService", "ReverseReplication", {})
|
|
13
13
|
.n("DrsClient", "ReverseReplicationCommand")
|
|
14
|
-
.sc(ReverseReplication)
|
|
14
|
+
.sc(ReverseReplication$)
|
|
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 { StartFailbackLaunch } from "../schemas/schemas_0";
|
|
4
|
+
import { StartFailbackLaunch$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class StartFailbackLaunchCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class StartFailbackLaunchCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ElasticDisasterRecoveryService", "StartFailbackLaunch", {})
|
|
13
13
|
.n("DrsClient", "StartFailbackLaunchCommand")
|
|
14
|
-
.sc(StartFailbackLaunch)
|
|
14
|
+
.sc(StartFailbackLaunch$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|