@aws-sdk/client-s3 3.1033.0 → 3.1035.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/dist-cjs/index.js +7 -6
- package/dist-cjs/schemas/schemas_0.js +75 -60
- package/dist-es/commands/GetBucketPolicyCommand.js +1 -5
- package/dist-es/commands/GetObjectCommand.js +1 -1
- package/dist-es/commands/SelectObjectContentCommand.js +0 -2
- package/dist-es/models/enums.js +5 -0
- package/dist-es/schemas/schemas_0.js +75 -60
- package/dist-types/commands/CompleteMultipartUploadCommand.d.ts +15 -0
- package/dist-types/commands/CopyObjectCommand.d.ts +6 -1
- package/dist-types/commands/CreateBucketMetadataConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/CreateBucketMetadataTableConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/CreateMultipartUploadCommand.d.ts +2 -2
- package/dist-types/commands/DeleteBucketInventoryConfigurationCommand.d.ts +38 -7
- package/dist-types/commands/DeleteObjectsCommand.d.ts +1 -1
- package/dist-types/commands/GetBucketInventoryConfigurationCommand.d.ts +39 -8
- package/dist-types/commands/GetObjectAttributesCommand.d.ts +10 -0
- package/dist-types/commands/GetObjectCommand.d.ts +5 -0
- package/dist-types/commands/HeadObjectCommand.d.ts +5 -0
- package/dist-types/commands/ListBucketInventoryConfigurationsCommand.d.ts +39 -8
- package/dist-types/commands/ListMultipartUploadsCommand.d.ts +1 -1
- package/dist-types/commands/ListObjectVersionsCommand.d.ts +1 -1
- package/dist-types/commands/ListObjectsCommand.d.ts +1 -1
- package/dist-types/commands/ListObjectsV2Command.d.ts +1 -1
- package/dist-types/commands/ListPartsCommand.d.ts +6 -1
- package/dist-types/commands/PutBucketAbacCommand.d.ts +1 -1
- package/dist-types/commands/PutBucketAccelerateConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/PutBucketAclCommand.d.ts +1 -1
- package/dist-types/commands/PutBucketCorsCommand.d.ts +1 -1
- package/dist-types/commands/PutBucketEncryptionCommand.d.ts +1 -1
- package/dist-types/commands/PutBucketInventoryConfigurationCommand.d.ts +31 -5
- package/dist-types/commands/PutBucketLifecycleConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/PutBucketLoggingCommand.d.ts +1 -1
- package/dist-types/commands/PutBucketOwnershipControlsCommand.d.ts +1 -1
- package/dist-types/commands/PutBucketPolicyCommand.d.ts +1 -1
- package/dist-types/commands/PutBucketReplicationCommand.d.ts +1 -1
- package/dist-types/commands/PutBucketRequestPaymentCommand.d.ts +1 -1
- package/dist-types/commands/PutBucketTaggingCommand.d.ts +1 -1
- package/dist-types/commands/PutBucketVersioningCommand.d.ts +1 -1
- package/dist-types/commands/PutBucketWebsiteCommand.d.ts +1 -1
- package/dist-types/commands/PutObjectAclCommand.d.ts +1 -1
- package/dist-types/commands/PutObjectCommand.d.ts +11 -1
- package/dist-types/commands/PutObjectLegalHoldCommand.d.ts +1 -1
- package/dist-types/commands/PutObjectLockConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/PutObjectRetentionCommand.d.ts +1 -1
- package/dist-types/commands/PutObjectTaggingCommand.d.ts +1 -1
- package/dist-types/commands/PutPublicAccessBlockCommand.d.ts +1 -1
- package/dist-types/commands/RestoreObjectCommand.d.ts +1 -1
- package/dist-types/commands/UpdateBucketMetadataInventoryTableConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/UpdateBucketMetadataJournalTableConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/UpdateObjectEncryptionCommand.d.ts +1 -1
- package/dist-types/commands/UploadPartCommand.d.ts +11 -1
- package/dist-types/commands/UploadPartCopyCommand.d.ts +5 -0
- package/dist-types/commands/WriteGetObjectResponseCommand.d.ts +5 -0
- package/dist-types/models/enums.d.ts +5 -0
- package/dist-types/models/models_0.d.ts +546 -2
- package/dist-types/models/models_1.d.ts +194 -34
- package/dist-types/ts3.4/models/enums.d.ts +5 -0
- package/dist-types/ts3.4/models/models_0.d.ts +55 -0
- package/dist-types/ts3.4/models/models_1.d.ts +20 -0
- package/package.json +24 -24
|
@@ -926,45 +926,85 @@ export interface UploadPartOutput {
|
|
|
926
926
|
*/
|
|
927
927
|
ETag?: string | undefined;
|
|
928
928
|
/**
|
|
929
|
-
* <p>The Base64 encoded, 32-bit <code>CRC32
|
|
930
|
-
*
|
|
931
|
-
*
|
|
932
|
-
*
|
|
929
|
+
* <p>The Base64 encoded, 32-bit <code>CRC32</code> checksum of the part. This will only be present if
|
|
930
|
+
* the checksum was provided in the request. For more information, see
|
|
931
|
+
* <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking
|
|
932
|
+
* object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
933
933
|
* @public
|
|
934
934
|
*/
|
|
935
935
|
ChecksumCRC32?: string | undefined;
|
|
936
936
|
/**
|
|
937
|
-
* <p>The Base64 encoded, 32-bit <code>CRC32C</code> checksum of the
|
|
938
|
-
*
|
|
939
|
-
*
|
|
940
|
-
*
|
|
937
|
+
* <p>The Base64 encoded, 32-bit <code>CRC32C</code> checksum of the part. This will only be present if
|
|
938
|
+
* the checksum was provided in the request. For more information, see
|
|
939
|
+
* <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking
|
|
940
|
+
* object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
941
941
|
* @public
|
|
942
942
|
*/
|
|
943
943
|
ChecksumCRC32C?: string | undefined;
|
|
944
944
|
/**
|
|
945
|
-
* <p>
|
|
946
|
-
*
|
|
947
|
-
*
|
|
948
|
-
*
|
|
945
|
+
* <p>The Base64 encoded, 64-bit <code>CRC64NVME</code> checksum of the part. This will only be present if
|
|
946
|
+
* the checksum was provided in the request. For more information, see
|
|
947
|
+
* <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking
|
|
948
|
+
* object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
949
949
|
* @public
|
|
950
950
|
*/
|
|
951
951
|
ChecksumCRC64NVME?: string | undefined;
|
|
952
952
|
/**
|
|
953
|
-
* <p>The Base64 encoded, 160-bit <code>SHA1</code>
|
|
954
|
-
*
|
|
955
|
-
*
|
|
956
|
-
*
|
|
953
|
+
* <p>The Base64 encoded, 160-bit <code>SHA1</code> checksum of the part. This will only be present if
|
|
954
|
+
* the checksum was provided in the request. For more information, see
|
|
955
|
+
* <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking
|
|
956
|
+
* object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
957
957
|
* @public
|
|
958
958
|
*/
|
|
959
959
|
ChecksumSHA1?: string | undefined;
|
|
960
960
|
/**
|
|
961
|
-
* <p>The Base64 encoded, 256-bit <code>SHA256</code>
|
|
962
|
-
*
|
|
963
|
-
*
|
|
964
|
-
*
|
|
961
|
+
* <p>The Base64 encoded, 256-bit <code>SHA256</code> checksum of the part. This will only be present if
|
|
962
|
+
* the checksum was provided in the request. For more information, see
|
|
963
|
+
* <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking
|
|
964
|
+
* object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
965
965
|
* @public
|
|
966
966
|
*/
|
|
967
967
|
ChecksumSHA256?: string | undefined;
|
|
968
|
+
/**
|
|
969
|
+
* <p>The Base64 encoded, 512-bit <code>SHA512</code> checksum of the part. This will only be present if
|
|
970
|
+
* the checksum was provided in the request. For more information, see
|
|
971
|
+
* <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking
|
|
972
|
+
* object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
973
|
+
* @public
|
|
974
|
+
*/
|
|
975
|
+
ChecksumSHA512?: string | undefined;
|
|
976
|
+
/**
|
|
977
|
+
* <p>The Base64 encoded, 128-bit <code>MD5</code> checksum of the part. This will only be present if
|
|
978
|
+
* the checksum was provided in the request. For more information, see
|
|
979
|
+
* <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking
|
|
980
|
+
* object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
981
|
+
* @public
|
|
982
|
+
*/
|
|
983
|
+
ChecksumMD5?: string | undefined;
|
|
984
|
+
/**
|
|
985
|
+
* <p>The Base64 encoded, 64-bit <code>XXHASH64</code> checksum of the part. This will only be present if
|
|
986
|
+
* the checksum was provided in the request. For more information, see
|
|
987
|
+
* <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking
|
|
988
|
+
* object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
989
|
+
* @public
|
|
990
|
+
*/
|
|
991
|
+
ChecksumXXHASH64?: string | undefined;
|
|
992
|
+
/**
|
|
993
|
+
* <p>The Base64 encoded, 64-bit <code>XXHASH3</code> checksum of the part. This will only be present if
|
|
994
|
+
* the checksum was provided in the request. For more information, see
|
|
995
|
+
* <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking
|
|
996
|
+
* object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
997
|
+
* @public
|
|
998
|
+
*/
|
|
999
|
+
ChecksumXXHASH3?: string | undefined;
|
|
1000
|
+
/**
|
|
1001
|
+
* <p>The Base64 encoded, 128-bit <code>XXHASH128</code> checksum of the part. This will only be present if
|
|
1002
|
+
* the checksum was provided in the request. For more information, see
|
|
1003
|
+
* <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking
|
|
1004
|
+
* object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
1005
|
+
* @public
|
|
1006
|
+
*/
|
|
1007
|
+
ChecksumXXHASH128?: string | undefined;
|
|
968
1008
|
/**
|
|
969
1009
|
* <p>If server-side encryption with a customer-provided encryption key was requested, the response will
|
|
970
1010
|
* include this header to confirm the encryption algorithm that's used.</p>
|
|
@@ -1106,6 +1146,46 @@ export interface UploadPartRequest {
|
|
|
1106
1146
|
* @public
|
|
1107
1147
|
*/
|
|
1108
1148
|
ChecksumSHA256?: string | undefined;
|
|
1149
|
+
/**
|
|
1150
|
+
* <p>This header can be used as a data integrity check to verify that the data received is the same data
|
|
1151
|
+
* that was originally sent. This header specifies the Base64 encoded, 512-bit <code>SHA512</code>
|
|
1152
|
+
* digest of the part. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
|
|
1153
|
+
* the <i>Amazon S3 User Guide</i>.</p>
|
|
1154
|
+
* @public
|
|
1155
|
+
*/
|
|
1156
|
+
ChecksumSHA512?: string | undefined;
|
|
1157
|
+
/**
|
|
1158
|
+
* <p>This header can be used as a data integrity check to verify that the data received is the same data
|
|
1159
|
+
* that was originally sent. This header specifies the Base64 encoded, 128-bit <code>MD5</code>
|
|
1160
|
+
* digest of the part. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
|
|
1161
|
+
* the <i>Amazon S3 User Guide</i>.</p>
|
|
1162
|
+
* @public
|
|
1163
|
+
*/
|
|
1164
|
+
ChecksumMD5?: string | undefined;
|
|
1165
|
+
/**
|
|
1166
|
+
* <p>This header can be used as a data integrity check to verify that the data received is the same data
|
|
1167
|
+
* that was originally sent. This header specifies the Base64 encoded, 64-bit <code>XXHASH64</code>
|
|
1168
|
+
* checksum of the part. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
|
|
1169
|
+
* the <i>Amazon S3 User Guide</i>.</p>
|
|
1170
|
+
* @public
|
|
1171
|
+
*/
|
|
1172
|
+
ChecksumXXHASH64?: string | undefined;
|
|
1173
|
+
/**
|
|
1174
|
+
* <p>This header can be used as a data integrity check to verify that the data received is the same data
|
|
1175
|
+
* that was originally sent. This header specifies the Base64 encoded, 64-bit <code>XXHASH3</code>
|
|
1176
|
+
* checksum of the part. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
|
|
1177
|
+
* the <i>Amazon S3 User Guide</i>.</p>
|
|
1178
|
+
* @public
|
|
1179
|
+
*/
|
|
1180
|
+
ChecksumXXHASH3?: string | undefined;
|
|
1181
|
+
/**
|
|
1182
|
+
* <p>This header can be used as a data integrity check to verify that the data received is the same data
|
|
1183
|
+
* that was originally sent. This header specifies the Base64 encoded, 128-bit <code>XXHASH128</code>
|
|
1184
|
+
* checksum of the part. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
|
|
1185
|
+
* the <i>Amazon S3 User Guide</i>.</p>
|
|
1186
|
+
* @public
|
|
1187
|
+
*/
|
|
1188
|
+
ChecksumXXHASH128?: string | undefined;
|
|
1109
1189
|
/**
|
|
1110
1190
|
* <p>Object key for which the multipart upload was initiated.</p>
|
|
1111
1191
|
* @public
|
|
@@ -1184,45 +1264,85 @@ export interface CopyPartResult {
|
|
|
1184
1264
|
*/
|
|
1185
1265
|
LastModified?: Date | undefined;
|
|
1186
1266
|
/**
|
|
1187
|
-
* <p>
|
|
1188
|
-
*
|
|
1189
|
-
*
|
|
1267
|
+
* <p>The Base64 encoded, 32-bit <code>CRC32</code> checksum of the part. This checksum is present if
|
|
1268
|
+
* the multipart upload request was created with the <code>CRC32</code> checksum algorithm. For more
|
|
1269
|
+
* information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
|
|
1190
1270
|
* the <i>Amazon S3 User Guide</i>.</p>
|
|
1191
1271
|
* @public
|
|
1192
1272
|
*/
|
|
1193
1273
|
ChecksumCRC32?: string | undefined;
|
|
1194
1274
|
/**
|
|
1195
|
-
* <p>
|
|
1196
|
-
*
|
|
1197
|
-
*
|
|
1275
|
+
* <p>The Base64 encoded, 32-bit <code>CRC32C</code> checksum of the part. This checksum is present if
|
|
1276
|
+
* the multipart upload request was created with the <code>CRC32C</code> checksum algorithm. For more
|
|
1277
|
+
* information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
|
|
1198
1278
|
* the <i>Amazon S3 User Guide</i>.</p>
|
|
1199
1279
|
* @public
|
|
1200
1280
|
*/
|
|
1201
1281
|
ChecksumCRC32C?: string | undefined;
|
|
1202
1282
|
/**
|
|
1203
1283
|
* <p>The Base64 encoded, 64-bit <code>CRC64NVME</code> checksum of the part. This checksum is present if
|
|
1204
|
-
* the multipart upload request was created with the <code>CRC64NVME</code> checksum algorithm
|
|
1205
|
-
*
|
|
1284
|
+
* the multipart upload request was created with the <code>CRC64NVME</code> checksum algorithm. For more
|
|
1285
|
+
* information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
|
|
1206
1286
|
* the <i>Amazon S3 User Guide</i>.</p>
|
|
1207
1287
|
* @public
|
|
1208
1288
|
*/
|
|
1209
1289
|
ChecksumCRC64NVME?: string | undefined;
|
|
1210
1290
|
/**
|
|
1211
|
-
* <p>
|
|
1212
|
-
*
|
|
1213
|
-
*
|
|
1291
|
+
* <p>The Base64 encoded, 160-bit <code>SHA1</code> digest of the part. This checksum is present if
|
|
1292
|
+
* the multipart upload request was created with the <code>SHA1</code> checksum algorithm. For more
|
|
1293
|
+
* information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
|
|
1214
1294
|
* the <i>Amazon S3 User Guide</i>.</p>
|
|
1215
1295
|
* @public
|
|
1216
1296
|
*/
|
|
1217
1297
|
ChecksumSHA1?: string | undefined;
|
|
1218
1298
|
/**
|
|
1219
|
-
* <p>
|
|
1220
|
-
*
|
|
1221
|
-
*
|
|
1299
|
+
* <p>The Base64 encoded, 256-bit <code>SHA256</code> digest of the part. This checksum is present if
|
|
1300
|
+
* the multipart upload request was created with the <code>SHA256</code> checksum algorithm. For more
|
|
1301
|
+
* information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
|
|
1222
1302
|
* the <i>Amazon S3 User Guide</i>.</p>
|
|
1223
1303
|
* @public
|
|
1224
1304
|
*/
|
|
1225
1305
|
ChecksumSHA256?: string | undefined;
|
|
1306
|
+
/**
|
|
1307
|
+
* <p>The Base64 encoded, 512-bit <code>SHA512</code> digest of the part. This checksum is present if
|
|
1308
|
+
* the multipart upload request was created with the <code>SHA512</code> checksum algorithm. For more
|
|
1309
|
+
* information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
|
|
1310
|
+
* the <i>Amazon S3 User Guide</i>.</p>
|
|
1311
|
+
* @public
|
|
1312
|
+
*/
|
|
1313
|
+
ChecksumSHA512?: string | undefined;
|
|
1314
|
+
/**
|
|
1315
|
+
* <p>The Base64 encoded, 128-bit <code>MD5</code> digest of the part. This checksum is present if
|
|
1316
|
+
* the multipart upload request was created with the <code>MD5</code> checksum algorithm. For more
|
|
1317
|
+
* information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
|
|
1318
|
+
* the <i>Amazon S3 User Guide</i>.</p>
|
|
1319
|
+
* @public
|
|
1320
|
+
*/
|
|
1321
|
+
ChecksumMD5?: string | undefined;
|
|
1322
|
+
/**
|
|
1323
|
+
* <p>The Base64 encoded, 64-bit <code>XXHASH64</code> checksum of the part. This checksum is present if
|
|
1324
|
+
* the multipart upload request was created with the <code>XXHASH64</code> checksum algorithm. For more
|
|
1325
|
+
* information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
|
|
1326
|
+
* the <i>Amazon S3 User Guide</i>.</p>
|
|
1327
|
+
* @public
|
|
1328
|
+
*/
|
|
1329
|
+
ChecksumXXHASH64?: string | undefined;
|
|
1330
|
+
/**
|
|
1331
|
+
* <p>The Base64 encoded, 64-bit <code>XXHASH3</code> checksum of the part. This checksum is present if
|
|
1332
|
+
* the multipart upload request was created with the <code>XXHASH3</code> checksum algorithm. For more
|
|
1333
|
+
* information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
|
|
1334
|
+
* the <i>Amazon S3 User Guide</i>.</p>
|
|
1335
|
+
* @public
|
|
1336
|
+
*/
|
|
1337
|
+
ChecksumXXHASH3?: string | undefined;
|
|
1338
|
+
/**
|
|
1339
|
+
* <p>The Base64 encoded, 128-bit <code>XXHASH128</code> checksum of the part. This checksum is present if
|
|
1340
|
+
* the multipart upload request was created with the <code>XXHASH128</code> checksum algorithm. For more
|
|
1341
|
+
* information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
|
|
1342
|
+
* the <i>Amazon S3 User Guide</i>.</p>
|
|
1343
|
+
* @public
|
|
1344
|
+
*/
|
|
1345
|
+
ChecksumXXHASH128?: string | undefined;
|
|
1226
1346
|
}
|
|
1227
1347
|
/**
|
|
1228
1348
|
* @public
|
|
@@ -1736,6 +1856,46 @@ export interface WriteGetObjectResponseRequest {
|
|
|
1736
1856
|
* @public
|
|
1737
1857
|
*/
|
|
1738
1858
|
ChecksumSHA256?: string | undefined;
|
|
1859
|
+
/**
|
|
1860
|
+
* <p>This header can be used as a data integrity check to verify that the data received is the same data
|
|
1861
|
+
* that was originally sent. This header specifies the Base64 encoded, 512-bit <code>SHA512</code>
|
|
1862
|
+
* digest of the part. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
|
|
1863
|
+
* the <i>Amazon S3 User Guide</i>.</p>
|
|
1864
|
+
* @public
|
|
1865
|
+
*/
|
|
1866
|
+
ChecksumSHA512?: string | undefined;
|
|
1867
|
+
/**
|
|
1868
|
+
* <p>This header can be used as a data integrity check to verify that the data received is the same data
|
|
1869
|
+
* that was originally sent. This header specifies the Base64 encoded, 128-bit <code>MD5</code>
|
|
1870
|
+
* digest of the part. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
|
|
1871
|
+
* the <i>Amazon S3 User Guide</i>.</p>
|
|
1872
|
+
* @public
|
|
1873
|
+
*/
|
|
1874
|
+
ChecksumMD5?: string | undefined;
|
|
1875
|
+
/**
|
|
1876
|
+
* <p>This header can be used as a data integrity check to verify that the data received is the same data
|
|
1877
|
+
* that was originally sent. This header specifies the Base64 encoded, 64-bit <code>XXHASH64</code>
|
|
1878
|
+
* checksum of the part. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
|
|
1879
|
+
* the <i>Amazon S3 User Guide</i>.</p>
|
|
1880
|
+
* @public
|
|
1881
|
+
*/
|
|
1882
|
+
ChecksumXXHASH64?: string | undefined;
|
|
1883
|
+
/**
|
|
1884
|
+
* <p>This header can be used as a data integrity check to verify that the data received is the same data
|
|
1885
|
+
* that was originally sent. This header specifies the Base64 encoded, 64-bit <code>XXHASH3</code>
|
|
1886
|
+
* checksum of the part. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
|
|
1887
|
+
* the <i>Amazon S3 User Guide</i>.</p>
|
|
1888
|
+
* @public
|
|
1889
|
+
*/
|
|
1890
|
+
ChecksumXXHASH3?: string | undefined;
|
|
1891
|
+
/**
|
|
1892
|
+
* <p>This header can be used as a data integrity check to verify that the data received is the same data
|
|
1893
|
+
* that was originally sent. This header specifies the Base64 encoded, 128-bit <code>XXHASH128</code>
|
|
1894
|
+
* checksum of the part. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
|
|
1895
|
+
* the <i>Amazon S3 User Guide</i>.</p>
|
|
1896
|
+
* @public
|
|
1897
|
+
*/
|
|
1898
|
+
ChecksumXXHASH128?: string | undefined;
|
|
1739
1899
|
/**
|
|
1740
1900
|
* <p>Specifies whether an object stored in Amazon S3 is (<code>true</code>) or is not (<code>false</code>) a
|
|
1741
1901
|
* delete marker. To learn more about delete markers, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/DeleteMarker.html">Working with delete markers</a>.</p>
|
|
@@ -65,8 +65,13 @@ export declare const ChecksumAlgorithm: {
|
|
|
65
65
|
readonly CRC32: "CRC32";
|
|
66
66
|
readonly CRC32C: "CRC32C";
|
|
67
67
|
readonly CRC64NVME: "CRC64NVME";
|
|
68
|
+
readonly MD5: "MD5";
|
|
68
69
|
readonly SHA1: "SHA1";
|
|
69
70
|
readonly SHA256: "SHA256";
|
|
71
|
+
readonly SHA512: "SHA512";
|
|
72
|
+
readonly XXHASH128: "XXHASH128";
|
|
73
|
+
readonly XXHASH3: "XXHASH3";
|
|
74
|
+
readonly XXHASH64: "XXHASH64";
|
|
70
75
|
};
|
|
71
76
|
export type ChecksumAlgorithm =
|
|
72
77
|
(typeof ChecksumAlgorithm)[keyof typeof ChecksumAlgorithm];
|
|
@@ -123,6 +123,11 @@ export interface CompleteMultipartUploadOutput {
|
|
|
123
123
|
ChecksumCRC64NVME?: string | undefined;
|
|
124
124
|
ChecksumSHA1?: string | undefined;
|
|
125
125
|
ChecksumSHA256?: string | undefined;
|
|
126
|
+
ChecksumSHA512?: string | undefined;
|
|
127
|
+
ChecksumMD5?: string | undefined;
|
|
128
|
+
ChecksumXXHASH64?: string | undefined;
|
|
129
|
+
ChecksumXXHASH3?: string | undefined;
|
|
130
|
+
ChecksumXXHASH128?: string | undefined;
|
|
126
131
|
ChecksumType?: ChecksumType | undefined;
|
|
127
132
|
ServerSideEncryption?: ServerSideEncryption | undefined;
|
|
128
133
|
VersionId?: string | undefined;
|
|
@@ -137,6 +142,11 @@ export interface CompletedPart {
|
|
|
137
142
|
ChecksumCRC64NVME?: string | undefined;
|
|
138
143
|
ChecksumSHA1?: string | undefined;
|
|
139
144
|
ChecksumSHA256?: string | undefined;
|
|
145
|
+
ChecksumSHA512?: string | undefined;
|
|
146
|
+
ChecksumMD5?: string | undefined;
|
|
147
|
+
ChecksumXXHASH64?: string | undefined;
|
|
148
|
+
ChecksumXXHASH3?: string | undefined;
|
|
149
|
+
ChecksumXXHASH128?: string | undefined;
|
|
140
150
|
PartNumber?: number | undefined;
|
|
141
151
|
}
|
|
142
152
|
export interface CompletedMultipartUpload {
|
|
@@ -152,6 +162,11 @@ export interface CompleteMultipartUploadRequest {
|
|
|
152
162
|
ChecksumCRC64NVME?: string | undefined;
|
|
153
163
|
ChecksumSHA1?: string | undefined;
|
|
154
164
|
ChecksumSHA256?: string | undefined;
|
|
165
|
+
ChecksumSHA512?: string | undefined;
|
|
166
|
+
ChecksumMD5?: string | undefined;
|
|
167
|
+
ChecksumXXHASH64?: string | undefined;
|
|
168
|
+
ChecksumXXHASH3?: string | undefined;
|
|
169
|
+
ChecksumXXHASH128?: string | undefined;
|
|
155
170
|
ChecksumType?: ChecksumType | undefined;
|
|
156
171
|
MpuObjectSize?: number | undefined;
|
|
157
172
|
RequestPayer?: RequestPayer | undefined;
|
|
@@ -171,6 +186,11 @@ export interface CopyObjectResult {
|
|
|
171
186
|
ChecksumCRC64NVME?: string | undefined;
|
|
172
187
|
ChecksumSHA1?: string | undefined;
|
|
173
188
|
ChecksumSHA256?: string | undefined;
|
|
189
|
+
ChecksumSHA512?: string | undefined;
|
|
190
|
+
ChecksumMD5?: string | undefined;
|
|
191
|
+
ChecksumXXHASH64?: string | undefined;
|
|
192
|
+
ChecksumXXHASH3?: string | undefined;
|
|
193
|
+
ChecksumXXHASH128?: string | undefined;
|
|
174
194
|
}
|
|
175
195
|
export interface CopyObjectOutput {
|
|
176
196
|
CopyObjectResult?: CopyObjectResult | undefined;
|
|
@@ -1139,6 +1159,11 @@ export interface GetObjectOutput {
|
|
|
1139
1159
|
ChecksumCRC64NVME?: string | undefined;
|
|
1140
1160
|
ChecksumSHA1?: string | undefined;
|
|
1141
1161
|
ChecksumSHA256?: string | undefined;
|
|
1162
|
+
ChecksumSHA512?: string | undefined;
|
|
1163
|
+
ChecksumMD5?: string | undefined;
|
|
1164
|
+
ChecksumXXHASH64?: string | undefined;
|
|
1165
|
+
ChecksumXXHASH3?: string | undefined;
|
|
1166
|
+
ChecksumXXHASH128?: string | undefined;
|
|
1142
1167
|
ChecksumType?: ChecksumType | undefined;
|
|
1143
1168
|
MissingMeta?: number | undefined;
|
|
1144
1169
|
VersionId?: string | undefined;
|
|
@@ -1207,6 +1232,11 @@ export interface Checksum {
|
|
|
1207
1232
|
ChecksumCRC64NVME?: string | undefined;
|
|
1208
1233
|
ChecksumSHA1?: string | undefined;
|
|
1209
1234
|
ChecksumSHA256?: string | undefined;
|
|
1235
|
+
ChecksumSHA512?: string | undefined;
|
|
1236
|
+
ChecksumMD5?: string | undefined;
|
|
1237
|
+
ChecksumXXHASH64?: string | undefined;
|
|
1238
|
+
ChecksumXXHASH3?: string | undefined;
|
|
1239
|
+
ChecksumXXHASH128?: string | undefined;
|
|
1210
1240
|
ChecksumType?: ChecksumType | undefined;
|
|
1211
1241
|
}
|
|
1212
1242
|
export interface ObjectPart {
|
|
@@ -1217,6 +1247,11 @@ export interface ObjectPart {
|
|
|
1217
1247
|
ChecksumCRC64NVME?: string | undefined;
|
|
1218
1248
|
ChecksumSHA1?: string | undefined;
|
|
1219
1249
|
ChecksumSHA256?: string | undefined;
|
|
1250
|
+
ChecksumSHA512?: string | undefined;
|
|
1251
|
+
ChecksumMD5?: string | undefined;
|
|
1252
|
+
ChecksumXXHASH64?: string | undefined;
|
|
1253
|
+
ChecksumXXHASH3?: string | undefined;
|
|
1254
|
+
ChecksumXXHASH128?: string | undefined;
|
|
1220
1255
|
}
|
|
1221
1256
|
export interface GetObjectAttributesParts {
|
|
1222
1257
|
TotalPartsCount?: number | undefined;
|
|
@@ -1354,6 +1389,11 @@ export interface HeadObjectOutput {
|
|
|
1354
1389
|
ChecksumCRC64NVME?: string | undefined;
|
|
1355
1390
|
ChecksumSHA1?: string | undefined;
|
|
1356
1391
|
ChecksumSHA256?: string | undefined;
|
|
1392
|
+
ChecksumSHA512?: string | undefined;
|
|
1393
|
+
ChecksumMD5?: string | undefined;
|
|
1394
|
+
ChecksumXXHASH64?: string | undefined;
|
|
1395
|
+
ChecksumXXHASH3?: string | undefined;
|
|
1396
|
+
ChecksumXXHASH128?: string | undefined;
|
|
1357
1397
|
ChecksumType?: ChecksumType | undefined;
|
|
1358
1398
|
ETag?: string | undefined;
|
|
1359
1399
|
MissingMeta?: number | undefined;
|
|
@@ -1645,6 +1685,11 @@ export interface Part {
|
|
|
1645
1685
|
ChecksumCRC64NVME?: string | undefined;
|
|
1646
1686
|
ChecksumSHA1?: string | undefined;
|
|
1647
1687
|
ChecksumSHA256?: string | undefined;
|
|
1688
|
+
ChecksumSHA512?: string | undefined;
|
|
1689
|
+
ChecksumMD5?: string | undefined;
|
|
1690
|
+
ChecksumXXHASH64?: string | undefined;
|
|
1691
|
+
ChecksumXXHASH3?: string | undefined;
|
|
1692
|
+
ChecksumXXHASH128?: string | undefined;
|
|
1648
1693
|
}
|
|
1649
1694
|
export interface ListPartsOutput {
|
|
1650
1695
|
AbortDate?: Date | undefined;
|
|
@@ -1854,6 +1899,11 @@ export interface PutObjectOutput {
|
|
|
1854
1899
|
ChecksumCRC64NVME?: string | undefined;
|
|
1855
1900
|
ChecksumSHA1?: string | undefined;
|
|
1856
1901
|
ChecksumSHA256?: string | undefined;
|
|
1902
|
+
ChecksumSHA512?: string | undefined;
|
|
1903
|
+
ChecksumMD5?: string | undefined;
|
|
1904
|
+
ChecksumXXHASH64?: string | undefined;
|
|
1905
|
+
ChecksumXXHASH3?: string | undefined;
|
|
1906
|
+
ChecksumXXHASH128?: string | undefined;
|
|
1857
1907
|
ChecksumType?: ChecksumType | undefined;
|
|
1858
1908
|
ServerSideEncryption?: ServerSideEncryption | undefined;
|
|
1859
1909
|
VersionId?: string | undefined;
|
|
@@ -1882,6 +1932,11 @@ export interface PutObjectRequest {
|
|
|
1882
1932
|
ChecksumCRC64NVME?: string | undefined;
|
|
1883
1933
|
ChecksumSHA1?: string | undefined;
|
|
1884
1934
|
ChecksumSHA256?: string | undefined;
|
|
1935
|
+
ChecksumSHA512?: string | undefined;
|
|
1936
|
+
ChecksumMD5?: string | undefined;
|
|
1937
|
+
ChecksumXXHASH64?: string | undefined;
|
|
1938
|
+
ChecksumXXHASH3?: string | undefined;
|
|
1939
|
+
ChecksumXXHASH128?: string | undefined;
|
|
1885
1940
|
Expires?: Date | undefined;
|
|
1886
1941
|
IfMatch?: string | undefined;
|
|
1887
1942
|
IfNoneMatch?: string | undefined;
|
|
@@ -241,6 +241,11 @@ export interface UploadPartOutput {
|
|
|
241
241
|
ChecksumCRC64NVME?: string | undefined;
|
|
242
242
|
ChecksumSHA1?: string | undefined;
|
|
243
243
|
ChecksumSHA256?: string | undefined;
|
|
244
|
+
ChecksumSHA512?: string | undefined;
|
|
245
|
+
ChecksumMD5?: string | undefined;
|
|
246
|
+
ChecksumXXHASH64?: string | undefined;
|
|
247
|
+
ChecksumXXHASH3?: string | undefined;
|
|
248
|
+
ChecksumXXHASH128?: string | undefined;
|
|
244
249
|
SSECustomerAlgorithm?: string | undefined;
|
|
245
250
|
SSECustomerKeyMD5?: string | undefined;
|
|
246
251
|
SSEKMSKeyId?: string | undefined;
|
|
@@ -258,6 +263,11 @@ export interface UploadPartRequest {
|
|
|
258
263
|
ChecksumCRC64NVME?: string | undefined;
|
|
259
264
|
ChecksumSHA1?: string | undefined;
|
|
260
265
|
ChecksumSHA256?: string | undefined;
|
|
266
|
+
ChecksumSHA512?: string | undefined;
|
|
267
|
+
ChecksumMD5?: string | undefined;
|
|
268
|
+
ChecksumXXHASH64?: string | undefined;
|
|
269
|
+
ChecksumXXHASH3?: string | undefined;
|
|
270
|
+
ChecksumXXHASH128?: string | undefined;
|
|
261
271
|
Key: string | undefined;
|
|
262
272
|
PartNumber: number | undefined;
|
|
263
273
|
UploadId: string | undefined;
|
|
@@ -275,6 +285,11 @@ export interface CopyPartResult {
|
|
|
275
285
|
ChecksumCRC64NVME?: string | undefined;
|
|
276
286
|
ChecksumSHA1?: string | undefined;
|
|
277
287
|
ChecksumSHA256?: string | undefined;
|
|
288
|
+
ChecksumSHA512?: string | undefined;
|
|
289
|
+
ChecksumMD5?: string | undefined;
|
|
290
|
+
ChecksumXXHASH64?: string | undefined;
|
|
291
|
+
ChecksumXXHASH3?: string | undefined;
|
|
292
|
+
ChecksumXXHASH128?: string | undefined;
|
|
278
293
|
}
|
|
279
294
|
export interface UploadPartCopyOutput {
|
|
280
295
|
CopySourceVersionId?: string | undefined;
|
|
@@ -327,6 +342,11 @@ export interface WriteGetObjectResponseRequest {
|
|
|
327
342
|
ChecksumCRC64NVME?: string | undefined;
|
|
328
343
|
ChecksumSHA1?: string | undefined;
|
|
329
344
|
ChecksumSHA256?: string | undefined;
|
|
345
|
+
ChecksumSHA512?: string | undefined;
|
|
346
|
+
ChecksumMD5?: string | undefined;
|
|
347
|
+
ChecksumXXHASH64?: string | undefined;
|
|
348
|
+
ChecksumXXHASH3?: string | undefined;
|
|
349
|
+
ChecksumXXHASH128?: string | undefined;
|
|
330
350
|
DeleteMarker?: boolean | undefined;
|
|
331
351
|
ETag?: string | undefined;
|
|
332
352
|
Expires?: Date | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-s3",
|
|
3
3
|
"description": "AWS SDK for JavaScript S3 Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.1035.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-s3",
|
|
@@ -30,26 +30,26 @@
|
|
|
30
30
|
"@aws-crypto/sha1-browser": "5.2.0",
|
|
31
31
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
32
32
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
33
|
-
"@aws-sdk/core": "^3.974.
|
|
34
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
33
|
+
"@aws-sdk/core": "^3.974.4",
|
|
34
|
+
"@aws-sdk/credential-provider-node": "^3.972.35",
|
|
35
35
|
"@aws-sdk/middleware-bucket-endpoint": "^3.972.10",
|
|
36
36
|
"@aws-sdk/middleware-expect-continue": "^3.972.10",
|
|
37
|
-
"@aws-sdk/middleware-flexible-checksums": "^3.974.
|
|
37
|
+
"@aws-sdk/middleware-flexible-checksums": "^3.974.12",
|
|
38
38
|
"@aws-sdk/middleware-host-header": "^3.972.10",
|
|
39
39
|
"@aws-sdk/middleware-location-constraint": "^3.972.10",
|
|
40
40
|
"@aws-sdk/middleware-logger": "^3.972.10",
|
|
41
41
|
"@aws-sdk/middleware-recursion-detection": "^3.972.11",
|
|
42
|
-
"@aws-sdk/middleware-sdk-s3": "^3.972.
|
|
42
|
+
"@aws-sdk/middleware-sdk-s3": "^3.972.33",
|
|
43
43
|
"@aws-sdk/middleware-ssec": "^3.972.10",
|
|
44
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
45
|
-
"@aws-sdk/region-config-resolver": "^3.972.
|
|
46
|
-
"@aws-sdk/signature-v4-multi-region": "^3.996.
|
|
44
|
+
"@aws-sdk/middleware-user-agent": "^3.972.34",
|
|
45
|
+
"@aws-sdk/region-config-resolver": "^3.972.13",
|
|
46
|
+
"@aws-sdk/signature-v4-multi-region": "^3.996.21",
|
|
47
47
|
"@aws-sdk/types": "^3.973.8",
|
|
48
|
-
"@aws-sdk/util-endpoints": "^3.996.
|
|
48
|
+
"@aws-sdk/util-endpoints": "^3.996.8",
|
|
49
49
|
"@aws-sdk/util-user-agent-browser": "^3.972.10",
|
|
50
|
-
"@aws-sdk/util-user-agent-node": "^3.973.
|
|
51
|
-
"@smithy/config-resolver": "^4.4.
|
|
52
|
-
"@smithy/core": "^3.23.
|
|
50
|
+
"@aws-sdk/util-user-agent-node": "^3.973.20",
|
|
51
|
+
"@smithy/config-resolver": "^4.4.17",
|
|
52
|
+
"@smithy/core": "^3.23.16",
|
|
53
53
|
"@smithy/eventstream-serde-browser": "^4.2.14",
|
|
54
54
|
"@smithy/eventstream-serde-config-resolver": "^4.3.14",
|
|
55
55
|
"@smithy/eventstream-serde-node": "^4.2.14",
|
|
@@ -60,32 +60,32 @@
|
|
|
60
60
|
"@smithy/invalid-dependency": "^4.2.14",
|
|
61
61
|
"@smithy/md5-js": "^4.2.14",
|
|
62
62
|
"@smithy/middleware-content-length": "^4.2.14",
|
|
63
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
64
|
-
"@smithy/middleware-retry": "^4.5.
|
|
65
|
-
"@smithy/middleware-serde": "^4.2.
|
|
63
|
+
"@smithy/middleware-endpoint": "^4.4.31",
|
|
64
|
+
"@smithy/middleware-retry": "^4.5.4",
|
|
65
|
+
"@smithy/middleware-serde": "^4.2.19",
|
|
66
66
|
"@smithy/middleware-stack": "^4.2.14",
|
|
67
67
|
"@smithy/node-config-provider": "^4.3.14",
|
|
68
|
-
"@smithy/node-http-handler": "^4.
|
|
68
|
+
"@smithy/node-http-handler": "^4.6.0",
|
|
69
69
|
"@smithy/protocol-http": "^5.3.14",
|
|
70
|
-
"@smithy/smithy-client": "^4.12.
|
|
70
|
+
"@smithy/smithy-client": "^4.12.12",
|
|
71
71
|
"@smithy/types": "^4.14.1",
|
|
72
72
|
"@smithy/url-parser": "^4.2.14",
|
|
73
73
|
"@smithy/util-base64": "^4.3.2",
|
|
74
74
|
"@smithy/util-body-length-browser": "^4.2.2",
|
|
75
75
|
"@smithy/util-body-length-node": "^4.2.3",
|
|
76
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
77
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
78
|
-
"@smithy/util-endpoints": "^3.4.
|
|
76
|
+
"@smithy/util-defaults-mode-browser": "^4.3.48",
|
|
77
|
+
"@smithy/util-defaults-mode-node": "^4.2.53",
|
|
78
|
+
"@smithy/util-endpoints": "^3.4.2",
|
|
79
79
|
"@smithy/util-middleware": "^4.2.14",
|
|
80
|
-
"@smithy/util-retry": "^4.3.
|
|
81
|
-
"@smithy/util-stream": "^4.5.
|
|
80
|
+
"@smithy/util-retry": "^4.3.3",
|
|
81
|
+
"@smithy/util-stream": "^4.5.24",
|
|
82
82
|
"@smithy/util-utf8": "^4.2.2",
|
|
83
83
|
"@smithy/util-waiter": "^4.2.16",
|
|
84
84
|
"tslib": "^2.6.2"
|
|
85
85
|
},
|
|
86
86
|
"devDependencies": {
|
|
87
|
-
"@aws-sdk/signature-v4-crt": "3.
|
|
88
|
-
"@smithy/snapshot-testing": "^2.0.
|
|
87
|
+
"@aws-sdk/signature-v4-crt": "3.1035.0",
|
|
88
|
+
"@smithy/snapshot-testing": "^2.0.7",
|
|
89
89
|
"@tsconfig/node20": "20.1.8",
|
|
90
90
|
"@types/node": "^20.14.8",
|
|
91
91
|
"concurrently": "7.0.0",
|