@aws-sdk/client-storage-gateway 3.743.0 → 3.748.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 (33) hide show
  1. package/README.md +40 -0
  2. package/dist-cjs/index.js +233 -0
  3. package/dist-es/StorageGateway.js +10 -0
  4. package/dist-es/commands/CancelCacheReportCommand.js +22 -0
  5. package/dist-es/commands/DeleteCacheReportCommand.js +22 -0
  6. package/dist-es/commands/DescribeCacheReportCommand.js +22 -0
  7. package/dist-es/commands/ListCacheReportsCommand.js +22 -0
  8. package/dist-es/commands/StartCacheReportCommand.js +22 -0
  9. package/dist-es/commands/index.js +5 -0
  10. package/dist-es/models/models_0.js +11 -0
  11. package/dist-es/protocols/Aws_json1_1.js +131 -1
  12. package/dist-types/StorageGateway.d.ts +36 -0
  13. package/dist-types/StorageGatewayClient.d.ts +7 -2
  14. package/dist-types/commands/CancelCacheReportCommand.d.ts +83 -0
  15. package/dist-types/commands/DeleteCacheReportCommand.d.ts +85 -0
  16. package/dist-types/commands/DescribeCacheReportCommand.d.ts +112 -0
  17. package/dist-types/commands/ListCacheReportsCommand.d.ts +117 -0
  18. package/dist-types/commands/NotifyWhenUploadedCommand.d.ts +5 -4
  19. package/dist-types/commands/StartCacheReportCommand.d.ts +140 -0
  20. package/dist-types/commands/index.d.ts +5 -0
  21. package/dist-types/models/models_0.d.ts +324 -12
  22. package/dist-types/protocols/Aws_json1_1.d.ts +45 -0
  23. package/dist-types/ts3.4/StorageGateway.d.ts +86 -0
  24. package/dist-types/ts3.4/StorageGatewayClient.d.ts +30 -0
  25. package/dist-types/ts3.4/commands/CancelCacheReportCommand.d.ts +50 -0
  26. package/dist-types/ts3.4/commands/DeleteCacheReportCommand.d.ts +50 -0
  27. package/dist-types/ts3.4/commands/DescribeCacheReportCommand.d.ts +51 -0
  28. package/dist-types/ts3.4/commands/ListCacheReportsCommand.d.ts +50 -0
  29. package/dist-types/ts3.4/commands/StartCacheReportCommand.d.ts +50 -0
  30. package/dist-types/ts3.4/commands/index.d.ts +5 -0
  31. package/dist-types/ts3.4/models/models_0.d.ts +72 -0
  32. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +60 -0
  33. package/package.json +12 -12
@@ -35,6 +35,10 @@ import {
35
35
  CancelArchivalCommandInput,
36
36
  CancelArchivalCommandOutput,
37
37
  } from "./commands/CancelArchivalCommand";
38
+ import {
39
+ CancelCacheReportCommandInput,
40
+ CancelCacheReportCommandOutput,
41
+ } from "./commands/CancelCacheReportCommand";
38
42
  import {
39
43
  CancelRetrievalCommandInput,
40
44
  CancelRetrievalCommandOutput,
@@ -83,6 +87,10 @@ import {
83
87
  DeleteBandwidthRateLimitCommandInput,
84
88
  DeleteBandwidthRateLimitCommandOutput,
85
89
  } from "./commands/DeleteBandwidthRateLimitCommand";
90
+ import {
91
+ DeleteCacheReportCommandInput,
92
+ DeleteCacheReportCommandOutput,
93
+ } from "./commands/DeleteCacheReportCommand";
86
94
  import {
87
95
  DeleteChapCredentialsCommandInput,
88
96
  DeleteChapCredentialsCommandOutput,
@@ -135,6 +143,10 @@ import {
135
143
  DescribeCachediSCSIVolumesCommandInput,
136
144
  DescribeCachediSCSIVolumesCommandOutput,
137
145
  } from "./commands/DescribeCachediSCSIVolumesCommand";
146
+ import {
147
+ DescribeCacheReportCommandInput,
148
+ DescribeCacheReportCommandOutput,
149
+ } from "./commands/DescribeCacheReportCommand";
138
150
  import {
139
151
  DescribeChapCredentialsCommandInput,
140
152
  DescribeChapCredentialsCommandOutput,
@@ -215,6 +227,10 @@ import {
215
227
  ListAutomaticTapeCreationPoliciesCommandInput,
216
228
  ListAutomaticTapeCreationPoliciesCommandOutput,
217
229
  } from "./commands/ListAutomaticTapeCreationPoliciesCommand";
230
+ import {
231
+ ListCacheReportsCommandInput,
232
+ ListCacheReportsCommandOutput,
233
+ } from "./commands/ListCacheReportsCommand";
218
234
  import {
219
235
  ListFileSharesCommandInput,
220
236
  ListFileSharesCommandOutput,
@@ -295,6 +311,10 @@ import {
295
311
  StartAvailabilityMonitorTestCommandInput,
296
312
  StartAvailabilityMonitorTestCommandOutput,
297
313
  } from "./commands/StartAvailabilityMonitorTestCommand";
314
+ import {
315
+ StartCacheReportCommandInput,
316
+ StartCacheReportCommandOutput,
317
+ } from "./commands/StartCacheReportCommand";
298
318
  import {
299
319
  StartGatewayCommandInput,
300
320
  StartGatewayCommandOutput,
@@ -478,6 +498,19 @@ export interface StorageGateway {
478
498
  options: __HttpHandlerOptions,
479
499
  cb: (err: any, data?: CancelArchivalCommandOutput) => void
480
500
  ): void;
501
+ cancelCacheReport(
502
+ args: CancelCacheReportCommandInput,
503
+ options?: __HttpHandlerOptions
504
+ ): Promise<CancelCacheReportCommandOutput>;
505
+ cancelCacheReport(
506
+ args: CancelCacheReportCommandInput,
507
+ cb: (err: any, data?: CancelCacheReportCommandOutput) => void
508
+ ): void;
509
+ cancelCacheReport(
510
+ args: CancelCacheReportCommandInput,
511
+ options: __HttpHandlerOptions,
512
+ cb: (err: any, data?: CancelCacheReportCommandOutput) => void
513
+ ): void;
481
514
  cancelRetrieval(
482
515
  args: CancelRetrievalCommandInput,
483
516
  options?: __HttpHandlerOptions
@@ -646,6 +679,19 @@ export interface StorageGateway {
646
679
  options: __HttpHandlerOptions,
647
680
  cb: (err: any, data?: DeleteBandwidthRateLimitCommandOutput) => void
648
681
  ): void;
682
+ deleteCacheReport(
683
+ args: DeleteCacheReportCommandInput,
684
+ options?: __HttpHandlerOptions
685
+ ): Promise<DeleteCacheReportCommandOutput>;
686
+ deleteCacheReport(
687
+ args: DeleteCacheReportCommandInput,
688
+ cb: (err: any, data?: DeleteCacheReportCommandOutput) => void
689
+ ): void;
690
+ deleteCacheReport(
691
+ args: DeleteCacheReportCommandInput,
692
+ options: __HttpHandlerOptions,
693
+ cb: (err: any, data?: DeleteCacheReportCommandOutput) => void
694
+ ): void;
649
695
  deleteChapCredentials(
650
696
  args: DeleteChapCredentialsCommandInput,
651
697
  options?: __HttpHandlerOptions
@@ -821,6 +867,19 @@ export interface StorageGateway {
821
867
  options: __HttpHandlerOptions,
822
868
  cb: (err: any, data?: DescribeCachediSCSIVolumesCommandOutput) => void
823
869
  ): void;
870
+ describeCacheReport(
871
+ args: DescribeCacheReportCommandInput,
872
+ options?: __HttpHandlerOptions
873
+ ): Promise<DescribeCacheReportCommandOutput>;
874
+ describeCacheReport(
875
+ args: DescribeCacheReportCommandInput,
876
+ cb: (err: any, data?: DescribeCacheReportCommandOutput) => void
877
+ ): void;
878
+ describeCacheReport(
879
+ args: DescribeCacheReportCommandInput,
880
+ options: __HttpHandlerOptions,
881
+ cb: (err: any, data?: DescribeCacheReportCommandOutput) => void
882
+ ): void;
824
883
  describeChapCredentials(
825
884
  args: DescribeChapCredentialsCommandInput,
826
885
  options?: __HttpHandlerOptions
@@ -1089,6 +1148,20 @@ export interface StorageGateway {
1089
1148
  data?: ListAutomaticTapeCreationPoliciesCommandOutput
1090
1149
  ) => void
1091
1150
  ): void;
1151
+ listCacheReports(): Promise<ListCacheReportsCommandOutput>;
1152
+ listCacheReports(
1153
+ args: ListCacheReportsCommandInput,
1154
+ options?: __HttpHandlerOptions
1155
+ ): Promise<ListCacheReportsCommandOutput>;
1156
+ listCacheReports(
1157
+ args: ListCacheReportsCommandInput,
1158
+ cb: (err: any, data?: ListCacheReportsCommandOutput) => void
1159
+ ): void;
1160
+ listCacheReports(
1161
+ args: ListCacheReportsCommandInput,
1162
+ options: __HttpHandlerOptions,
1163
+ cb: (err: any, data?: ListCacheReportsCommandOutput) => void
1164
+ ): void;
1092
1165
  listFileShares(): Promise<ListFileSharesCommandOutput>;
1093
1166
  listFileShares(
1094
1167
  args: ListFileSharesCommandInput,
@@ -1355,6 +1428,19 @@ export interface StorageGateway {
1355
1428
  options: __HttpHandlerOptions,
1356
1429
  cb: (err: any, data?: StartAvailabilityMonitorTestCommandOutput) => void
1357
1430
  ): void;
1431
+ startCacheReport(
1432
+ args: StartCacheReportCommandInput,
1433
+ options?: __HttpHandlerOptions
1434
+ ): Promise<StartCacheReportCommandOutput>;
1435
+ startCacheReport(
1436
+ args: StartCacheReportCommandInput,
1437
+ cb: (err: any, data?: StartCacheReportCommandOutput) => void
1438
+ ): void;
1439
+ startCacheReport(
1440
+ args: StartCacheReportCommandInput,
1441
+ options: __HttpHandlerOptions,
1442
+ cb: (err: any, data?: StartCacheReportCommandOutput) => void
1443
+ ): void;
1358
1444
  startGateway(
1359
1445
  args: StartGatewayCommandInput,
1360
1446
  options?: __HttpHandlerOptions
@@ -81,6 +81,10 @@ import {
81
81
  CancelArchivalCommandInput,
82
82
  CancelArchivalCommandOutput,
83
83
  } from "./commands/CancelArchivalCommand";
84
+ import {
85
+ CancelCacheReportCommandInput,
86
+ CancelCacheReportCommandOutput,
87
+ } from "./commands/CancelCacheReportCommand";
84
88
  import {
85
89
  CancelRetrievalCommandInput,
86
90
  CancelRetrievalCommandOutput,
@@ -129,6 +133,10 @@ import {
129
133
  DeleteBandwidthRateLimitCommandInput,
130
134
  DeleteBandwidthRateLimitCommandOutput,
131
135
  } from "./commands/DeleteBandwidthRateLimitCommand";
136
+ import {
137
+ DeleteCacheReportCommandInput,
138
+ DeleteCacheReportCommandOutput,
139
+ } from "./commands/DeleteCacheReportCommand";
132
140
  import {
133
141
  DeleteChapCredentialsCommandInput,
134
142
  DeleteChapCredentialsCommandOutput,
@@ -181,6 +189,10 @@ import {
181
189
  DescribeCachediSCSIVolumesCommandInput,
182
190
  DescribeCachediSCSIVolumesCommandOutput,
183
191
  } from "./commands/DescribeCachediSCSIVolumesCommand";
192
+ import {
193
+ DescribeCacheReportCommandInput,
194
+ DescribeCacheReportCommandOutput,
195
+ } from "./commands/DescribeCacheReportCommand";
184
196
  import {
185
197
  DescribeChapCredentialsCommandInput,
186
198
  DescribeChapCredentialsCommandOutput,
@@ -261,6 +273,10 @@ import {
261
273
  ListAutomaticTapeCreationPoliciesCommandInput,
262
274
  ListAutomaticTapeCreationPoliciesCommandOutput,
263
275
  } from "./commands/ListAutomaticTapeCreationPoliciesCommand";
276
+ import {
277
+ ListCacheReportsCommandInput,
278
+ ListCacheReportsCommandOutput,
279
+ } from "./commands/ListCacheReportsCommand";
264
280
  import {
265
281
  ListFileSharesCommandInput,
266
282
  ListFileSharesCommandOutput,
@@ -341,6 +357,10 @@ import {
341
357
  StartAvailabilityMonitorTestCommandInput,
342
358
  StartAvailabilityMonitorTestCommandOutput,
343
359
  } from "./commands/StartAvailabilityMonitorTestCommand";
360
+ import {
361
+ StartCacheReportCommandInput,
362
+ StartCacheReportCommandOutput,
363
+ } from "./commands/StartCacheReportCommand";
344
364
  import {
345
365
  StartGatewayCommandInput,
346
366
  StartGatewayCommandOutput,
@@ -422,6 +442,7 @@ export type ServiceInputTypes =
422
442
  | AssociateFileSystemCommandInput
423
443
  | AttachVolumeCommandInput
424
444
  | CancelArchivalCommandInput
445
+ | CancelCacheReportCommandInput
425
446
  | CancelRetrievalCommandInput
426
447
  | CreateCachediSCSIVolumeCommandInput
427
448
  | CreateNFSFileShareCommandInput
@@ -434,6 +455,7 @@ export type ServiceInputTypes =
434
455
  | CreateTapesCommandInput
435
456
  | DeleteAutomaticTapeCreationPolicyCommandInput
436
457
  | DeleteBandwidthRateLimitCommandInput
458
+ | DeleteCacheReportCommandInput
437
459
  | DeleteChapCredentialsCommandInput
438
460
  | DeleteFileShareCommandInput
439
461
  | DeleteGatewayCommandInput
@@ -446,6 +468,7 @@ export type ServiceInputTypes =
446
468
  | DescribeBandwidthRateLimitCommandInput
447
469
  | DescribeBandwidthRateLimitScheduleCommandInput
448
470
  | DescribeCacheCommandInput
471
+ | DescribeCacheReportCommandInput
449
472
  | DescribeCachediSCSIVolumesCommandInput
450
473
  | DescribeChapCredentialsCommandInput
451
474
  | DescribeFileSystemAssociationsCommandInput
@@ -467,6 +490,7 @@ export type ServiceInputTypes =
467
490
  | DisassociateFileSystemCommandInput
468
491
  | JoinDomainCommandInput
469
492
  | ListAutomaticTapeCreationPoliciesCommandInput
493
+ | ListCacheReportsCommandInput
470
494
  | ListFileSharesCommandInput
471
495
  | ListFileSystemAssociationsCommandInput
472
496
  | ListGatewaysCommandInput
@@ -487,6 +511,7 @@ export type ServiceInputTypes =
487
511
  | SetSMBGuestPasswordCommandInput
488
512
  | ShutdownGatewayCommandInput
489
513
  | StartAvailabilityMonitorTestCommandInput
514
+ | StartCacheReportCommandInput
490
515
  | StartGatewayCommandInput
491
516
  | UpdateAutomaticTapeCreationPolicyCommandInput
492
517
  | UpdateBandwidthRateLimitCommandInput
@@ -513,6 +538,7 @@ export type ServiceOutputTypes =
513
538
  | AssociateFileSystemCommandOutput
514
539
  | AttachVolumeCommandOutput
515
540
  | CancelArchivalCommandOutput
541
+ | CancelCacheReportCommandOutput
516
542
  | CancelRetrievalCommandOutput
517
543
  | CreateCachediSCSIVolumeCommandOutput
518
544
  | CreateNFSFileShareCommandOutput
@@ -525,6 +551,7 @@ export type ServiceOutputTypes =
525
551
  | CreateTapesCommandOutput
526
552
  | DeleteAutomaticTapeCreationPolicyCommandOutput
527
553
  | DeleteBandwidthRateLimitCommandOutput
554
+ | DeleteCacheReportCommandOutput
528
555
  | DeleteChapCredentialsCommandOutput
529
556
  | DeleteFileShareCommandOutput
530
557
  | DeleteGatewayCommandOutput
@@ -537,6 +564,7 @@ export type ServiceOutputTypes =
537
564
  | DescribeBandwidthRateLimitCommandOutput
538
565
  | DescribeBandwidthRateLimitScheduleCommandOutput
539
566
  | DescribeCacheCommandOutput
567
+ | DescribeCacheReportCommandOutput
540
568
  | DescribeCachediSCSIVolumesCommandOutput
541
569
  | DescribeChapCredentialsCommandOutput
542
570
  | DescribeFileSystemAssociationsCommandOutput
@@ -558,6 +586,7 @@ export type ServiceOutputTypes =
558
586
  | DisassociateFileSystemCommandOutput
559
587
  | JoinDomainCommandOutput
560
588
  | ListAutomaticTapeCreationPoliciesCommandOutput
589
+ | ListCacheReportsCommandOutput
561
590
  | ListFileSharesCommandOutput
562
591
  | ListFileSystemAssociationsCommandOutput
563
592
  | ListGatewaysCommandOutput
@@ -578,6 +607,7 @@ export type ServiceOutputTypes =
578
607
  | SetSMBGuestPasswordCommandOutput
579
608
  | ShutdownGatewayCommandOutput
580
609
  | StartAvailabilityMonitorTestCommandOutput
610
+ | StartCacheReportCommandOutput
581
611
  | StartGatewayCommandOutput
582
612
  | UpdateAutomaticTapeCreationPolicyCommandOutput
583
613
  | UpdateBandwidthRateLimitCommandOutput
@@ -0,0 +1,50 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ CancelCacheReportInput,
5
+ CancelCacheReportOutput,
6
+ } from "../models/models_0";
7
+ import {
8
+ ServiceInputTypes,
9
+ ServiceOutputTypes,
10
+ StorageGatewayClientResolvedConfig,
11
+ } from "../StorageGatewayClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface CancelCacheReportCommandInput extends CancelCacheReportInput {}
15
+ export interface CancelCacheReportCommandOutput
16
+ extends CancelCacheReportOutput,
17
+ __MetadataBearer {}
18
+ declare const CancelCacheReportCommand_base: {
19
+ new (
20
+ input: CancelCacheReportCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ CancelCacheReportCommandInput,
23
+ CancelCacheReportCommandOutput,
24
+ StorageGatewayClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ __0_0: CancelCacheReportCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ CancelCacheReportCommandInput,
32
+ CancelCacheReportCommandOutput,
33
+ StorageGatewayClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class CancelCacheReportCommand extends CancelCacheReportCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: CancelCacheReportInput;
43
+ output: CancelCacheReportOutput;
44
+ };
45
+ sdk: {
46
+ input: CancelCacheReportCommandInput;
47
+ output: CancelCacheReportCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -0,0 +1,50 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ DeleteCacheReportInput,
5
+ DeleteCacheReportOutput,
6
+ } from "../models/models_0";
7
+ import {
8
+ ServiceInputTypes,
9
+ ServiceOutputTypes,
10
+ StorageGatewayClientResolvedConfig,
11
+ } from "../StorageGatewayClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface DeleteCacheReportCommandInput extends DeleteCacheReportInput {}
15
+ export interface DeleteCacheReportCommandOutput
16
+ extends DeleteCacheReportOutput,
17
+ __MetadataBearer {}
18
+ declare const DeleteCacheReportCommand_base: {
19
+ new (
20
+ input: DeleteCacheReportCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ DeleteCacheReportCommandInput,
23
+ DeleteCacheReportCommandOutput,
24
+ StorageGatewayClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ __0_0: DeleteCacheReportCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ DeleteCacheReportCommandInput,
32
+ DeleteCacheReportCommandOutput,
33
+ StorageGatewayClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class DeleteCacheReportCommand extends DeleteCacheReportCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: DeleteCacheReportInput;
43
+ output: DeleteCacheReportOutput;
44
+ };
45
+ sdk: {
46
+ input: DeleteCacheReportCommandInput;
47
+ output: DeleteCacheReportCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ DescribeCacheReportInput,
5
+ DescribeCacheReportOutput,
6
+ } from "../models/models_0";
7
+ import {
8
+ ServiceInputTypes,
9
+ ServiceOutputTypes,
10
+ StorageGatewayClientResolvedConfig,
11
+ } from "../StorageGatewayClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface DescribeCacheReportCommandInput
15
+ extends DescribeCacheReportInput {}
16
+ export interface DescribeCacheReportCommandOutput
17
+ extends DescribeCacheReportOutput,
18
+ __MetadataBearer {}
19
+ declare const DescribeCacheReportCommand_base: {
20
+ new (
21
+ input: DescribeCacheReportCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ DescribeCacheReportCommandInput,
24
+ DescribeCacheReportCommandOutput,
25
+ StorageGatewayClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: DescribeCacheReportCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ DescribeCacheReportCommandInput,
33
+ DescribeCacheReportCommandOutput,
34
+ StorageGatewayClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class DescribeCacheReportCommand extends DescribeCacheReportCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: DescribeCacheReportInput;
44
+ output: DescribeCacheReportOutput;
45
+ };
46
+ sdk: {
47
+ input: DescribeCacheReportCommandInput;
48
+ output: DescribeCacheReportCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,50 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ListCacheReportsInput,
5
+ ListCacheReportsOutput,
6
+ } from "../models/models_0";
7
+ import {
8
+ ServiceInputTypes,
9
+ ServiceOutputTypes,
10
+ StorageGatewayClientResolvedConfig,
11
+ } from "../StorageGatewayClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ListCacheReportsCommandInput extends ListCacheReportsInput {}
15
+ export interface ListCacheReportsCommandOutput
16
+ extends ListCacheReportsOutput,
17
+ __MetadataBearer {}
18
+ declare const ListCacheReportsCommand_base: {
19
+ new (
20
+ input: ListCacheReportsCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ ListCacheReportsCommandInput,
23
+ ListCacheReportsCommandOutput,
24
+ StorageGatewayClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ ...[input]: [] | [ListCacheReportsCommandInput]
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ ListCacheReportsCommandInput,
32
+ ListCacheReportsCommandOutput,
33
+ StorageGatewayClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class ListCacheReportsCommand extends ListCacheReportsCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: ListCacheReportsInput;
43
+ output: ListCacheReportsOutput;
44
+ };
45
+ sdk: {
46
+ input: ListCacheReportsCommandInput;
47
+ output: ListCacheReportsCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -0,0 +1,50 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ StartCacheReportInput,
5
+ StartCacheReportOutput,
6
+ } from "../models/models_0";
7
+ import {
8
+ ServiceInputTypes,
9
+ ServiceOutputTypes,
10
+ StorageGatewayClientResolvedConfig,
11
+ } from "../StorageGatewayClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface StartCacheReportCommandInput extends StartCacheReportInput {}
15
+ export interface StartCacheReportCommandOutput
16
+ extends StartCacheReportOutput,
17
+ __MetadataBearer {}
18
+ declare const StartCacheReportCommand_base: {
19
+ new (
20
+ input: StartCacheReportCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ StartCacheReportCommandInput,
23
+ StartCacheReportCommandOutput,
24
+ StorageGatewayClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ __0_0: StartCacheReportCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ StartCacheReportCommandInput,
32
+ StartCacheReportCommandOutput,
33
+ StorageGatewayClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class StartCacheReportCommand extends StartCacheReportCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: StartCacheReportInput;
43
+ output: StartCacheReportOutput;
44
+ };
45
+ sdk: {
46
+ input: StartCacheReportCommandInput;
47
+ output: StartCacheReportCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -7,6 +7,7 @@ export * from "./AssignTapePoolCommand";
7
7
  export * from "./AssociateFileSystemCommand";
8
8
  export * from "./AttachVolumeCommand";
9
9
  export * from "./CancelArchivalCommand";
10
+ export * from "./CancelCacheReportCommand";
10
11
  export * from "./CancelRetrievalCommand";
11
12
  export * from "./CreateCachediSCSIVolumeCommand";
12
13
  export * from "./CreateNFSFileShareCommand";
@@ -19,6 +20,7 @@ export * from "./CreateTapeWithBarcodeCommand";
19
20
  export * from "./CreateTapesCommand";
20
21
  export * from "./DeleteAutomaticTapeCreationPolicyCommand";
21
22
  export * from "./DeleteBandwidthRateLimitCommand";
23
+ export * from "./DeleteCacheReportCommand";
22
24
  export * from "./DeleteChapCredentialsCommand";
23
25
  export * from "./DeleteFileShareCommand";
24
26
  export * from "./DeleteGatewayCommand";
@@ -31,6 +33,7 @@ export * from "./DescribeAvailabilityMonitorTestCommand";
31
33
  export * from "./DescribeBandwidthRateLimitCommand";
32
34
  export * from "./DescribeBandwidthRateLimitScheduleCommand";
33
35
  export * from "./DescribeCacheCommand";
36
+ export * from "./DescribeCacheReportCommand";
34
37
  export * from "./DescribeCachediSCSIVolumesCommand";
35
38
  export * from "./DescribeChapCredentialsCommand";
36
39
  export * from "./DescribeFileSystemAssociationsCommand";
@@ -52,6 +55,7 @@ export * from "./DisableGatewayCommand";
52
55
  export * from "./DisassociateFileSystemCommand";
53
56
  export * from "./JoinDomainCommand";
54
57
  export * from "./ListAutomaticTapeCreationPoliciesCommand";
58
+ export * from "./ListCacheReportsCommand";
55
59
  export * from "./ListFileSharesCommand";
56
60
  export * from "./ListFileSystemAssociationsCommand";
57
61
  export * from "./ListGatewaysCommand";
@@ -72,6 +76,7 @@ export * from "./SetLocalConsolePasswordCommand";
72
76
  export * from "./SetSMBGuestPasswordCommand";
73
77
  export * from "./ShutdownGatewayCommand";
74
78
  export * from "./StartAvailabilityMonitorTestCommand";
79
+ export * from "./StartCacheReportCommand";
75
80
  export * from "./StartGatewayCommand";
76
81
  export * from "./UpdateAutomaticTapeCreationPolicyCommand";
77
82
  export * from "./UpdateBandwidthRateLimitCommand";
@@ -235,6 +235,39 @@ export interface CachediSCSIVolume {
235
235
  KMSKey?: string | undefined;
236
236
  TargetName?: string | undefined;
237
237
  }
238
+ export declare const CacheReportFilterName: {
239
+ readonly UploadFailureReason: "UploadFailureReason";
240
+ readonly UploadState: "UploadState";
241
+ };
242
+ export type CacheReportFilterName =
243
+ (typeof CacheReportFilterName)[keyof typeof CacheReportFilterName];
244
+ export interface CacheReportFilter {
245
+ Name: CacheReportFilterName | undefined;
246
+ Values: string[] | undefined;
247
+ }
248
+ export declare const CacheReportStatus: {
249
+ readonly CANCELED: "CANCELED";
250
+ readonly COMPLETED: "COMPLETED";
251
+ readonly ERROR: "ERROR";
252
+ readonly FAILED: "FAILED";
253
+ readonly IN_PROGRESS: "IN_PROGRESS";
254
+ };
255
+ export type CacheReportStatus =
256
+ (typeof CacheReportStatus)[keyof typeof CacheReportStatus];
257
+ export interface CacheReportInfo {
258
+ CacheReportARN?: string | undefined;
259
+ CacheReportStatus?: CacheReportStatus | undefined;
260
+ ReportCompletionPercent?: number | undefined;
261
+ EndTime?: Date | undefined;
262
+ Role?: string | undefined;
263
+ FileShareARN?: string | undefined;
264
+ LocationARN?: string | undefined;
265
+ StartTime?: Date | undefined;
266
+ InclusionFilters?: CacheReportFilter[] | undefined;
267
+ ExclusionFilters?: CacheReportFilter[] | undefined;
268
+ ReportName?: string | undefined;
269
+ Tags?: Tag[] | undefined;
270
+ }
238
271
  export interface CancelArchivalInput {
239
272
  GatewayARN: string | undefined;
240
273
  TapeARN: string | undefined;
@@ -242,6 +275,12 @@ export interface CancelArchivalInput {
242
275
  export interface CancelArchivalOutput {
243
276
  TapeARN?: string | undefined;
244
277
  }
278
+ export interface CancelCacheReportInput {
279
+ CacheReportARN: string | undefined;
280
+ }
281
+ export interface CancelCacheReportOutput {
282
+ CacheReportARN?: string | undefined;
283
+ }
245
284
  export interface CancelRetrievalInput {
246
285
  GatewayARN: string | undefined;
247
286
  TapeARN: string | undefined;
@@ -466,6 +505,12 @@ export interface DeleteBandwidthRateLimitInput {
466
505
  export interface DeleteBandwidthRateLimitOutput {
467
506
  GatewayARN?: string | undefined;
468
507
  }
508
+ export interface DeleteCacheReportInput {
509
+ CacheReportARN: string | undefined;
510
+ }
511
+ export interface DeleteCacheReportOutput {
512
+ CacheReportARN?: string | undefined;
513
+ }
469
514
  export interface DeleteChapCredentialsInput {
470
515
  TargetARN: string | undefined;
471
516
  InitiatorName: string | undefined;
@@ -561,6 +606,12 @@ export interface DescribeCachediSCSIVolumesInput {
561
606
  export interface DescribeCachediSCSIVolumesOutput {
562
607
  CachediSCSIVolumes?: CachediSCSIVolume[] | undefined;
563
608
  }
609
+ export interface DescribeCacheReportInput {
610
+ CacheReportARN: string | undefined;
611
+ }
612
+ export interface DescribeCacheReportOutput {
613
+ CacheReportInfo?: CacheReportInfo | undefined;
614
+ }
564
615
  export interface DescribeChapCredentialsInput {
565
616
  TargetARN: string | undefined;
566
617
  }
@@ -970,6 +1021,13 @@ export interface ListAutomaticTapeCreationPoliciesOutput {
970
1021
  | AutomaticTapeCreationPolicyInfo[]
971
1022
  | undefined;
972
1023
  }
1024
+ export interface ListCacheReportsInput {
1025
+ Marker?: string | undefined;
1026
+ }
1027
+ export interface ListCacheReportsOutput {
1028
+ CacheReportList?: CacheReportInfo[] | undefined;
1029
+ Marker?: string | undefined;
1030
+ }
973
1031
  export interface ListFileSharesInput {
974
1032
  GatewayARN?: string | undefined;
975
1033
  Limit?: number | undefined;
@@ -1163,6 +1221,20 @@ export interface StartAvailabilityMonitorTestInput {
1163
1221
  export interface StartAvailabilityMonitorTestOutput {
1164
1222
  GatewayARN?: string | undefined;
1165
1223
  }
1224
+ export interface StartCacheReportInput {
1225
+ FileShareARN: string | undefined;
1226
+ Role: string | undefined;
1227
+ LocationARN: string | undefined;
1228
+ BucketRegion: string | undefined;
1229
+ VPCEndpointDNSName?: string | undefined;
1230
+ InclusionFilters?: CacheReportFilter[] | undefined;
1231
+ ExclusionFilters?: CacheReportFilter[] | undefined;
1232
+ ClientToken: string | undefined;
1233
+ Tags?: Tag[] | undefined;
1234
+ }
1235
+ export interface StartCacheReportOutput {
1236
+ CacheReportARN?: string | undefined;
1237
+ }
1166
1238
  export interface StartGatewayInput {
1167
1239
  GatewayARN: string | undefined;
1168
1240
  }