@aws-sdk/client-datasync 3.40.0 → 3.45.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.
Files changed (68) hide show
  1. package/CHANGELOG.md +38 -0
  2. package/dist-cjs/DataSync.js +30 -0
  3. package/dist-cjs/commands/CreateLocationFsxLustreCommand.js +36 -0
  4. package/dist-cjs/commands/DescribeLocationFsxLustreCommand.js +36 -0
  5. package/dist-cjs/commands/index.js +2 -0
  6. package/dist-cjs/endpoints.js +9 -0
  7. package/dist-cjs/models/models_0.js +27 -3
  8. package/dist-cjs/protocols/Aws_json1_1.js +167 -2
  9. package/dist-es/DataSync.js +30 -0
  10. package/dist-es/commands/CreateLocationFsxLustreCommand.js +39 -0
  11. package/dist-es/commands/DescribeLocationFsxLustreCommand.js +39 -0
  12. package/dist-es/commands/index.js +2 -0
  13. package/dist-es/endpoints.js +9 -0
  14. package/dist-es/models/models_0.js +16 -0
  15. package/dist-es/protocols/Aws_json1_1.js +178 -0
  16. package/dist-types/DataSync.d.ts +15 -0
  17. package/dist-types/DataSyncClient.d.ts +4 -2
  18. package/dist-types/commands/CancelTaskExecutionCommand.d.ts +1 -1
  19. package/dist-types/commands/CreateAgentCommand.d.ts +1 -1
  20. package/dist-types/commands/CreateLocationEfsCommand.d.ts +1 -1
  21. package/dist-types/commands/CreateLocationFsxLustreCommand.d.ts +35 -0
  22. package/dist-types/commands/CreateLocationFsxWindowsCommand.d.ts +1 -1
  23. package/dist-types/commands/CreateLocationHdfsCommand.d.ts +1 -1
  24. package/dist-types/commands/CreateLocationNfsCommand.d.ts +1 -1
  25. package/dist-types/commands/CreateLocationObjectStorageCommand.d.ts +1 -1
  26. package/dist-types/commands/CreateLocationS3Command.d.ts +1 -1
  27. package/dist-types/commands/CreateLocationSmbCommand.d.ts +1 -1
  28. package/dist-types/commands/CreateTaskCommand.d.ts +1 -1
  29. package/dist-types/commands/DeleteAgentCommand.d.ts +1 -1
  30. package/dist-types/commands/DeleteLocationCommand.d.ts +1 -1
  31. package/dist-types/commands/DeleteTaskCommand.d.ts +1 -1
  32. package/dist-types/commands/DescribeAgentCommand.d.ts +1 -1
  33. package/dist-types/commands/DescribeLocationEfsCommand.d.ts +1 -1
  34. package/dist-types/commands/DescribeLocationFsxLustreCommand.d.ts +36 -0
  35. package/dist-types/commands/DescribeLocationFsxWindowsCommand.d.ts +1 -1
  36. package/dist-types/commands/DescribeLocationHdfsCommand.d.ts +1 -1
  37. package/dist-types/commands/DescribeLocationNfsCommand.d.ts +1 -1
  38. package/dist-types/commands/DescribeLocationObjectStorageCommand.d.ts +1 -1
  39. package/dist-types/commands/DescribeLocationS3Command.d.ts +1 -1
  40. package/dist-types/commands/DescribeLocationSmbCommand.d.ts +1 -1
  41. package/dist-types/commands/DescribeTaskCommand.d.ts +1 -1
  42. package/dist-types/commands/DescribeTaskExecutionCommand.d.ts +1 -1
  43. package/dist-types/commands/ListAgentsCommand.d.ts +1 -1
  44. package/dist-types/commands/ListLocationsCommand.d.ts +1 -1
  45. package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
  46. package/dist-types/commands/ListTaskExecutionsCommand.d.ts +1 -1
  47. package/dist-types/commands/ListTasksCommand.d.ts +1 -1
  48. package/dist-types/commands/StartTaskExecutionCommand.d.ts +1 -1
  49. package/dist-types/commands/TagResourceCommand.d.ts +1 -1
  50. package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
  51. package/dist-types/commands/UpdateAgentCommand.d.ts +1 -1
  52. package/dist-types/commands/UpdateLocationHdfsCommand.d.ts +1 -1
  53. package/dist-types/commands/UpdateLocationNfsCommand.d.ts +1 -1
  54. package/dist-types/commands/UpdateLocationObjectStorageCommand.d.ts +1 -1
  55. package/dist-types/commands/UpdateLocationSmbCommand.d.ts +1 -1
  56. package/dist-types/commands/UpdateTaskCommand.d.ts +1 -1
  57. package/dist-types/commands/UpdateTaskExecutionCommand.d.ts +1 -1
  58. package/dist-types/commands/index.d.ts +2 -0
  59. package/dist-types/models/models_0.d.ts +76 -3
  60. package/dist-types/protocols/Aws_json1_1.d.ts +6 -0
  61. package/dist-types/ts3.4/DataSync.d.ts +10 -0
  62. package/dist-types/ts3.4/DataSyncClient.d.ts +4 -2
  63. package/dist-types/ts3.4/commands/CreateLocationFsxLustreCommand.d.ts +17 -0
  64. package/dist-types/ts3.4/commands/DescribeLocationFsxLustreCommand.d.ts +17 -0
  65. package/dist-types/ts3.4/commands/index.d.ts +2 -0
  66. package/dist-types/ts3.4/models/models_0.d.ts +44 -0
  67. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +6 -0
  68. package/package.json +6 -6
@@ -0,0 +1,36 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient";
4
+ import { DescribeLocationFsxLustreRequest, DescribeLocationFsxLustreResponse } from "../models/models_0";
5
+ export interface DescribeLocationFsxLustreCommandInput extends DescribeLocationFsxLustreRequest {
6
+ }
7
+ export interface DescribeLocationFsxLustreCommandOutput extends DescribeLocationFsxLustreResponse, __MetadataBearer {
8
+ }
9
+ /**
10
+ * <p>Returns metadata, such as the path information about an Amazon FSx for Lustre
11
+ * location.</p>
12
+ * @example
13
+ * Use a bare-bones client and the command you need to make an API call.
14
+ * ```javascript
15
+ * import { DataSyncClient, DescribeLocationFsxLustreCommand } from "@aws-sdk/client-datasync"; // ES Modules import
16
+ * // const { DataSyncClient, DescribeLocationFsxLustreCommand } = require("@aws-sdk/client-datasync"); // CommonJS import
17
+ * const client = new DataSyncClient(config);
18
+ * const command = new DescribeLocationFsxLustreCommand(input);
19
+ * const response = await client.send(command);
20
+ * ```
21
+ *
22
+ * @see {@link DescribeLocationFsxLustreCommandInput} for command's `input` shape.
23
+ * @see {@link DescribeLocationFsxLustreCommandOutput} for command's `response` shape.
24
+ * @see {@link DataSyncClientResolvedConfig | config} for DataSyncClient's `config` shape.
25
+ *
26
+ */
27
+ export declare class DescribeLocationFsxLustreCommand extends $Command<DescribeLocationFsxLustreCommandInput, DescribeLocationFsxLustreCommandOutput, DataSyncClientResolvedConfig> {
28
+ readonly input: DescribeLocationFsxLustreCommandInput;
29
+ constructor(input: DescribeLocationFsxLustreCommandInput);
30
+ /**
31
+ * @internal
32
+ */
33
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataSyncClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeLocationFsxLustreCommandInput, DescribeLocationFsxLustreCommandOutput>;
34
+ private serialize;
35
+ private deserialize;
36
+ }
@@ -21,7 +21,7 @@ export interface DescribeLocationFsxWindowsCommandOutput extends DescribeLocatio
21
21
  *
22
22
  * @see {@link DescribeLocationFsxWindowsCommandInput} for command's `input` shape.
23
23
  * @see {@link DescribeLocationFsxWindowsCommandOutput} for command's `response` shape.
24
- * @see {@link DataSyncClientResolvedConfig | config} for command's `input` shape.
24
+ * @see {@link DataSyncClientResolvedConfig | config} for DataSyncClient's `config` shape.
25
25
  *
26
26
  */
27
27
  export declare class DescribeLocationFsxWindowsCommand extends $Command<DescribeLocationFsxWindowsCommandInput, DescribeLocationFsxWindowsCommandOutput, DataSyncClientResolvedConfig> {
@@ -21,7 +21,7 @@ export interface DescribeLocationHdfsCommandOutput extends DescribeLocationHdfsR
21
21
  *
22
22
  * @see {@link DescribeLocationHdfsCommandInput} for command's `input` shape.
23
23
  * @see {@link DescribeLocationHdfsCommandOutput} for command's `response` shape.
24
- * @see {@link DataSyncClientResolvedConfig | config} for command's `input` shape.
24
+ * @see {@link DataSyncClientResolvedConfig | config} for DataSyncClient's `config` shape.
25
25
  *
26
26
  */
27
27
  export declare class DescribeLocationHdfsCommand extends $Command<DescribeLocationHdfsCommandInput, DescribeLocationHdfsCommandOutput, DataSyncClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface DescribeLocationNfsCommandOutput extends DescribeLocationNfsRes
20
20
  *
21
21
  * @see {@link DescribeLocationNfsCommandInput} for command's `input` shape.
22
22
  * @see {@link DescribeLocationNfsCommandOutput} for command's `response` shape.
23
- * @see {@link DataSyncClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link DataSyncClientResolvedConfig | config} for DataSyncClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class DescribeLocationNfsCommand extends $Command<DescribeLocationNfsCommandInput, DescribeLocationNfsCommandOutput, DataSyncClientResolvedConfig> {
@@ -21,7 +21,7 @@ export interface DescribeLocationObjectStorageCommandOutput extends DescribeLoca
21
21
  *
22
22
  * @see {@link DescribeLocationObjectStorageCommandInput} for command's `input` shape.
23
23
  * @see {@link DescribeLocationObjectStorageCommandOutput} for command's `response` shape.
24
- * @see {@link DataSyncClientResolvedConfig | config} for command's `input` shape.
24
+ * @see {@link DataSyncClientResolvedConfig | config} for DataSyncClient's `config` shape.
25
25
  *
26
26
  */
27
27
  export declare class DescribeLocationObjectStorageCommand extends $Command<DescribeLocationObjectStorageCommandInput, DescribeLocationObjectStorageCommandOutput, DataSyncClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface DescribeLocationS3CommandOutput extends DescribeLocationS3Respo
20
20
  *
21
21
  * @see {@link DescribeLocationS3CommandInput} for command's `input` shape.
22
22
  * @see {@link DescribeLocationS3CommandOutput} for command's `response` shape.
23
- * @see {@link DataSyncClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link DataSyncClientResolvedConfig | config} for DataSyncClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class DescribeLocationS3Command extends $Command<DescribeLocationS3CommandInput, DescribeLocationS3CommandOutput, DataSyncClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface DescribeLocationSmbCommandOutput extends DescribeLocationSmbRes
20
20
  *
21
21
  * @see {@link DescribeLocationSmbCommandInput} for command's `input` shape.
22
22
  * @see {@link DescribeLocationSmbCommandOutput} for command's `response` shape.
23
- * @see {@link DataSyncClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link DataSyncClientResolvedConfig | config} for DataSyncClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class DescribeLocationSmbCommand extends $Command<DescribeLocationSmbCommandInput, DescribeLocationSmbCommandOutput, DataSyncClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface DescribeTaskCommandOutput extends DescribeTaskResponse, __Metad
20
20
  *
21
21
  * @see {@link DescribeTaskCommandInput} for command's `input` shape.
22
22
  * @see {@link DescribeTaskCommandOutput} for command's `response` shape.
23
- * @see {@link DataSyncClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link DataSyncClientResolvedConfig | config} for DataSyncClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class DescribeTaskCommand extends $Command<DescribeTaskCommandInput, DescribeTaskCommandOutput, DataSyncClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface DescribeTaskExecutionCommandOutput extends DescribeTaskExecutio
20
20
  *
21
21
  * @see {@link DescribeTaskExecutionCommandInput} for command's `input` shape.
22
22
  * @see {@link DescribeTaskExecutionCommandOutput} for command's `response` shape.
23
- * @see {@link DataSyncClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link DataSyncClientResolvedConfig | config} for DataSyncClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class DescribeTaskExecutionCommand extends $Command<DescribeTaskExecutionCommandInput, DescribeTaskExecutionCommandOutput, DataSyncClientResolvedConfig> {
@@ -27,7 +27,7 @@ export interface ListAgentsCommandOutput extends ListAgentsResponse, __MetadataB
27
27
  *
28
28
  * @see {@link ListAgentsCommandInput} for command's `input` shape.
29
29
  * @see {@link ListAgentsCommandOutput} for command's `response` shape.
30
- * @see {@link DataSyncClientResolvedConfig | config} for command's `input` shape.
30
+ * @see {@link DataSyncClientResolvedConfig | config} for DataSyncClient's `config` shape.
31
31
  *
32
32
  */
33
33
  export declare class ListAgentsCommand extends $Command<ListAgentsCommandInput, ListAgentsCommandOutput, DataSyncClientResolvedConfig> {
@@ -23,7 +23,7 @@ export interface ListLocationsCommandOutput extends ListLocationsResponse, __Met
23
23
  *
24
24
  * @see {@link ListLocationsCommandInput} for command's `input` shape.
25
25
  * @see {@link ListLocationsCommandOutput} for command's `response` shape.
26
- * @see {@link DataSyncClientResolvedConfig | config} for command's `input` shape.
26
+ * @see {@link DataSyncClientResolvedConfig | config} for DataSyncClient's `config` shape.
27
27
  *
28
28
  */
29
29
  export declare class ListLocationsCommand extends $Command<ListLocationsCommandInput, ListLocationsCommandOutput, DataSyncClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
20
20
  *
21
21
  * @see {@link ListTagsForResourceCommandInput} for command's `input` shape.
22
22
  * @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
23
- * @see {@link DataSyncClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link DataSyncClientResolvedConfig | config} for DataSyncClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, DataSyncClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface ListTaskExecutionsCommandOutput extends ListTaskExecutionsRespo
20
20
  *
21
21
  * @see {@link ListTaskExecutionsCommandInput} for command's `input` shape.
22
22
  * @see {@link ListTaskExecutionsCommandOutput} for command's `response` shape.
23
- * @see {@link DataSyncClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link DataSyncClientResolvedConfig | config} for DataSyncClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class ListTaskExecutionsCommand extends $Command<ListTaskExecutionsCommandInput, ListTaskExecutionsCommandOutput, DataSyncClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface ListTasksCommandOutput extends ListTasksResponse, __MetadataBea
20
20
  *
21
21
  * @see {@link ListTasksCommandInput} for command's `input` shape.
22
22
  * @see {@link ListTasksCommandOutput} for command's `response` shape.
23
- * @see {@link DataSyncClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link DataSyncClientResolvedConfig | config} for DataSyncClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class ListTasksCommand extends $Command<ListTasksCommandInput, ListTasksCommandOutput, DataSyncClientResolvedConfig> {
@@ -28,7 +28,7 @@ export interface StartTaskExecutionCommandOutput extends StartTaskExecutionRespo
28
28
  *
29
29
  * @see {@link StartTaskExecutionCommandInput} for command's `input` shape.
30
30
  * @see {@link StartTaskExecutionCommandOutput} for command's `response` shape.
31
- * @see {@link DataSyncClientResolvedConfig | config} for command's `input` shape.
31
+ * @see {@link DataSyncClientResolvedConfig | config} for DataSyncClient's `config` shape.
32
32
  *
33
33
  */
34
34
  export declare class StartTaskExecutionCommand extends $Command<StartTaskExecutionCommandInput, StartTaskExecutionCommandOutput, DataSyncClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
20
20
  *
21
21
  * @see {@link TagResourceCommandInput} for command's `input` shape.
22
22
  * @see {@link TagResourceCommandOutput} for command's `response` shape.
23
- * @see {@link DataSyncClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link DataSyncClientResolvedConfig | config} for DataSyncClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, DataSyncClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
20
20
  *
21
21
  * @see {@link UntagResourceCommandInput} for command's `input` shape.
22
22
  * @see {@link UntagResourceCommandOutput} for command's `response` shape.
23
- * @see {@link DataSyncClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link DataSyncClientResolvedConfig | config} for DataSyncClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, DataSyncClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface UpdateAgentCommandOutput extends UpdateAgentResponse, __Metadat
20
20
  *
21
21
  * @see {@link UpdateAgentCommandInput} for command's `input` shape.
22
22
  * @see {@link UpdateAgentCommandOutput} for command's `response` shape.
23
- * @see {@link DataSyncClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link DataSyncClientResolvedConfig | config} for DataSyncClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class UpdateAgentCommand extends $Command<UpdateAgentCommandInput, UpdateAgentCommandOutput, DataSyncClientResolvedConfig> {
@@ -21,7 +21,7 @@ export interface UpdateLocationHdfsCommandOutput extends UpdateLocationHdfsRespo
21
21
  *
22
22
  * @see {@link UpdateLocationHdfsCommandInput} for command's `input` shape.
23
23
  * @see {@link UpdateLocationHdfsCommandOutput} for command's `response` shape.
24
- * @see {@link DataSyncClientResolvedConfig | config} for command's `input` shape.
24
+ * @see {@link DataSyncClientResolvedConfig | config} for DataSyncClient's `config` shape.
25
25
  *
26
26
  */
27
27
  export declare class UpdateLocationHdfsCommand extends $Command<UpdateLocationHdfsCommandInput, UpdateLocationHdfsCommandOutput, DataSyncClientResolvedConfig> {
@@ -21,7 +21,7 @@ export interface UpdateLocationNfsCommandOutput extends UpdateLocationNfsRespons
21
21
  *
22
22
  * @see {@link UpdateLocationNfsCommandInput} for command's `input` shape.
23
23
  * @see {@link UpdateLocationNfsCommandOutput} for command's `response` shape.
24
- * @see {@link DataSyncClientResolvedConfig | config} for command's `input` shape.
24
+ * @see {@link DataSyncClientResolvedConfig | config} for DataSyncClient's `config` shape.
25
25
  *
26
26
  */
27
27
  export declare class UpdateLocationNfsCommand extends $Command<UpdateLocationNfsCommandInput, UpdateLocationNfsCommandOutput, DataSyncClientResolvedConfig> {
@@ -22,7 +22,7 @@ export interface UpdateLocationObjectStorageCommandOutput extends UpdateLocation
22
22
  *
23
23
  * @see {@link UpdateLocationObjectStorageCommandInput} for command's `input` shape.
24
24
  * @see {@link UpdateLocationObjectStorageCommandOutput} for command's `response` shape.
25
- * @see {@link DataSyncClientResolvedConfig | config} for command's `input` shape.
25
+ * @see {@link DataSyncClientResolvedConfig | config} for DataSyncClient's `config` shape.
26
26
  *
27
27
  */
28
28
  export declare class UpdateLocationObjectStorageCommand extends $Command<UpdateLocationObjectStorageCommandInput, UpdateLocationObjectStorageCommandOutput, DataSyncClientResolvedConfig> {
@@ -22,7 +22,7 @@ export interface UpdateLocationSmbCommandOutput extends UpdateLocationSmbRespons
22
22
  *
23
23
  * @see {@link UpdateLocationSmbCommandInput} for command's `input` shape.
24
24
  * @see {@link UpdateLocationSmbCommandOutput} for command's `response` shape.
25
- * @see {@link DataSyncClientResolvedConfig | config} for command's `input` shape.
25
+ * @see {@link DataSyncClientResolvedConfig | config} for DataSyncClient's `config` shape.
26
26
  *
27
27
  */
28
28
  export declare class UpdateLocationSmbCommand extends $Command<UpdateLocationSmbCommandInput, UpdateLocationSmbCommandOutput, DataSyncClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface UpdateTaskCommandOutput extends UpdateTaskResponse, __MetadataB
20
20
  *
21
21
  * @see {@link UpdateTaskCommandInput} for command's `input` shape.
22
22
  * @see {@link UpdateTaskCommandOutput} for command's `response` shape.
23
- * @see {@link DataSyncClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link DataSyncClientResolvedConfig | config} for DataSyncClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class UpdateTaskCommand extends $Command<UpdateTaskCommandInput, UpdateTaskCommandOutput, DataSyncClientResolvedConfig> {
@@ -29,7 +29,7 @@ export interface UpdateTaskExecutionCommandOutput extends UpdateTaskExecutionRes
29
29
  *
30
30
  * @see {@link UpdateTaskExecutionCommandInput} for command's `input` shape.
31
31
  * @see {@link UpdateTaskExecutionCommandOutput} for command's `response` shape.
32
- * @see {@link DataSyncClientResolvedConfig | config} for command's `input` shape.
32
+ * @see {@link DataSyncClientResolvedConfig | config} for DataSyncClient's `config` shape.
33
33
  *
34
34
  */
35
35
  export declare class UpdateTaskExecutionCommand extends $Command<UpdateTaskExecutionCommandInput, UpdateTaskExecutionCommandOutput, DataSyncClientResolvedConfig> {
@@ -1,6 +1,7 @@
1
1
  export * from "./CancelTaskExecutionCommand";
2
2
  export * from "./CreateAgentCommand";
3
3
  export * from "./CreateLocationEfsCommand";
4
+ export * from "./CreateLocationFsxLustreCommand";
4
5
  export * from "./CreateLocationFsxWindowsCommand";
5
6
  export * from "./CreateLocationHdfsCommand";
6
7
  export * from "./CreateLocationNfsCommand";
@@ -13,6 +14,7 @@ export * from "./DeleteLocationCommand";
13
14
  export * from "./DeleteTaskCommand";
14
15
  export * from "./DescribeAgentCommand";
15
16
  export * from "./DescribeLocationEfsCommand";
17
+ export * from "./DescribeLocationFsxLustreCommand";
16
18
  export * from "./DescribeLocationFsxWindowsCommand";
17
19
  export * from "./DescribeLocationHdfsCommand";
18
20
  export * from "./DescribeLocationNfsCommand";
@@ -284,9 +284,46 @@ export declare namespace CreateLocationEfsResponse {
284
284
  */
285
285
  const filterSensitiveLog: (obj: CreateLocationEfsResponse) => any;
286
286
  }
287
+ export interface CreateLocationFsxLustreRequest {
288
+ /**
289
+ * <p>The Amazon Resource Name (ARN) for the FSx for Lustre file system.</p>
290
+ */
291
+ FsxFilesystemArn: string | undefined;
292
+ /**
293
+ * <p>The Amazon Resource Names (ARNs) of the security groups that are used to configure the FSx for Lustre file system.</p>
294
+ */
295
+ SecurityGroupArns: string[] | undefined;
296
+ /**
297
+ * <p>A subdirectory in the location's path. This subdirectory in the FSx for Lustre file system is used to read data from the FSx for Lustre source location or write data to the FSx for Lustre destination.</p>
298
+ */
299
+ Subdirectory?: string;
300
+ /**
301
+ * <p>The key-value pair that represents a tag that you want to add to the resource. The value can be an empty string. This value helps you manage, filter, and search for your resources. We recommend that you create a name tag for your location.</p>
302
+ */
303
+ Tags?: TagListEntry[];
304
+ }
305
+ export declare namespace CreateLocationFsxLustreRequest {
306
+ /**
307
+ * @internal
308
+ */
309
+ const filterSensitiveLog: (obj: CreateLocationFsxLustreRequest) => any;
310
+ }
311
+ export interface CreateLocationFsxLustreResponse {
312
+ /**
313
+ * <p>The Amazon Resource Name (ARN) of the FSx for Lustre file system location that's
314
+ * created. </p>
315
+ */
316
+ LocationArn?: string;
317
+ }
318
+ export declare namespace CreateLocationFsxLustreResponse {
319
+ /**
320
+ * @internal
321
+ */
322
+ const filterSensitiveLog: (obj: CreateLocationFsxLustreResponse) => any;
323
+ }
287
324
  export interface CreateLocationFsxWindowsRequest {
288
325
  /**
289
- * <p>A subdirectory in the locations path. This subdirectory in the Amazon FSx for Windows
326
+ * <p>A subdirectory in the location's path. This subdirectory in the Amazon FSx for Windows
290
327
  * File Server file system is used to read data from the Amazon FSx for Windows File Server
291
328
  * source location or write data to the FSx for Windows File Server destination.</p>
292
329
  */
@@ -296,7 +333,7 @@ export interface CreateLocationFsxWindowsRequest {
296
333
  */
297
334
  FsxFilesystemArn: string | undefined;
298
335
  /**
299
- * <p>The Amazon Resource Names (ARNs) of the security groups that are to use to configure the
336
+ * <p>The Amazon Resource Names (ARNs) of the security groups that are used to configure the
300
337
  * FSx for Windows File Server file system.</p>
301
338
  */
302
339
  SecurityGroupArns: string[] | undefined;
@@ -1557,6 +1594,42 @@ export declare namespace DescribeLocationEfsResponse {
1557
1594
  */
1558
1595
  const filterSensitiveLog: (obj: DescribeLocationEfsResponse) => any;
1559
1596
  }
1597
+ export interface DescribeLocationFsxLustreRequest {
1598
+ /**
1599
+ * <p>The Amazon Resource Name (ARN) of the FSx for Lustre location to describe. </p>
1600
+ */
1601
+ LocationArn: string | undefined;
1602
+ }
1603
+ export declare namespace DescribeLocationFsxLustreRequest {
1604
+ /**
1605
+ * @internal
1606
+ */
1607
+ const filterSensitiveLog: (obj: DescribeLocationFsxLustreRequest) => any;
1608
+ }
1609
+ export interface DescribeLocationFsxLustreResponse {
1610
+ /**
1611
+ * <p>The Amazon Resource Name (ARN) of the FSx for Lustre location that was described.</p>
1612
+ */
1613
+ LocationArn?: string;
1614
+ /**
1615
+ * <p>The URI of the FSx for Lustre location that was described.</p>
1616
+ */
1617
+ LocationUri?: string;
1618
+ /**
1619
+ * <p>The Amazon Resource Names (ARNs) of the security groups that are configured for the FSx for Lustre file system.</p>
1620
+ */
1621
+ SecurityGroupArns?: string[];
1622
+ /**
1623
+ * <p>The time that the FSx for Lustre location was created.</p>
1624
+ */
1625
+ CreationTime?: Date;
1626
+ }
1627
+ export declare namespace DescribeLocationFsxLustreResponse {
1628
+ /**
1629
+ * @internal
1630
+ */
1631
+ const filterSensitiveLog: (obj: DescribeLocationFsxLustreResponse) => any;
1632
+ }
1560
1633
  export interface DescribeLocationFsxWindowsRequest {
1561
1634
  /**
1562
1635
  * <p>The Amazon Resource Name (ARN) of the FSx for Windows File Server location to
@@ -2331,7 +2404,7 @@ export interface LocationListEntry {
2331
2404
  */
2332
2405
  LocationArn?: string;
2333
2406
  /**
2334
- * <p>Represents a list of URLs of a location. <code>LocationUri</code> returns an array that
2407
+ * <p>Represents a list of URIs of a location. <code>LocationUri</code> returns an array that
2335
2408
  * contains a list of locations when the <a href="https://docs.aws.amazon.com/datasync/latest/userguide/API_ListLocations.html">ListLocations</a> operation is
2336
2409
  * called.</p>
2337
2410
  * <p>Format: <code>TYPE://GLOBAL_ID/SUBDIR</code>.</p>
@@ -3,6 +3,7 @@ import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
3
3
  import { CancelTaskExecutionCommandInput, CancelTaskExecutionCommandOutput } from "../commands/CancelTaskExecutionCommand";
4
4
  import { CreateAgentCommandInput, CreateAgentCommandOutput } from "../commands/CreateAgentCommand";
5
5
  import { CreateLocationEfsCommandInput, CreateLocationEfsCommandOutput } from "../commands/CreateLocationEfsCommand";
6
+ import { CreateLocationFsxLustreCommandInput, CreateLocationFsxLustreCommandOutput } from "../commands/CreateLocationFsxLustreCommand";
6
7
  import { CreateLocationFsxWindowsCommandInput, CreateLocationFsxWindowsCommandOutput } from "../commands/CreateLocationFsxWindowsCommand";
7
8
  import { CreateLocationHdfsCommandInput, CreateLocationHdfsCommandOutput } from "../commands/CreateLocationHdfsCommand";
8
9
  import { CreateLocationNfsCommandInput, CreateLocationNfsCommandOutput } from "../commands/CreateLocationNfsCommand";
@@ -15,6 +16,7 @@ import { DeleteLocationCommandInput, DeleteLocationCommandOutput } from "../comm
15
16
  import { DeleteTaskCommandInput, DeleteTaskCommandOutput } from "../commands/DeleteTaskCommand";
16
17
  import { DescribeAgentCommandInput, DescribeAgentCommandOutput } from "../commands/DescribeAgentCommand";
17
18
  import { DescribeLocationEfsCommandInput, DescribeLocationEfsCommandOutput } from "../commands/DescribeLocationEfsCommand";
19
+ import { DescribeLocationFsxLustreCommandInput, DescribeLocationFsxLustreCommandOutput } from "../commands/DescribeLocationFsxLustreCommand";
18
20
  import { DescribeLocationFsxWindowsCommandInput, DescribeLocationFsxWindowsCommandOutput } from "../commands/DescribeLocationFsxWindowsCommand";
19
21
  import { DescribeLocationHdfsCommandInput, DescribeLocationHdfsCommandOutput } from "../commands/DescribeLocationHdfsCommand";
20
22
  import { DescribeLocationNfsCommandInput, DescribeLocationNfsCommandOutput } from "../commands/DescribeLocationNfsCommand";
@@ -41,6 +43,7 @@ import { UpdateTaskExecutionCommandInput, UpdateTaskExecutionCommandOutput } fro
41
43
  export declare const serializeAws_json1_1CancelTaskExecutionCommand: (input: CancelTaskExecutionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
42
44
  export declare const serializeAws_json1_1CreateAgentCommand: (input: CreateAgentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
43
45
  export declare const serializeAws_json1_1CreateLocationEfsCommand: (input: CreateLocationEfsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
46
+ export declare const serializeAws_json1_1CreateLocationFsxLustreCommand: (input: CreateLocationFsxLustreCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
44
47
  export declare const serializeAws_json1_1CreateLocationFsxWindowsCommand: (input: CreateLocationFsxWindowsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
45
48
  export declare const serializeAws_json1_1CreateLocationHdfsCommand: (input: CreateLocationHdfsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
46
49
  export declare const serializeAws_json1_1CreateLocationNfsCommand: (input: CreateLocationNfsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
@@ -53,6 +56,7 @@ export declare const serializeAws_json1_1DeleteLocationCommand: (input: DeleteLo
53
56
  export declare const serializeAws_json1_1DeleteTaskCommand: (input: DeleteTaskCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
54
57
  export declare const serializeAws_json1_1DescribeAgentCommand: (input: DescribeAgentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
55
58
  export declare const serializeAws_json1_1DescribeLocationEfsCommand: (input: DescribeLocationEfsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
59
+ export declare const serializeAws_json1_1DescribeLocationFsxLustreCommand: (input: DescribeLocationFsxLustreCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
56
60
  export declare const serializeAws_json1_1DescribeLocationFsxWindowsCommand: (input: DescribeLocationFsxWindowsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
57
61
  export declare const serializeAws_json1_1DescribeLocationHdfsCommand: (input: DescribeLocationHdfsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
58
62
  export declare const serializeAws_json1_1DescribeLocationNfsCommand: (input: DescribeLocationNfsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
@@ -79,6 +83,7 @@ export declare const serializeAws_json1_1UpdateTaskExecutionCommand: (input: Upd
79
83
  export declare const deserializeAws_json1_1CancelTaskExecutionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CancelTaskExecutionCommandOutput>;
80
84
  export declare const deserializeAws_json1_1CreateAgentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateAgentCommandOutput>;
81
85
  export declare const deserializeAws_json1_1CreateLocationEfsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateLocationEfsCommandOutput>;
86
+ export declare const deserializeAws_json1_1CreateLocationFsxLustreCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateLocationFsxLustreCommandOutput>;
82
87
  export declare const deserializeAws_json1_1CreateLocationFsxWindowsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateLocationFsxWindowsCommandOutput>;
83
88
  export declare const deserializeAws_json1_1CreateLocationHdfsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateLocationHdfsCommandOutput>;
84
89
  export declare const deserializeAws_json1_1CreateLocationNfsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateLocationNfsCommandOutput>;
@@ -91,6 +96,7 @@ export declare const deserializeAws_json1_1DeleteLocationCommand: (output: __Htt
91
96
  export declare const deserializeAws_json1_1DeleteTaskCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteTaskCommandOutput>;
92
97
  export declare const deserializeAws_json1_1DescribeAgentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeAgentCommandOutput>;
93
98
  export declare const deserializeAws_json1_1DescribeLocationEfsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeLocationEfsCommandOutput>;
99
+ export declare const deserializeAws_json1_1DescribeLocationFsxLustreCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeLocationFsxLustreCommandOutput>;
94
100
  export declare const deserializeAws_json1_1DescribeLocationFsxWindowsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeLocationFsxWindowsCommandOutput>;
95
101
  export declare const deserializeAws_json1_1DescribeLocationHdfsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeLocationHdfsCommandOutput>;
96
102
  export declare const deserializeAws_json1_1DescribeLocationNfsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeLocationNfsCommandOutput>;
@@ -2,6 +2,7 @@ import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
2
  import { CancelTaskExecutionCommandInput, CancelTaskExecutionCommandOutput } from "./commands/CancelTaskExecutionCommand";
3
3
  import { CreateAgentCommandInput, CreateAgentCommandOutput } from "./commands/CreateAgentCommand";
4
4
  import { CreateLocationEfsCommandInput, CreateLocationEfsCommandOutput } from "./commands/CreateLocationEfsCommand";
5
+ import { CreateLocationFsxLustreCommandInput, CreateLocationFsxLustreCommandOutput } from "./commands/CreateLocationFsxLustreCommand";
5
6
  import { CreateLocationFsxWindowsCommandInput, CreateLocationFsxWindowsCommandOutput } from "./commands/CreateLocationFsxWindowsCommand";
6
7
  import { CreateLocationHdfsCommandInput, CreateLocationHdfsCommandOutput } from "./commands/CreateLocationHdfsCommand";
7
8
  import { CreateLocationNfsCommandInput, CreateLocationNfsCommandOutput } from "./commands/CreateLocationNfsCommand";
@@ -14,6 +15,7 @@ import { DeleteLocationCommandInput, DeleteLocationCommandOutput } from "./comma
14
15
  import { DeleteTaskCommandInput, DeleteTaskCommandOutput } from "./commands/DeleteTaskCommand";
15
16
  import { DescribeAgentCommandInput, DescribeAgentCommandOutput } from "./commands/DescribeAgentCommand";
16
17
  import { DescribeLocationEfsCommandInput, DescribeLocationEfsCommandOutput } from "./commands/DescribeLocationEfsCommand";
18
+ import { DescribeLocationFsxLustreCommandInput, DescribeLocationFsxLustreCommandOutput } from "./commands/DescribeLocationFsxLustreCommand";
17
19
  import { DescribeLocationFsxWindowsCommandInput, DescribeLocationFsxWindowsCommandOutput } from "./commands/DescribeLocationFsxWindowsCommand";
18
20
  import { DescribeLocationHdfsCommandInput, DescribeLocationHdfsCommandOutput } from "./commands/DescribeLocationHdfsCommand";
19
21
  import { DescribeLocationNfsCommandInput, DescribeLocationNfsCommandOutput } from "./commands/DescribeLocationNfsCommand";
@@ -53,6 +55,10 @@ export declare class DataSync extends DataSyncClient {
53
55
  createLocationEfs(args: CreateLocationEfsCommandInput, cb: (err: any, data?: CreateLocationEfsCommandOutput) => void): void;
54
56
  createLocationEfs(args: CreateLocationEfsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateLocationEfsCommandOutput) => void): void;
55
57
 
58
+ createLocationFsxLustre(args: CreateLocationFsxLustreCommandInput, options?: __HttpHandlerOptions): Promise<CreateLocationFsxLustreCommandOutput>;
59
+ createLocationFsxLustre(args: CreateLocationFsxLustreCommandInput, cb: (err: any, data?: CreateLocationFsxLustreCommandOutput) => void): void;
60
+ createLocationFsxLustre(args: CreateLocationFsxLustreCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateLocationFsxLustreCommandOutput) => void): void;
61
+
56
62
  createLocationFsxWindows(args: CreateLocationFsxWindowsCommandInput, options?: __HttpHandlerOptions): Promise<CreateLocationFsxWindowsCommandOutput>;
57
63
  createLocationFsxWindows(args: CreateLocationFsxWindowsCommandInput, cb: (err: any, data?: CreateLocationFsxWindowsCommandOutput) => void): void;
58
64
  createLocationFsxWindows(args: CreateLocationFsxWindowsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateLocationFsxWindowsCommandOutput) => void): void;
@@ -101,6 +107,10 @@ export declare class DataSync extends DataSyncClient {
101
107
  describeLocationEfs(args: DescribeLocationEfsCommandInput, cb: (err: any, data?: DescribeLocationEfsCommandOutput) => void): void;
102
108
  describeLocationEfs(args: DescribeLocationEfsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeLocationEfsCommandOutput) => void): void;
103
109
 
110
+ describeLocationFsxLustre(args: DescribeLocationFsxLustreCommandInput, options?: __HttpHandlerOptions): Promise<DescribeLocationFsxLustreCommandOutput>;
111
+ describeLocationFsxLustre(args: DescribeLocationFsxLustreCommandInput, cb: (err: any, data?: DescribeLocationFsxLustreCommandOutput) => void): void;
112
+ describeLocationFsxLustre(args: DescribeLocationFsxLustreCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeLocationFsxLustreCommandOutput) => void): void;
113
+
104
114
  describeLocationFsxWindows(args: DescribeLocationFsxWindowsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeLocationFsxWindowsCommandOutput>;
105
115
  describeLocationFsxWindows(args: DescribeLocationFsxWindowsCommandInput, cb: (err: any, data?: DescribeLocationFsxWindowsCommandOutput) => void): void;
106
116
  describeLocationFsxWindows(args: DescribeLocationFsxWindowsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeLocationFsxWindowsCommandOutput) => void): void;
@@ -9,6 +9,7 @@ import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encode
9
9
  import { CancelTaskExecutionCommandInput, CancelTaskExecutionCommandOutput } from "./commands/CancelTaskExecutionCommand";
10
10
  import { CreateAgentCommandInput, CreateAgentCommandOutput } from "./commands/CreateAgentCommand";
11
11
  import { CreateLocationEfsCommandInput, CreateLocationEfsCommandOutput } from "./commands/CreateLocationEfsCommand";
12
+ import { CreateLocationFsxLustreCommandInput, CreateLocationFsxLustreCommandOutput } from "./commands/CreateLocationFsxLustreCommand";
12
13
  import { CreateLocationFsxWindowsCommandInput, CreateLocationFsxWindowsCommandOutput } from "./commands/CreateLocationFsxWindowsCommand";
13
14
  import { CreateLocationHdfsCommandInput, CreateLocationHdfsCommandOutput } from "./commands/CreateLocationHdfsCommand";
14
15
  import { CreateLocationNfsCommandInput, CreateLocationNfsCommandOutput } from "./commands/CreateLocationNfsCommand";
@@ -21,6 +22,7 @@ import { DeleteLocationCommandInput, DeleteLocationCommandOutput } from "./comma
21
22
  import { DeleteTaskCommandInput, DeleteTaskCommandOutput } from "./commands/DeleteTaskCommand";
22
23
  import { DescribeAgentCommandInput, DescribeAgentCommandOutput } from "./commands/DescribeAgentCommand";
23
24
  import { DescribeLocationEfsCommandInput, DescribeLocationEfsCommandOutput } from "./commands/DescribeLocationEfsCommand";
25
+ import { DescribeLocationFsxLustreCommandInput, DescribeLocationFsxLustreCommandOutput } from "./commands/DescribeLocationFsxLustreCommand";
24
26
  import { DescribeLocationFsxWindowsCommandInput, DescribeLocationFsxWindowsCommandOutput } from "./commands/DescribeLocationFsxWindowsCommand";
25
27
  import { DescribeLocationHdfsCommandInput, DescribeLocationHdfsCommandOutput } from "./commands/DescribeLocationHdfsCommand";
26
28
  import { DescribeLocationNfsCommandInput, DescribeLocationNfsCommandOutput } from "./commands/DescribeLocationNfsCommand";
@@ -44,8 +46,8 @@ import { UpdateLocationObjectStorageCommandInput, UpdateLocationObjectStorageCom
44
46
  import { UpdateLocationSmbCommandInput, UpdateLocationSmbCommandOutput } from "./commands/UpdateLocationSmbCommand";
45
47
  import { UpdateTaskCommandInput, UpdateTaskCommandOutput } from "./commands/UpdateTaskCommand";
46
48
  import { UpdateTaskExecutionCommandInput, UpdateTaskExecutionCommandOutput } from "./commands/UpdateTaskExecutionCommand";
47
- export declare type ServiceInputTypes = CancelTaskExecutionCommandInput | CreateAgentCommandInput | CreateLocationEfsCommandInput | CreateLocationFsxWindowsCommandInput | CreateLocationHdfsCommandInput | CreateLocationNfsCommandInput | CreateLocationObjectStorageCommandInput | CreateLocationS3CommandInput | CreateLocationSmbCommandInput | CreateTaskCommandInput | DeleteAgentCommandInput | DeleteLocationCommandInput | DeleteTaskCommandInput | DescribeAgentCommandInput | DescribeLocationEfsCommandInput | DescribeLocationFsxWindowsCommandInput | DescribeLocationHdfsCommandInput | DescribeLocationNfsCommandInput | DescribeLocationObjectStorageCommandInput | DescribeLocationS3CommandInput | DescribeLocationSmbCommandInput | DescribeTaskCommandInput | DescribeTaskExecutionCommandInput | ListAgentsCommandInput | ListLocationsCommandInput | ListTagsForResourceCommandInput | ListTaskExecutionsCommandInput | ListTasksCommandInput | StartTaskExecutionCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateAgentCommandInput | UpdateLocationHdfsCommandInput | UpdateLocationNfsCommandInput | UpdateLocationObjectStorageCommandInput | UpdateLocationSmbCommandInput | UpdateTaskCommandInput | UpdateTaskExecutionCommandInput;
48
- export declare type ServiceOutputTypes = CancelTaskExecutionCommandOutput | CreateAgentCommandOutput | CreateLocationEfsCommandOutput | CreateLocationFsxWindowsCommandOutput | CreateLocationHdfsCommandOutput | CreateLocationNfsCommandOutput | CreateLocationObjectStorageCommandOutput | CreateLocationS3CommandOutput | CreateLocationSmbCommandOutput | CreateTaskCommandOutput | DeleteAgentCommandOutput | DeleteLocationCommandOutput | DeleteTaskCommandOutput | DescribeAgentCommandOutput | DescribeLocationEfsCommandOutput | DescribeLocationFsxWindowsCommandOutput | DescribeLocationHdfsCommandOutput | DescribeLocationNfsCommandOutput | DescribeLocationObjectStorageCommandOutput | DescribeLocationS3CommandOutput | DescribeLocationSmbCommandOutput | DescribeTaskCommandOutput | DescribeTaskExecutionCommandOutput | ListAgentsCommandOutput | ListLocationsCommandOutput | ListTagsForResourceCommandOutput | ListTaskExecutionsCommandOutput | ListTasksCommandOutput | StartTaskExecutionCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateAgentCommandOutput | UpdateLocationHdfsCommandOutput | UpdateLocationNfsCommandOutput | UpdateLocationObjectStorageCommandOutput | UpdateLocationSmbCommandOutput | UpdateTaskCommandOutput | UpdateTaskExecutionCommandOutput;
49
+ export declare type ServiceInputTypes = CancelTaskExecutionCommandInput | CreateAgentCommandInput | CreateLocationEfsCommandInput | CreateLocationFsxLustreCommandInput | CreateLocationFsxWindowsCommandInput | CreateLocationHdfsCommandInput | CreateLocationNfsCommandInput | CreateLocationObjectStorageCommandInput | CreateLocationS3CommandInput | CreateLocationSmbCommandInput | CreateTaskCommandInput | DeleteAgentCommandInput | DeleteLocationCommandInput | DeleteTaskCommandInput | DescribeAgentCommandInput | DescribeLocationEfsCommandInput | DescribeLocationFsxLustreCommandInput | DescribeLocationFsxWindowsCommandInput | DescribeLocationHdfsCommandInput | DescribeLocationNfsCommandInput | DescribeLocationObjectStorageCommandInput | DescribeLocationS3CommandInput | DescribeLocationSmbCommandInput | DescribeTaskCommandInput | DescribeTaskExecutionCommandInput | ListAgentsCommandInput | ListLocationsCommandInput | ListTagsForResourceCommandInput | ListTaskExecutionsCommandInput | ListTasksCommandInput | StartTaskExecutionCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateAgentCommandInput | UpdateLocationHdfsCommandInput | UpdateLocationNfsCommandInput | UpdateLocationObjectStorageCommandInput | UpdateLocationSmbCommandInput | UpdateTaskCommandInput | UpdateTaskExecutionCommandInput;
50
+ export declare type ServiceOutputTypes = CancelTaskExecutionCommandOutput | CreateAgentCommandOutput | CreateLocationEfsCommandOutput | CreateLocationFsxLustreCommandOutput | CreateLocationFsxWindowsCommandOutput | CreateLocationHdfsCommandOutput | CreateLocationNfsCommandOutput | CreateLocationObjectStorageCommandOutput | CreateLocationS3CommandOutput | CreateLocationSmbCommandOutput | CreateTaskCommandOutput | DeleteAgentCommandOutput | DeleteLocationCommandOutput | DeleteTaskCommandOutput | DescribeAgentCommandOutput | DescribeLocationEfsCommandOutput | DescribeLocationFsxLustreCommandOutput | DescribeLocationFsxWindowsCommandOutput | DescribeLocationHdfsCommandOutput | DescribeLocationNfsCommandOutput | DescribeLocationObjectStorageCommandOutput | DescribeLocationS3CommandOutput | DescribeLocationSmbCommandOutput | DescribeTaskCommandOutput | DescribeTaskExecutionCommandOutput | ListAgentsCommandOutput | ListLocationsCommandOutput | ListTagsForResourceCommandOutput | ListTaskExecutionsCommandOutput | ListTasksCommandOutput | StartTaskExecutionCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateAgentCommandOutput | UpdateLocationHdfsCommandOutput | UpdateLocationNfsCommandOutput | UpdateLocationObjectStorageCommandOutput | UpdateLocationSmbCommandOutput | UpdateTaskCommandOutput | UpdateTaskExecutionCommandOutput;
49
51
  export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
50
52
 
51
53
  requestHandler?: __HttpHandler;
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient";
4
+ import { CreateLocationFsxLustreRequest, CreateLocationFsxLustreResponse } from "../models/models_0";
5
+ export interface CreateLocationFsxLustreCommandInput extends CreateLocationFsxLustreRequest {
6
+ }
7
+ export interface CreateLocationFsxLustreCommandOutput extends CreateLocationFsxLustreResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class CreateLocationFsxLustreCommand extends $Command<CreateLocationFsxLustreCommandInput, CreateLocationFsxLustreCommandOutput, DataSyncClientResolvedConfig> {
11
+ readonly input: CreateLocationFsxLustreCommandInput;
12
+ constructor(input: CreateLocationFsxLustreCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataSyncClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateLocationFsxLustreCommandInput, CreateLocationFsxLustreCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient";
4
+ import { DescribeLocationFsxLustreRequest, DescribeLocationFsxLustreResponse } from "../models/models_0";
5
+ export interface DescribeLocationFsxLustreCommandInput extends DescribeLocationFsxLustreRequest {
6
+ }
7
+ export interface DescribeLocationFsxLustreCommandOutput extends DescribeLocationFsxLustreResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class DescribeLocationFsxLustreCommand extends $Command<DescribeLocationFsxLustreCommandInput, DescribeLocationFsxLustreCommandOutput, DataSyncClientResolvedConfig> {
11
+ readonly input: DescribeLocationFsxLustreCommandInput;
12
+ constructor(input: DescribeLocationFsxLustreCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataSyncClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeLocationFsxLustreCommandInput, DescribeLocationFsxLustreCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -1,6 +1,7 @@
1
1
  export * from "./CancelTaskExecutionCommand";
2
2
  export * from "./CreateAgentCommand";
3
3
  export * from "./CreateLocationEfsCommand";
4
+ export * from "./CreateLocationFsxLustreCommand";
4
5
  export * from "./CreateLocationFsxWindowsCommand";
5
6
  export * from "./CreateLocationHdfsCommand";
6
7
  export * from "./CreateLocationNfsCommand";
@@ -13,6 +14,7 @@ export * from "./DeleteLocationCommand";
13
14
  export * from "./DeleteTaskCommand";
14
15
  export * from "./DescribeAgentCommand";
15
16
  export * from "./DescribeLocationEfsCommand";
17
+ export * from "./DescribeLocationFsxLustreCommand";
16
18
  export * from "./DescribeLocationFsxWindowsCommand";
17
19
  export * from "./DescribeLocationHdfsCommand";
18
20
  export * from "./DescribeLocationNfsCommand";