@aws-sdk/client-datasync 3.316.0 → 3.320.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 (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 +8 -6
@@ -44,6 +44,10 @@ import {
44
44
  UrlParser as __UrlParser,
45
45
  UserAgent as __UserAgent,
46
46
  } from "@aws-sdk/types";
47
+ import {
48
+ AddStorageSystemCommandInput,
49
+ AddStorageSystemCommandOutput,
50
+ } from "./commands/AddStorageSystemCommand";
47
51
  import {
48
52
  CancelTaskExecutionCommandInput,
49
53
  CancelTaskExecutionCommandOutput,
@@ -112,6 +116,10 @@ import {
112
116
  DescribeAgentCommandInput,
113
117
  DescribeAgentCommandOutput,
114
118
  } from "./commands/DescribeAgentCommand";
119
+ import {
120
+ DescribeDiscoveryJobCommandInput,
121
+ DescribeDiscoveryJobCommandOutput,
122
+ } from "./commands/DescribeDiscoveryJobCommand";
115
123
  import {
116
124
  DescribeLocationEfsCommandInput,
117
125
  DescribeLocationEfsCommandOutput,
@@ -152,6 +160,18 @@ import {
152
160
  DescribeLocationSmbCommandInput,
153
161
  DescribeLocationSmbCommandOutput,
154
162
  } from "./commands/DescribeLocationSmbCommand";
163
+ import {
164
+ DescribeStorageSystemCommandInput,
165
+ DescribeStorageSystemCommandOutput,
166
+ } from "./commands/DescribeStorageSystemCommand";
167
+ import {
168
+ DescribeStorageSystemResourceMetricsCommandInput,
169
+ DescribeStorageSystemResourceMetricsCommandOutput,
170
+ } from "./commands/DescribeStorageSystemResourceMetricsCommand";
171
+ import {
172
+ DescribeStorageSystemResourcesCommandInput,
173
+ DescribeStorageSystemResourcesCommandOutput,
174
+ } from "./commands/DescribeStorageSystemResourcesCommand";
155
175
  import {
156
176
  DescribeTaskCommandInput,
157
177
  DescribeTaskCommandOutput,
@@ -160,14 +180,26 @@ import {
160
180
  DescribeTaskExecutionCommandInput,
161
181
  DescribeTaskExecutionCommandOutput,
162
182
  } from "./commands/DescribeTaskExecutionCommand";
183
+ import {
184
+ GenerateRecommendationsCommandInput,
185
+ GenerateRecommendationsCommandOutput,
186
+ } from "./commands/GenerateRecommendationsCommand";
163
187
  import {
164
188
  ListAgentsCommandInput,
165
189
  ListAgentsCommandOutput,
166
190
  } from "./commands/ListAgentsCommand";
191
+ import {
192
+ ListDiscoveryJobsCommandInput,
193
+ ListDiscoveryJobsCommandOutput,
194
+ } from "./commands/ListDiscoveryJobsCommand";
167
195
  import {
168
196
  ListLocationsCommandInput,
169
197
  ListLocationsCommandOutput,
170
198
  } from "./commands/ListLocationsCommand";
199
+ import {
200
+ ListStorageSystemsCommandInput,
201
+ ListStorageSystemsCommandOutput,
202
+ } from "./commands/ListStorageSystemsCommand";
171
203
  import {
172
204
  ListTagsForResourceCommandInput,
173
205
  ListTagsForResourceCommandOutput,
@@ -180,10 +212,22 @@ import {
180
212
  ListTasksCommandInput,
181
213
  ListTasksCommandOutput,
182
214
  } from "./commands/ListTasksCommand";
215
+ import {
216
+ RemoveStorageSystemCommandInput,
217
+ RemoveStorageSystemCommandOutput,
218
+ } from "./commands/RemoveStorageSystemCommand";
219
+ import {
220
+ StartDiscoveryJobCommandInput,
221
+ StartDiscoveryJobCommandOutput,
222
+ } from "./commands/StartDiscoveryJobCommand";
183
223
  import {
184
224
  StartTaskExecutionCommandInput,
185
225
  StartTaskExecutionCommandOutput,
186
226
  } from "./commands/StartTaskExecutionCommand";
227
+ import {
228
+ StopDiscoveryJobCommandInput,
229
+ StopDiscoveryJobCommandOutput,
230
+ } from "./commands/StopDiscoveryJobCommand";
187
231
  import {
188
232
  TagResourceCommandInput,
189
233
  TagResourceCommandOutput,
@@ -196,6 +240,10 @@ import {
196
240
  UpdateAgentCommandInput,
197
241
  UpdateAgentCommandOutput,
198
242
  } from "./commands/UpdateAgentCommand";
243
+ import {
244
+ UpdateDiscoveryJobCommandInput,
245
+ UpdateDiscoveryJobCommandOutput,
246
+ } from "./commands/UpdateDiscoveryJobCommand";
199
247
  import {
200
248
  UpdateLocationHdfsCommandInput,
201
249
  UpdateLocationHdfsCommandOutput,
@@ -212,6 +260,10 @@ import {
212
260
  UpdateLocationSmbCommandInput,
213
261
  UpdateLocationSmbCommandOutput,
214
262
  } from "./commands/UpdateLocationSmbCommand";
263
+ import {
264
+ UpdateStorageSystemCommandInput,
265
+ UpdateStorageSystemCommandOutput,
266
+ } from "./commands/UpdateStorageSystemCommand";
215
267
  import {
216
268
  UpdateTaskCommandInput,
217
269
  UpdateTaskCommandOutput,
@@ -226,6 +278,7 @@ import {
226
278
  EndpointParameters,
227
279
  } from "./endpoint/EndpointParameters";
228
280
  export type ServiceInputTypes =
281
+ | AddStorageSystemCommandInput
229
282
  | CancelTaskExecutionCommandInput
230
283
  | CreateAgentCommandInput
231
284
  | CreateLocationEfsCommandInput
@@ -243,6 +296,7 @@ export type ServiceInputTypes =
243
296
  | DeleteLocationCommandInput
244
297
  | DeleteTaskCommandInput
245
298
  | DescribeAgentCommandInput
299
+ | DescribeDiscoveryJobCommandInput
246
300
  | DescribeLocationEfsCommandInput
247
301
  | DescribeLocationFsxLustreCommandInput
248
302
  | DescribeLocationFsxOntapCommandInput
@@ -253,24 +307,36 @@ export type ServiceInputTypes =
253
307
  | DescribeLocationObjectStorageCommandInput
254
308
  | DescribeLocationS3CommandInput
255
309
  | DescribeLocationSmbCommandInput
310
+ | DescribeStorageSystemCommandInput
311
+ | DescribeStorageSystemResourceMetricsCommandInput
312
+ | DescribeStorageSystemResourcesCommandInput
256
313
  | DescribeTaskCommandInput
257
314
  | DescribeTaskExecutionCommandInput
315
+ | GenerateRecommendationsCommandInput
258
316
  | ListAgentsCommandInput
317
+ | ListDiscoveryJobsCommandInput
259
318
  | ListLocationsCommandInput
319
+ | ListStorageSystemsCommandInput
260
320
  | ListTagsForResourceCommandInput
261
321
  | ListTaskExecutionsCommandInput
262
322
  | ListTasksCommandInput
323
+ | RemoveStorageSystemCommandInput
324
+ | StartDiscoveryJobCommandInput
263
325
  | StartTaskExecutionCommandInput
326
+ | StopDiscoveryJobCommandInput
264
327
  | TagResourceCommandInput
265
328
  | UntagResourceCommandInput
266
329
  | UpdateAgentCommandInput
330
+ | UpdateDiscoveryJobCommandInput
267
331
  | UpdateLocationHdfsCommandInput
268
332
  | UpdateLocationNfsCommandInput
269
333
  | UpdateLocationObjectStorageCommandInput
270
334
  | UpdateLocationSmbCommandInput
335
+ | UpdateStorageSystemCommandInput
271
336
  | UpdateTaskCommandInput
272
337
  | UpdateTaskExecutionCommandInput;
273
338
  export type ServiceOutputTypes =
339
+ | AddStorageSystemCommandOutput
274
340
  | CancelTaskExecutionCommandOutput
275
341
  | CreateAgentCommandOutput
276
342
  | CreateLocationEfsCommandOutput
@@ -288,6 +354,7 @@ export type ServiceOutputTypes =
288
354
  | DeleteLocationCommandOutput
289
355
  | DeleteTaskCommandOutput
290
356
  | DescribeAgentCommandOutput
357
+ | DescribeDiscoveryJobCommandOutput
291
358
  | DescribeLocationEfsCommandOutput
292
359
  | DescribeLocationFsxLustreCommandOutput
293
360
  | DescribeLocationFsxOntapCommandOutput
@@ -298,21 +365,32 @@ export type ServiceOutputTypes =
298
365
  | DescribeLocationObjectStorageCommandOutput
299
366
  | DescribeLocationS3CommandOutput
300
367
  | DescribeLocationSmbCommandOutput
368
+ | DescribeStorageSystemCommandOutput
369
+ | DescribeStorageSystemResourceMetricsCommandOutput
370
+ | DescribeStorageSystemResourcesCommandOutput
301
371
  | DescribeTaskCommandOutput
302
372
  | DescribeTaskExecutionCommandOutput
373
+ | GenerateRecommendationsCommandOutput
303
374
  | ListAgentsCommandOutput
375
+ | ListDiscoveryJobsCommandOutput
304
376
  | ListLocationsCommandOutput
377
+ | ListStorageSystemsCommandOutput
305
378
  | ListTagsForResourceCommandOutput
306
379
  | ListTaskExecutionsCommandOutput
307
380
  | ListTasksCommandOutput
381
+ | RemoveStorageSystemCommandOutput
382
+ | StartDiscoveryJobCommandOutput
308
383
  | StartTaskExecutionCommandOutput
384
+ | StopDiscoveryJobCommandOutput
309
385
  | TagResourceCommandOutput
310
386
  | UntagResourceCommandOutput
311
387
  | UpdateAgentCommandOutput
388
+ | UpdateDiscoveryJobCommandOutput
312
389
  | UpdateLocationHdfsCommandOutput
313
390
  | UpdateLocationNfsCommandOutput
314
391
  | UpdateLocationObjectStorageCommandOutput
315
392
  | UpdateLocationSmbCommandOutput
393
+ | UpdateStorageSystemCommandOutput
316
394
  | UpdateTaskCommandOutput
317
395
  | UpdateTaskExecutionCommandOutput;
318
396
  export interface ClientDefaults
@@ -0,0 +1,37 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import {
10
+ DataSyncClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../DataSyncClient";
14
+ import {
15
+ AddStorageSystemRequest,
16
+ AddStorageSystemResponse,
17
+ } from "../models/models_0";
18
+ export interface AddStorageSystemCommandInput extends AddStorageSystemRequest {}
19
+ export interface AddStorageSystemCommandOutput
20
+ extends AddStorageSystemResponse,
21
+ __MetadataBearer {}
22
+ export declare class AddStorageSystemCommand extends $Command<
23
+ AddStorageSystemCommandInput,
24
+ AddStorageSystemCommandOutput,
25
+ DataSyncClientResolvedConfig
26
+ > {
27
+ readonly input: AddStorageSystemCommandInput;
28
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
29
+ constructor(input: AddStorageSystemCommandInput);
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: DataSyncClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<AddStorageSystemCommandInput, AddStorageSystemCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -0,0 +1,41 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import {
10
+ DataSyncClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../DataSyncClient";
14
+ import {
15
+ DescribeDiscoveryJobRequest,
16
+ DescribeDiscoveryJobResponse,
17
+ } from "../models/models_0";
18
+ export interface DescribeDiscoveryJobCommandInput
19
+ extends DescribeDiscoveryJobRequest {}
20
+ export interface DescribeDiscoveryJobCommandOutput
21
+ extends DescribeDiscoveryJobResponse,
22
+ __MetadataBearer {}
23
+ export declare class DescribeDiscoveryJobCommand extends $Command<
24
+ DescribeDiscoveryJobCommandInput,
25
+ DescribeDiscoveryJobCommandOutput,
26
+ DataSyncClientResolvedConfig
27
+ > {
28
+ readonly input: DescribeDiscoveryJobCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
30
+ constructor(input: DescribeDiscoveryJobCommandInput);
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: DataSyncClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ DescribeDiscoveryJobCommandInput,
37
+ DescribeDiscoveryJobCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -0,0 +1,41 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import {
10
+ DataSyncClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../DataSyncClient";
14
+ import {
15
+ DescribeStorageSystemRequest,
16
+ DescribeStorageSystemResponse,
17
+ } from "../models/models_0";
18
+ export interface DescribeStorageSystemCommandInput
19
+ extends DescribeStorageSystemRequest {}
20
+ export interface DescribeStorageSystemCommandOutput
21
+ extends DescribeStorageSystemResponse,
22
+ __MetadataBearer {}
23
+ export declare class DescribeStorageSystemCommand extends $Command<
24
+ DescribeStorageSystemCommandInput,
25
+ DescribeStorageSystemCommandOutput,
26
+ DataSyncClientResolvedConfig
27
+ > {
28
+ readonly input: DescribeStorageSystemCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
30
+ constructor(input: DescribeStorageSystemCommandInput);
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: DataSyncClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ DescribeStorageSystemCommandInput,
37
+ DescribeStorageSystemCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -0,0 +1,41 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import {
10
+ DataSyncClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../DataSyncClient";
14
+ import {
15
+ DescribeStorageSystemResourceMetricsRequest,
16
+ DescribeStorageSystemResourceMetricsResponse,
17
+ } from "../models/models_0";
18
+ export interface DescribeStorageSystemResourceMetricsCommandInput
19
+ extends DescribeStorageSystemResourceMetricsRequest {}
20
+ export interface DescribeStorageSystemResourceMetricsCommandOutput
21
+ extends DescribeStorageSystemResourceMetricsResponse,
22
+ __MetadataBearer {}
23
+ export declare class DescribeStorageSystemResourceMetricsCommand extends $Command<
24
+ DescribeStorageSystemResourceMetricsCommandInput,
25
+ DescribeStorageSystemResourceMetricsCommandOutput,
26
+ DataSyncClientResolvedConfig
27
+ > {
28
+ readonly input: DescribeStorageSystemResourceMetricsCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
30
+ constructor(input: DescribeStorageSystemResourceMetricsCommandInput);
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: DataSyncClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ DescribeStorageSystemResourceMetricsCommandInput,
37
+ DescribeStorageSystemResourceMetricsCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -0,0 +1,41 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import {
10
+ DataSyncClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../DataSyncClient";
14
+ import {
15
+ DescribeStorageSystemResourcesRequest,
16
+ DescribeStorageSystemResourcesResponse,
17
+ } from "../models/models_0";
18
+ export interface DescribeStorageSystemResourcesCommandInput
19
+ extends DescribeStorageSystemResourcesRequest {}
20
+ export interface DescribeStorageSystemResourcesCommandOutput
21
+ extends DescribeStorageSystemResourcesResponse,
22
+ __MetadataBearer {}
23
+ export declare class DescribeStorageSystemResourcesCommand extends $Command<
24
+ DescribeStorageSystemResourcesCommandInput,
25
+ DescribeStorageSystemResourcesCommandOutput,
26
+ DataSyncClientResolvedConfig
27
+ > {
28
+ readonly input: DescribeStorageSystemResourcesCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
30
+ constructor(input: DescribeStorageSystemResourcesCommandInput);
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: DataSyncClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ DescribeStorageSystemResourcesCommandInput,
37
+ DescribeStorageSystemResourcesCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -0,0 +1,41 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import {
10
+ DataSyncClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../DataSyncClient";
14
+ import {
15
+ GenerateRecommendationsRequest,
16
+ GenerateRecommendationsResponse,
17
+ } from "../models/models_0";
18
+ export interface GenerateRecommendationsCommandInput
19
+ extends GenerateRecommendationsRequest {}
20
+ export interface GenerateRecommendationsCommandOutput
21
+ extends GenerateRecommendationsResponse,
22
+ __MetadataBearer {}
23
+ export declare class GenerateRecommendationsCommand extends $Command<
24
+ GenerateRecommendationsCommandInput,
25
+ GenerateRecommendationsCommandOutput,
26
+ DataSyncClientResolvedConfig
27
+ > {
28
+ readonly input: GenerateRecommendationsCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
30
+ constructor(input: GenerateRecommendationsCommandInput);
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: DataSyncClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ GenerateRecommendationsCommandInput,
37
+ GenerateRecommendationsCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -0,0 +1,38 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import {
10
+ DataSyncClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../DataSyncClient";
14
+ import {
15
+ ListDiscoveryJobsRequest,
16
+ ListDiscoveryJobsResponse,
17
+ } from "../models/models_0";
18
+ export interface ListDiscoveryJobsCommandInput
19
+ extends ListDiscoveryJobsRequest {}
20
+ export interface ListDiscoveryJobsCommandOutput
21
+ extends ListDiscoveryJobsResponse,
22
+ __MetadataBearer {}
23
+ export declare class ListDiscoveryJobsCommand extends $Command<
24
+ ListDiscoveryJobsCommandInput,
25
+ ListDiscoveryJobsCommandOutput,
26
+ DataSyncClientResolvedConfig
27
+ > {
28
+ readonly input: ListDiscoveryJobsCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
30
+ constructor(input: ListDiscoveryJobsCommandInput);
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: DataSyncClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<ListDiscoveryJobsCommandInput, ListDiscoveryJobsCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -0,0 +1,38 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import {
10
+ DataSyncClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../DataSyncClient";
14
+ import {
15
+ ListStorageSystemsRequest,
16
+ ListStorageSystemsResponse,
17
+ } from "../models/models_0";
18
+ export interface ListStorageSystemsCommandInput
19
+ extends ListStorageSystemsRequest {}
20
+ export interface ListStorageSystemsCommandOutput
21
+ extends ListStorageSystemsResponse,
22
+ __MetadataBearer {}
23
+ export declare class ListStorageSystemsCommand extends $Command<
24
+ ListStorageSystemsCommandInput,
25
+ ListStorageSystemsCommandOutput,
26
+ DataSyncClientResolvedConfig
27
+ > {
28
+ readonly input: ListStorageSystemsCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
30
+ constructor(input: ListStorageSystemsCommandInput);
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: DataSyncClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<ListStorageSystemsCommandInput, ListStorageSystemsCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -0,0 +1,38 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import {
10
+ DataSyncClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../DataSyncClient";
14
+ import {
15
+ RemoveStorageSystemRequest,
16
+ RemoveStorageSystemResponse,
17
+ } from "../models/models_0";
18
+ export interface RemoveStorageSystemCommandInput
19
+ extends RemoveStorageSystemRequest {}
20
+ export interface RemoveStorageSystemCommandOutput
21
+ extends RemoveStorageSystemResponse,
22
+ __MetadataBearer {}
23
+ export declare class RemoveStorageSystemCommand extends $Command<
24
+ RemoveStorageSystemCommandInput,
25
+ RemoveStorageSystemCommandOutput,
26
+ DataSyncClientResolvedConfig
27
+ > {
28
+ readonly input: RemoveStorageSystemCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
30
+ constructor(input: RemoveStorageSystemCommandInput);
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: DataSyncClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<RemoveStorageSystemCommandInput, RemoveStorageSystemCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -0,0 +1,38 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import {
10
+ DataSyncClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../DataSyncClient";
14
+ import {
15
+ StartDiscoveryJobRequest,
16
+ StartDiscoveryJobResponse,
17
+ } from "../models/models_0";
18
+ export interface StartDiscoveryJobCommandInput
19
+ extends StartDiscoveryJobRequest {}
20
+ export interface StartDiscoveryJobCommandOutput
21
+ extends StartDiscoveryJobResponse,
22
+ __MetadataBearer {}
23
+ export declare class StartDiscoveryJobCommand extends $Command<
24
+ StartDiscoveryJobCommandInput,
25
+ StartDiscoveryJobCommandOutput,
26
+ DataSyncClientResolvedConfig
27
+ > {
28
+ readonly input: StartDiscoveryJobCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
30
+ constructor(input: StartDiscoveryJobCommandInput);
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: DataSyncClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<StartDiscoveryJobCommandInput, StartDiscoveryJobCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -0,0 +1,37 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import {
10
+ DataSyncClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../DataSyncClient";
14
+ import {
15
+ StopDiscoveryJobRequest,
16
+ StopDiscoveryJobResponse,
17
+ } from "../models/models_0";
18
+ export interface StopDiscoveryJobCommandInput extends StopDiscoveryJobRequest {}
19
+ export interface StopDiscoveryJobCommandOutput
20
+ extends StopDiscoveryJobResponse,
21
+ __MetadataBearer {}
22
+ export declare class StopDiscoveryJobCommand extends $Command<
23
+ StopDiscoveryJobCommandInput,
24
+ StopDiscoveryJobCommandOutput,
25
+ DataSyncClientResolvedConfig
26
+ > {
27
+ readonly input: StopDiscoveryJobCommandInput;
28
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
29
+ constructor(input: StopDiscoveryJobCommandInput);
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: DataSyncClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<StopDiscoveryJobCommandInput, StopDiscoveryJobCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -0,0 +1,38 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import {
10
+ DataSyncClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../DataSyncClient";
14
+ import {
15
+ UpdateDiscoveryJobRequest,
16
+ UpdateDiscoveryJobResponse,
17
+ } from "../models/models_0";
18
+ export interface UpdateDiscoveryJobCommandInput
19
+ extends UpdateDiscoveryJobRequest {}
20
+ export interface UpdateDiscoveryJobCommandOutput
21
+ extends UpdateDiscoveryJobResponse,
22
+ __MetadataBearer {}
23
+ export declare class UpdateDiscoveryJobCommand extends $Command<
24
+ UpdateDiscoveryJobCommandInput,
25
+ UpdateDiscoveryJobCommandOutput,
26
+ DataSyncClientResolvedConfig
27
+ > {
28
+ readonly input: UpdateDiscoveryJobCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
30
+ constructor(input: UpdateDiscoveryJobCommandInput);
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: DataSyncClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<UpdateDiscoveryJobCommandInput, UpdateDiscoveryJobCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }