@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,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
|
+
CreateLocationEfsRequest,
|
|
15
|
+
CreateLocationEfsResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface CreateLocationEfsCommandInput
|
|
18
|
+
extends CreateLocationEfsRequest {}
|
|
19
|
+
export interface CreateLocationEfsCommandOutput
|
|
20
|
+
extends CreateLocationEfsResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class CreateLocationEfsCommand extends $Command<
|
|
24
|
+
CreateLocationEfsCommandInput,
|
|
25
|
+
CreateLocationEfsCommandOutput,
|
|
26
|
+
DataSyncClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: CreateLocationEfsCommandInput;
|
|
29
|
+
constructor(input: CreateLocationEfsCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: DataSyncClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<CreateLocationEfsCommandInput, CreateLocationEfsCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -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
|
+
CreateLocationFsxLustreRequest,
|
|
15
|
+
CreateLocationFsxLustreResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface CreateLocationFsxLustreCommandInput
|
|
18
|
+
extends CreateLocationFsxLustreRequest {}
|
|
19
|
+
export interface CreateLocationFsxLustreCommandOutput
|
|
20
|
+
extends CreateLocationFsxLustreResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class CreateLocationFsxLustreCommand extends $Command<
|
|
24
|
+
CreateLocationFsxLustreCommandInput,
|
|
25
|
+
CreateLocationFsxLustreCommandOutput,
|
|
26
|
+
DataSyncClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: CreateLocationFsxLustreCommandInput;
|
|
29
|
+
constructor(input: CreateLocationFsxLustreCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: DataSyncClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
CreateLocationFsxLustreCommandInput,
|
|
37
|
+
CreateLocationFsxLustreCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -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
|
+
CreateLocationFsxOntapRequest,
|
|
15
|
+
CreateLocationFsxOntapResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface CreateLocationFsxOntapCommandInput
|
|
18
|
+
extends CreateLocationFsxOntapRequest {}
|
|
19
|
+
export interface CreateLocationFsxOntapCommandOutput
|
|
20
|
+
extends CreateLocationFsxOntapResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class CreateLocationFsxOntapCommand extends $Command<
|
|
24
|
+
CreateLocationFsxOntapCommandInput,
|
|
25
|
+
CreateLocationFsxOntapCommandOutput,
|
|
26
|
+
DataSyncClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: CreateLocationFsxOntapCommandInput;
|
|
29
|
+
constructor(input: CreateLocationFsxOntapCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: DataSyncClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
CreateLocationFsxOntapCommandInput,
|
|
37
|
+
CreateLocationFsxOntapCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -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
|
+
CreateLocationFsxOpenZfsRequest,
|
|
15
|
+
CreateLocationFsxOpenZfsResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface CreateLocationFsxOpenZfsCommandInput
|
|
18
|
+
extends CreateLocationFsxOpenZfsRequest {}
|
|
19
|
+
export interface CreateLocationFsxOpenZfsCommandOutput
|
|
20
|
+
extends CreateLocationFsxOpenZfsResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class CreateLocationFsxOpenZfsCommand extends $Command<
|
|
24
|
+
CreateLocationFsxOpenZfsCommandInput,
|
|
25
|
+
CreateLocationFsxOpenZfsCommandOutput,
|
|
26
|
+
DataSyncClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: CreateLocationFsxOpenZfsCommandInput;
|
|
29
|
+
constructor(input: CreateLocationFsxOpenZfsCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: DataSyncClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
CreateLocationFsxOpenZfsCommandInput,
|
|
37
|
+
CreateLocationFsxOpenZfsCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -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
|
+
CreateLocationFsxWindowsRequest,
|
|
15
|
+
CreateLocationFsxWindowsResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface CreateLocationFsxWindowsCommandInput
|
|
18
|
+
extends CreateLocationFsxWindowsRequest {}
|
|
19
|
+
export interface CreateLocationFsxWindowsCommandOutput
|
|
20
|
+
extends CreateLocationFsxWindowsResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class CreateLocationFsxWindowsCommand extends $Command<
|
|
24
|
+
CreateLocationFsxWindowsCommandInput,
|
|
25
|
+
CreateLocationFsxWindowsCommandOutput,
|
|
26
|
+
DataSyncClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: CreateLocationFsxWindowsCommandInput;
|
|
29
|
+
constructor(input: CreateLocationFsxWindowsCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: DataSyncClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
CreateLocationFsxWindowsCommandInput,
|
|
37
|
+
CreateLocationFsxWindowsCommandOutput
|
|
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
|
+
CreateLocationHdfsRequest,
|
|
15
|
+
CreateLocationHdfsResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface CreateLocationHdfsCommandInput
|
|
18
|
+
extends CreateLocationHdfsRequest {}
|
|
19
|
+
export interface CreateLocationHdfsCommandOutput
|
|
20
|
+
extends CreateLocationHdfsResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class CreateLocationHdfsCommand extends $Command<
|
|
24
|
+
CreateLocationHdfsCommandInput,
|
|
25
|
+
CreateLocationHdfsCommandOutput,
|
|
26
|
+
DataSyncClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: CreateLocationHdfsCommandInput;
|
|
29
|
+
constructor(input: CreateLocationHdfsCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: DataSyncClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<CreateLocationHdfsCommandInput, CreateLocationHdfsCommandOutput>;
|
|
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
|
+
CreateLocationNfsRequest,
|
|
15
|
+
CreateLocationNfsResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface CreateLocationNfsCommandInput
|
|
18
|
+
extends CreateLocationNfsRequest {}
|
|
19
|
+
export interface CreateLocationNfsCommandOutput
|
|
20
|
+
extends CreateLocationNfsResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class CreateLocationNfsCommand extends $Command<
|
|
24
|
+
CreateLocationNfsCommandInput,
|
|
25
|
+
CreateLocationNfsCommandOutput,
|
|
26
|
+
DataSyncClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: CreateLocationNfsCommandInput;
|
|
29
|
+
constructor(input: CreateLocationNfsCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: DataSyncClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<CreateLocationNfsCommandInput, CreateLocationNfsCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -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
|
+
CreateLocationObjectStorageRequest,
|
|
15
|
+
CreateLocationObjectStorageResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface CreateLocationObjectStorageCommandInput
|
|
18
|
+
extends CreateLocationObjectStorageRequest {}
|
|
19
|
+
export interface CreateLocationObjectStorageCommandOutput
|
|
20
|
+
extends CreateLocationObjectStorageResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class CreateLocationObjectStorageCommand extends $Command<
|
|
24
|
+
CreateLocationObjectStorageCommandInput,
|
|
25
|
+
CreateLocationObjectStorageCommandOutput,
|
|
26
|
+
DataSyncClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: CreateLocationObjectStorageCommandInput;
|
|
29
|
+
constructor(input: CreateLocationObjectStorageCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: DataSyncClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
CreateLocationObjectStorageCommandInput,
|
|
37
|
+
CreateLocationObjectStorageCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -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
|
+
CreateLocationS3Request,
|
|
15
|
+
CreateLocationS3Response,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface CreateLocationS3CommandInput extends CreateLocationS3Request {}
|
|
18
|
+
export interface CreateLocationS3CommandOutput
|
|
19
|
+
extends CreateLocationS3Response,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
|
|
22
|
+
export declare class CreateLocationS3Command extends $Command<
|
|
23
|
+
CreateLocationS3CommandInput,
|
|
24
|
+
CreateLocationS3CommandOutput,
|
|
25
|
+
DataSyncClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: CreateLocationS3CommandInput;
|
|
28
|
+
constructor(input: CreateLocationS3CommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: DataSyncClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<CreateLocationS3CommandInput, CreateLocationS3CommandOutput>;
|
|
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
|
+
CreateLocationSmbRequest,
|
|
15
|
+
CreateLocationSmbResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface CreateLocationSmbCommandInput
|
|
18
|
+
extends CreateLocationSmbRequest {}
|
|
19
|
+
export interface CreateLocationSmbCommandOutput
|
|
20
|
+
extends CreateLocationSmbResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class CreateLocationSmbCommand extends $Command<
|
|
24
|
+
CreateLocationSmbCommandInput,
|
|
25
|
+
CreateLocationSmbCommandOutput,
|
|
26
|
+
DataSyncClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: CreateLocationSmbCommandInput;
|
|
29
|
+
constructor(input: CreateLocationSmbCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: DataSyncClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<CreateLocationSmbCommandInput, CreateLocationSmbCommandOutput>;
|
|
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 { CreateTaskRequest, CreateTaskResponse } from "../models/models_0";
|
|
14
|
+
export interface CreateTaskCommandInput extends CreateTaskRequest {}
|
|
15
|
+
export interface CreateTaskCommandOutput
|
|
16
|
+
extends CreateTaskResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class CreateTaskCommand extends $Command<
|
|
20
|
+
CreateTaskCommandInput,
|
|
21
|
+
CreateTaskCommandOutput,
|
|
22
|
+
DataSyncClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: CreateTaskCommandInput;
|
|
25
|
+
constructor(input: CreateTaskCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: DataSyncClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<CreateTaskCommandInput, CreateTaskCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|