@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 { DeleteAgentRequest, DeleteAgentResponse } from "../models/models_0";
|
|
14
|
+
export interface DeleteAgentCommandInput extends DeleteAgentRequest {}
|
|
15
|
+
export interface DeleteAgentCommandOutput
|
|
16
|
+
extends DeleteAgentResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class DeleteAgentCommand extends $Command<
|
|
20
|
+
DeleteAgentCommandInput,
|
|
21
|
+
DeleteAgentCommandOutput,
|
|
22
|
+
DataSyncClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: DeleteAgentCommandInput;
|
|
25
|
+
constructor(input: DeleteAgentCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: DataSyncClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<DeleteAgentCommandInput, DeleteAgentCommandOutput>;
|
|
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
|
+
DeleteLocationRequest,
|
|
15
|
+
DeleteLocationResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DeleteLocationCommandInput extends DeleteLocationRequest {}
|
|
18
|
+
export interface DeleteLocationCommandOutput
|
|
19
|
+
extends DeleteLocationResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
|
|
22
|
+
export declare class DeleteLocationCommand extends $Command<
|
|
23
|
+
DeleteLocationCommandInput,
|
|
24
|
+
DeleteLocationCommandOutput,
|
|
25
|
+
DataSyncClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DeleteLocationCommandInput;
|
|
28
|
+
constructor(input: DeleteLocationCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: DataSyncClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<DeleteLocationCommandInput, DeleteLocationCommandOutput>;
|
|
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 { DeleteTaskRequest, DeleteTaskResponse } from "../models/models_0";
|
|
14
|
+
export interface DeleteTaskCommandInput extends DeleteTaskRequest {}
|
|
15
|
+
export interface DeleteTaskCommandOutput
|
|
16
|
+
extends DeleteTaskResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class DeleteTaskCommand extends $Command<
|
|
20
|
+
DeleteTaskCommandInput,
|
|
21
|
+
DeleteTaskCommandOutput,
|
|
22
|
+
DataSyncClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: DeleteTaskCommandInput;
|
|
25
|
+
constructor(input: DeleteTaskCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: DataSyncClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<DeleteTaskCommandInput, DeleteTaskCommandOutput>;
|
|
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
|
+
DescribeAgentRequest,
|
|
15
|
+
DescribeAgentResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeAgentCommandInput extends DescribeAgentRequest {}
|
|
18
|
+
export interface DescribeAgentCommandOutput
|
|
19
|
+
extends DescribeAgentResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
|
|
22
|
+
export declare class DescribeAgentCommand extends $Command<
|
|
23
|
+
DescribeAgentCommandInput,
|
|
24
|
+
DescribeAgentCommandOutput,
|
|
25
|
+
DataSyncClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DescribeAgentCommandInput;
|
|
28
|
+
constructor(input: DescribeAgentCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: DataSyncClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<DescribeAgentCommandInput, DescribeAgentCommandOutput>;
|
|
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
|
+
DescribeLocationEfsRequest,
|
|
15
|
+
DescribeLocationEfsResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeLocationEfsCommandInput
|
|
18
|
+
extends DescribeLocationEfsRequest {}
|
|
19
|
+
export interface DescribeLocationEfsCommandOutput
|
|
20
|
+
extends DescribeLocationEfsResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class DescribeLocationEfsCommand extends $Command<
|
|
24
|
+
DescribeLocationEfsCommandInput,
|
|
25
|
+
DescribeLocationEfsCommandOutput,
|
|
26
|
+
DataSyncClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DescribeLocationEfsCommandInput;
|
|
29
|
+
constructor(input: DescribeLocationEfsCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: DataSyncClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<DescribeLocationEfsCommandInput, DescribeLocationEfsCommandOutput>;
|
|
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
|
+
DescribeLocationFsxLustreRequest,
|
|
15
|
+
DescribeLocationFsxLustreResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeLocationFsxLustreCommandInput
|
|
18
|
+
extends DescribeLocationFsxLustreRequest {}
|
|
19
|
+
export interface DescribeLocationFsxLustreCommandOutput
|
|
20
|
+
extends DescribeLocationFsxLustreResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class DescribeLocationFsxLustreCommand extends $Command<
|
|
24
|
+
DescribeLocationFsxLustreCommandInput,
|
|
25
|
+
DescribeLocationFsxLustreCommandOutput,
|
|
26
|
+
DataSyncClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DescribeLocationFsxLustreCommandInput;
|
|
29
|
+
constructor(input: DescribeLocationFsxLustreCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: DataSyncClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
DescribeLocationFsxLustreCommandInput,
|
|
37
|
+
DescribeLocationFsxLustreCommandOutput
|
|
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
|
+
DescribeLocationFsxOntapRequest,
|
|
15
|
+
DescribeLocationFsxOntapResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeLocationFsxOntapCommandInput
|
|
18
|
+
extends DescribeLocationFsxOntapRequest {}
|
|
19
|
+
export interface DescribeLocationFsxOntapCommandOutput
|
|
20
|
+
extends DescribeLocationFsxOntapResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class DescribeLocationFsxOntapCommand extends $Command<
|
|
24
|
+
DescribeLocationFsxOntapCommandInput,
|
|
25
|
+
DescribeLocationFsxOntapCommandOutput,
|
|
26
|
+
DataSyncClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DescribeLocationFsxOntapCommandInput;
|
|
29
|
+
constructor(input: DescribeLocationFsxOntapCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: DataSyncClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
DescribeLocationFsxOntapCommandInput,
|
|
37
|
+
DescribeLocationFsxOntapCommandOutput
|
|
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
|
+
DescribeLocationFsxOpenZfsRequest,
|
|
15
|
+
DescribeLocationFsxOpenZfsResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeLocationFsxOpenZfsCommandInput
|
|
18
|
+
extends DescribeLocationFsxOpenZfsRequest {}
|
|
19
|
+
export interface DescribeLocationFsxOpenZfsCommandOutput
|
|
20
|
+
extends DescribeLocationFsxOpenZfsResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class DescribeLocationFsxOpenZfsCommand extends $Command<
|
|
24
|
+
DescribeLocationFsxOpenZfsCommandInput,
|
|
25
|
+
DescribeLocationFsxOpenZfsCommandOutput,
|
|
26
|
+
DataSyncClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DescribeLocationFsxOpenZfsCommandInput;
|
|
29
|
+
constructor(input: DescribeLocationFsxOpenZfsCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: DataSyncClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
DescribeLocationFsxOpenZfsCommandInput,
|
|
37
|
+
DescribeLocationFsxOpenZfsCommandOutput
|
|
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
|
+
DescribeLocationFsxWindowsRequest,
|
|
15
|
+
DescribeLocationFsxWindowsResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeLocationFsxWindowsCommandInput
|
|
18
|
+
extends DescribeLocationFsxWindowsRequest {}
|
|
19
|
+
export interface DescribeLocationFsxWindowsCommandOutput
|
|
20
|
+
extends DescribeLocationFsxWindowsResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class DescribeLocationFsxWindowsCommand extends $Command<
|
|
24
|
+
DescribeLocationFsxWindowsCommandInput,
|
|
25
|
+
DescribeLocationFsxWindowsCommandOutput,
|
|
26
|
+
DataSyncClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DescribeLocationFsxWindowsCommandInput;
|
|
29
|
+
constructor(input: DescribeLocationFsxWindowsCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: DataSyncClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
DescribeLocationFsxWindowsCommandInput,
|
|
37
|
+
DescribeLocationFsxWindowsCommandOutput
|
|
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
|
+
DescribeLocationHdfsRequest,
|
|
15
|
+
DescribeLocationHdfsResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeLocationHdfsCommandInput
|
|
18
|
+
extends DescribeLocationHdfsRequest {}
|
|
19
|
+
export interface DescribeLocationHdfsCommandOutput
|
|
20
|
+
extends DescribeLocationHdfsResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class DescribeLocationHdfsCommand extends $Command<
|
|
24
|
+
DescribeLocationHdfsCommandInput,
|
|
25
|
+
DescribeLocationHdfsCommandOutput,
|
|
26
|
+
DataSyncClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DescribeLocationHdfsCommandInput;
|
|
29
|
+
constructor(input: DescribeLocationHdfsCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: DataSyncClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
DescribeLocationHdfsCommandInput,
|
|
37
|
+
DescribeLocationHdfsCommandOutput
|
|
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
|
+
DescribeLocationNfsRequest,
|
|
15
|
+
DescribeLocationNfsResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeLocationNfsCommandInput
|
|
18
|
+
extends DescribeLocationNfsRequest {}
|
|
19
|
+
export interface DescribeLocationNfsCommandOutput
|
|
20
|
+
extends DescribeLocationNfsResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class DescribeLocationNfsCommand extends $Command<
|
|
24
|
+
DescribeLocationNfsCommandInput,
|
|
25
|
+
DescribeLocationNfsCommandOutput,
|
|
26
|
+
DataSyncClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DescribeLocationNfsCommandInput;
|
|
29
|
+
constructor(input: DescribeLocationNfsCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: DataSyncClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<DescribeLocationNfsCommandInput, DescribeLocationNfsCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|