@@ -43,6 +43,11 @@ import {
43
43
CancelArchivalCommandInput ,
44
44
CancelArchivalCommandOutput ,
45
45
} from "./commands/CancelArchivalCommand" ;
46
+ import {
47
+ CancelCacheReportCommand ,
48
+ CancelCacheReportCommandInput ,
49
+ CancelCacheReportCommandOutput ,
50
+ } from "./commands/CancelCacheReportCommand" ;
46
51
import {
47
52
CancelRetrievalCommand ,
48
53
CancelRetrievalCommandInput ,
@@ -99,6 +104,11 @@ import {
99
104
DeleteBandwidthRateLimitCommandInput ,
100
105
DeleteBandwidthRateLimitCommandOutput ,
101
106
} from "./commands/DeleteBandwidthRateLimitCommand" ;
107
+ import {
108
+ DeleteCacheReportCommand ,
109
+ DeleteCacheReportCommandInput ,
110
+ DeleteCacheReportCommandOutput ,
111
+ } from "./commands/DeleteCacheReportCommand" ;
102
112
import {
103
113
DeleteChapCredentialsCommand ,
104
114
DeleteChapCredentialsCommandInput ,
@@ -160,6 +170,11 @@ import {
160
170
DescribeCachediSCSIVolumesCommandInput ,
161
171
DescribeCachediSCSIVolumesCommandOutput ,
162
172
} from "./commands/DescribeCachediSCSIVolumesCommand" ;
173
+ import {
174
+ DescribeCacheReportCommand ,
175
+ DescribeCacheReportCommandInput ,
176
+ DescribeCacheReportCommandOutput ,
177
+ } from "./commands/DescribeCacheReportCommand" ;
163
178
import {
164
179
DescribeChapCredentialsCommand ,
165
180
DescribeChapCredentialsCommandInput ,
@@ -256,6 +271,11 @@ import {
256
271
ListAutomaticTapeCreationPoliciesCommandInput ,
257
272
ListAutomaticTapeCreationPoliciesCommandOutput ,
258
273
} from "./commands/ListAutomaticTapeCreationPoliciesCommand" ;
274
+ import {
275
+ ListCacheReportsCommand ,
276
+ ListCacheReportsCommandInput ,
277
+ ListCacheReportsCommandOutput ,
278
+ } from "./commands/ListCacheReportsCommand" ;
259
279
import {
260
280
ListFileSharesCommand ,
261
281
ListFileSharesCommandInput ,
@@ -344,6 +364,11 @@ import {
344
364
StartAvailabilityMonitorTestCommandInput ,
345
365
StartAvailabilityMonitorTestCommandOutput ,
346
366
} from "./commands/StartAvailabilityMonitorTestCommand" ;
367
+ import {
368
+ StartCacheReportCommand ,
369
+ StartCacheReportCommandInput ,
370
+ StartCacheReportCommandOutput ,
371
+ } from "./commands/StartCacheReportCommand" ;
347
372
import {
348
373
StartGatewayCommand ,
349
374
StartGatewayCommandInput ,
@@ -436,6 +461,7 @@ const commands = {
436
461
AssociateFileSystemCommand,
437
462
AttachVolumeCommand,
438
463
CancelArchivalCommand,
464
+ CancelCacheReportCommand,
439
465
CancelRetrievalCommand,
440
466
CreateCachediSCSIVolumeCommand,
441
467
CreateNFSFileShareCommand,
@@ -448,6 +474,7 @@ const commands = {
448
474
CreateTapeWithBarcodeCommand,
449
475
DeleteAutomaticTapeCreationPolicyCommand,
450
476
DeleteBandwidthRateLimitCommand,
477
+ DeleteCacheReportCommand,
451
478
DeleteChapCredentialsCommand,
452
479
DeleteFileShareCommand,
453
480
DeleteGatewayCommand,
@@ -461,6 +488,7 @@ const commands = {
461
488
DescribeBandwidthRateLimitScheduleCommand,
462
489
DescribeCacheCommand,
463
490
DescribeCachediSCSIVolumesCommand,
491
+ DescribeCacheReportCommand,
464
492
DescribeChapCredentialsCommand,
465
493
DescribeFileSystemAssociationsCommand,
466
494
DescribeGatewayInformationCommand,
@@ -481,6 +509,7 @@ const commands = {
481
509
DisassociateFileSystemCommand,
482
510
JoinDomainCommand,
483
511
ListAutomaticTapeCreationPoliciesCommand,
512
+ ListCacheReportsCommand,
484
513
ListFileSharesCommand,
485
514
ListFileSystemAssociationsCommand,
486
515
ListGatewaysCommand,
@@ -501,6 +530,7 @@ const commands = {
501
530
SetSMBGuestPasswordCommand,
502
531
ShutdownGatewayCommand,
503
532
StartAvailabilityMonitorTestCommand,
533
+ StartCacheReportCommand,
504
534
StartGatewayCommand,
505
535
UpdateAutomaticTapeCreationPolicyCommand,
506
536
UpdateBandwidthRateLimitCommand,
@@ -649,6 +679,23 @@ export interface StorageGateway {
649
679
cb : ( err : any , data ?: CancelArchivalCommandOutput ) => void
650
680
) : void ;
651
681
682
+ /**
683
+ * @see {@link CancelCacheReportCommand }
684
+ */
685
+ cancelCacheReport (
686
+ args : CancelCacheReportCommandInput ,
687
+ options ?: __HttpHandlerOptions
688
+ ) : Promise < CancelCacheReportCommandOutput > ;
689
+ cancelCacheReport (
690
+ args : CancelCacheReportCommandInput ,
691
+ cb : ( err : any , data ?: CancelCacheReportCommandOutput ) => void
692
+ ) : void ;
693
+ cancelCacheReport (
694
+ args : CancelCacheReportCommandInput ,
695
+ options : __HttpHandlerOptions ,
696
+ cb : ( err : any , data ?: CancelCacheReportCommandOutput ) => void
697
+ ) : void ;
698
+
652
699
/**
653
700
* @see {@link CancelRetrievalCommand }
654
701
*/
@@ -838,6 +885,23 @@ export interface StorageGateway {
838
885
cb : ( err : any , data ?: DeleteBandwidthRateLimitCommandOutput ) => void
839
886
) : void ;
840
887
888
+ /**
889
+ * @see {@link DeleteCacheReportCommand }
890
+ */
891
+ deleteCacheReport (
892
+ args : DeleteCacheReportCommandInput ,
893
+ options ?: __HttpHandlerOptions
894
+ ) : Promise < DeleteCacheReportCommandOutput > ;
895
+ deleteCacheReport (
896
+ args : DeleteCacheReportCommandInput ,
897
+ cb : ( err : any , data ?: DeleteCacheReportCommandOutput ) => void
898
+ ) : void ;
899
+ deleteCacheReport (
900
+ args : DeleteCacheReportCommandInput ,
901
+ options : __HttpHandlerOptions ,
902
+ cb : ( err : any , data ?: DeleteCacheReportCommandOutput ) => void
903
+ ) : void ;
904
+
841
905
/**
842
906
* @see {@link DeleteChapCredentialsCommand }
843
907
*/
@@ -1029,6 +1093,23 @@ export interface StorageGateway {
1029
1093
cb : ( err : any , data ?: DescribeCachediSCSIVolumesCommandOutput ) => void
1030
1094
) : void ;
1031
1095
1096
+ /**
1097
+ * @see {@link DescribeCacheReportCommand }
1098
+ */
1099
+ describeCacheReport (
1100
+ args : DescribeCacheReportCommandInput ,
1101
+ options ?: __HttpHandlerOptions
1102
+ ) : Promise < DescribeCacheReportCommandOutput > ;
1103
+ describeCacheReport (
1104
+ args : DescribeCacheReportCommandInput ,
1105
+ cb : ( err : any , data ?: DescribeCacheReportCommandOutput ) => void
1106
+ ) : void ;
1107
+ describeCacheReport (
1108
+ args : DescribeCacheReportCommandInput ,
1109
+ options : __HttpHandlerOptions ,
1110
+ cb : ( err : any , data ?: DescribeCacheReportCommandOutput ) => void
1111
+ ) : void ;
1112
+
1032
1113
/**
1033
1114
* @see {@link DescribeChapCredentialsCommand }
1034
1115
*/
@@ -1350,6 +1431,24 @@ export interface StorageGateway {
1350
1431
cb : ( err : any , data ?: ListAutomaticTapeCreationPoliciesCommandOutput ) => void
1351
1432
) : void ;
1352
1433
1434
+ /**
1435
+ * @see {@link ListCacheReportsCommand }
1436
+ */
1437
+ listCacheReports ( ) : Promise < ListCacheReportsCommandOutput > ;
1438
+ listCacheReports (
1439
+ args : ListCacheReportsCommandInput ,
1440
+ options ?: __HttpHandlerOptions
1441
+ ) : Promise < ListCacheReportsCommandOutput > ;
1442
+ listCacheReports (
1443
+ args : ListCacheReportsCommandInput ,
1444
+ cb : ( err : any , data ?: ListCacheReportsCommandOutput ) => void
1445
+ ) : void ;
1446
+ listCacheReports (
1447
+ args : ListCacheReportsCommandInput ,
1448
+ options : __HttpHandlerOptions ,
1449
+ cb : ( err : any , data ?: ListCacheReportsCommandOutput ) => void
1450
+ ) : void ;
1451
+
1353
1452
/**
1354
1453
* @see {@link ListFileSharesCommand }
1355
1454
*/
@@ -1651,6 +1750,23 @@ export interface StorageGateway {
1651
1750
cb : ( err : any , data ?: StartAvailabilityMonitorTestCommandOutput ) => void
1652
1751
) : void ;
1653
1752
1753
+ /**
1754
+ * @see {@link StartCacheReportCommand }
1755
+ */
1756
+ startCacheReport (
1757
+ args : StartCacheReportCommandInput ,
1758
+ options ?: __HttpHandlerOptions
1759
+ ) : Promise < StartCacheReportCommandOutput > ;
1760
+ startCacheReport (
1761
+ args : StartCacheReportCommandInput ,
1762
+ cb : ( err : any , data ?: StartCacheReportCommandOutput ) => void
1763
+ ) : void ;
1764
+ startCacheReport (
1765
+ args : StartCacheReportCommandInput ,
1766
+ options : __HttpHandlerOptions ,
1767
+ cb : ( err : any , data ?: StartCacheReportCommandOutput ) => void
1768
+ ) : void ;
1769
+
1654
1770
/**
1655
1771
* @see {@link StartGatewayCommand }
1656
1772
*/
0 commit comments