@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.
- package/README.md +40 -0
- package/dist-cjs/index.js +233 -0
- package/dist-es/StorageGateway.js +10 -0
- package/dist-es/commands/CancelCacheReportCommand.js +22 -0
- package/dist-es/commands/DeleteCacheReportCommand.js +22 -0
- package/dist-es/commands/DescribeCacheReportCommand.js +22 -0
- package/dist-es/commands/ListCacheReportsCommand.js +22 -0
- package/dist-es/commands/StartCacheReportCommand.js +22 -0
- package/dist-es/commands/index.js +5 -0
- package/dist-es/models/models_0.js +11 -0
- package/dist-es/protocols/Aws_json1_1.js +131 -1
- package/dist-types/StorageGateway.d.ts +36 -0
- package/dist-types/StorageGatewayClient.d.ts +7 -2
- package/dist-types/commands/CancelCacheReportCommand.d.ts +83 -0
- package/dist-types/commands/DeleteCacheReportCommand.d.ts +85 -0
- package/dist-types/commands/DescribeCacheReportCommand.d.ts +112 -0
- package/dist-types/commands/ListCacheReportsCommand.d.ts +117 -0
- package/dist-types/commands/NotifyWhenUploadedCommand.d.ts +5 -4
- package/dist-types/commands/StartCacheReportCommand.d.ts +140 -0
- package/dist-types/commands/index.d.ts +5 -0
- package/dist-types/models/models_0.d.ts +324 -12
- package/dist-types/protocols/Aws_json1_1.d.ts +45 -0
- package/dist-types/ts3.4/StorageGateway.d.ts +86 -0
- package/dist-types/ts3.4/StorageGatewayClient.d.ts +30 -0
- package/dist-types/ts3.4/commands/CancelCacheReportCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/DeleteCacheReportCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/DescribeCacheReportCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListCacheReportsCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/StartCacheReportCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/models/models_0.d.ts +72 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +60 -0
- package/package.json +12 -12
|
@@ -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
|
|
@@ -1241,8 +1397,6 @@ export interface CreateNFSFileShareInput {
|
|
|
1241
1397
|
*/
|
|
1242
1398
|
EncryptionType?: EncryptionType | undefined;
|
|
1243
1399
|
/**
|
|
1244
|
-
* @deprecated
|
|
1245
|
-
*
|
|
1246
1400
|
* <p>Optional. Set to <code>true</code> to use Amazon S3 server-side encryption with
|
|
1247
1401
|
* your own KMS key (SSE-KMS), or <code>false</code> to use a key managed by
|
|
1248
1402
|
* Amazon S3 (SSE-S3). To use dual-layer encryption (DSSE-KMS), set the
|
|
@@ -1259,6 +1413,8 @@ export interface CreateNFSFileShareInput {
|
|
|
1259
1413
|
* </note>
|
|
1260
1414
|
* <p>Valid Values: <code>true</code> | <code>false</code>
|
|
1261
1415
|
* </p>
|
|
1416
|
+
*
|
|
1417
|
+
* @deprecated
|
|
1262
1418
|
* @public
|
|
1263
1419
|
*/
|
|
1264
1420
|
KMSEncrypted?: boolean | undefined;
|
|
@@ -1503,8 +1659,6 @@ export interface CreateSMBFileShareInput {
|
|
|
1503
1659
|
*/
|
|
1504
1660
|
EncryptionType?: EncryptionType | undefined;
|
|
1505
1661
|
/**
|
|
1506
|
-
* @deprecated
|
|
1507
|
-
*
|
|
1508
1662
|
* <p>Optional. Set to <code>true</code> to use Amazon S3 server-side encryption with
|
|
1509
1663
|
* your own KMS key (SSE-KMS), or <code>false</code> to use a key managed by
|
|
1510
1664
|
* Amazon S3 (SSE-S3). To use dual-layer encryption (DSSE-KMS), set the
|
|
@@ -1521,6 +1675,8 @@ export interface CreateSMBFileShareInput {
|
|
|
1521
1675
|
* </note>
|
|
1522
1676
|
* <p>Valid Values: <code>true</code> | <code>false</code>
|
|
1523
1677
|
* </p>
|
|
1678
|
+
*
|
|
1679
|
+
* @deprecated
|
|
1524
1680
|
* @public
|
|
1525
1681
|
*/
|
|
1526
1682
|
KMSEncrypted?: boolean | undefined;
|
|
@@ -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>
|
|
@@ -3332,8 +3529,6 @@ export interface NFSFileShareInfo {
|
|
|
3332
3529
|
*/
|
|
3333
3530
|
EncryptionType?: EncryptionType | undefined;
|
|
3334
3531
|
/**
|
|
3335
|
-
* @deprecated
|
|
3336
|
-
*
|
|
3337
3532
|
* <p>Optional. Set to <code>true</code> to use Amazon S3 server-side encryption with
|
|
3338
3533
|
* your own KMS key (SSE-KMS), or <code>false</code> to use a key managed by
|
|
3339
3534
|
* Amazon S3 (SSE-S3). To use dual-layer encryption (DSSE-KMS), set the
|
|
@@ -3350,6 +3545,8 @@ export interface NFSFileShareInfo {
|
|
|
3350
3545
|
* </note>
|
|
3351
3546
|
* <p>Valid Values: <code>true</code> | <code>false</code>
|
|
3352
3547
|
* </p>
|
|
3548
|
+
*
|
|
3549
|
+
* @deprecated
|
|
3353
3550
|
* @public
|
|
3354
3551
|
*/
|
|
3355
3552
|
KMSEncrypted?: boolean | undefined;
|
|
@@ -3617,8 +3814,6 @@ export interface SMBFileShareInfo {
|
|
|
3617
3814
|
*/
|
|
3618
3815
|
EncryptionType?: EncryptionType | undefined;
|
|
3619
3816
|
/**
|
|
3620
|
-
* @deprecated
|
|
3621
|
-
*
|
|
3622
3817
|
* <p>Optional. Set to <code>true</code> to use Amazon S3 server-side encryption with
|
|
3623
3818
|
* your own KMS key (SSE-KMS), or <code>false</code> to use a key managed by
|
|
3624
3819
|
* Amazon S3 (SSE-S3). To use dual-layer encryption (DSSE-KMS), set the
|
|
@@ -3635,6 +3830,8 @@ export interface SMBFileShareInfo {
|
|
|
3635
3830
|
* </note>
|
|
3636
3831
|
* <p>Valid Values: <code>true</code> | <code>false</code>
|
|
3637
3832
|
* </p>
|
|
3833
|
+
*
|
|
3834
|
+
* @deprecated
|
|
3638
3835
|
* @public
|
|
3639
3836
|
*/
|
|
3640
3837
|
KMSEncrypted?: boolean | undefined;
|
|
@@ -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
|
|
@@ -6663,8 +6975,6 @@ export interface UpdateNFSFileShareInput {
|
|
|
6663
6975
|
*/
|
|
6664
6976
|
EncryptionType?: EncryptionType | undefined;
|
|
6665
6977
|
/**
|
|
6666
|
-
* @deprecated
|
|
6667
|
-
*
|
|
6668
6978
|
* <p>Optional. Set to <code>true</code> to use Amazon S3 server-side encryption with
|
|
6669
6979
|
* your own KMS key (SSE-KMS), or <code>false</code> to use a key managed by
|
|
6670
6980
|
* Amazon S3 (SSE-S3). To use dual-layer encryption (DSSE-KMS), set the
|
|
@@ -6681,6 +6991,8 @@ export interface UpdateNFSFileShareInput {
|
|
|
6681
6991
|
* </note>
|
|
6682
6992
|
* <p>Valid Values: <code>true</code> | <code>false</code>
|
|
6683
6993
|
* </p>
|
|
6994
|
+
*
|
|
6995
|
+
* @deprecated
|
|
6684
6996
|
* @public
|
|
6685
6997
|
*/
|
|
6686
6998
|
KMSEncrypted?: boolean | undefined;
|
|
@@ -6860,8 +7172,6 @@ export interface UpdateSMBFileShareInput {
|
|
|
6860
7172
|
*/
|
|
6861
7173
|
EncryptionType?: EncryptionType | undefined;
|
|
6862
7174
|
/**
|
|
6863
|
-
* @deprecated
|
|
6864
|
-
*
|
|
6865
7175
|
* <p>Optional. Set to <code>true</code> to use Amazon S3 server-side encryption with
|
|
6866
7176
|
* your own KMS key (SSE-KMS), or <code>false</code> to use a key managed by
|
|
6867
7177
|
* Amazon S3 (SSE-S3). To use dual-layer encryption (DSSE-KMS), set the
|
|
@@ -6878,6 +7188,8 @@ export interface UpdateSMBFileShareInput {
|
|
|
6878
7188
|
* </note>
|
|
6879
7189
|
* <p>Valid Values: <code>true</code> | <code>false</code>
|
|
6880
7190
|
* </p>
|
|
7191
|
+
*
|
|
7192
|
+
* @deprecated
|
|
6881
7193
|
* @public
|
|
6882
7194
|
*/
|
|
6883
7195
|
KMSEncrypted?: boolean | undefined;
|
|
@@ -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
|
*/
|