@aws-sdk/client-datasync 3.319.0 → 3.321.1

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 (136) hide show
  1. package/README.md +113 -8
  2. package/dist-cjs/DataSync.js +26 -0
  3. package/dist-cjs/commands/AddStorageSystemCommand.js +46 -0
  4. package/dist-cjs/commands/DescribeDiscoveryJobCommand.js +45 -0
  5. package/dist-cjs/commands/DescribeStorageSystemCommand.js +45 -0
  6. package/dist-cjs/commands/DescribeStorageSystemResourceMetricsCommand.js +45 -0
  7. package/dist-cjs/commands/DescribeStorageSystemResourcesCommand.js +45 -0
  8. package/dist-cjs/commands/GenerateRecommendationsCommand.js +45 -0
  9. package/dist-cjs/commands/ListDiscoveryJobsCommand.js +45 -0
  10. package/dist-cjs/commands/ListStorageSystemsCommand.js +45 -0
  11. package/dist-cjs/commands/RemoveStorageSystemCommand.js +45 -0
  12. package/dist-cjs/commands/StartDiscoveryJobCommand.js +45 -0
  13. package/dist-cjs/commands/StopDiscoveryJobCommand.js +45 -0
  14. package/dist-cjs/commands/UpdateDiscoveryJobCommand.js +45 -0
  15. package/dist-cjs/commands/UpdateStorageSystemCommand.js +46 -0
  16. package/dist-cjs/commands/index.js +13 -0
  17. package/dist-cjs/models/models_0.js +56 -8
  18. package/dist-cjs/pagination/DescribeStorageSystemResourceMetricsPaginator.js +29 -0
  19. package/dist-cjs/pagination/DescribeStorageSystemResourcesPaginator.js +29 -0
  20. package/dist-cjs/pagination/ListDiscoveryJobsPaginator.js +29 -0
  21. package/dist-cjs/pagination/ListStorageSystemsPaginator.js +29 -0
  22. package/dist-cjs/pagination/index.js +4 -0
  23. package/dist-cjs/protocols/Aws_json1_1.js +948 -87
  24. package/dist-es/DataSync.js +26 -0
  25. package/dist-es/commands/AddStorageSystemCommand.js +42 -0
  26. package/dist-es/commands/DescribeDiscoveryJobCommand.js +41 -0
  27. package/dist-es/commands/DescribeStorageSystemCommand.js +41 -0
  28. package/dist-es/commands/DescribeStorageSystemResourceMetricsCommand.js +41 -0
  29. package/dist-es/commands/DescribeStorageSystemResourcesCommand.js +41 -0
  30. package/dist-es/commands/GenerateRecommendationsCommand.js +41 -0
  31. package/dist-es/commands/ListDiscoveryJobsCommand.js +41 -0
  32. package/dist-es/commands/ListStorageSystemsCommand.js +41 -0
  33. package/dist-es/commands/RemoveStorageSystemCommand.js +41 -0
  34. package/dist-es/commands/StartDiscoveryJobCommand.js +41 -0
  35. package/dist-es/commands/StopDiscoveryJobCommand.js +41 -0
  36. package/dist-es/commands/UpdateDiscoveryJobCommand.js +41 -0
  37. package/dist-es/commands/UpdateStorageSystemCommand.js +42 -0
  38. package/dist-es/commands/index.js +13 -0
  39. package/dist-es/models/models_0.js +51 -7
  40. package/dist-es/pagination/DescribeStorageSystemResourceMetricsPaginator.js +25 -0
  41. package/dist-es/pagination/DescribeStorageSystemResourcesPaginator.js +25 -0
  42. package/dist-es/pagination/ListDiscoveryJobsPaginator.js +25 -0
  43. package/dist-es/pagination/ListStorageSystemsPaginator.js +25 -0
  44. package/dist-es/pagination/index.js +4 -0
  45. package/dist-es/protocols/Aws_json1_1.js +908 -74
  46. package/dist-types/DataSync.d.ts +94 -2
  47. package/dist-types/DataSyncClient.d.ts +18 -4
  48. package/dist-types/commands/AddStorageSystemCommand.d.ts +91 -0
  49. package/dist-types/commands/CancelTaskExecutionCommand.d.ts +4 -3
  50. package/dist-types/commands/CreateAgentCommand.d.ts +4 -3
  51. package/dist-types/commands/CreateLocationEfsCommand.d.ts +2 -1
  52. package/dist-types/commands/CreateLocationFsxLustreCommand.d.ts +2 -1
  53. package/dist-types/commands/CreateLocationFsxOntapCommand.d.ts +3 -3
  54. package/dist-types/commands/CreateLocationFsxOpenZfsCommand.d.ts +4 -4
  55. package/dist-types/commands/CreateLocationFsxWindowsCommand.d.ts +2 -1
  56. package/dist-types/commands/CreateLocationHdfsCommand.d.ts +2 -1
  57. package/dist-types/commands/CreateLocationNfsCommand.d.ts +2 -1
  58. package/dist-types/commands/CreateLocationObjectStorageCommand.d.ts +5 -2
  59. package/dist-types/commands/CreateLocationS3Command.d.ts +20 -3
  60. package/dist-types/commands/CreateLocationSmbCommand.d.ts +2 -1
  61. package/dist-types/commands/CreateTaskCommand.d.ts +8 -1
  62. package/dist-types/commands/DeleteAgentCommand.d.ts +4 -4
  63. package/dist-types/commands/DeleteLocationCommand.d.ts +2 -1
  64. package/dist-types/commands/DeleteTaskCommand.d.ts +2 -1
  65. package/dist-types/commands/DescribeAgentCommand.d.ts +4 -2
  66. package/dist-types/commands/DescribeDiscoveryJobCommand.d.ts +70 -0
  67. package/dist-types/commands/DescribeLocationEfsCommand.d.ts +4 -2
  68. package/dist-types/commands/DescribeLocationFsxLustreCommand.d.ts +2 -1
  69. package/dist-types/commands/DescribeLocationFsxOntapCommand.d.ts +2 -1
  70. package/dist-types/commands/DescribeLocationFsxOpenZfsCommand.d.ts +3 -2
  71. package/dist-types/commands/DescribeLocationFsxWindowsCommand.d.ts +4 -3
  72. package/dist-types/commands/DescribeLocationHdfsCommand.d.ts +2 -1
  73. package/dist-types/commands/DescribeLocationNfsCommand.d.ts +2 -1
  74. package/dist-types/commands/DescribeLocationObjectStorageCommand.d.ts +4 -2
  75. package/dist-types/commands/DescribeLocationS3Command.d.ts +2 -1
  76. package/dist-types/commands/DescribeLocationSmbCommand.d.ts +2 -1
  77. package/dist-types/commands/DescribeStorageSystemCommand.d.ts +71 -0
  78. package/dist-types/commands/DescribeStorageSystemResourceMetricsCommand.d.ts +77 -0
  79. package/dist-types/commands/DescribeStorageSystemResourcesCommand.d.ts +82 -0
  80. package/dist-types/commands/DescribeTaskCommand.d.ts +2 -1
  81. package/dist-types/commands/DescribeTaskExecutionCommand.d.ts +2 -1
  82. package/dist-types/commands/GenerateRecommendationsCommand.d.ts +82 -0
  83. package/dist-types/commands/ListAgentsCommand.d.ts +2 -1
  84. package/dist-types/commands/ListDiscoveryJobsCommand.d.ts +73 -0
  85. package/dist-types/commands/ListLocationsCommand.d.ts +2 -1
  86. package/dist-types/commands/ListStorageSystemsCommand.d.ts +71 -0
  87. package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -1
  88. package/dist-types/commands/ListTaskExecutionsCommand.d.ts +2 -1
  89. package/dist-types/commands/ListTasksCommand.d.ts +2 -1
  90. package/dist-types/commands/RemoveStorageSystemCommand.d.ts +71 -0
  91. package/dist-types/commands/StartDiscoveryJobCommand.d.ts +80 -0
  92. package/dist-types/commands/StartTaskExecutionCommand.d.ts +10 -2
  93. package/dist-types/commands/StopDiscoveryJobCommand.d.ts +73 -0
  94. package/dist-types/commands/TagResourceCommand.d.ts +6 -4
  95. package/dist-types/commands/UntagResourceCommand.d.ts +2 -1
  96. package/dist-types/commands/UpdateAgentCommand.d.ts +2 -1
  97. package/dist-types/commands/UpdateDiscoveryJobCommand.d.ts +71 -0
  98. package/dist-types/commands/UpdateLocationHdfsCommand.d.ts +2 -1
  99. package/dist-types/commands/UpdateLocationNfsCommand.d.ts +5 -3
  100. package/dist-types/commands/UpdateLocationObjectStorageCommand.d.ts +2 -1
  101. package/dist-types/commands/UpdateLocationSmbCommand.d.ts +4 -3
  102. package/dist-types/commands/UpdateStorageSystemCommand.d.ts +84 -0
  103. package/dist-types/commands/UpdateTaskCommand.d.ts +2 -1
  104. package/dist-types/commands/UpdateTaskExecutionCommand.d.ts +7 -7
  105. package/dist-types/commands/index.d.ts +13 -0
  106. package/dist-types/models/models_0.d.ts +1429 -296
  107. package/dist-types/pagination/DescribeStorageSystemResourceMetricsPaginator.d.ts +7 -0
  108. package/dist-types/pagination/DescribeStorageSystemResourcesPaginator.d.ts +7 -0
  109. package/dist-types/pagination/ListDiscoveryJobsPaginator.d.ts +7 -0
  110. package/dist-types/pagination/ListStorageSystemsPaginator.d.ts +7 -0
  111. package/dist-types/pagination/index.d.ts +4 -0
  112. package/dist-types/protocols/Aws_json1_1.d.ts +117 -0
  113. package/dist-types/ts3.4/DataSync.d.ts +227 -0
  114. package/dist-types/ts3.4/DataSyncClient.d.ts +78 -0
  115. package/dist-types/ts3.4/commands/AddStorageSystemCommand.d.ts +37 -0
  116. package/dist-types/ts3.4/commands/DescribeDiscoveryJobCommand.d.ts +41 -0
  117. package/dist-types/ts3.4/commands/DescribeStorageSystemCommand.d.ts +41 -0
  118. package/dist-types/ts3.4/commands/DescribeStorageSystemResourceMetricsCommand.d.ts +41 -0
  119. package/dist-types/ts3.4/commands/DescribeStorageSystemResourcesCommand.d.ts +41 -0
  120. package/dist-types/ts3.4/commands/GenerateRecommendationsCommand.d.ts +41 -0
  121. package/dist-types/ts3.4/commands/ListDiscoveryJobsCommand.d.ts +38 -0
  122. package/dist-types/ts3.4/commands/ListStorageSystemsCommand.d.ts +38 -0
  123. package/dist-types/ts3.4/commands/RemoveStorageSystemCommand.d.ts +38 -0
  124. package/dist-types/ts3.4/commands/StartDiscoveryJobCommand.d.ts +38 -0
  125. package/dist-types/ts3.4/commands/StopDiscoveryJobCommand.d.ts +37 -0
  126. package/dist-types/ts3.4/commands/UpdateDiscoveryJobCommand.d.ts +38 -0
  127. package/dist-types/ts3.4/commands/UpdateStorageSystemCommand.d.ts +38 -0
  128. package/dist-types/ts3.4/commands/index.d.ts +13 -0
  129. package/dist-types/ts3.4/models/models_0.d.ts +302 -18
  130. package/dist-types/ts3.4/pagination/DescribeStorageSystemResourceMetricsPaginator.d.ts +11 -0
  131. package/dist-types/ts3.4/pagination/DescribeStorageSystemResourcesPaginator.d.ts +11 -0
  132. package/dist-types/ts3.4/pagination/ListDiscoveryJobsPaginator.d.ts +11 -0
  133. package/dist-types/ts3.4/pagination/ListStorageSystemsPaginator.d.ts +11 -0
  134. package/dist-types/ts3.4/pagination/index.d.ts +4 -0
  135. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +156 -0
  136. package/package.json +7 -5
@@ -1,4 +1,5 @@
1
1
  import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
+ import { AddStorageSystemCommandInput, AddStorageSystemCommandOutput } from "./commands/AddStorageSystemCommand";
2
3
  import { CancelTaskExecutionCommandInput, CancelTaskExecutionCommandOutput } from "./commands/CancelTaskExecutionCommand";
3
4
  import { CreateAgentCommandInput, CreateAgentCommandOutput } from "./commands/CreateAgentCommand";
4
5
  import { CreateLocationEfsCommandInput, CreateLocationEfsCommandOutput } from "./commands/CreateLocationEfsCommand";
@@ -16,6 +17,7 @@ import { DeleteAgentCommandInput, DeleteAgentCommandOutput } from "./commands/De
16
17
  import { DeleteLocationCommandInput, DeleteLocationCommandOutput } from "./commands/DeleteLocationCommand";
17
18
  import { DeleteTaskCommandInput, DeleteTaskCommandOutput } from "./commands/DeleteTaskCommand";
18
19
  import { DescribeAgentCommandInput, DescribeAgentCommandOutput } from "./commands/DescribeAgentCommand";
20
+ import { DescribeDiscoveryJobCommandInput, DescribeDiscoveryJobCommandOutput } from "./commands/DescribeDiscoveryJobCommand";
19
21
  import { DescribeLocationEfsCommandInput, DescribeLocationEfsCommandOutput } from "./commands/DescribeLocationEfsCommand";
20
22
  import { DescribeLocationFsxLustreCommandInput, DescribeLocationFsxLustreCommandOutput } from "./commands/DescribeLocationFsxLustreCommand";
21
23
  import { DescribeLocationFsxOntapCommandInput, DescribeLocationFsxOntapCommandOutput } from "./commands/DescribeLocationFsxOntapCommand";
@@ -26,25 +28,42 @@ import { DescribeLocationNfsCommandInput, DescribeLocationNfsCommandOutput } fro
26
28
  import { DescribeLocationObjectStorageCommandInput, DescribeLocationObjectStorageCommandOutput } from "./commands/DescribeLocationObjectStorageCommand";
27
29
  import { DescribeLocationS3CommandInput, DescribeLocationS3CommandOutput } from "./commands/DescribeLocationS3Command";
28
30
  import { DescribeLocationSmbCommandInput, DescribeLocationSmbCommandOutput } from "./commands/DescribeLocationSmbCommand";
31
+ import { DescribeStorageSystemCommandInput, DescribeStorageSystemCommandOutput } from "./commands/DescribeStorageSystemCommand";
32
+ import { DescribeStorageSystemResourceMetricsCommandInput, DescribeStorageSystemResourceMetricsCommandOutput } from "./commands/DescribeStorageSystemResourceMetricsCommand";
33
+ import { DescribeStorageSystemResourcesCommandInput, DescribeStorageSystemResourcesCommandOutput } from "./commands/DescribeStorageSystemResourcesCommand";
29
34
  import { DescribeTaskCommandInput, DescribeTaskCommandOutput } from "./commands/DescribeTaskCommand";
30
35
  import { DescribeTaskExecutionCommandInput, DescribeTaskExecutionCommandOutput } from "./commands/DescribeTaskExecutionCommand";
36
+ import { GenerateRecommendationsCommandInput, GenerateRecommendationsCommandOutput } from "./commands/GenerateRecommendationsCommand";
31
37
  import { ListAgentsCommandInput, ListAgentsCommandOutput } from "./commands/ListAgentsCommand";
38
+ import { ListDiscoveryJobsCommandInput, ListDiscoveryJobsCommandOutput } from "./commands/ListDiscoveryJobsCommand";
32
39
  import { ListLocationsCommandInput, ListLocationsCommandOutput } from "./commands/ListLocationsCommand";
40
+ import { ListStorageSystemsCommandInput, ListStorageSystemsCommandOutput } from "./commands/ListStorageSystemsCommand";
33
41
  import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
34
42
  import { ListTaskExecutionsCommandInput, ListTaskExecutionsCommandOutput } from "./commands/ListTaskExecutionsCommand";
35
43
  import { ListTasksCommandInput, ListTasksCommandOutput } from "./commands/ListTasksCommand";
44
+ import { RemoveStorageSystemCommandInput, RemoveStorageSystemCommandOutput } from "./commands/RemoveStorageSystemCommand";
45
+ import { StartDiscoveryJobCommandInput, StartDiscoveryJobCommandOutput } from "./commands/StartDiscoveryJobCommand";
36
46
  import { StartTaskExecutionCommandInput, StartTaskExecutionCommandOutput } from "./commands/StartTaskExecutionCommand";
47
+ import { StopDiscoveryJobCommandInput, StopDiscoveryJobCommandOutput } from "./commands/StopDiscoveryJobCommand";
37
48
  import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
38
49
  import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
39
50
  import { UpdateAgentCommandInput, UpdateAgentCommandOutput } from "./commands/UpdateAgentCommand";
51
+ import { UpdateDiscoveryJobCommandInput, UpdateDiscoveryJobCommandOutput } from "./commands/UpdateDiscoveryJobCommand";
40
52
  import { UpdateLocationHdfsCommandInput, UpdateLocationHdfsCommandOutput } from "./commands/UpdateLocationHdfsCommand";
41
53
  import { UpdateLocationNfsCommandInput, UpdateLocationNfsCommandOutput } from "./commands/UpdateLocationNfsCommand";
42
54
  import { UpdateLocationObjectStorageCommandInput, UpdateLocationObjectStorageCommandOutput } from "./commands/UpdateLocationObjectStorageCommand";
43
55
  import { UpdateLocationSmbCommandInput, UpdateLocationSmbCommandOutput } from "./commands/UpdateLocationSmbCommand";
56
+ import { UpdateStorageSystemCommandInput, UpdateStorageSystemCommandOutput } from "./commands/UpdateStorageSystemCommand";
44
57
  import { UpdateTaskCommandInput, UpdateTaskCommandOutput } from "./commands/UpdateTaskCommand";
45
58
  import { UpdateTaskExecutionCommandInput, UpdateTaskExecutionCommandOutput } from "./commands/UpdateTaskExecutionCommand";
46
59
  import { DataSyncClient } from "./DataSyncClient";
47
60
  export interface DataSync {
61
+ /**
62
+ * @see {@link AddStorageSystemCommand}
63
+ */
64
+ addStorageSystem(args: AddStorageSystemCommandInput, options?: __HttpHandlerOptions): Promise<AddStorageSystemCommandOutput>;
65
+ addStorageSystem(args: AddStorageSystemCommandInput, cb: (err: any, data?: AddStorageSystemCommandOutput) => void): void;
66
+ addStorageSystem(args: AddStorageSystemCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AddStorageSystemCommandOutput) => void): void;
48
67
  /**
49
68
  * @see {@link CancelTaskExecutionCommand}
50
69
  */
@@ -147,6 +166,12 @@ export interface DataSync {
147
166
  describeAgent(args: DescribeAgentCommandInput, options?: __HttpHandlerOptions): Promise<DescribeAgentCommandOutput>;
148
167
  describeAgent(args: DescribeAgentCommandInput, cb: (err: any, data?: DescribeAgentCommandOutput) => void): void;
149
168
  describeAgent(args: DescribeAgentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeAgentCommandOutput) => void): void;
169
+ /**
170
+ * @see {@link DescribeDiscoveryJobCommand}
171
+ */
172
+ describeDiscoveryJob(args: DescribeDiscoveryJobCommandInput, options?: __HttpHandlerOptions): Promise<DescribeDiscoveryJobCommandOutput>;
173
+ describeDiscoveryJob(args: DescribeDiscoveryJobCommandInput, cb: (err: any, data?: DescribeDiscoveryJobCommandOutput) => void): void;
174
+ describeDiscoveryJob(args: DescribeDiscoveryJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeDiscoveryJobCommandOutput) => void): void;
150
175
  /**
151
176
  * @see {@link DescribeLocationEfsCommand}
152
177
  */
@@ -207,6 +232,24 @@ export interface DataSync {
207
232
  describeLocationSmb(args: DescribeLocationSmbCommandInput, options?: __HttpHandlerOptions): Promise<DescribeLocationSmbCommandOutput>;
208
233
  describeLocationSmb(args: DescribeLocationSmbCommandInput, cb: (err: any, data?: DescribeLocationSmbCommandOutput) => void): void;
209
234
  describeLocationSmb(args: DescribeLocationSmbCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeLocationSmbCommandOutput) => void): void;
235
+ /**
236
+ * @see {@link DescribeStorageSystemCommand}
237
+ */
238
+ describeStorageSystem(args: DescribeStorageSystemCommandInput, options?: __HttpHandlerOptions): Promise<DescribeStorageSystemCommandOutput>;
239
+ describeStorageSystem(args: DescribeStorageSystemCommandInput, cb: (err: any, data?: DescribeStorageSystemCommandOutput) => void): void;
240
+ describeStorageSystem(args: DescribeStorageSystemCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeStorageSystemCommandOutput) => void): void;
241
+ /**
242
+ * @see {@link DescribeStorageSystemResourceMetricsCommand}
243
+ */
244
+ describeStorageSystemResourceMetrics(args: DescribeStorageSystemResourceMetricsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeStorageSystemResourceMetricsCommandOutput>;
245
+ describeStorageSystemResourceMetrics(args: DescribeStorageSystemResourceMetricsCommandInput, cb: (err: any, data?: DescribeStorageSystemResourceMetricsCommandOutput) => void): void;
246
+ describeStorageSystemResourceMetrics(args: DescribeStorageSystemResourceMetricsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeStorageSystemResourceMetricsCommandOutput) => void): void;
247
+ /**
248
+ * @see {@link DescribeStorageSystemResourcesCommand}
249
+ */
250
+ describeStorageSystemResources(args: DescribeStorageSystemResourcesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeStorageSystemResourcesCommandOutput>;
251
+ describeStorageSystemResources(args: DescribeStorageSystemResourcesCommandInput, cb: (err: any, data?: DescribeStorageSystemResourcesCommandOutput) => void): void;
252
+ describeStorageSystemResources(args: DescribeStorageSystemResourcesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeStorageSystemResourcesCommandOutput) => void): void;
210
253
  /**
211
254
  * @see {@link DescribeTaskCommand}
212
255
  */
@@ -219,18 +262,36 @@ export interface DataSync {
219
262
  describeTaskExecution(args: DescribeTaskExecutionCommandInput, options?: __HttpHandlerOptions): Promise<DescribeTaskExecutionCommandOutput>;
220
263
  describeTaskExecution(args: DescribeTaskExecutionCommandInput, cb: (err: any, data?: DescribeTaskExecutionCommandOutput) => void): void;
221
264
  describeTaskExecution(args: DescribeTaskExecutionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeTaskExecutionCommandOutput) => void): void;
265
+ /**
266
+ * @see {@link GenerateRecommendationsCommand}
267
+ */
268
+ generateRecommendations(args: GenerateRecommendationsCommandInput, options?: __HttpHandlerOptions): Promise<GenerateRecommendationsCommandOutput>;
269
+ generateRecommendations(args: GenerateRecommendationsCommandInput, cb: (err: any, data?: GenerateRecommendationsCommandOutput) => void): void;
270
+ generateRecommendations(args: GenerateRecommendationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GenerateRecommendationsCommandOutput) => void): void;
222
271
  /**
223
272
  * @see {@link ListAgentsCommand}
224
273
  */
225
274
  listAgents(args: ListAgentsCommandInput, options?: __HttpHandlerOptions): Promise<ListAgentsCommandOutput>;
226
275
  listAgents(args: ListAgentsCommandInput, cb: (err: any, data?: ListAgentsCommandOutput) => void): void;
227
276
  listAgents(args: ListAgentsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAgentsCommandOutput) => void): void;
277
+ /**
278
+ * @see {@link ListDiscoveryJobsCommand}
279
+ */
280
+ listDiscoveryJobs(args: ListDiscoveryJobsCommandInput, options?: __HttpHandlerOptions): Promise<ListDiscoveryJobsCommandOutput>;
281
+ listDiscoveryJobs(args: ListDiscoveryJobsCommandInput, cb: (err: any, data?: ListDiscoveryJobsCommandOutput) => void): void;
282
+ listDiscoveryJobs(args: ListDiscoveryJobsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDiscoveryJobsCommandOutput) => void): void;
228
283
  /**
229
284
  * @see {@link ListLocationsCommand}
230
285
  */
231
286
  listLocations(args: ListLocationsCommandInput, options?: __HttpHandlerOptions): Promise<ListLocationsCommandOutput>;
232
287
  listLocations(args: ListLocationsCommandInput, cb: (err: any, data?: ListLocationsCommandOutput) => void): void;
233
288
  listLocations(args: ListLocationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListLocationsCommandOutput) => void): void;
289
+ /**
290
+ * @see {@link ListStorageSystemsCommand}
291
+ */
292
+ listStorageSystems(args: ListStorageSystemsCommandInput, options?: __HttpHandlerOptions): Promise<ListStorageSystemsCommandOutput>;
293
+ listStorageSystems(args: ListStorageSystemsCommandInput, cb: (err: any, data?: ListStorageSystemsCommandOutput) => void): void;
294
+ listStorageSystems(args: ListStorageSystemsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListStorageSystemsCommandOutput) => void): void;
234
295
  /**
235
296
  * @see {@link ListTagsForResourceCommand}
236
297
  */
@@ -249,12 +310,30 @@ export interface DataSync {
249
310
  listTasks(args: ListTasksCommandInput, options?: __HttpHandlerOptions): Promise<ListTasksCommandOutput>;
250
311
  listTasks(args: ListTasksCommandInput, cb: (err: any, data?: ListTasksCommandOutput) => void): void;
251
312
  listTasks(args: ListTasksCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTasksCommandOutput) => void): void;
313
+ /**
314
+ * @see {@link RemoveStorageSystemCommand}
315
+ */
316
+ removeStorageSystem(args: RemoveStorageSystemCommandInput, options?: __HttpHandlerOptions): Promise<RemoveStorageSystemCommandOutput>;
317
+ removeStorageSystem(args: RemoveStorageSystemCommandInput, cb: (err: any, data?: RemoveStorageSystemCommandOutput) => void): void;
318
+ removeStorageSystem(args: RemoveStorageSystemCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RemoveStorageSystemCommandOutput) => void): void;
319
+ /**
320
+ * @see {@link StartDiscoveryJobCommand}
321
+ */
322
+ startDiscoveryJob(args: StartDiscoveryJobCommandInput, options?: __HttpHandlerOptions): Promise<StartDiscoveryJobCommandOutput>;
323
+ startDiscoveryJob(args: StartDiscoveryJobCommandInput, cb: (err: any, data?: StartDiscoveryJobCommandOutput) => void): void;
324
+ startDiscoveryJob(args: StartDiscoveryJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartDiscoveryJobCommandOutput) => void): void;
252
325
  /**
253
326
  * @see {@link StartTaskExecutionCommand}
254
327
  */
255
328
  startTaskExecution(args: StartTaskExecutionCommandInput, options?: __HttpHandlerOptions): Promise<StartTaskExecutionCommandOutput>;
256
329
  startTaskExecution(args: StartTaskExecutionCommandInput, cb: (err: any, data?: StartTaskExecutionCommandOutput) => void): void;
257
330
  startTaskExecution(args: StartTaskExecutionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartTaskExecutionCommandOutput) => void): void;
331
+ /**
332
+ * @see {@link StopDiscoveryJobCommand}
333
+ */
334
+ stopDiscoveryJob(args: StopDiscoveryJobCommandInput, options?: __HttpHandlerOptions): Promise<StopDiscoveryJobCommandOutput>;
335
+ stopDiscoveryJob(args: StopDiscoveryJobCommandInput, cb: (err: any, data?: StopDiscoveryJobCommandOutput) => void): void;
336
+ stopDiscoveryJob(args: StopDiscoveryJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopDiscoveryJobCommandOutput) => void): void;
258
337
  /**
259
338
  * @see {@link TagResourceCommand}
260
339
  */
@@ -273,6 +352,12 @@ export interface DataSync {
273
352
  updateAgent(args: UpdateAgentCommandInput, options?: __HttpHandlerOptions): Promise<UpdateAgentCommandOutput>;
274
353
  updateAgent(args: UpdateAgentCommandInput, cb: (err: any, data?: UpdateAgentCommandOutput) => void): void;
275
354
  updateAgent(args: UpdateAgentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateAgentCommandOutput) => void): void;
355
+ /**
356
+ * @see {@link UpdateDiscoveryJobCommand}
357
+ */
358
+ updateDiscoveryJob(args: UpdateDiscoveryJobCommandInput, options?: __HttpHandlerOptions): Promise<UpdateDiscoveryJobCommandOutput>;
359
+ updateDiscoveryJob(args: UpdateDiscoveryJobCommandInput, cb: (err: any, data?: UpdateDiscoveryJobCommandOutput) => void): void;
360
+ updateDiscoveryJob(args: UpdateDiscoveryJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateDiscoveryJobCommandOutput) => void): void;
276
361
  /**
277
362
  * @see {@link UpdateLocationHdfsCommand}
278
363
  */
@@ -297,6 +382,12 @@ export interface DataSync {
297
382
  updateLocationSmb(args: UpdateLocationSmbCommandInput, options?: __HttpHandlerOptions): Promise<UpdateLocationSmbCommandOutput>;
298
383
  updateLocationSmb(args: UpdateLocationSmbCommandInput, cb: (err: any, data?: UpdateLocationSmbCommandOutput) => void): void;
299
384
  updateLocationSmb(args: UpdateLocationSmbCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateLocationSmbCommandOutput) => void): void;
385
+ /**
386
+ * @see {@link UpdateStorageSystemCommand}
387
+ */
388
+ updateStorageSystem(args: UpdateStorageSystemCommandInput, options?: __HttpHandlerOptions): Promise<UpdateStorageSystemCommandOutput>;
389
+ updateStorageSystem(args: UpdateStorageSystemCommandInput, cb: (err: any, data?: UpdateStorageSystemCommandOutput) => void): void;
390
+ updateStorageSystem(args: UpdateStorageSystemCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateStorageSystemCommandOutput) => void): void;
300
391
  /**
301
392
  * @see {@link UpdateTaskCommand}
302
393
  */
@@ -314,11 +405,12 @@ export interface DataSync {
314
405
  * @public
315
406
  * <fullname>DataSync</fullname>
316
407
  * <p>DataSync is a managed data transfer service that makes it simpler for you
317
- * to automate moving data between on-premises storage and Amazon Web Services storage services. You also can use DataSync to transfer data between other cloud providers and Amazon Web Services storage services.</p>
408
+ * to automate moving data between on-premises storage and Amazon Web Services storage services.
409
+ * You also can use DataSync to transfer data between other cloud providers and Amazon Web Services storage services.</p>
318
410
  * <p>This API interface reference includes documentation for using DataSync
319
411
  * programmatically. For complete information, see the <i>
320
412
  * <a href="https://docs.aws.amazon.com/datasync/latest/userguide/what-is-datasync.html">DataSync User
321
- * Guide</a>
413
+ * Guide</a>
322
414
  * </i>.</p>
323
415
  */
324
416
  export declare class DataSync extends DataSyncClient implements DataSync {
@@ -7,6 +7,7 @@ import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middlewa
7
7
  import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
8
8
  import { Client as __Client, DefaultsMode as __DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
9
9
  import { BodyLengthCalculator as __BodyLengthCalculator, ChecksumConstructor as __ChecksumConstructor, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
10
+ import { AddStorageSystemCommandInput, AddStorageSystemCommandOutput } from "./commands/AddStorageSystemCommand";
10
11
  import { CancelTaskExecutionCommandInput, CancelTaskExecutionCommandOutput } from "./commands/CancelTaskExecutionCommand";
11
12
  import { CreateAgentCommandInput, CreateAgentCommandOutput } from "./commands/CreateAgentCommand";
12
13
  import { CreateLocationEfsCommandInput, CreateLocationEfsCommandOutput } from "./commands/CreateLocationEfsCommand";
@@ -24,6 +25,7 @@ import { DeleteAgentCommandInput, DeleteAgentCommandOutput } from "./commands/De
24
25
  import { DeleteLocationCommandInput, DeleteLocationCommandOutput } from "./commands/DeleteLocationCommand";
25
26
  import { DeleteTaskCommandInput, DeleteTaskCommandOutput } from "./commands/DeleteTaskCommand";
26
27
  import { DescribeAgentCommandInput, DescribeAgentCommandOutput } from "./commands/DescribeAgentCommand";
28
+ import { DescribeDiscoveryJobCommandInput, DescribeDiscoveryJobCommandOutput } from "./commands/DescribeDiscoveryJobCommand";
27
29
  import { DescribeLocationEfsCommandInput, DescribeLocationEfsCommandOutput } from "./commands/DescribeLocationEfsCommand";
28
30
  import { DescribeLocationFsxLustreCommandInput, DescribeLocationFsxLustreCommandOutput } from "./commands/DescribeLocationFsxLustreCommand";
29
31
  import { DescribeLocationFsxOntapCommandInput, DescribeLocationFsxOntapCommandOutput } from "./commands/DescribeLocationFsxOntapCommand";
@@ -34,32 +36,43 @@ import { DescribeLocationNfsCommandInput, DescribeLocationNfsCommandOutput } fro
34
36
  import { DescribeLocationObjectStorageCommandInput, DescribeLocationObjectStorageCommandOutput } from "./commands/DescribeLocationObjectStorageCommand";
35
37
  import { DescribeLocationS3CommandInput, DescribeLocationS3CommandOutput } from "./commands/DescribeLocationS3Command";
36
38
  import { DescribeLocationSmbCommandInput, DescribeLocationSmbCommandOutput } from "./commands/DescribeLocationSmbCommand";
39
+ import { DescribeStorageSystemCommandInput, DescribeStorageSystemCommandOutput } from "./commands/DescribeStorageSystemCommand";
40
+ import { DescribeStorageSystemResourceMetricsCommandInput, DescribeStorageSystemResourceMetricsCommandOutput } from "./commands/DescribeStorageSystemResourceMetricsCommand";
41
+ import { DescribeStorageSystemResourcesCommandInput, DescribeStorageSystemResourcesCommandOutput } from "./commands/DescribeStorageSystemResourcesCommand";
37
42
  import { DescribeTaskCommandInput, DescribeTaskCommandOutput } from "./commands/DescribeTaskCommand";
38
43
  import { DescribeTaskExecutionCommandInput, DescribeTaskExecutionCommandOutput } from "./commands/DescribeTaskExecutionCommand";
44
+ import { GenerateRecommendationsCommandInput, GenerateRecommendationsCommandOutput } from "./commands/GenerateRecommendationsCommand";
39
45
  import { ListAgentsCommandInput, ListAgentsCommandOutput } from "./commands/ListAgentsCommand";
46
+ import { ListDiscoveryJobsCommandInput, ListDiscoveryJobsCommandOutput } from "./commands/ListDiscoveryJobsCommand";
40
47
  import { ListLocationsCommandInput, ListLocationsCommandOutput } from "./commands/ListLocationsCommand";
48
+ import { ListStorageSystemsCommandInput, ListStorageSystemsCommandOutput } from "./commands/ListStorageSystemsCommand";
41
49
  import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
42
50
  import { ListTaskExecutionsCommandInput, ListTaskExecutionsCommandOutput } from "./commands/ListTaskExecutionsCommand";
43
51
  import { ListTasksCommandInput, ListTasksCommandOutput } from "./commands/ListTasksCommand";
52
+ import { RemoveStorageSystemCommandInput, RemoveStorageSystemCommandOutput } from "./commands/RemoveStorageSystemCommand";
53
+ import { StartDiscoveryJobCommandInput, StartDiscoveryJobCommandOutput } from "./commands/StartDiscoveryJobCommand";
44
54
  import { StartTaskExecutionCommandInput, StartTaskExecutionCommandOutput } from "./commands/StartTaskExecutionCommand";
55
+ import { StopDiscoveryJobCommandInput, StopDiscoveryJobCommandOutput } from "./commands/StopDiscoveryJobCommand";
45
56
  import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
46
57
  import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
47
58
  import { UpdateAgentCommandInput, UpdateAgentCommandOutput } from "./commands/UpdateAgentCommand";
59
+ import { UpdateDiscoveryJobCommandInput, UpdateDiscoveryJobCommandOutput } from "./commands/UpdateDiscoveryJobCommand";
48
60
  import { UpdateLocationHdfsCommandInput, UpdateLocationHdfsCommandOutput } from "./commands/UpdateLocationHdfsCommand";
49
61
  import { UpdateLocationNfsCommandInput, UpdateLocationNfsCommandOutput } from "./commands/UpdateLocationNfsCommand";
50
62
  import { UpdateLocationObjectStorageCommandInput, UpdateLocationObjectStorageCommandOutput } from "./commands/UpdateLocationObjectStorageCommand";
51
63
  import { UpdateLocationSmbCommandInput, UpdateLocationSmbCommandOutput } from "./commands/UpdateLocationSmbCommand";
64
+ import { UpdateStorageSystemCommandInput, UpdateStorageSystemCommandOutput } from "./commands/UpdateStorageSystemCommand";
52
65
  import { UpdateTaskCommandInput, UpdateTaskCommandOutput } from "./commands/UpdateTaskCommand";
53
66
  import { UpdateTaskExecutionCommandInput, UpdateTaskExecutionCommandOutput } from "./commands/UpdateTaskExecutionCommand";
54
67
  import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
55
68
  /**
56
69
  * @public
57
70
  */
58
- export type ServiceInputTypes = CancelTaskExecutionCommandInput | CreateAgentCommandInput | CreateLocationEfsCommandInput | CreateLocationFsxLustreCommandInput | CreateLocationFsxOntapCommandInput | CreateLocationFsxOpenZfsCommandInput | CreateLocationFsxWindowsCommandInput | CreateLocationHdfsCommandInput | CreateLocationNfsCommandInput | CreateLocationObjectStorageCommandInput | CreateLocationS3CommandInput | CreateLocationSmbCommandInput | CreateTaskCommandInput | DeleteAgentCommandInput | DeleteLocationCommandInput | DeleteTaskCommandInput | DescribeAgentCommandInput | DescribeLocationEfsCommandInput | DescribeLocationFsxLustreCommandInput | DescribeLocationFsxOntapCommandInput | DescribeLocationFsxOpenZfsCommandInput | DescribeLocationFsxWindowsCommandInput | DescribeLocationHdfsCommandInput | DescribeLocationNfsCommandInput | DescribeLocationObjectStorageCommandInput | DescribeLocationS3CommandInput | DescribeLocationSmbCommandInput | DescribeTaskCommandInput | DescribeTaskExecutionCommandInput | ListAgentsCommandInput | ListLocationsCommandInput | ListTagsForResourceCommandInput | ListTaskExecutionsCommandInput | ListTasksCommandInput | StartTaskExecutionCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateAgentCommandInput | UpdateLocationHdfsCommandInput | UpdateLocationNfsCommandInput | UpdateLocationObjectStorageCommandInput | UpdateLocationSmbCommandInput | UpdateTaskCommandInput | UpdateTaskExecutionCommandInput;
71
+ export type ServiceInputTypes = AddStorageSystemCommandInput | CancelTaskExecutionCommandInput | CreateAgentCommandInput | CreateLocationEfsCommandInput | CreateLocationFsxLustreCommandInput | CreateLocationFsxOntapCommandInput | CreateLocationFsxOpenZfsCommandInput | CreateLocationFsxWindowsCommandInput | CreateLocationHdfsCommandInput | CreateLocationNfsCommandInput | CreateLocationObjectStorageCommandInput | CreateLocationS3CommandInput | CreateLocationSmbCommandInput | CreateTaskCommandInput | DeleteAgentCommandInput | DeleteLocationCommandInput | DeleteTaskCommandInput | DescribeAgentCommandInput | DescribeDiscoveryJobCommandInput | DescribeLocationEfsCommandInput | DescribeLocationFsxLustreCommandInput | DescribeLocationFsxOntapCommandInput | DescribeLocationFsxOpenZfsCommandInput | DescribeLocationFsxWindowsCommandInput | DescribeLocationHdfsCommandInput | DescribeLocationNfsCommandInput | DescribeLocationObjectStorageCommandInput | DescribeLocationS3CommandInput | DescribeLocationSmbCommandInput | DescribeStorageSystemCommandInput | DescribeStorageSystemResourceMetricsCommandInput | DescribeStorageSystemResourcesCommandInput | DescribeTaskCommandInput | DescribeTaskExecutionCommandInput | GenerateRecommendationsCommandInput | ListAgentsCommandInput | ListDiscoveryJobsCommandInput | ListLocationsCommandInput | ListStorageSystemsCommandInput | ListTagsForResourceCommandInput | ListTaskExecutionsCommandInput | ListTasksCommandInput | RemoveStorageSystemCommandInput | StartDiscoveryJobCommandInput | StartTaskExecutionCommandInput | StopDiscoveryJobCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateAgentCommandInput | UpdateDiscoveryJobCommandInput | UpdateLocationHdfsCommandInput | UpdateLocationNfsCommandInput | UpdateLocationObjectStorageCommandInput | UpdateLocationSmbCommandInput | UpdateStorageSystemCommandInput | UpdateTaskCommandInput | UpdateTaskExecutionCommandInput;
59
72
  /**
60
73
  * @public
61
74
  */
62
- export type ServiceOutputTypes = CancelTaskExecutionCommandOutput | CreateAgentCommandOutput | CreateLocationEfsCommandOutput | CreateLocationFsxLustreCommandOutput | CreateLocationFsxOntapCommandOutput | CreateLocationFsxOpenZfsCommandOutput | CreateLocationFsxWindowsCommandOutput | CreateLocationHdfsCommandOutput | CreateLocationNfsCommandOutput | CreateLocationObjectStorageCommandOutput | CreateLocationS3CommandOutput | CreateLocationSmbCommandOutput | CreateTaskCommandOutput | DeleteAgentCommandOutput | DeleteLocationCommandOutput | DeleteTaskCommandOutput | DescribeAgentCommandOutput | DescribeLocationEfsCommandOutput | DescribeLocationFsxLustreCommandOutput | DescribeLocationFsxOntapCommandOutput | DescribeLocationFsxOpenZfsCommandOutput | DescribeLocationFsxWindowsCommandOutput | DescribeLocationHdfsCommandOutput | DescribeLocationNfsCommandOutput | DescribeLocationObjectStorageCommandOutput | DescribeLocationS3CommandOutput | DescribeLocationSmbCommandOutput | DescribeTaskCommandOutput | DescribeTaskExecutionCommandOutput | ListAgentsCommandOutput | ListLocationsCommandOutput | ListTagsForResourceCommandOutput | ListTaskExecutionsCommandOutput | ListTasksCommandOutput | StartTaskExecutionCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateAgentCommandOutput | UpdateLocationHdfsCommandOutput | UpdateLocationNfsCommandOutput | UpdateLocationObjectStorageCommandOutput | UpdateLocationSmbCommandOutput | UpdateTaskCommandOutput | UpdateTaskExecutionCommandOutput;
75
+ export type ServiceOutputTypes = AddStorageSystemCommandOutput | CancelTaskExecutionCommandOutput | CreateAgentCommandOutput | CreateLocationEfsCommandOutput | CreateLocationFsxLustreCommandOutput | CreateLocationFsxOntapCommandOutput | CreateLocationFsxOpenZfsCommandOutput | CreateLocationFsxWindowsCommandOutput | CreateLocationHdfsCommandOutput | CreateLocationNfsCommandOutput | CreateLocationObjectStorageCommandOutput | CreateLocationS3CommandOutput | CreateLocationSmbCommandOutput | CreateTaskCommandOutput | DeleteAgentCommandOutput | DeleteLocationCommandOutput | DeleteTaskCommandOutput | DescribeAgentCommandOutput | DescribeDiscoveryJobCommandOutput | DescribeLocationEfsCommandOutput | DescribeLocationFsxLustreCommandOutput | DescribeLocationFsxOntapCommandOutput | DescribeLocationFsxOpenZfsCommandOutput | DescribeLocationFsxWindowsCommandOutput | DescribeLocationHdfsCommandOutput | DescribeLocationNfsCommandOutput | DescribeLocationObjectStorageCommandOutput | DescribeLocationS3CommandOutput | DescribeLocationSmbCommandOutput | DescribeStorageSystemCommandOutput | DescribeStorageSystemResourceMetricsCommandOutput | DescribeStorageSystemResourcesCommandOutput | DescribeTaskCommandOutput | DescribeTaskExecutionCommandOutput | GenerateRecommendationsCommandOutput | ListAgentsCommandOutput | ListDiscoveryJobsCommandOutput | ListLocationsCommandOutput | ListStorageSystemsCommandOutput | ListTagsForResourceCommandOutput | ListTaskExecutionsCommandOutput | ListTasksCommandOutput | RemoveStorageSystemCommandOutput | StartDiscoveryJobCommandOutput | StartTaskExecutionCommandOutput | StopDiscoveryJobCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateAgentCommandOutput | UpdateDiscoveryJobCommandOutput | UpdateLocationHdfsCommandOutput | UpdateLocationNfsCommandOutput | UpdateLocationObjectStorageCommandOutput | UpdateLocationSmbCommandOutput | UpdateStorageSystemCommandOutput | UpdateTaskCommandOutput | UpdateTaskExecutionCommandOutput;
63
76
  /**
64
77
  * @public
65
78
  */
@@ -189,11 +202,12 @@ export interface DataSyncClientResolvedConfig extends DataSyncClientResolvedConf
189
202
  * @public
190
203
  * <fullname>DataSync</fullname>
191
204
  * <p>DataSync is a managed data transfer service that makes it simpler for you
192
- * to automate moving data between on-premises storage and Amazon Web Services storage services. You also can use DataSync to transfer data between other cloud providers and Amazon Web Services storage services.</p>
205
+ * to automate moving data between on-premises storage and Amazon Web Services storage services.
206
+ * You also can use DataSync to transfer data between other cloud providers and Amazon Web Services storage services.</p>
193
207
  * <p>This API interface reference includes documentation for using DataSync
194
208
  * programmatically. For complete information, see the <i>
195
209
  * <a href="https://docs.aws.amazon.com/datasync/latest/userguide/what-is-datasync.html">DataSync User
196
- * Guide</a>
210
+ * Guide</a>
197
211
  * </i>.</p>
198
212
  */
199
213
  export declare class DataSyncClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, DataSyncClientResolvedConfig> {
@@ -0,0 +1,91 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
+ import { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient";
5
+ import { AddStorageSystemRequest, AddStorageSystemResponse } from "../models/models_0";
6
+ /**
7
+ * @public
8
+ *
9
+ * The input for {@link AddStorageSystemCommand}.
10
+ */
11
+ export interface AddStorageSystemCommandInput extends AddStorageSystemRequest {
12
+ }
13
+ /**
14
+ * @public
15
+ *
16
+ * The output of {@link AddStorageSystemCommand}.
17
+ */
18
+ export interface AddStorageSystemCommandOutput extends AddStorageSystemResponse, __MetadataBearer {
19
+ }
20
+ /**
21
+ * @public
22
+ * <p>Creates an Amazon Web Services resource for an on-premises storage system that you want DataSync Discovery to collect
23
+ * information about.</p>
24
+ * @example
25
+ * Use a bare-bones client and the command you need to make an API call.
26
+ * ```javascript
27
+ * import { DataSyncClient, AddStorageSystemCommand } from "@aws-sdk/client-datasync"; // ES Modules import
28
+ * // const { DataSyncClient, AddStorageSystemCommand } = require("@aws-sdk/client-datasync"); // CommonJS import
29
+ * const client = new DataSyncClient(config);
30
+ * const input = { // AddStorageSystemRequest
31
+ * ServerConfiguration: { // DiscoveryServerConfiguration
32
+ * ServerHostname: "STRING_VALUE", // required
33
+ * ServerPort: Number("int"),
34
+ * },
35
+ * SystemType: "NetAppONTAP", // required
36
+ * AgentArns: [ // DiscoveryAgentArnList // required
37
+ * "STRING_VALUE",
38
+ * ],
39
+ * CloudWatchLogGroupArn: "STRING_VALUE",
40
+ * Tags: [ // InputTagList
41
+ * { // TagListEntry
42
+ * Key: "STRING_VALUE", // required
43
+ * Value: "STRING_VALUE",
44
+ * },
45
+ * ],
46
+ * Name: "STRING_VALUE",
47
+ * ClientToken: "STRING_VALUE", // required
48
+ * Credentials: { // Credentials
49
+ * Username: "STRING_VALUE", // required
50
+ * Password: "STRING_VALUE", // required
51
+ * },
52
+ * };
53
+ * const command = new AddStorageSystemCommand(input);
54
+ * const response = await client.send(command);
55
+ * ```
56
+ *
57
+ * @param AddStorageSystemCommandInput - {@link AddStorageSystemCommandInput}
58
+ * @returns {@link AddStorageSystemCommandOutput}
59
+ * @see {@link AddStorageSystemCommandInput} for command's `input` shape.
60
+ * @see {@link AddStorageSystemCommandOutput} for command's `response` shape.
61
+ * @see {@link DataSyncClientResolvedConfig | config} for DataSyncClient's `config` shape.
62
+ *
63
+ * @throws {@link InternalException} (server fault)
64
+ * <p>This exception is thrown when an error occurs in the DataSync
65
+ * service.</p>
66
+ *
67
+ * @throws {@link InvalidRequestException} (client fault)
68
+ * <p>This exception is thrown when the client submits a malformed request.</p>
69
+ *
70
+ *
71
+ */
72
+ export declare class AddStorageSystemCommand extends $Command<AddStorageSystemCommandInput, AddStorageSystemCommandOutput, DataSyncClientResolvedConfig> {
73
+ readonly input: AddStorageSystemCommandInput;
74
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
75
+ /**
76
+ * @public
77
+ */
78
+ constructor(input: AddStorageSystemCommandInput);
79
+ /**
80
+ * @internal
81
+ */
82
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataSyncClientResolvedConfig, options?: __HttpHandlerOptions): Handler<AddStorageSystemCommandInput, AddStorageSystemCommandOutput>;
83
+ /**
84
+ * @internal
85
+ */
86
+ private serialize;
87
+ /**
88
+ * @internal
89
+ */
90
+ private deserialize;
91
+ }
@@ -24,8 +24,8 @@ export interface CancelTaskExecutionCommandOutput extends CancelTaskExecutionRes
24
24
  * incomplete or inconsistent with the source files.</p>
25
25
  * <p>However, if you start a new task execution using the same task and allow it to finish,
26
26
  * file content on the destination will be complete and consistent. This applies to other
27
- * unexpected failures that interrupt a task execution. In all of these cases, DataSync successfully completes the transfer when you start the next task
28
- * execution.</p>
27
+ * unexpected failures that interrupt a task execution. In all of these cases, DataSync
28
+ * successfully completes the transfer when you start the next task execution.</p>
29
29
  * @example
30
30
  * Use a bare-bones client and the command you need to make an API call.
31
31
  * ```javascript
@@ -46,7 +46,8 @@ export interface CancelTaskExecutionCommandOutput extends CancelTaskExecutionRes
46
46
  * @see {@link DataSyncClientResolvedConfig | config} for DataSyncClient's `config` shape.
47
47
  *
48
48
  * @throws {@link InternalException} (server fault)
49
- * <p>This exception is thrown when an error occurs in the DataSync service.</p>
49
+ * <p>This exception is thrown when an error occurs in the DataSync
50
+ * service.</p>
50
51
  *
51
52
  * @throws {@link InvalidRequestException} (client fault)
52
53
  * <p>This exception is thrown when the client submits a malformed request.</p>
@@ -29,8 +29,8 @@ export interface CreateAgentCommandOutput extends CreateAgentResponse, __Metadat
29
29
  * <p>You can use an agent for more than one location. If a task uses multiple agents, all of
30
30
  * them need to have status AVAILABLE for the task to run. If you use multiple agents for a
31
31
  * source location, the status of all the agents must be AVAILABLE for the task to run. </p>
32
- * <p>Agents are automatically updated by Amazon Web Services on a regular basis, using a mechanism that
33
- * ensures minimal interruption to your tasks.</p>
32
+ * <p>Agents are automatically updated by Amazon Web Services on a regular basis, using a
33
+ * mechanism that ensures minimal interruption to your tasks.</p>
34
34
  * @example
35
35
  * Use a bare-bones client and the command you need to make an API call.
36
36
  * ```javascript
@@ -65,7 +65,8 @@ export interface CreateAgentCommandOutput extends CreateAgentResponse, __Metadat
65
65
  * @see {@link DataSyncClientResolvedConfig | config} for DataSyncClient's `config` shape.
66
66
  *
67
67
  * @throws {@link InternalException} (server fault)
68
- * <p>This exception is thrown when an error occurs in the DataSync service.</p>
68
+ * <p>This exception is thrown when an error occurs in the DataSync
69
+ * service.</p>
69
70
  *
70
71
  * @throws {@link InvalidRequestException} (client fault)
71
72
  * <p>This exception is thrown when the client submits a malformed request.</p>
@@ -57,7 +57,8 @@ export interface CreateLocationEfsCommandOutput extends CreateLocationEfsRespons
57
57
  * @see {@link DataSyncClientResolvedConfig | config} for DataSyncClient's `config` shape.
58
58
  *
59
59
  * @throws {@link InternalException} (server fault)
60
- * <p>This exception is thrown when an error occurs in the DataSync service.</p>
60
+ * <p>This exception is thrown when an error occurs in the DataSync
61
+ * service.</p>
61
62
  *
62
63
  * @throws {@link InvalidRequestException} (client fault)
63
64
  * <p>This exception is thrown when the client submits a malformed request.</p>
@@ -50,7 +50,8 @@ export interface CreateLocationFsxLustreCommandOutput extends CreateLocationFsxL
50
50
  * @see {@link DataSyncClientResolvedConfig | config} for DataSyncClient's `config` shape.
51
51
  *
52
52
  * @throws {@link InternalException} (server fault)
53
- * <p>This exception is thrown when an error occurs in the DataSync service.</p>
53
+ * <p>This exception is thrown when an error occurs in the DataSync
54
+ * service.</p>
54
55
  *
55
56
  * @throws {@link InvalidRequestException} (client fault)
56
57
  * <p>This exception is thrown when the client submits a malformed request.</p>
@@ -19,8 +19,7 @@ export interface CreateLocationFsxOntapCommandOutput extends CreateLocationFsxOn
19
19
  }
20
20
  /**
21
21
  * @public
22
- * <p>Creates an endpoint for an Amazon FSx for NetApp ONTAP file system that DataSync
23
- * can access for a transfer. For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/create-ontap-location.html">Creating a location for FSx for ONTAP</a>.</p>
22
+ * <p>Creates an endpoint for an Amazon FSx for NetApp ONTAP file system that DataSync can access for a transfer. For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/create-ontap-location.html">Creating a location for FSx for ONTAP</a>.</p>
24
23
  * @example
25
24
  * Use a bare-bones client and the command you need to make an API call.
26
25
  * ```javascript
@@ -66,7 +65,8 @@ export interface CreateLocationFsxOntapCommandOutput extends CreateLocationFsxOn
66
65
  * @see {@link DataSyncClientResolvedConfig | config} for DataSyncClient's `config` shape.
67
66
  *
68
67
  * @throws {@link InternalException} (server fault)
69
- * <p>This exception is thrown when an error occurs in the DataSync service.</p>
68
+ * <p>This exception is thrown when an error occurs in the DataSync
69
+ * service.</p>
70
70
  *
71
71
  * @throws {@link InvalidRequestException} (client fault)
72
72
  * <p>This exception is thrown when the client submits a malformed request.</p>
@@ -19,11 +19,10 @@ export interface CreateLocationFsxOpenZfsCommandOutput extends CreateLocationFsx
19
19
  }
20
20
  /**
21
21
  * @public
22
- * <p>Creates an endpoint for an Amazon FSx for OpenZFS file system that DataSync
23
- * can access for a transfer. For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/create-openzfs-location.html">Creating a location for FSx for OpenZFS</a>.</p>
22
+ * <p>Creates an endpoint for an Amazon FSx for OpenZFS file system that DataSync can access for a transfer. For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/create-openzfs-location.html">Creating a location for FSx for OpenZFS</a>.</p>
24
23
  * <note>
25
24
  * <p>Request parameters related to <code>SMB</code> aren't supported with the
26
- * <code>CreateLocationFsxOpenZfs</code> operation.</p>
25
+ * <code>CreateLocationFsxOpenZfs</code> operation.</p>
27
26
  * </note>
28
27
  * @example
29
28
  * Use a bare-bones client and the command you need to make an API call.
@@ -70,7 +69,8 @@ export interface CreateLocationFsxOpenZfsCommandOutput extends CreateLocationFsx
70
69
  * @see {@link DataSyncClientResolvedConfig | config} for DataSyncClient's `config` shape.
71
70
  *
72
71
  * @throws {@link InternalException} (server fault)
73
- * <p>This exception is thrown when an error occurs in the DataSync service.</p>
72
+ * <p>This exception is thrown when an error occurs in the DataSync
73
+ * service.</p>
74
74
  *
75
75
  * @throws {@link InvalidRequestException} (client fault)
76
76
  * <p>This exception is thrown when the client submits a malformed request.</p>
@@ -53,7 +53,8 @@ export interface CreateLocationFsxWindowsCommandOutput extends CreateLocationFsx
53
53
  * @see {@link DataSyncClientResolvedConfig | config} for DataSyncClient's `config` shape.
54
54
  *
55
55
  * @throws {@link InternalException} (server fault)
56
- * <p>This exception is thrown when an error occurs in the DataSync service.</p>
56
+ * <p>This exception is thrown when an error occurs in the DataSync
57
+ * service.</p>
57
58
  *
58
59
  * @throws {@link InvalidRequestException} (client fault)
59
60
  * <p>This exception is thrown when the client submits a malformed request.</p>
@@ -67,7 +67,8 @@ export interface CreateLocationHdfsCommandOutput extends CreateLocationHdfsRespo
67
67
  * @see {@link DataSyncClientResolvedConfig | config} for DataSyncClient's `config` shape.
68
68
  *
69
69
  * @throws {@link InternalException} (server fault)
70
- * <p>This exception is thrown when an error occurs in the DataSync service.</p>
70
+ * <p>This exception is thrown when an error occurs in the DataSync
71
+ * service.</p>
71
72
  *
72
73
  * @throws {@link InvalidRequestException} (client fault)
73
74
  * <p>This exception is thrown when the client submits a malformed request.</p>
@@ -56,7 +56,8 @@ export interface CreateLocationNfsCommandOutput extends CreateLocationNfsRespons
56
56
  * @see {@link DataSyncClientResolvedConfig | config} for DataSyncClient's `config` shape.
57
57
  *
58
58
  * @throws {@link InternalException} (server fault)
59
- * <p>This exception is thrown when an error occurs in the DataSync service.</p>
59
+ * <p>This exception is thrown when an error occurs in the DataSync
60
+ * service.</p>
60
61
  *
61
62
  * @throws {@link InvalidRequestException} (client fault)
62
63
  * <p>This exception is thrown when the client submits a malformed request.</p>
@@ -19,7 +19,9 @@ export interface CreateLocationObjectStorageCommandOutput extends CreateLocation
19
19
  }
20
20
  /**
21
21
  * @public
22
- * <p>Creates an endpoint for an object storage system that DataSync can access for a transfer. For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/create-object-location.html">Creating a location for object storage</a>.</p>
22
+ * <p>Creates an endpoint for an object storage system that DataSync can access
23
+ * for a transfer. For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/create-object-location.html">Creating a location for object
24
+ * storage</a>.</p>
23
25
  * @example
24
26
  * Use a bare-bones client and the command you need to make an API call.
25
27
  * ```javascript
@@ -56,7 +58,8 @@ export interface CreateLocationObjectStorageCommandOutput extends CreateLocation
56
58
  * @see {@link DataSyncClientResolvedConfig | config} for DataSyncClient's `config` shape.
57
59
  *
58
60
  * @throws {@link InternalException} (server fault)
59
- * <p>This exception is thrown when an error occurs in the DataSync service.</p>
61
+ * <p>This exception is thrown when an error occurs in the DataSync
62
+ * service.</p>
60
63
  *
61
64
  * @throws {@link InvalidRequestException} (client fault)
62
65
  * <p>This exception is thrown when the client submits a malformed request.</p>
@@ -19,8 +19,24 @@ export interface CreateLocationS3CommandOutput extends CreateLocationS3Response,
19
19
  }
20
20
  /**
21
21
  * @public
22
- * <p>Creates an endpoint for an Amazon S3 bucket that DataSync can
23
- * access for a transfer. For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/create-locations-cli.html#create-location-s3-cli">Create an Amazon S3 location</a>.</p>
22
+ * <p>A <i>location</i> is an endpoint for an Amazon S3 bucket. DataSync can use the location as a source or destination for copying data.</p>
23
+ * <important>
24
+ * <p>Before you create your location, make sure that you read the following sections:</p>
25
+ * <ul>
26
+ * <li>
27
+ * <p>
28
+ * <a href="https://docs.aws.amazon.com/datasync/latest/userguide/create-s3-location.html#using-storage-classes">Storage
29
+ * class considerations with Amazon S3 locations</a>
30
+ * </p>
31
+ * </li>
32
+ * <li>
33
+ * <p>
34
+ * <a href="https://docs.aws.amazon.com/datasync/latest/userguide/create-s3-location.html#create-s3-location-s3-requests">Evaluating S3 request costs when using DataSync</a>
35
+ * </p>
36
+ * </li>
37
+ * </ul>
38
+ * </important>
39
+ * <p> For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/create-locations-cli.html#create-location-s3-cli">Creating an Amazon S3 location</a>.</p>
24
40
  * @example
25
41
  * Use a bare-bones client and the command you need to make an API call.
26
42
  * ```javascript
@@ -55,7 +71,8 @@ export interface CreateLocationS3CommandOutput extends CreateLocationS3Response,
55
71
  * @see {@link DataSyncClientResolvedConfig | config} for DataSyncClient's `config` shape.
56
72
  *
57
73
  * @throws {@link InternalException} (server fault)
58
- * <p>This exception is thrown when an error occurs in the DataSync service.</p>
74
+ * <p>This exception is thrown when an error occurs in the DataSync
75
+ * service.</p>
59
76
  *
60
77
  * @throws {@link InvalidRequestException} (client fault)
61
78
  * <p>This exception is thrown when the client submits a malformed request.</p>
@@ -56,7 +56,8 @@ export interface CreateLocationSmbCommandOutput extends CreateLocationSmbRespons
56
56
  * @see {@link DataSyncClientResolvedConfig | config} for DataSyncClient's `config` shape.
57
57
  *
58
58
  * @throws {@link InternalException} (server fault)
59
- * <p>This exception is thrown when an error occurs in the DataSync service.</p>
59
+ * <p>This exception is thrown when an error occurs in the DataSync
60
+ * service.</p>
60
61
  *
61
62
  * @throws {@link InvalidRequestException} (client fault)
62
63
  * <p>This exception is thrown when the client submits a malformed request.</p>