@aws-sdk/client-datasync 3.168.0 → 3.170.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 +16 -0
- package/dist-types/ts3.4/DataSync.d.ts +796 -225
- package/dist-types/ts3.4/DataSyncClient.d.ts +393 -117
- package/dist-types/ts3.4/commands/CancelTaskExecutionCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/CreateAgentCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/CreateLocationEfsCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/CreateLocationFsxLustreCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreateLocationFsxOntapCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreateLocationFsxOpenZfsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreateLocationFsxWindowsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreateLocationHdfsCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/CreateLocationNfsCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/CreateLocationObjectStorageCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreateLocationS3Command.d.ts +37 -17
- package/dist-types/ts3.4/commands/CreateLocationSmbCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/CreateTaskCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DeleteAgentCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DeleteLocationCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DeleteTaskCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DescribeAgentCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DescribeLocationEfsCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/DescribeLocationFsxLustreCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeLocationFsxOntapCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeLocationFsxOpenZfsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeLocationFsxWindowsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeLocationHdfsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeLocationNfsCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/DescribeLocationObjectStorageCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeLocationS3Command.d.ts +38 -17
- package/dist-types/ts3.4/commands/DescribeLocationSmbCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/DescribeTaskCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DescribeTaskExecutionCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListAgentsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListLocationsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ListTaskExecutionsCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ListTasksCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/StartTaskExecutionCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UpdateAgentCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UpdateLocationHdfsCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/UpdateLocationNfsCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/UpdateLocationObjectStorageCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/UpdateLocationSmbCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/UpdateTaskCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UpdateTaskExecutionCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/index.d.ts +44 -44
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/DataSyncServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +1494 -1402
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListAgentsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListLocationsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListTagsForResourcePaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListTaskExecutionsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListTasksPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +6 -6
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +533 -134
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
- package/package.json +34 -34
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
DataSyncClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../DataSyncClient";
|
|
13
|
+
import {
|
|
14
|
+
DescribeLocationObjectStorageRequest,
|
|
15
|
+
DescribeLocationObjectStorageResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeLocationObjectStorageCommandInput
|
|
18
|
+
extends DescribeLocationObjectStorageRequest {}
|
|
19
|
+
export interface DescribeLocationObjectStorageCommandOutput
|
|
20
|
+
extends DescribeLocationObjectStorageResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class DescribeLocationObjectStorageCommand extends $Command<
|
|
24
|
+
DescribeLocationObjectStorageCommandInput,
|
|
25
|
+
DescribeLocationObjectStorageCommandOutput,
|
|
26
|
+
DataSyncClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DescribeLocationObjectStorageCommandInput;
|
|
29
|
+
constructor(input: DescribeLocationObjectStorageCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: DataSyncClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
DescribeLocationObjectStorageCommandInput,
|
|
37
|
+
DescribeLocationObjectStorageCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,38 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
DataSyncClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../DataSyncClient";
|
|
13
|
+
import {
|
|
14
|
+
DescribeLocationS3Request,
|
|
15
|
+
DescribeLocationS3Response,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeLocationS3CommandInput
|
|
18
|
+
extends DescribeLocationS3Request {}
|
|
19
|
+
export interface DescribeLocationS3CommandOutput
|
|
20
|
+
extends DescribeLocationS3Response,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class DescribeLocationS3Command extends $Command<
|
|
24
|
+
DescribeLocationS3CommandInput,
|
|
25
|
+
DescribeLocationS3CommandOutput,
|
|
26
|
+
DataSyncClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DescribeLocationS3CommandInput;
|
|
29
|
+
constructor(input: DescribeLocationS3CommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: DataSyncClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<DescribeLocationS3CommandInput, DescribeLocationS3CommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -1,17 +1,38 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
DataSyncClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../DataSyncClient";
|
|
13
|
+
import {
|
|
14
|
+
DescribeLocationSmbRequest,
|
|
15
|
+
DescribeLocationSmbResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeLocationSmbCommandInput
|
|
18
|
+
extends DescribeLocationSmbRequest {}
|
|
19
|
+
export interface DescribeLocationSmbCommandOutput
|
|
20
|
+
extends DescribeLocationSmbResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class DescribeLocationSmbCommand extends $Command<
|
|
24
|
+
DescribeLocationSmbCommandInput,
|
|
25
|
+
DescribeLocationSmbCommandOutput,
|
|
26
|
+
DataSyncClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DescribeLocationSmbCommandInput;
|
|
29
|
+
constructor(input: DescribeLocationSmbCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: DataSyncClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<DescribeLocationSmbCommandInput, DescribeLocationSmbCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -1,17 +1,34 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
DataSyncClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../DataSyncClient";
|
|
13
|
+
import { DescribeTaskRequest, DescribeTaskResponse } from "../models/models_0";
|
|
14
|
+
export interface DescribeTaskCommandInput extends DescribeTaskRequest {}
|
|
15
|
+
export interface DescribeTaskCommandOutput
|
|
16
|
+
extends DescribeTaskResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class DescribeTaskCommand extends $Command<
|
|
20
|
+
DescribeTaskCommandInput,
|
|
21
|
+
DescribeTaskCommandOutput,
|
|
22
|
+
DataSyncClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: DescribeTaskCommandInput;
|
|
25
|
+
constructor(input: DescribeTaskCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: DataSyncClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<DescribeTaskCommandInput, DescribeTaskCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
DataSyncClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../DataSyncClient";
|
|
13
|
+
import {
|
|
14
|
+
DescribeTaskExecutionRequest,
|
|
15
|
+
DescribeTaskExecutionResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeTaskExecutionCommandInput
|
|
18
|
+
extends DescribeTaskExecutionRequest {}
|
|
19
|
+
export interface DescribeTaskExecutionCommandOutput
|
|
20
|
+
extends DescribeTaskExecutionResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class DescribeTaskExecutionCommand extends $Command<
|
|
24
|
+
DescribeTaskExecutionCommandInput,
|
|
25
|
+
DescribeTaskExecutionCommandOutput,
|
|
26
|
+
DataSyncClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DescribeTaskExecutionCommandInput;
|
|
29
|
+
constructor(input: DescribeTaskExecutionCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: DataSyncClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
DescribeTaskExecutionCommandInput,
|
|
37
|
+
DescribeTaskExecutionCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,34 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
DataSyncClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../DataSyncClient";
|
|
13
|
+
import { ListAgentsRequest, ListAgentsResponse } from "../models/models_0";
|
|
14
|
+
export interface ListAgentsCommandInput extends ListAgentsRequest {}
|
|
15
|
+
export interface ListAgentsCommandOutput
|
|
16
|
+
extends ListAgentsResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class ListAgentsCommand extends $Command<
|
|
20
|
+
ListAgentsCommandInput,
|
|
21
|
+
ListAgentsCommandOutput,
|
|
22
|
+
DataSyncClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: ListAgentsCommandInput;
|
|
25
|
+
constructor(input: ListAgentsCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: DataSyncClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<ListAgentsCommandInput, ListAgentsCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -1,17 +1,37 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
DataSyncClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../DataSyncClient";
|
|
13
|
+
import {
|
|
14
|
+
ListLocationsRequest,
|
|
15
|
+
ListLocationsResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListLocationsCommandInput extends ListLocationsRequest {}
|
|
18
|
+
export interface ListLocationsCommandOutput
|
|
19
|
+
extends ListLocationsResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
|
|
22
|
+
export declare class ListLocationsCommand extends $Command<
|
|
23
|
+
ListLocationsCommandInput,
|
|
24
|
+
ListLocationsCommandOutput,
|
|
25
|
+
DataSyncClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ListLocationsCommandInput;
|
|
28
|
+
constructor(input: ListLocationsCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: DataSyncClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<ListLocationsCommandInput, ListLocationsCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -1,17 +1,38 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
DataSyncClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../DataSyncClient";
|
|
13
|
+
import {
|
|
14
|
+
ListTagsForResourceRequest,
|
|
15
|
+
ListTagsForResourceResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListTagsForResourceCommandInput
|
|
18
|
+
extends ListTagsForResourceRequest {}
|
|
19
|
+
export interface ListTagsForResourceCommandOutput
|
|
20
|
+
extends ListTagsForResourceResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class ListTagsForResourceCommand extends $Command<
|
|
24
|
+
ListTagsForResourceCommandInput,
|
|
25
|
+
ListTagsForResourceCommandOutput,
|
|
26
|
+
DataSyncClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ListTagsForResourceCommandInput;
|
|
29
|
+
constructor(input: ListTagsForResourceCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: DataSyncClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -1,17 +1,38 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
DataSyncClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../DataSyncClient";
|
|
13
|
+
import {
|
|
14
|
+
ListTaskExecutionsRequest,
|
|
15
|
+
ListTaskExecutionsResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListTaskExecutionsCommandInput
|
|
18
|
+
extends ListTaskExecutionsRequest {}
|
|
19
|
+
export interface ListTaskExecutionsCommandOutput
|
|
20
|
+
extends ListTaskExecutionsResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class ListTaskExecutionsCommand extends $Command<
|
|
24
|
+
ListTaskExecutionsCommandInput,
|
|
25
|
+
ListTaskExecutionsCommandOutput,
|
|
26
|
+
DataSyncClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ListTaskExecutionsCommandInput;
|
|
29
|
+
constructor(input: ListTaskExecutionsCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: DataSyncClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<ListTaskExecutionsCommandInput, ListTaskExecutionsCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -1,17 +1,34 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
DataSyncClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../DataSyncClient";
|
|
13
|
+
import { ListTasksRequest, ListTasksResponse } from "../models/models_0";
|
|
14
|
+
export interface ListTasksCommandInput extends ListTasksRequest {}
|
|
15
|
+
export interface ListTasksCommandOutput
|
|
16
|
+
extends ListTasksResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class ListTasksCommand extends $Command<
|
|
20
|
+
ListTasksCommandInput,
|
|
21
|
+
ListTasksCommandOutput,
|
|
22
|
+
DataSyncClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: ListTasksCommandInput;
|
|
25
|
+
constructor(input: ListTasksCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: DataSyncClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<ListTasksCommandInput, ListTasksCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -1,17 +1,38 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
DataSyncClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../DataSyncClient";
|
|
13
|
+
import {
|
|
14
|
+
StartTaskExecutionRequest,
|
|
15
|
+
StartTaskExecutionResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface StartTaskExecutionCommandInput
|
|
18
|
+
extends StartTaskExecutionRequest {}
|
|
19
|
+
export interface StartTaskExecutionCommandOutput
|
|
20
|
+
extends StartTaskExecutionResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class StartTaskExecutionCommand extends $Command<
|
|
24
|
+
StartTaskExecutionCommandInput,
|
|
25
|
+
StartTaskExecutionCommandOutput,
|
|
26
|
+
DataSyncClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: StartTaskExecutionCommandInput;
|
|
29
|
+
constructor(input: StartTaskExecutionCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: DataSyncClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<StartTaskExecutionCommandInput, StartTaskExecutionCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|