@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,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 { TagResourceRequest, TagResourceResponse } from "../models/models_0";
|
|
14
|
+
export interface TagResourceCommandInput extends TagResourceRequest {}
|
|
15
|
+
export interface TagResourceCommandOutput
|
|
16
|
+
extends TagResourceResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class TagResourceCommand extends $Command<
|
|
20
|
+
TagResourceCommandInput,
|
|
21
|
+
TagResourceCommandOutput,
|
|
22
|
+
DataSyncClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: TagResourceCommandInput;
|
|
25
|
+
constructor(input: TagResourceCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: DataSyncClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
|
|
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
|
+
UntagResourceRequest,
|
|
15
|
+
UntagResourceResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface UntagResourceCommandInput extends UntagResourceRequest {}
|
|
18
|
+
export interface UntagResourceCommandOutput
|
|
19
|
+
extends UntagResourceResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
|
|
22
|
+
export declare class UntagResourceCommand extends $Command<
|
|
23
|
+
UntagResourceCommandInput,
|
|
24
|
+
UntagResourceCommandOutput,
|
|
25
|
+
DataSyncClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: UntagResourceCommandInput;
|
|
28
|
+
constructor(input: UntagResourceCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: DataSyncClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -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 { UpdateAgentRequest, UpdateAgentResponse } from "../models/models_0";
|
|
14
|
+
export interface UpdateAgentCommandInput extends UpdateAgentRequest {}
|
|
15
|
+
export interface UpdateAgentCommandOutput
|
|
16
|
+
extends UpdateAgentResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class UpdateAgentCommand extends $Command<
|
|
20
|
+
UpdateAgentCommandInput,
|
|
21
|
+
UpdateAgentCommandOutput,
|
|
22
|
+
DataSyncClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: UpdateAgentCommandInput;
|
|
25
|
+
constructor(input: UpdateAgentCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: DataSyncClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<UpdateAgentCommandInput, UpdateAgentCommandOutput>;
|
|
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
|
+
UpdateLocationHdfsRequest,
|
|
15
|
+
UpdateLocationHdfsResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface UpdateLocationHdfsCommandInput
|
|
18
|
+
extends UpdateLocationHdfsRequest {}
|
|
19
|
+
export interface UpdateLocationHdfsCommandOutput
|
|
20
|
+
extends UpdateLocationHdfsResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class UpdateLocationHdfsCommand extends $Command<
|
|
24
|
+
UpdateLocationHdfsCommandInput,
|
|
25
|
+
UpdateLocationHdfsCommandOutput,
|
|
26
|
+
DataSyncClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: UpdateLocationHdfsCommandInput;
|
|
29
|
+
constructor(input: UpdateLocationHdfsCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: DataSyncClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<UpdateLocationHdfsCommandInput, UpdateLocationHdfsCommandOutput>;
|
|
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
|
+
UpdateLocationNfsRequest,
|
|
15
|
+
UpdateLocationNfsResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface UpdateLocationNfsCommandInput
|
|
18
|
+
extends UpdateLocationNfsRequest {}
|
|
19
|
+
export interface UpdateLocationNfsCommandOutput
|
|
20
|
+
extends UpdateLocationNfsResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class UpdateLocationNfsCommand extends $Command<
|
|
24
|
+
UpdateLocationNfsCommandInput,
|
|
25
|
+
UpdateLocationNfsCommandOutput,
|
|
26
|
+
DataSyncClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: UpdateLocationNfsCommandInput;
|
|
29
|
+
constructor(input: UpdateLocationNfsCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: DataSyncClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<UpdateLocationNfsCommandInput, UpdateLocationNfsCommandOutput>;
|
|
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
|
+
UpdateLocationObjectStorageRequest,
|
|
15
|
+
UpdateLocationObjectStorageResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface UpdateLocationObjectStorageCommandInput
|
|
18
|
+
extends UpdateLocationObjectStorageRequest {}
|
|
19
|
+
export interface UpdateLocationObjectStorageCommandOutput
|
|
20
|
+
extends UpdateLocationObjectStorageResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class UpdateLocationObjectStorageCommand extends $Command<
|
|
24
|
+
UpdateLocationObjectStorageCommandInput,
|
|
25
|
+
UpdateLocationObjectStorageCommandOutput,
|
|
26
|
+
DataSyncClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: UpdateLocationObjectStorageCommandInput;
|
|
29
|
+
constructor(input: UpdateLocationObjectStorageCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: DataSyncClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
UpdateLocationObjectStorageCommandInput,
|
|
37
|
+
UpdateLocationObjectStorageCommandOutput
|
|
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
|
+
UpdateLocationSmbRequest,
|
|
15
|
+
UpdateLocationSmbResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface UpdateLocationSmbCommandInput
|
|
18
|
+
extends UpdateLocationSmbRequest {}
|
|
19
|
+
export interface UpdateLocationSmbCommandOutput
|
|
20
|
+
extends UpdateLocationSmbResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class UpdateLocationSmbCommand extends $Command<
|
|
24
|
+
UpdateLocationSmbCommandInput,
|
|
25
|
+
UpdateLocationSmbCommandOutput,
|
|
26
|
+
DataSyncClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: UpdateLocationSmbCommandInput;
|
|
29
|
+
constructor(input: UpdateLocationSmbCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: DataSyncClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<UpdateLocationSmbCommandInput, UpdateLocationSmbCommandOutput>;
|
|
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 { UpdateTaskRequest, UpdateTaskResponse } from "../models/models_0";
|
|
14
|
+
export interface UpdateTaskCommandInput extends UpdateTaskRequest {}
|
|
15
|
+
export interface UpdateTaskCommandOutput
|
|
16
|
+
extends UpdateTaskResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class UpdateTaskCommand extends $Command<
|
|
20
|
+
UpdateTaskCommandInput,
|
|
21
|
+
UpdateTaskCommandOutput,
|
|
22
|
+
DataSyncClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: UpdateTaskCommandInput;
|
|
25
|
+
constructor(input: UpdateTaskCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: DataSyncClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<UpdateTaskCommandInput, UpdateTaskCommandOutput>;
|
|
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
|
+
UpdateTaskExecutionRequest,
|
|
15
|
+
UpdateTaskExecutionResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface UpdateTaskExecutionCommandInput
|
|
18
|
+
extends UpdateTaskExecutionRequest {}
|
|
19
|
+
export interface UpdateTaskExecutionCommandOutput
|
|
20
|
+
extends UpdateTaskExecutionResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class UpdateTaskExecutionCommand extends $Command<
|
|
24
|
+
UpdateTaskExecutionCommandInput,
|
|
25
|
+
UpdateTaskExecutionCommandOutput,
|
|
26
|
+
DataSyncClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: UpdateTaskExecutionCommandInput;
|
|
29
|
+
constructor(input: UpdateTaskExecutionCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: DataSyncClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<UpdateTaskExecutionCommandInput, UpdateTaskExecutionCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -1,44 +1,44 @@
|
|
|
1
|
-
export * from "./CancelTaskExecutionCommand";
|
|
2
|
-
export * from "./CreateAgentCommand";
|
|
3
|
-
export * from "./CreateLocationEfsCommand";
|
|
4
|
-
export * from "./CreateLocationFsxLustreCommand";
|
|
5
|
-
export * from "./CreateLocationFsxOntapCommand";
|
|
6
|
-
export * from "./CreateLocationFsxOpenZfsCommand";
|
|
7
|
-
export * from "./CreateLocationFsxWindowsCommand";
|
|
8
|
-
export * from "./CreateLocationHdfsCommand";
|
|
9
|
-
export * from "./CreateLocationNfsCommand";
|
|
10
|
-
export * from "./CreateLocationObjectStorageCommand";
|
|
11
|
-
export * from "./CreateLocationS3Command";
|
|
12
|
-
export * from "./CreateLocationSmbCommand";
|
|
13
|
-
export * from "./CreateTaskCommand";
|
|
14
|
-
export * from "./DeleteAgentCommand";
|
|
15
|
-
export * from "./DeleteLocationCommand";
|
|
16
|
-
export * from "./DeleteTaskCommand";
|
|
17
|
-
export * from "./DescribeAgentCommand";
|
|
18
|
-
export * from "./DescribeLocationEfsCommand";
|
|
19
|
-
export * from "./DescribeLocationFsxLustreCommand";
|
|
20
|
-
export * from "./DescribeLocationFsxOntapCommand";
|
|
21
|
-
export * from "./DescribeLocationFsxOpenZfsCommand";
|
|
22
|
-
export * from "./DescribeLocationFsxWindowsCommand";
|
|
23
|
-
export * from "./DescribeLocationHdfsCommand";
|
|
24
|
-
export * from "./DescribeLocationNfsCommand";
|
|
25
|
-
export * from "./DescribeLocationObjectStorageCommand";
|
|
26
|
-
export * from "./DescribeLocationS3Command";
|
|
27
|
-
export * from "./DescribeLocationSmbCommand";
|
|
28
|
-
export * from "./DescribeTaskCommand";
|
|
29
|
-
export * from "./DescribeTaskExecutionCommand";
|
|
30
|
-
export * from "./ListAgentsCommand";
|
|
31
|
-
export * from "./ListLocationsCommand";
|
|
32
|
-
export * from "./ListTagsForResourceCommand";
|
|
33
|
-
export * from "./ListTaskExecutionsCommand";
|
|
34
|
-
export * from "./ListTasksCommand";
|
|
35
|
-
export * from "./StartTaskExecutionCommand";
|
|
36
|
-
export * from "./TagResourceCommand";
|
|
37
|
-
export * from "./UntagResourceCommand";
|
|
38
|
-
export * from "./UpdateAgentCommand";
|
|
39
|
-
export * from "./UpdateLocationHdfsCommand";
|
|
40
|
-
export * from "./UpdateLocationNfsCommand";
|
|
41
|
-
export * from "./UpdateLocationObjectStorageCommand";
|
|
42
|
-
export * from "./UpdateLocationSmbCommand";
|
|
43
|
-
export * from "./UpdateTaskCommand";
|
|
44
|
-
export * from "./UpdateTaskExecutionCommand";
|
|
1
|
+
export * from "./CancelTaskExecutionCommand";
|
|
2
|
+
export * from "./CreateAgentCommand";
|
|
3
|
+
export * from "./CreateLocationEfsCommand";
|
|
4
|
+
export * from "./CreateLocationFsxLustreCommand";
|
|
5
|
+
export * from "./CreateLocationFsxOntapCommand";
|
|
6
|
+
export * from "./CreateLocationFsxOpenZfsCommand";
|
|
7
|
+
export * from "./CreateLocationFsxWindowsCommand";
|
|
8
|
+
export * from "./CreateLocationHdfsCommand";
|
|
9
|
+
export * from "./CreateLocationNfsCommand";
|
|
10
|
+
export * from "./CreateLocationObjectStorageCommand";
|
|
11
|
+
export * from "./CreateLocationS3Command";
|
|
12
|
+
export * from "./CreateLocationSmbCommand";
|
|
13
|
+
export * from "./CreateTaskCommand";
|
|
14
|
+
export * from "./DeleteAgentCommand";
|
|
15
|
+
export * from "./DeleteLocationCommand";
|
|
16
|
+
export * from "./DeleteTaskCommand";
|
|
17
|
+
export * from "./DescribeAgentCommand";
|
|
18
|
+
export * from "./DescribeLocationEfsCommand";
|
|
19
|
+
export * from "./DescribeLocationFsxLustreCommand";
|
|
20
|
+
export * from "./DescribeLocationFsxOntapCommand";
|
|
21
|
+
export * from "./DescribeLocationFsxOpenZfsCommand";
|
|
22
|
+
export * from "./DescribeLocationFsxWindowsCommand";
|
|
23
|
+
export * from "./DescribeLocationHdfsCommand";
|
|
24
|
+
export * from "./DescribeLocationNfsCommand";
|
|
25
|
+
export * from "./DescribeLocationObjectStorageCommand";
|
|
26
|
+
export * from "./DescribeLocationS3Command";
|
|
27
|
+
export * from "./DescribeLocationSmbCommand";
|
|
28
|
+
export * from "./DescribeTaskCommand";
|
|
29
|
+
export * from "./DescribeTaskExecutionCommand";
|
|
30
|
+
export * from "./ListAgentsCommand";
|
|
31
|
+
export * from "./ListLocationsCommand";
|
|
32
|
+
export * from "./ListTagsForResourceCommand";
|
|
33
|
+
export * from "./ListTaskExecutionsCommand";
|
|
34
|
+
export * from "./ListTasksCommand";
|
|
35
|
+
export * from "./StartTaskExecutionCommand";
|
|
36
|
+
export * from "./TagResourceCommand";
|
|
37
|
+
export * from "./UntagResourceCommand";
|
|
38
|
+
export * from "./UpdateAgentCommand";
|
|
39
|
+
export * from "./UpdateLocationHdfsCommand";
|
|
40
|
+
export * from "./UpdateLocationNfsCommand";
|
|
41
|
+
export * from "./UpdateLocationObjectStorageCommand";
|
|
42
|
+
export * from "./UpdateLocationSmbCommand";
|
|
43
|
+
export * from "./UpdateTaskCommand";
|
|
44
|
+
export * from "./UpdateTaskExecutionCommand";
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { RegionInfoProvider } from "@aws-sdk/types";
|
|
2
|
-
export declare const defaultRegionInfoProvider: RegionInfoProvider;
|
|
1
|
+
import { RegionInfoProvider } from "@aws-sdk/types";
|
|
2
|
+
export declare const defaultRegionInfoProvider: RegionInfoProvider;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export * from "./DataSync";
|
|
2
|
-
export * from "./DataSyncClient";
|
|
3
|
-
export * from "./commands";
|
|
4
|
-
export * from "./models";
|
|
5
|
-
export * from "./pagination";
|
|
6
|
-
export { DataSyncServiceException } from "./models/DataSyncServiceException";
|
|
1
|
+
export * from "./DataSync";
|
|
2
|
+
export * from "./DataSyncClient";
|
|
3
|
+
export * from "./commands";
|
|
4
|
+
export * from "./models";
|
|
5
|
+
export * from "./pagination";
|
|
6
|
+
export { DataSyncServiceException } from "./models/DataSyncServiceException";
|
|
@@ -1,6 +1,8 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import {
|
|
2
|
+
ServiceException as __ServiceException,
|
|
3
|
+
ServiceExceptionOptions as __ServiceExceptionOptions,
|
|
4
|
+
} from "@aws-sdk/smithy-client";
|
|
5
|
+
|
|
6
|
+
export declare class DataSyncServiceException extends __ServiceException {
|
|
7
|
+
constructor(options: __ServiceExceptionOptions);
|
|
8
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
1
|
+
export * from "./models_0";
|