@aws-sdk/client-storage-gateway 3.744.0 → 3.749.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 +312 -0
  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 +11 -11
@@ -935,6 +935,142 @@ export interface CachediSCSIVolume {
935
935
  */
936
936
  TargetName?: string | undefined;
937
937
  }
938
+ /**
939
+ * @public
940
+ * @enum
941
+ */
942
+ export declare const CacheReportFilterName: {
943
+ readonly UploadFailureReason: "UploadFailureReason";
944
+ readonly UploadState: "UploadState";
945
+ };
946
+ /**
947
+ * @public
948
+ */
949
+ export type CacheReportFilterName = (typeof CacheReportFilterName)[keyof typeof CacheReportFilterName];
950
+ /**
951
+ * <p>A list of filter parameters and associated values that determine which files are
952
+ * included or excluded from a cache report created by a <code>StartCacheReport</code>
953
+ * request. Multiple instances of the same filter parameter are combined with an OR operation,
954
+ * while different parameters are combined with an AND operation.</p>
955
+ * @public
956
+ */
957
+ export interface CacheReportFilter {
958
+ /**
959
+ * <p>The parameter name for a filter that determines which files are included or excluded
960
+ * from a cache report.</p>
961
+ * <p>
962
+ * <b>Valid Names:</b>
963
+ * </p>
964
+ * <p>UploadFailureReason | UploadState</p>
965
+ * @public
966
+ */
967
+ Name: CacheReportFilterName | undefined;
968
+ /**
969
+ * <p>The parameter value for a filter that determines which files are included or excluded
970
+ * from a cache report.</p>
971
+ * <p>
972
+ * <b>Valid <code>UploadFailureReason</code> Values:</b>
973
+ * </p>
974
+ * <p>
975
+ * <code>InaccessibleStorageClass</code> | <code>InvalidObjectState</code> |
976
+ * <code>ObjectMissing</code> | <code>S3AccessDenied</code>
977
+ * </p>
978
+ * <p>
979
+ * <b>Valid <code>UploadState</code> Values:</b>
980
+ * </p>
981
+ * <p>
982
+ * <code>FailingUpload</code>
983
+ * </p>
984
+ * @public
985
+ */
986
+ Values: string[] | undefined;
987
+ }
988
+ /**
989
+ * @public
990
+ * @enum
991
+ */
992
+ export declare const CacheReportStatus: {
993
+ readonly CANCELED: "CANCELED";
994
+ readonly COMPLETED: "COMPLETED";
995
+ readonly ERROR: "ERROR";
996
+ readonly FAILED: "FAILED";
997
+ readonly IN_PROGRESS: "IN_PROGRESS";
998
+ };
999
+ /**
1000
+ * @public
1001
+ */
1002
+ export type CacheReportStatus = (typeof CacheReportStatus)[keyof typeof CacheReportStatus];
1003
+ /**
1004
+ * <p>Contains all informational fields associated with a cache report. Includes name, ARN,
1005
+ * tags, status, progress, filters, start time, and end time.</p>
1006
+ * @public
1007
+ */
1008
+ export interface CacheReportInfo {
1009
+ /**
1010
+ * <p>The Amazon Resource Name (ARN) of the cache report you want to describe.</p>
1011
+ * @public
1012
+ */
1013
+ CacheReportARN?: string | undefined;
1014
+ /**
1015
+ * <p>The status of the specified cache report.</p>
1016
+ * @public
1017
+ */
1018
+ CacheReportStatus?: CacheReportStatus | undefined;
1019
+ /**
1020
+ * <p>The percentage of the report generation process that has been completed at time of
1021
+ * inquiry.</p>
1022
+ * @public
1023
+ */
1024
+ ReportCompletionPercent?: number | undefined;
1025
+ /**
1026
+ * <p>The time at which the gateway stopped generating the cache report.</p>
1027
+ * @public
1028
+ */
1029
+ EndTime?: Date | undefined;
1030
+ /**
1031
+ * <p>The ARN of the IAM role that an S3 File Gateway assumes when it accesses the underlying
1032
+ * storage.</p>
1033
+ * @public
1034
+ */
1035
+ Role?: string | undefined;
1036
+ /**
1037
+ * <p>The Amazon Resource Name (ARN) of the file share.</p>
1038
+ * @public
1039
+ */
1040
+ FileShareARN?: string | undefined;
1041
+ /**
1042
+ * <p>The ARN of the Amazon S3 bucket location where the cache report is saved.</p>
1043
+ * @public
1044
+ */
1045
+ LocationARN?: string | undefined;
1046
+ /**
1047
+ * <p>The time at which the gateway started generating the cache report.</p>
1048
+ * @public
1049
+ */
1050
+ StartTime?: Date | undefined;
1051
+ /**
1052
+ * <p>The list of filters and parameters that determine which files are included in the
1053
+ * report.</p>
1054
+ * @public
1055
+ */
1056
+ InclusionFilters?: CacheReportFilter[] | undefined;
1057
+ /**
1058
+ * <p>The list of filters and parameters that determine which files are excluded from the
1059
+ * report.</p>
1060
+ * @public
1061
+ */
1062
+ ExclusionFilters?: CacheReportFilter[] | undefined;
1063
+ /**
1064
+ * <p>The file name of the completed cache report object stored in Amazon S3.</p>
1065
+ * @public
1066
+ */
1067
+ ReportName?: string | undefined;
1068
+ /**
1069
+ * <p>The list of key/value tags associated with the report.</p>
1070
+ * @public
1071
+ */
1072
+ Tags?: Tag[] | undefined;
1073
+ }
938
1074
  /**
939
1075
  * <p>CancelArchivalInput</p>
940
1076
  * @public
@@ -965,6 +1101,26 @@ export interface CancelArchivalOutput {
965
1101
  */
966
1102
  TapeARN?: string | undefined;
967
1103
  }
1104
+ /**
1105
+ * @public
1106
+ */
1107
+ export interface CancelCacheReportInput {
1108
+ /**
1109
+ * <p>The Amazon Resource Name (ARN) of the cache report you want to cancel.</p>
1110
+ * @public
1111
+ */
1112
+ CacheReportARN: string | undefined;
1113
+ }
1114
+ /**
1115
+ * @public
1116
+ */
1117
+ export interface CancelCacheReportOutput {
1118
+ /**
1119
+ * <p>The Amazon Resource Name (ARN) of the cache report you want to cancel.</p>
1120
+ * @public
1121
+ */
1122
+ CacheReportARN?: string | undefined;
1123
+ }
968
1124
  /**
969
1125
  * <p>CancelRetrievalInput</p>
970
1126
  * @public
@@ -2367,6 +2523,26 @@ export interface DeleteBandwidthRateLimitOutput {
2367
2523
  */
2368
2524
  GatewayARN?: string | undefined;
2369
2525
  }
2526
+ /**
2527
+ * @public
2528
+ */
2529
+ export interface DeleteCacheReportInput {
2530
+ /**
2531
+ * <p>The Amazon Resource Name (ARN) of the cache report you want to delete.</p>
2532
+ * @public
2533
+ */
2534
+ CacheReportARN: string | undefined;
2535
+ }
2536
+ /**
2537
+ * @public
2538
+ */
2539
+ export interface DeleteCacheReportOutput {
2540
+ /**
2541
+ * <p>The Amazon Resource Name (ARN) of the cache report you want to delete.</p>
2542
+ * @public
2543
+ */
2544
+ CacheReportARN?: string | undefined;
2545
+ }
2370
2546
  /**
2371
2547
  * <p>A JSON object containing one or more of the following fields:</p>
2372
2548
  * <ul>
@@ -2781,6 +2957,27 @@ export interface DescribeCachediSCSIVolumesOutput {
2781
2957
  */
2782
2958
  CachediSCSIVolumes?: CachediSCSIVolume[] | undefined;
2783
2959
  }
2960
+ /**
2961
+ * @public
2962
+ */
2963
+ export interface DescribeCacheReportInput {
2964
+ /**
2965
+ * <p>The Amazon Resource Name (ARN) of the cache report you want to describe.</p>
2966
+ * @public
2967
+ */
2968
+ CacheReportARN: string | undefined;
2969
+ }
2970
+ /**
2971
+ * @public
2972
+ */
2973
+ export interface DescribeCacheReportOutput {
2974
+ /**
2975
+ * <p>Contains all informational fields associated with a cache report. Includes name, ARN,
2976
+ * tags, status, progress, filters, start time, and end time.</p>
2977
+ * @public
2978
+ */
2979
+ CacheReportInfo?: CacheReportInfo | undefined;
2980
+ }
2784
2981
  /**
2785
2982
  * <p>A JSON object containing the Amazon Resource Name (ARN) of the iSCSI volume
2786
2983
  * target.</p>
@@ -3945,6 +4142,11 @@ export interface DescribeSMBSettingsOutput {
3945
4142
  /**
3946
4143
  * <p>Indicates the status of a gateway that is a member of the Active Directory
3947
4144
  * domain.</p>
4145
+ * <note>
4146
+ * <p>This field is only used as part of a <code>JoinDomain</code> request. It is not
4147
+ * affected by Active Directory connectivity changes that occur after the
4148
+ * <code>JoinDomain</code> request succeeds.</p>
4149
+ * </note>
3948
4150
  * <ul>
3949
4151
  * <li>
3950
4152
  * <p>
@@ -5209,6 +5411,11 @@ export interface JoinDomainOutput {
5209
5411
  GatewayARN?: string | undefined;
5210
5412
  /**
5211
5413
  * <p>Indicates the status of the gateway as a member of the Active Directory domain.</p>
5414
+ * <note>
5415
+ * <p>This field is only used as part of a <code>JoinDomain</code> request. It is not
5416
+ * affected by Active Directory connectivity changes that occur after the
5417
+ * <code>JoinDomain</code> request succeeds.</p>
5418
+ * </note>
5212
5419
  * <ul>
5213
5420
  * <li>
5214
5421
  * <p>
@@ -5272,6 +5479,36 @@ export interface ListAutomaticTapeCreationPoliciesOutput {
5272
5479
  */
5273
5480
  AutomaticTapeCreationPolicyInfos?: AutomaticTapeCreationPolicyInfo[] | undefined;
5274
5481
  }
5482
+ /**
5483
+ * @public
5484
+ */
5485
+ export interface ListCacheReportsInput {
5486
+ /**
5487
+ * <p>Opaque pagination token returned from a previous <code>ListCacheReports</code>
5488
+ * operation. If present, <code>Marker</code> specifies where to continue the list from after
5489
+ * a previous call to <code>ListCacheReports</code>. Optional.</p>
5490
+ * @public
5491
+ */
5492
+ Marker?: string | undefined;
5493
+ }
5494
+ /**
5495
+ * @public
5496
+ */
5497
+ export interface ListCacheReportsOutput {
5498
+ /**
5499
+ * <p>A list of existing cache reports for all file shares associated with your Amazon Web Services account. This list includes all information provided by the
5500
+ * <code>DescribeCacheReport</code> action, such as report status, completion progress,
5501
+ * start time, end time, filters, and tags.</p>
5502
+ * @public
5503
+ */
5504
+ CacheReportList?: CacheReportInfo[] | undefined;
5505
+ /**
5506
+ * <p>If the request includes <code>Marker</code>, the response returns that value in this
5507
+ * field.</p>
5508
+ * @public
5509
+ */
5510
+ Marker?: string | undefined;
5511
+ }
5275
5512
  /**
5276
5513
  * <p>ListFileShareInput</p>
5277
5514
  * @public
@@ -6216,6 +6453,81 @@ export interface StartAvailabilityMonitorTestOutput {
6216
6453
  */
6217
6454
  GatewayARN?: string | undefined;
6218
6455
  }
6456
+ /**
6457
+ * @public
6458
+ */
6459
+ export interface StartCacheReportInput {
6460
+ /**
6461
+ * <p>The Amazon Resource Name (ARN) of the file share.</p>
6462
+ * @public
6463
+ */
6464
+ FileShareARN: string | undefined;
6465
+ /**
6466
+ * <p>The ARN of the IAM role used when saving the cache report to Amazon S3.</p>
6467
+ * @public
6468
+ */
6469
+ Role: string | undefined;
6470
+ /**
6471
+ * <p>The ARN of the Amazon S3 bucket where the cache report will be saved.</p>
6472
+ * <note>
6473
+ * <p>We do not recommend saving the cache report to the same Amazon S3 bucket for
6474
+ * which you are generating the report.</p>
6475
+ * <p>This field does not accept access point ARNs.</p>
6476
+ * </note>
6477
+ * @public
6478
+ */
6479
+ LocationARN: string | undefined;
6480
+ /**
6481
+ * <p>The Amazon Web Services Region of the Amazon S3 bucket associated with the file
6482
+ * share for which you want to generate the cache report.</p>
6483
+ * @public
6484
+ */
6485
+ BucketRegion: string | undefined;
6486
+ /**
6487
+ * <p>The DNS name of the VPC endpoint associated with the Amazon S3 where you want to
6488
+ * save the cache report. Optional.</p>
6489
+ * @public
6490
+ */
6491
+ VPCEndpointDNSName?: string | undefined;
6492
+ /**
6493
+ * <p>The list of filters and parameters that determine which files are included in the
6494
+ * report. You must specify at least one value for <code>InclusionFilters</code> or
6495
+ * <code>ExclusionFilters</code> in a <code>StartCacheReport</code> request.</p>
6496
+ * @public
6497
+ */
6498
+ InclusionFilters?: CacheReportFilter[] | undefined;
6499
+ /**
6500
+ * <p>The list of filters and parameters that determine which files are excluded from the
6501
+ * report. You must specify at least one value for <code>InclusionFilters</code> or
6502
+ * <code>ExclusionFilters</code> in a <code>StartCacheReport</code> request.</p>
6503
+ * @public
6504
+ */
6505
+ ExclusionFilters?: CacheReportFilter[] | undefined;
6506
+ /**
6507
+ * <p>A unique identifier that you use to ensure idempotent report generation if you need to
6508
+ * retry an unsuccessful <code>StartCacheReport</code> request. If you retry a request, use
6509
+ * the same <code>ClientToken</code> you specified in the initial request.</p>
6510
+ * @public
6511
+ */
6512
+ ClientToken: string | undefined;
6513
+ /**
6514
+ * <p>A list of up to 50 key/value tags that you can assign to the cache report. Using tags
6515
+ * can help you categorize your reports and more easily locate them in search results.</p>
6516
+ * @public
6517
+ */
6518
+ Tags?: Tag[] | undefined;
6519
+ }
6520
+ /**
6521
+ * @public
6522
+ */
6523
+ export interface StartCacheReportOutput {
6524
+ /**
6525
+ * <p>The Amazon Resource Name (ARN) of the cache report generated by the
6526
+ * <code>StartCacheReport</code> request.</p>
6527
+ * @public
6528
+ */
6529
+ CacheReportARN?: string | undefined;
6530
+ }
6219
6531
  /**
6220
6532
  * <p>A JSON object containing the Amazon Resource Name (ARN) of the gateway to start.</p>
6221
6533
  * @public
@@ -9,6 +9,7 @@ import { AssignTapePoolCommandInput, AssignTapePoolCommandOutput } from "../comm
9
9
  import { AssociateFileSystemCommandInput, AssociateFileSystemCommandOutput } from "../commands/AssociateFileSystemCommand";
10
10
  import { AttachVolumeCommandInput, AttachVolumeCommandOutput } from "../commands/AttachVolumeCommand";
11
11
  import { CancelArchivalCommandInput, CancelArchivalCommandOutput } from "../commands/CancelArchivalCommand";
12
+ import { CancelCacheReportCommandInput, CancelCacheReportCommandOutput } from "../commands/CancelCacheReportCommand";
12
13
  import { CancelRetrievalCommandInput, CancelRetrievalCommandOutput } from "../commands/CancelRetrievalCommand";
13
14
  import { CreateCachediSCSIVolumeCommandInput, CreateCachediSCSIVolumeCommandOutput } from "../commands/CreateCachediSCSIVolumeCommand";
14
15
  import { CreateNFSFileShareCommandInput, CreateNFSFileShareCommandOutput } from "../commands/CreateNFSFileShareCommand";
@@ -21,6 +22,7 @@ import { CreateTapesCommandInput, CreateTapesCommandOutput } from "../commands/C
21
22
  import { CreateTapeWithBarcodeCommandInput, CreateTapeWithBarcodeCommandOutput } from "../commands/CreateTapeWithBarcodeCommand";
22
23
  import { DeleteAutomaticTapeCreationPolicyCommandInput, DeleteAutomaticTapeCreationPolicyCommandOutput } from "../commands/DeleteAutomaticTapeCreationPolicyCommand";
23
24
  import { DeleteBandwidthRateLimitCommandInput, DeleteBandwidthRateLimitCommandOutput } from "../commands/DeleteBandwidthRateLimitCommand";
25
+ import { DeleteCacheReportCommandInput, DeleteCacheReportCommandOutput } from "../commands/DeleteCacheReportCommand";
24
26
  import { DeleteChapCredentialsCommandInput, DeleteChapCredentialsCommandOutput } from "../commands/DeleteChapCredentialsCommand";
25
27
  import { DeleteFileShareCommandInput, DeleteFileShareCommandOutput } from "../commands/DeleteFileShareCommand";
26
28
  import { DeleteGatewayCommandInput, DeleteGatewayCommandOutput } from "../commands/DeleteGatewayCommand";
@@ -34,6 +36,7 @@ import { DescribeBandwidthRateLimitCommandInput, DescribeBandwidthRateLimitComma
34
36
  import { DescribeBandwidthRateLimitScheduleCommandInput, DescribeBandwidthRateLimitScheduleCommandOutput } from "../commands/DescribeBandwidthRateLimitScheduleCommand";
35
37
  import { DescribeCacheCommandInput, DescribeCacheCommandOutput } from "../commands/DescribeCacheCommand";
36
38
  import { DescribeCachediSCSIVolumesCommandInput, DescribeCachediSCSIVolumesCommandOutput } from "../commands/DescribeCachediSCSIVolumesCommand";
39
+ import { DescribeCacheReportCommandInput, DescribeCacheReportCommandOutput } from "../commands/DescribeCacheReportCommand";
37
40
  import { DescribeChapCredentialsCommandInput, DescribeChapCredentialsCommandOutput } from "../commands/DescribeChapCredentialsCommand";
38
41
  import { DescribeFileSystemAssociationsCommandInput, DescribeFileSystemAssociationsCommandOutput } from "../commands/DescribeFileSystemAssociationsCommand";
39
42
  import { DescribeGatewayInformationCommandInput, DescribeGatewayInformationCommandOutput } from "../commands/DescribeGatewayInformationCommand";
@@ -54,6 +57,7 @@ import { DisableGatewayCommandInput, DisableGatewayCommandOutput } from "../comm
54
57
  import { DisassociateFileSystemCommandInput, DisassociateFileSystemCommandOutput } from "../commands/DisassociateFileSystemCommand";
55
58
  import { JoinDomainCommandInput, JoinDomainCommandOutput } from "../commands/JoinDomainCommand";
56
59
  import { ListAutomaticTapeCreationPoliciesCommandInput, ListAutomaticTapeCreationPoliciesCommandOutput } from "../commands/ListAutomaticTapeCreationPoliciesCommand";
60
+ import { ListCacheReportsCommandInput, ListCacheReportsCommandOutput } from "../commands/ListCacheReportsCommand";
57
61
  import { ListFileSharesCommandInput, ListFileSharesCommandOutput } from "../commands/ListFileSharesCommand";
58
62
  import { ListFileSystemAssociationsCommandInput, ListFileSystemAssociationsCommandOutput } from "../commands/ListFileSystemAssociationsCommand";
59
63
  import { ListGatewaysCommandInput, ListGatewaysCommandOutput } from "../commands/ListGatewaysCommand";
@@ -74,6 +78,7 @@ import { SetLocalConsolePasswordCommandInput, SetLocalConsolePasswordCommandOutp
74
78
  import { SetSMBGuestPasswordCommandInput, SetSMBGuestPasswordCommandOutput } from "../commands/SetSMBGuestPasswordCommand";
75
79
  import { ShutdownGatewayCommandInput, ShutdownGatewayCommandOutput } from "../commands/ShutdownGatewayCommand";
76
80
  import { StartAvailabilityMonitorTestCommandInput, StartAvailabilityMonitorTestCommandOutput } from "../commands/StartAvailabilityMonitorTestCommand";
81
+ import { StartCacheReportCommandInput, StartCacheReportCommandOutput } from "../commands/StartCacheReportCommand";
77
82
  import { StartGatewayCommandInput, StartGatewayCommandOutput } from "../commands/StartGatewayCommand";
78
83
  import { UpdateAutomaticTapeCreationPolicyCommandInput, UpdateAutomaticTapeCreationPolicyCommandOutput } from "../commands/UpdateAutomaticTapeCreationPolicyCommand";
79
84
  import { UpdateBandwidthRateLimitCommandInput, UpdateBandwidthRateLimitCommandOutput } from "../commands/UpdateBandwidthRateLimitCommand";
@@ -126,6 +131,10 @@ export declare const se_AttachVolumeCommand: (input: AttachVolumeCommandInput, c
126
131
  * serializeAws_json1_1CancelArchivalCommand
127
132
  */
128
133
  export declare const se_CancelArchivalCommand: (input: CancelArchivalCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
134
+ /**
135
+ * serializeAws_json1_1CancelCacheReportCommand
136
+ */
137
+ export declare const se_CancelCacheReportCommand: (input: CancelCacheReportCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
129
138
  /**
130
139
  * serializeAws_json1_1CancelRetrievalCommand
131
140
  */
@@ -174,6 +183,10 @@ export declare const se_DeleteAutomaticTapeCreationPolicyCommand: (input: Delete
174
183
  * serializeAws_json1_1DeleteBandwidthRateLimitCommand
175
184
  */
176
185
  export declare const se_DeleteBandwidthRateLimitCommand: (input: DeleteBandwidthRateLimitCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
186
+ /**
187
+ * serializeAws_json1_1DeleteCacheReportCommand
188
+ */
189
+ export declare const se_DeleteCacheReportCommand: (input: DeleteCacheReportCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
177
190
  /**
178
191
  * serializeAws_json1_1DeleteChapCredentialsCommand
179
192
  */
@@ -226,6 +239,10 @@ export declare const se_DescribeCacheCommand: (input: DescribeCacheCommandInput,
226
239
  * serializeAws_json1_1DescribeCachediSCSIVolumesCommand
227
240
  */
228
241
  export declare const se_DescribeCachediSCSIVolumesCommand: (input: DescribeCachediSCSIVolumesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
242
+ /**
243
+ * serializeAws_json1_1DescribeCacheReportCommand
244
+ */
245
+ export declare const se_DescribeCacheReportCommand: (input: DescribeCacheReportCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
229
246
  /**
230
247
  * serializeAws_json1_1DescribeChapCredentialsCommand
231
248
  */
@@ -306,6 +323,10 @@ export declare const se_JoinDomainCommand: (input: JoinDomainCommandInput, conte
306
323
  * serializeAws_json1_1ListAutomaticTapeCreationPoliciesCommand
307
324
  */
308
325
  export declare const se_ListAutomaticTapeCreationPoliciesCommand: (input: ListAutomaticTapeCreationPoliciesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
326
+ /**
327
+ * serializeAws_json1_1ListCacheReportsCommand
328
+ */
329
+ export declare const se_ListCacheReportsCommand: (input: ListCacheReportsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
309
330
  /**
310
331
  * serializeAws_json1_1ListFileSharesCommand
311
332
  */
@@ -386,6 +407,10 @@ export declare const se_ShutdownGatewayCommand: (input: ShutdownGatewayCommandIn
386
407
  * serializeAws_json1_1StartAvailabilityMonitorTestCommand
387
408
  */
388
409
  export declare const se_StartAvailabilityMonitorTestCommand: (input: StartAvailabilityMonitorTestCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
410
+ /**
411
+ * serializeAws_json1_1StartCacheReportCommand
412
+ */
413
+ export declare const se_StartCacheReportCommand: (input: StartCacheReportCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
389
414
  /**
390
415
  * serializeAws_json1_1StartGatewayCommand
391
416
  */
@@ -486,6 +511,10 @@ export declare const de_AttachVolumeCommand: (output: __HttpResponse, context: _
486
511
  * deserializeAws_json1_1CancelArchivalCommand
487
512
  */
488
513
  export declare const de_CancelArchivalCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CancelArchivalCommandOutput>;
514
+ /**
515
+ * deserializeAws_json1_1CancelCacheReportCommand
516
+ */
517
+ export declare const de_CancelCacheReportCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CancelCacheReportCommandOutput>;
489
518
  /**
490
519
  * deserializeAws_json1_1CancelRetrievalCommand
491
520
  */
@@ -534,6 +563,10 @@ export declare const de_DeleteAutomaticTapeCreationPolicyCommand: (output: __Htt
534
563
  * deserializeAws_json1_1DeleteBandwidthRateLimitCommand
535
564
  */
536
565
  export declare const de_DeleteBandwidthRateLimitCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteBandwidthRateLimitCommandOutput>;
566
+ /**
567
+ * deserializeAws_json1_1DeleteCacheReportCommand
568
+ */
569
+ export declare const de_DeleteCacheReportCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteCacheReportCommandOutput>;
537
570
  /**
538
571
  * deserializeAws_json1_1DeleteChapCredentialsCommand
539
572
  */
@@ -586,6 +619,10 @@ export declare const de_DescribeCacheCommand: (output: __HttpResponse, context:
586
619
  * deserializeAws_json1_1DescribeCachediSCSIVolumesCommand
587
620
  */
588
621
  export declare const de_DescribeCachediSCSIVolumesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeCachediSCSIVolumesCommandOutput>;
622
+ /**
623
+ * deserializeAws_json1_1DescribeCacheReportCommand
624
+ */
625
+ export declare const de_DescribeCacheReportCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeCacheReportCommandOutput>;
589
626
  /**
590
627
  * deserializeAws_json1_1DescribeChapCredentialsCommand
591
628
  */
@@ -666,6 +703,10 @@ export declare const de_JoinDomainCommand: (output: __HttpResponse, context: __S
666
703
  * deserializeAws_json1_1ListAutomaticTapeCreationPoliciesCommand
667
704
  */
668
705
  export declare const de_ListAutomaticTapeCreationPoliciesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAutomaticTapeCreationPoliciesCommandOutput>;
706
+ /**
707
+ * deserializeAws_json1_1ListCacheReportsCommand
708
+ */
709
+ export declare const de_ListCacheReportsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListCacheReportsCommandOutput>;
669
710
  /**
670
711
  * deserializeAws_json1_1ListFileSharesCommand
671
712
  */
@@ -746,6 +787,10 @@ export declare const de_ShutdownGatewayCommand: (output: __HttpResponse, context
746
787
  * deserializeAws_json1_1StartAvailabilityMonitorTestCommand
747
788
  */
748
789
  export declare const de_StartAvailabilityMonitorTestCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartAvailabilityMonitorTestCommandOutput>;
790
+ /**
791
+ * deserializeAws_json1_1StartCacheReportCommand
792
+ */
793
+ export declare const de_StartCacheReportCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartCacheReportCommandOutput>;
749
794
  /**
750
795
  * deserializeAws_json1_1StartGatewayCommand
751
796
  */
@@ -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