aws-sdk 2.1000.0 → 2.1001.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/CHANGELOG.md +10 -1
- package/README.md +1 -1
- package/apis/backup-2018-11-15.min.json +54 -42
- package/apis/ec2-2016-11-15.min.json +1212 -879
- package/apis/ec2-2016-11-15.paginators.json +6 -0
- package/apis/ec2-2016-11-15.waiters2.json +6 -0
- package/apis/glue-2017-03-31.min.json +3 -0
- package/apis/location-2020-11-19.min.json +9 -6
- package/apis/workmail-2017-10-01.min.json +67 -27
- package/clients/applicationautoscaling.d.ts +38 -38
- package/clients/backup.d.ts +22 -10
- package/clients/ec2.d.ts +377 -2
- package/clients/glue.d.ts +7 -0
- package/clients/location.d.ts +37 -24
- package/clients/workmail.d.ts +41 -0
- package/dist/aws-sdk-core-react-native.js +1 -2
- package/dist/aws-sdk-react-native.js +8 -24
- package/dist/aws-sdk.js +1236 -904
- package/dist/aws-sdk.min.js +66 -66
- package/lib/core.js +1 -1
- package/lib/event_listeners.js +0 -1
- package/lib/services/s3.js +0 -15
- package/package.json +1 -1
- package/scripts/region-checker/allowlist.js +7 -7
package/lib/core.js
CHANGED
package/lib/event_listeners.js
CHANGED
|
@@ -147,7 +147,6 @@ AWS.EventListeners = {
|
|
|
147
147
|
operation.httpChecksumRequired &&
|
|
148
148
|
req.service.config.computeChecksums &&
|
|
149
149
|
isNonStreamingPayload &&
|
|
150
|
-
req.service.getSignerClass(req) === AWS.Signers.V4 &&
|
|
151
150
|
!headers['Content-MD5']
|
|
152
151
|
) {
|
|
153
152
|
var md5 = AWS.util.crypto.md5(body, 'base64');
|
package/lib/services/s3.js
CHANGED
|
@@ -430,21 +430,6 @@ AWS.util.update(AWS.S3.prototype, {
|
|
|
430
430
|
}
|
|
431
431
|
},
|
|
432
432
|
|
|
433
|
-
/**
|
|
434
|
-
* @api private
|
|
435
|
-
*/
|
|
436
|
-
computableChecksumOperations: {
|
|
437
|
-
putBucketCors: true,
|
|
438
|
-
putBucketLifecycle: true,
|
|
439
|
-
putBucketLifecycleConfiguration: true,
|
|
440
|
-
putBucketTagging: true,
|
|
441
|
-
deleteObjects: true,
|
|
442
|
-
putBucketReplication: true,
|
|
443
|
-
putObjectLegalHold: true,
|
|
444
|
-
putObjectRetention: true,
|
|
445
|
-
putObjectLockConfiguration: true
|
|
446
|
-
},
|
|
447
|
-
|
|
448
433
|
/**
|
|
449
434
|
* Checks whether checksums should be computed for the request if it's not
|
|
450
435
|
* already set by {AWS.EventListeners.Core.COMPUTE_CHECKSUM}. It depends on
|
package/package.json
CHANGED