@aws-sdk/client-datasync 3.296.0 → 3.297.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 (55) hide show
  1. package/dist-types/DataSync.d.ts +45 -0
  2. package/dist-types/DataSyncClient.d.ts +24 -4
  3. package/dist-types/commands/CancelTaskExecutionCommand.d.ts +16 -0
  4. package/dist-types/commands/CreateAgentCommand.d.ts +16 -0
  5. package/dist-types/commands/CreateLocationEfsCommand.d.ts +16 -0
  6. package/dist-types/commands/CreateLocationFsxLustreCommand.d.ts +16 -0
  7. package/dist-types/commands/CreateLocationFsxOntapCommand.d.ts +16 -0
  8. package/dist-types/commands/CreateLocationFsxOpenZfsCommand.d.ts +16 -0
  9. package/dist-types/commands/CreateLocationFsxWindowsCommand.d.ts +16 -0
  10. package/dist-types/commands/CreateLocationHdfsCommand.d.ts +16 -0
  11. package/dist-types/commands/CreateLocationNfsCommand.d.ts +16 -0
  12. package/dist-types/commands/CreateLocationObjectStorageCommand.d.ts +16 -0
  13. package/dist-types/commands/CreateLocationS3Command.d.ts +16 -0
  14. package/dist-types/commands/CreateLocationSmbCommand.d.ts +16 -0
  15. package/dist-types/commands/CreateTaskCommand.d.ts +16 -0
  16. package/dist-types/commands/DeleteAgentCommand.d.ts +16 -0
  17. package/dist-types/commands/DeleteLocationCommand.d.ts +16 -0
  18. package/dist-types/commands/DeleteTaskCommand.d.ts +16 -0
  19. package/dist-types/commands/DescribeAgentCommand.d.ts +16 -0
  20. package/dist-types/commands/DescribeLocationEfsCommand.d.ts +16 -0
  21. package/dist-types/commands/DescribeLocationFsxLustreCommand.d.ts +16 -0
  22. package/dist-types/commands/DescribeLocationFsxOntapCommand.d.ts +16 -0
  23. package/dist-types/commands/DescribeLocationFsxOpenZfsCommand.d.ts +16 -0
  24. package/dist-types/commands/DescribeLocationFsxWindowsCommand.d.ts +16 -0
  25. package/dist-types/commands/DescribeLocationHdfsCommand.d.ts +16 -0
  26. package/dist-types/commands/DescribeLocationNfsCommand.d.ts +16 -0
  27. package/dist-types/commands/DescribeLocationObjectStorageCommand.d.ts +16 -0
  28. package/dist-types/commands/DescribeLocationS3Command.d.ts +16 -0
  29. package/dist-types/commands/DescribeLocationSmbCommand.d.ts +16 -0
  30. package/dist-types/commands/DescribeTaskCommand.d.ts +16 -0
  31. package/dist-types/commands/DescribeTaskExecutionCommand.d.ts +16 -0
  32. package/dist-types/commands/ListAgentsCommand.d.ts +16 -0
  33. package/dist-types/commands/ListLocationsCommand.d.ts +16 -0
  34. package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
  35. package/dist-types/commands/ListTaskExecutionsCommand.d.ts +16 -0
  36. package/dist-types/commands/ListTasksCommand.d.ts +16 -0
  37. package/dist-types/commands/StartTaskExecutionCommand.d.ts +16 -0
  38. package/dist-types/commands/TagResourceCommand.d.ts +16 -0
  39. package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
  40. package/dist-types/commands/UpdateAgentCommand.d.ts +16 -0
  41. package/dist-types/commands/UpdateLocationHdfsCommand.d.ts +16 -0
  42. package/dist-types/commands/UpdateLocationNfsCommand.d.ts +16 -0
  43. package/dist-types/commands/UpdateLocationObjectStorageCommand.d.ts +16 -0
  44. package/dist-types/commands/UpdateLocationSmbCommand.d.ts +16 -0
  45. package/dist-types/commands/UpdateTaskCommand.d.ts +16 -0
  46. package/dist-types/commands/UpdateTaskExecutionCommand.d.ts +16 -0
  47. package/dist-types/models/DataSyncServiceException.d.ts +2 -0
  48. package/dist-types/models/models_0.d.ts +281 -0
  49. package/dist-types/pagination/Interfaces.d.ts +3 -0
  50. package/dist-types/pagination/ListAgentsPaginator.d.ts +3 -0
  51. package/dist-types/pagination/ListLocationsPaginator.d.ts +3 -0
  52. package/dist-types/pagination/ListTagsForResourcePaginator.d.ts +3 -0
  53. package/dist-types/pagination/ListTaskExecutionsPaginator.d.ts +3 -0
  54. package/dist-types/pagination/ListTasksPaginator.d.ts +3 -0
  55. package/package.json +3 -3
@@ -1,5 +1,8 @@
1
1
  import { PaginationConfiguration } from "@aws-sdk/types";
2
2
  import { DataSyncClient } from "../DataSyncClient";
3
+ /**
4
+ * @public
5
+ */
3
6
  export interface DataSyncPaginationConfiguration extends PaginationConfiguration {
4
7
  client: DataSyncClient;
5
8
  }
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListAgentsCommandInput, ListAgentsCommandOutput } from "../commands/ListAgentsCommand";
3
3
  import { DataSyncPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListAgents(config: DataSyncPaginationConfiguration, input: ListAgentsCommandInput, ...additionalArguments: any): Paginator<ListAgentsCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListLocationsCommandInput, ListLocationsCommandOutput } from "../commands/ListLocationsCommand";
3
3
  import { DataSyncPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListLocations(config: DataSyncPaginationConfiguration, input: ListLocationsCommandInput, ...additionalArguments: any): Paginator<ListLocationsCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
3
3
  import { DataSyncPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListTagsForResource(config: DataSyncPaginationConfiguration, input: ListTagsForResourceCommandInput, ...additionalArguments: any): Paginator<ListTagsForResourceCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListTaskExecutionsCommandInput, ListTaskExecutionsCommandOutput } from "../commands/ListTaskExecutionsCommand";
3
3
  import { DataSyncPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListTaskExecutions(config: DataSyncPaginationConfiguration, input: ListTaskExecutionsCommandInput, ...additionalArguments: any): Paginator<ListTaskExecutionsCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListTasksCommandInput, ListTasksCommandOutput } from "../commands/ListTasksCommand";
3
3
  import { DataSyncPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListTasks(config: DataSyncPaginationConfiguration, input: ListTasksCommandInput, ...additionalArguments: any): Paginator<ListTasksCommandOutput>;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-datasync",
3
3
  "description": "AWS SDK for JavaScript Datasync Client for Node.js, Browser and React Native",
4
- "version": "3.296.0",
4
+ "version": "3.297.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -20,9 +20,9 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "3.0.0",
22
22
  "@aws-crypto/sha256-js": "3.0.0",
23
- "@aws-sdk/client-sts": "3.296.0",
23
+ "@aws-sdk/client-sts": "3.297.0",
24
24
  "@aws-sdk/config-resolver": "3.296.0",
25
- "@aws-sdk/credential-provider-node": "3.296.0",
25
+ "@aws-sdk/credential-provider-node": "3.297.0",
26
26
  "@aws-sdk/fetch-http-handler": "3.296.0",
27
27
  "@aws-sdk/hash-node": "3.296.0",
28
28
  "@aws-sdk/invalid-dependency": "3.296.0",