@aws-sdk/client-drs 3.99.0 → 3.105.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +30 -0
- package/README.md +7 -7
- package/dist-cjs/Drs.js +45 -0
- package/dist-cjs/DrsClient.js +2 -0
- package/dist-cjs/commands/CreateExtendedSourceServerCommand.js +36 -0
- package/dist-cjs/commands/ListExtensibleSourceServersCommand.js +36 -0
- package/dist-cjs/commands/ListStagingAccountsCommand.js +36 -0
- package/dist-cjs/commands/index.js +3 -0
- package/dist-cjs/models/models_0.js +273 -201
- package/dist-cjs/pagination/ListExtensibleSourceServersPaginator.js +36 -0
- package/dist-cjs/pagination/ListStagingAccountsPaginator.js +36 -0
- package/dist-cjs/pagination/index.js +2 -0
- package/dist-cjs/protocols/Aws_restJson1.js +353 -2
- package/dist-es/Drs.js +45 -0
- package/dist-es/DrsClient.js +2 -0
- package/dist-es/commands/CreateExtendedSourceServerCommand.js +39 -0
- package/dist-es/commands/ListExtensibleSourceServersCommand.js +39 -0
- package/dist-es/commands/ListStagingAccountsCommand.js +39 -0
- package/dist-es/commands/index.js +3 -0
- package/dist-es/models/models_0.js +217 -169
- package/dist-es/pagination/ListExtensibleSourceServersPaginator.js +75 -0
- package/dist-es/pagination/ListStagingAccountsPaginator.js +75 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/protocols/Aws_restJson1.js +439 -15
- package/dist-types/Drs.d.ts +24 -0
- package/dist-types/DrsClient.d.ts +5 -2
- package/dist-types/commands/CreateExtendedSourceServerCommand.d.ts +35 -0
- package/dist-types/commands/ListExtensibleSourceServersCommand.d.ts +38 -0
- package/dist-types/commands/ListStagingAccountsCommand.d.ts +35 -0
- package/dist-types/commands/index.d.ts +3 -0
- package/dist-types/models/models_0.d.ts +723 -537
- package/dist-types/pagination/ListExtensibleSourceServersPaginator.d.ts +4 -0
- package/dist-types/pagination/ListStagingAccountsPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +9 -0
- package/dist-types/ts3.4/Drs.d.ts +15 -0
- package/dist-types/ts3.4/DrsClient.d.ts +5 -2
- package/dist-types/ts3.4/commands/CreateExtendedSourceServerCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListExtensibleSourceServersCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListStagingAccountsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +437 -338
- package/dist-types/ts3.4/pagination/ListExtensibleSourceServersPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListStagingAccountsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +9 -0
- package/package.json +4 -3
package/dist-types/Drs.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
+
import { CreateExtendedSourceServerCommandInput, CreateExtendedSourceServerCommandOutput } from "./commands/CreateExtendedSourceServerCommand";
|
|
2
3
|
import { CreateReplicationConfigurationTemplateCommandInput, CreateReplicationConfigurationTemplateCommandOutput } from "./commands/CreateReplicationConfigurationTemplateCommand";
|
|
3
4
|
import { DeleteJobCommandInput, DeleteJobCommandOutput } from "./commands/DeleteJobCommand";
|
|
4
5
|
import { DeleteRecoveryInstanceCommandInput, DeleteRecoveryInstanceCommandOutput } from "./commands/DeleteRecoveryInstanceCommand";
|
|
@@ -16,6 +17,8 @@ import { GetFailbackReplicationConfigurationCommandInput, GetFailbackReplication
|
|
|
16
17
|
import { GetLaunchConfigurationCommandInput, GetLaunchConfigurationCommandOutput } from "./commands/GetLaunchConfigurationCommand";
|
|
17
18
|
import { GetReplicationConfigurationCommandInput, GetReplicationConfigurationCommandOutput } from "./commands/GetReplicationConfigurationCommand";
|
|
18
19
|
import { InitializeServiceCommandInput, InitializeServiceCommandOutput } from "./commands/InitializeServiceCommand";
|
|
20
|
+
import { ListExtensibleSourceServersCommandInput, ListExtensibleSourceServersCommandOutput } from "./commands/ListExtensibleSourceServersCommand";
|
|
21
|
+
import { ListStagingAccountsCommandInput, ListStagingAccountsCommandOutput } from "./commands/ListStagingAccountsCommand";
|
|
19
22
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
20
23
|
import { RetryDataReplicationCommandInput, RetryDataReplicationCommandOutput } from "./commands/RetryDataReplicationCommand";
|
|
21
24
|
import { StartFailbackLaunchCommandInput, StartFailbackLaunchCommandOutput } from "./commands/StartFailbackLaunchCommand";
|
|
@@ -33,6 +36,12 @@ import { DrsClient } from "./DrsClient";
|
|
|
33
36
|
* <p>AWS Elastic Disaster Recovery Service.</p>
|
|
34
37
|
*/
|
|
35
38
|
export declare class Drs extends DrsClient {
|
|
39
|
+
/**
|
|
40
|
+
* <p>Create an extended source server in the target Account based on the source server in staging account.</p>
|
|
41
|
+
*/
|
|
42
|
+
createExtendedSourceServer(args: CreateExtendedSourceServerCommandInput, options?: __HttpHandlerOptions): Promise<CreateExtendedSourceServerCommandOutput>;
|
|
43
|
+
createExtendedSourceServer(args: CreateExtendedSourceServerCommandInput, cb: (err: any, data?: CreateExtendedSourceServerCommandOutput) => void): void;
|
|
44
|
+
createExtendedSourceServer(args: CreateExtendedSourceServerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateExtendedSourceServerCommandOutput) => void): void;
|
|
36
45
|
/**
|
|
37
46
|
* <p>Creates a new ReplicationConfigurationTemplate.</p>
|
|
38
47
|
*/
|
|
@@ -135,6 +144,21 @@ export declare class Drs extends DrsClient {
|
|
|
135
144
|
initializeService(args: InitializeServiceCommandInput, options?: __HttpHandlerOptions): Promise<InitializeServiceCommandOutput>;
|
|
136
145
|
initializeService(args: InitializeServiceCommandInput, cb: (err: any, data?: InitializeServiceCommandOutput) => void): void;
|
|
137
146
|
initializeService(args: InitializeServiceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: InitializeServiceCommandOutput) => void): void;
|
|
147
|
+
/**
|
|
148
|
+
* <p>Returns a list of source servers on a staging account that are extensible, which means that:
|
|
149
|
+
* a. The source server is not already extended into this Account.
|
|
150
|
+
* b. The source server on the Account we’re reading from is not an extension of another source server.
|
|
151
|
+
* </p>
|
|
152
|
+
*/
|
|
153
|
+
listExtensibleSourceServers(args: ListExtensibleSourceServersCommandInput, options?: __HttpHandlerOptions): Promise<ListExtensibleSourceServersCommandOutput>;
|
|
154
|
+
listExtensibleSourceServers(args: ListExtensibleSourceServersCommandInput, cb: (err: any, data?: ListExtensibleSourceServersCommandOutput) => void): void;
|
|
155
|
+
listExtensibleSourceServers(args: ListExtensibleSourceServersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListExtensibleSourceServersCommandOutput) => void): void;
|
|
156
|
+
/**
|
|
157
|
+
* <p>Returns an array of staging accounts for existing extended source servers.</p>
|
|
158
|
+
*/
|
|
159
|
+
listStagingAccounts(args: ListStagingAccountsCommandInput, options?: __HttpHandlerOptions): Promise<ListStagingAccountsCommandOutput>;
|
|
160
|
+
listStagingAccounts(args: ListStagingAccountsCommandInput, cb: (err: any, data?: ListStagingAccountsCommandOutput) => void): void;
|
|
161
|
+
listStagingAccounts(args: ListStagingAccountsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListStagingAccountsCommandOutput) => void): void;
|
|
138
162
|
/**
|
|
139
163
|
* <p>List all tags for your Elastic Disaster Recovery resources.</p>
|
|
140
164
|
*/
|
|
@@ -6,6 +6,7 @@ import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middlewa
|
|
|
6
6
|
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
7
7
|
import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
8
8
|
import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
9
|
+
import { CreateExtendedSourceServerCommandInput, CreateExtendedSourceServerCommandOutput } from "./commands/CreateExtendedSourceServerCommand";
|
|
9
10
|
import { CreateReplicationConfigurationTemplateCommandInput, CreateReplicationConfigurationTemplateCommandOutput } from "./commands/CreateReplicationConfigurationTemplateCommand";
|
|
10
11
|
import { DeleteJobCommandInput, DeleteJobCommandOutput } from "./commands/DeleteJobCommand";
|
|
11
12
|
import { DeleteRecoveryInstanceCommandInput, DeleteRecoveryInstanceCommandOutput } from "./commands/DeleteRecoveryInstanceCommand";
|
|
@@ -23,6 +24,8 @@ import { GetFailbackReplicationConfigurationCommandInput, GetFailbackReplication
|
|
|
23
24
|
import { GetLaunchConfigurationCommandInput, GetLaunchConfigurationCommandOutput } from "./commands/GetLaunchConfigurationCommand";
|
|
24
25
|
import { GetReplicationConfigurationCommandInput, GetReplicationConfigurationCommandOutput } from "./commands/GetReplicationConfigurationCommand";
|
|
25
26
|
import { InitializeServiceCommandInput, InitializeServiceCommandOutput } from "./commands/InitializeServiceCommand";
|
|
27
|
+
import { ListExtensibleSourceServersCommandInput, ListExtensibleSourceServersCommandOutput } from "./commands/ListExtensibleSourceServersCommand";
|
|
28
|
+
import { ListStagingAccountsCommandInput, ListStagingAccountsCommandOutput } from "./commands/ListStagingAccountsCommand";
|
|
26
29
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
27
30
|
import { RetryDataReplicationCommandInput, RetryDataReplicationCommandOutput } from "./commands/RetryDataReplicationCommand";
|
|
28
31
|
import { StartFailbackLaunchCommandInput, StartFailbackLaunchCommandOutput } from "./commands/StartFailbackLaunchCommand";
|
|
@@ -35,8 +38,8 @@ import { UpdateFailbackReplicationConfigurationCommandInput, UpdateFailbackRepli
|
|
|
35
38
|
import { UpdateLaunchConfigurationCommandInput, UpdateLaunchConfigurationCommandOutput } from "./commands/UpdateLaunchConfigurationCommand";
|
|
36
39
|
import { UpdateReplicationConfigurationCommandInput, UpdateReplicationConfigurationCommandOutput } from "./commands/UpdateReplicationConfigurationCommand";
|
|
37
40
|
import { UpdateReplicationConfigurationTemplateCommandInput, UpdateReplicationConfigurationTemplateCommandOutput } from "./commands/UpdateReplicationConfigurationTemplateCommand";
|
|
38
|
-
export declare type ServiceInputTypes = CreateReplicationConfigurationTemplateCommandInput | DeleteJobCommandInput | DeleteRecoveryInstanceCommandInput | DeleteReplicationConfigurationTemplateCommandInput | DeleteSourceServerCommandInput | DescribeJobLogItemsCommandInput | DescribeJobsCommandInput | DescribeRecoveryInstancesCommandInput | DescribeRecoverySnapshotsCommandInput | DescribeReplicationConfigurationTemplatesCommandInput | DescribeSourceServersCommandInput | DisconnectRecoveryInstanceCommandInput | DisconnectSourceServerCommandInput | GetFailbackReplicationConfigurationCommandInput | GetLaunchConfigurationCommandInput | GetReplicationConfigurationCommandInput | InitializeServiceCommandInput | ListTagsForResourceCommandInput | RetryDataReplicationCommandInput | StartFailbackLaunchCommandInput | StartRecoveryCommandInput | StopFailbackCommandInput | TagResourceCommandInput | TerminateRecoveryInstancesCommandInput | UntagResourceCommandInput | UpdateFailbackReplicationConfigurationCommandInput | UpdateLaunchConfigurationCommandInput | UpdateReplicationConfigurationCommandInput | UpdateReplicationConfigurationTemplateCommandInput;
|
|
39
|
-
export declare type ServiceOutputTypes = CreateReplicationConfigurationTemplateCommandOutput | DeleteJobCommandOutput | DeleteRecoveryInstanceCommandOutput | DeleteReplicationConfigurationTemplateCommandOutput | DeleteSourceServerCommandOutput | DescribeJobLogItemsCommandOutput | DescribeJobsCommandOutput | DescribeRecoveryInstancesCommandOutput | DescribeRecoverySnapshotsCommandOutput | DescribeReplicationConfigurationTemplatesCommandOutput | DescribeSourceServersCommandOutput | DisconnectRecoveryInstanceCommandOutput | DisconnectSourceServerCommandOutput | GetFailbackReplicationConfigurationCommandOutput | GetLaunchConfigurationCommandOutput | GetReplicationConfigurationCommandOutput | InitializeServiceCommandOutput | ListTagsForResourceCommandOutput | RetryDataReplicationCommandOutput | StartFailbackLaunchCommandOutput | StartRecoveryCommandOutput | StopFailbackCommandOutput | TagResourceCommandOutput | TerminateRecoveryInstancesCommandOutput | UntagResourceCommandOutput | UpdateFailbackReplicationConfigurationCommandOutput | UpdateLaunchConfigurationCommandOutput | UpdateReplicationConfigurationCommandOutput | UpdateReplicationConfigurationTemplateCommandOutput;
|
|
41
|
+
export declare type ServiceInputTypes = CreateExtendedSourceServerCommandInput | CreateReplicationConfigurationTemplateCommandInput | DeleteJobCommandInput | DeleteRecoveryInstanceCommandInput | DeleteReplicationConfigurationTemplateCommandInput | DeleteSourceServerCommandInput | DescribeJobLogItemsCommandInput | DescribeJobsCommandInput | DescribeRecoveryInstancesCommandInput | DescribeRecoverySnapshotsCommandInput | DescribeReplicationConfigurationTemplatesCommandInput | DescribeSourceServersCommandInput | DisconnectRecoveryInstanceCommandInput | DisconnectSourceServerCommandInput | GetFailbackReplicationConfigurationCommandInput | GetLaunchConfigurationCommandInput | GetReplicationConfigurationCommandInput | InitializeServiceCommandInput | ListExtensibleSourceServersCommandInput | ListStagingAccountsCommandInput | ListTagsForResourceCommandInput | RetryDataReplicationCommandInput | StartFailbackLaunchCommandInput | StartRecoveryCommandInput | StopFailbackCommandInput | TagResourceCommandInput | TerminateRecoveryInstancesCommandInput | UntagResourceCommandInput | UpdateFailbackReplicationConfigurationCommandInput | UpdateLaunchConfigurationCommandInput | UpdateReplicationConfigurationCommandInput | UpdateReplicationConfigurationTemplateCommandInput;
|
|
42
|
+
export declare type ServiceOutputTypes = CreateExtendedSourceServerCommandOutput | CreateReplicationConfigurationTemplateCommandOutput | DeleteJobCommandOutput | DeleteRecoveryInstanceCommandOutput | DeleteReplicationConfigurationTemplateCommandOutput | DeleteSourceServerCommandOutput | DescribeJobLogItemsCommandOutput | DescribeJobsCommandOutput | DescribeRecoveryInstancesCommandOutput | DescribeRecoverySnapshotsCommandOutput | DescribeReplicationConfigurationTemplatesCommandOutput | DescribeSourceServersCommandOutput | DisconnectRecoveryInstanceCommandOutput | DisconnectSourceServerCommandOutput | GetFailbackReplicationConfigurationCommandOutput | GetLaunchConfigurationCommandOutput | GetReplicationConfigurationCommandOutput | InitializeServiceCommandOutput | ListExtensibleSourceServersCommandOutput | ListStagingAccountsCommandOutput | ListTagsForResourceCommandOutput | RetryDataReplicationCommandOutput | StartFailbackLaunchCommandOutput | StartRecoveryCommandOutput | StopFailbackCommandOutput | TagResourceCommandOutput | TerminateRecoveryInstancesCommandOutput | UntagResourceCommandOutput | UpdateFailbackReplicationConfigurationCommandOutput | UpdateLaunchConfigurationCommandOutput | UpdateReplicationConfigurationCommandOutput | UpdateReplicationConfigurationTemplateCommandOutput;
|
|
40
43
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
41
44
|
/**
|
|
42
45
|
* The HTTP handler to use. Fetch in browser and Https in Nodejs.
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient";
|
|
4
|
+
import { CreateExtendedSourceServerRequest, CreateExtendedSourceServerResponse } from "../models/models_0";
|
|
5
|
+
export interface CreateExtendedSourceServerCommandInput extends CreateExtendedSourceServerRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface CreateExtendedSourceServerCommandOutput extends CreateExtendedSourceServerResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* <p>Create an extended source server in the target Account based on the source server in staging account.</p>
|
|
11
|
+
* @example
|
|
12
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
13
|
+
* ```javascript
|
|
14
|
+
* import { DrsClient, CreateExtendedSourceServerCommand } from "@aws-sdk/client-drs"; // ES Modules import
|
|
15
|
+
* // const { DrsClient, CreateExtendedSourceServerCommand } = require("@aws-sdk/client-drs"); // CommonJS import
|
|
16
|
+
* const client = new DrsClient(config);
|
|
17
|
+
* const command = new CreateExtendedSourceServerCommand(input);
|
|
18
|
+
* const response = await client.send(command);
|
|
19
|
+
* ```
|
|
20
|
+
*
|
|
21
|
+
* @see {@link CreateExtendedSourceServerCommandInput} for command's `input` shape.
|
|
22
|
+
* @see {@link CreateExtendedSourceServerCommandOutput} for command's `response` shape.
|
|
23
|
+
* @see {@link DrsClientResolvedConfig | config} for DrsClient's `config` shape.
|
|
24
|
+
*
|
|
25
|
+
*/
|
|
26
|
+
export declare class CreateExtendedSourceServerCommand extends $Command<CreateExtendedSourceServerCommandInput, CreateExtendedSourceServerCommandOutput, DrsClientResolvedConfig> {
|
|
27
|
+
readonly input: CreateExtendedSourceServerCommandInput;
|
|
28
|
+
constructor(input: CreateExtendedSourceServerCommandInput);
|
|
29
|
+
/**
|
|
30
|
+
* @internal
|
|
31
|
+
*/
|
|
32
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DrsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateExtendedSourceServerCommandInput, CreateExtendedSourceServerCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient";
|
|
4
|
+
import { ListExtensibleSourceServersRequest, ListExtensibleSourceServersResponse } from "../models/models_0";
|
|
5
|
+
export interface ListExtensibleSourceServersCommandInput extends ListExtensibleSourceServersRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface ListExtensibleSourceServersCommandOutput extends ListExtensibleSourceServersResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* <p>Returns a list of source servers on a staging account that are extensible, which means that:
|
|
11
|
+
* a. The source server is not already extended into this Account.
|
|
12
|
+
* b. The source server on the Account we’re reading from is not an extension of another source server.
|
|
13
|
+
* </p>
|
|
14
|
+
* @example
|
|
15
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
16
|
+
* ```javascript
|
|
17
|
+
* import { DrsClient, ListExtensibleSourceServersCommand } from "@aws-sdk/client-drs"; // ES Modules import
|
|
18
|
+
* // const { DrsClient, ListExtensibleSourceServersCommand } = require("@aws-sdk/client-drs"); // CommonJS import
|
|
19
|
+
* const client = new DrsClient(config);
|
|
20
|
+
* const command = new ListExtensibleSourceServersCommand(input);
|
|
21
|
+
* const response = await client.send(command);
|
|
22
|
+
* ```
|
|
23
|
+
*
|
|
24
|
+
* @see {@link ListExtensibleSourceServersCommandInput} for command's `input` shape.
|
|
25
|
+
* @see {@link ListExtensibleSourceServersCommandOutput} for command's `response` shape.
|
|
26
|
+
* @see {@link DrsClientResolvedConfig | config} for DrsClient's `config` shape.
|
|
27
|
+
*
|
|
28
|
+
*/
|
|
29
|
+
export declare class ListExtensibleSourceServersCommand extends $Command<ListExtensibleSourceServersCommandInput, ListExtensibleSourceServersCommandOutput, DrsClientResolvedConfig> {
|
|
30
|
+
readonly input: ListExtensibleSourceServersCommandInput;
|
|
31
|
+
constructor(input: ListExtensibleSourceServersCommandInput);
|
|
32
|
+
/**
|
|
33
|
+
* @internal
|
|
34
|
+
*/
|
|
35
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DrsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListExtensibleSourceServersCommandInput, ListExtensibleSourceServersCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient";
|
|
4
|
+
import { ListStagingAccountsRequest, ListStagingAccountsResponse } from "../models/models_0";
|
|
5
|
+
export interface ListStagingAccountsCommandInput extends ListStagingAccountsRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface ListStagingAccountsCommandOutput extends ListStagingAccountsResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* <p>Returns an array of staging accounts for existing extended source servers.</p>
|
|
11
|
+
* @example
|
|
12
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
13
|
+
* ```javascript
|
|
14
|
+
* import { DrsClient, ListStagingAccountsCommand } from "@aws-sdk/client-drs"; // ES Modules import
|
|
15
|
+
* // const { DrsClient, ListStagingAccountsCommand } = require("@aws-sdk/client-drs"); // CommonJS import
|
|
16
|
+
* const client = new DrsClient(config);
|
|
17
|
+
* const command = new ListStagingAccountsCommand(input);
|
|
18
|
+
* const response = await client.send(command);
|
|
19
|
+
* ```
|
|
20
|
+
*
|
|
21
|
+
* @see {@link ListStagingAccountsCommandInput} for command's `input` shape.
|
|
22
|
+
* @see {@link ListStagingAccountsCommandOutput} for command's `response` shape.
|
|
23
|
+
* @see {@link DrsClientResolvedConfig | config} for DrsClient's `config` shape.
|
|
24
|
+
*
|
|
25
|
+
*/
|
|
26
|
+
export declare class ListStagingAccountsCommand extends $Command<ListStagingAccountsCommandInput, ListStagingAccountsCommandOutput, DrsClientResolvedConfig> {
|
|
27
|
+
readonly input: ListStagingAccountsCommandInput;
|
|
28
|
+
constructor(input: ListStagingAccountsCommandInput);
|
|
29
|
+
/**
|
|
30
|
+
* @internal
|
|
31
|
+
*/
|
|
32
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DrsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListStagingAccountsCommandInput, ListStagingAccountsCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
export * from "./CreateExtendedSourceServerCommand";
|
|
1
2
|
export * from "./CreateReplicationConfigurationTemplateCommand";
|
|
2
3
|
export * from "./DeleteJobCommand";
|
|
3
4
|
export * from "./DeleteRecoveryInstanceCommand";
|
|
@@ -15,6 +16,8 @@ export * from "./GetFailbackReplicationConfigurationCommand";
|
|
|
15
16
|
export * from "./GetLaunchConfigurationCommand";
|
|
16
17
|
export * from "./GetReplicationConfigurationCommand";
|
|
17
18
|
export * from "./InitializeServiceCommand";
|
|
19
|
+
export * from "./ListExtensibleSourceServersCommand";
|
|
20
|
+
export * from "./ListStagingAccountsCommand";
|
|
18
21
|
export * from "./ListTagsForResourceCommand";
|
|
19
22
|
export * from "./RetryDataReplicationCommand";
|
|
20
23
|
export * from "./StartFailbackLaunchCommand";
|