@aws-sdk/client-s3 3.36.1 → 3.40.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 +42 -0
- package/dist-cjs/commands/index.js +95 -0
- package/dist-cjs/endpoints.js +392 -143
- package/dist-cjs/index.js +5 -101
- package/dist-cjs/pagination/index.js +6 -0
- package/dist-cjs/runtimeConfig.browser.js +6 -3
- package/dist-cjs/runtimeConfig.js +5 -3
- package/dist-cjs/waiters/index.js +7 -0
- package/dist-es/commands/index.js +92 -0
- package/dist-es/endpoints.js +392 -143
- package/dist-es/index.js +5 -101
- package/dist-es/pagination/index.js +3 -0
- package/dist-es/runtimeConfig.browser.js +3 -2
- package/dist-es/runtimeConfig.js +3 -3
- package/dist-es/waiters/index.js +4 -0
- package/dist-types/S3Client.d.ts +8 -0
- package/dist-types/commands/index.d.ts +92 -0
- package/dist-types/index.d.ts +5 -101
- package/dist-types/pagination/index.d.ts +3 -0
- package/dist-types/runtimeConfig.browser.d.ts +2 -1
- package/dist-types/runtimeConfig.d.ts +2 -1
- package/dist-types/runtimeConfig.native.d.ts +2 -1
- package/dist-types/ts3.4/S3Client.d.ts +4 -0
- package/dist-types/ts3.4/commands/index.d.ts +92 -0
- package/dist-types/ts3.4/index.d.ts +5 -101
- package/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +2 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +2 -1
- package/dist-types/ts3.4/waiters/index.d.ts +4 -0
- package/dist-types/waiters/index.d.ts +4 -0
- package/package.json +46 -46
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,48 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.40.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.39.0...v3.40.0) (2021-11-05)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **clients:** populate variants in endpoints hashes ([#2974](https://github.com/aws/aws-sdk-js-v3/issues/2974)) ([0dd68ef](https://github.com/aws/aws-sdk-js-v3/commit/0dd68ef8b04ea0e96e43b05a9a10221e433fdf86))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
# [3.39.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.38.0...v3.39.0) (2021-10-29)
|
|
18
|
+
|
|
19
|
+
**Note:** Version bump only for package @aws-sdk/client-s3
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
# [3.38.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.37.0...v3.38.0) (2021-10-22)
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
### Features
|
|
29
|
+
|
|
30
|
+
* **client-documentation-generator:** rename package ([#2916](https://github.com/aws/aws-sdk-js-v3/issues/2916)) ([1a80bfd](https://github.com/aws/aws-sdk-js-v3/commit/1a80bfd2dfc583001ddb4a21b6432eaaad699aa7))
|
|
31
|
+
* **clients:** export folder from index.ts ([#2912](https://github.com/aws/aws-sdk-js-v3/issues/2912)) ([183b46d](https://github.com/aws/aws-sdk-js-v3/commit/183b46dde7f5613128038bf1c076f3c0b693203b))
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
# [3.37.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.36.1...v3.37.0) (2021-10-15)
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
### Features
|
|
41
|
+
|
|
42
|
+
* **clients:** update clients as of 10/15/2021 ([#2902](https://github.com/aws/aws-sdk-js-v3/issues/2902)) ([2730b54](https://github.com/aws/aws-sdk-js-v3/commit/2730b5424377944a5a2ad5e1ad7d3ca4135dae1c))
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
|
|
6
48
|
## [3.36.1](https://github.com/aws/aws-sdk-js-v3/compare/v3.36.0...v3.36.1) (2021-10-12)
|
|
7
49
|
|
|
8
50
|
|
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const tslib_1 = require("tslib");
|
|
4
|
+
tslib_1.__exportStar(require("./AbortMultipartUploadCommand"), exports);
|
|
5
|
+
tslib_1.__exportStar(require("./CompleteMultipartUploadCommand"), exports);
|
|
6
|
+
tslib_1.__exportStar(require("./CopyObjectCommand"), exports);
|
|
7
|
+
tslib_1.__exportStar(require("./CreateBucketCommand"), exports);
|
|
8
|
+
tslib_1.__exportStar(require("./CreateMultipartUploadCommand"), exports);
|
|
9
|
+
tslib_1.__exportStar(require("./DeleteBucketAnalyticsConfigurationCommand"), exports);
|
|
10
|
+
tslib_1.__exportStar(require("./DeleteBucketCommand"), exports);
|
|
11
|
+
tslib_1.__exportStar(require("./DeleteBucketCorsCommand"), exports);
|
|
12
|
+
tslib_1.__exportStar(require("./DeleteBucketEncryptionCommand"), exports);
|
|
13
|
+
tslib_1.__exportStar(require("./DeleteBucketIntelligentTieringConfigurationCommand"), exports);
|
|
14
|
+
tslib_1.__exportStar(require("./DeleteBucketInventoryConfigurationCommand"), exports);
|
|
15
|
+
tslib_1.__exportStar(require("./DeleteBucketLifecycleCommand"), exports);
|
|
16
|
+
tslib_1.__exportStar(require("./DeleteBucketMetricsConfigurationCommand"), exports);
|
|
17
|
+
tslib_1.__exportStar(require("./DeleteBucketOwnershipControlsCommand"), exports);
|
|
18
|
+
tslib_1.__exportStar(require("./DeleteBucketPolicyCommand"), exports);
|
|
19
|
+
tslib_1.__exportStar(require("./DeleteBucketReplicationCommand"), exports);
|
|
20
|
+
tslib_1.__exportStar(require("./DeleteBucketTaggingCommand"), exports);
|
|
21
|
+
tslib_1.__exportStar(require("./DeleteBucketWebsiteCommand"), exports);
|
|
22
|
+
tslib_1.__exportStar(require("./DeleteObjectCommand"), exports);
|
|
23
|
+
tslib_1.__exportStar(require("./DeleteObjectTaggingCommand"), exports);
|
|
24
|
+
tslib_1.__exportStar(require("./DeleteObjectsCommand"), exports);
|
|
25
|
+
tslib_1.__exportStar(require("./DeletePublicAccessBlockCommand"), exports);
|
|
26
|
+
tslib_1.__exportStar(require("./GetBucketAccelerateConfigurationCommand"), exports);
|
|
27
|
+
tslib_1.__exportStar(require("./GetBucketAclCommand"), exports);
|
|
28
|
+
tslib_1.__exportStar(require("./GetBucketAnalyticsConfigurationCommand"), exports);
|
|
29
|
+
tslib_1.__exportStar(require("./GetBucketCorsCommand"), exports);
|
|
30
|
+
tslib_1.__exportStar(require("./GetBucketEncryptionCommand"), exports);
|
|
31
|
+
tslib_1.__exportStar(require("./GetBucketIntelligentTieringConfigurationCommand"), exports);
|
|
32
|
+
tslib_1.__exportStar(require("./GetBucketInventoryConfigurationCommand"), exports);
|
|
33
|
+
tslib_1.__exportStar(require("./GetBucketLifecycleConfigurationCommand"), exports);
|
|
34
|
+
tslib_1.__exportStar(require("./GetBucketLocationCommand"), exports);
|
|
35
|
+
tslib_1.__exportStar(require("./GetBucketLoggingCommand"), exports);
|
|
36
|
+
tslib_1.__exportStar(require("./GetBucketMetricsConfigurationCommand"), exports);
|
|
37
|
+
tslib_1.__exportStar(require("./GetBucketNotificationConfigurationCommand"), exports);
|
|
38
|
+
tslib_1.__exportStar(require("./GetBucketOwnershipControlsCommand"), exports);
|
|
39
|
+
tslib_1.__exportStar(require("./GetBucketPolicyCommand"), exports);
|
|
40
|
+
tslib_1.__exportStar(require("./GetBucketPolicyStatusCommand"), exports);
|
|
41
|
+
tslib_1.__exportStar(require("./GetBucketReplicationCommand"), exports);
|
|
42
|
+
tslib_1.__exportStar(require("./GetBucketRequestPaymentCommand"), exports);
|
|
43
|
+
tslib_1.__exportStar(require("./GetBucketTaggingCommand"), exports);
|
|
44
|
+
tslib_1.__exportStar(require("./GetBucketVersioningCommand"), exports);
|
|
45
|
+
tslib_1.__exportStar(require("./GetBucketWebsiteCommand"), exports);
|
|
46
|
+
tslib_1.__exportStar(require("./GetObjectAclCommand"), exports);
|
|
47
|
+
tslib_1.__exportStar(require("./GetObjectCommand"), exports);
|
|
48
|
+
tslib_1.__exportStar(require("./GetObjectLegalHoldCommand"), exports);
|
|
49
|
+
tslib_1.__exportStar(require("./GetObjectLockConfigurationCommand"), exports);
|
|
50
|
+
tslib_1.__exportStar(require("./GetObjectRetentionCommand"), exports);
|
|
51
|
+
tslib_1.__exportStar(require("./GetObjectTaggingCommand"), exports);
|
|
52
|
+
tslib_1.__exportStar(require("./GetObjectTorrentCommand"), exports);
|
|
53
|
+
tslib_1.__exportStar(require("./GetPublicAccessBlockCommand"), exports);
|
|
54
|
+
tslib_1.__exportStar(require("./HeadBucketCommand"), exports);
|
|
55
|
+
tslib_1.__exportStar(require("./HeadObjectCommand"), exports);
|
|
56
|
+
tslib_1.__exportStar(require("./ListBucketAnalyticsConfigurationsCommand"), exports);
|
|
57
|
+
tslib_1.__exportStar(require("./ListBucketIntelligentTieringConfigurationsCommand"), exports);
|
|
58
|
+
tslib_1.__exportStar(require("./ListBucketInventoryConfigurationsCommand"), exports);
|
|
59
|
+
tslib_1.__exportStar(require("./ListBucketMetricsConfigurationsCommand"), exports);
|
|
60
|
+
tslib_1.__exportStar(require("./ListBucketsCommand"), exports);
|
|
61
|
+
tslib_1.__exportStar(require("./ListMultipartUploadsCommand"), exports);
|
|
62
|
+
tslib_1.__exportStar(require("./ListObjectVersionsCommand"), exports);
|
|
63
|
+
tslib_1.__exportStar(require("./ListObjectsCommand"), exports);
|
|
64
|
+
tslib_1.__exportStar(require("./ListObjectsV2Command"), exports);
|
|
65
|
+
tslib_1.__exportStar(require("./ListPartsCommand"), exports);
|
|
66
|
+
tslib_1.__exportStar(require("./PutBucketAccelerateConfigurationCommand"), exports);
|
|
67
|
+
tslib_1.__exportStar(require("./PutBucketAclCommand"), exports);
|
|
68
|
+
tslib_1.__exportStar(require("./PutBucketAnalyticsConfigurationCommand"), exports);
|
|
69
|
+
tslib_1.__exportStar(require("./PutBucketCorsCommand"), exports);
|
|
70
|
+
tslib_1.__exportStar(require("./PutBucketEncryptionCommand"), exports);
|
|
71
|
+
tslib_1.__exportStar(require("./PutBucketIntelligentTieringConfigurationCommand"), exports);
|
|
72
|
+
tslib_1.__exportStar(require("./PutBucketInventoryConfigurationCommand"), exports);
|
|
73
|
+
tslib_1.__exportStar(require("./PutBucketLifecycleConfigurationCommand"), exports);
|
|
74
|
+
tslib_1.__exportStar(require("./PutBucketLoggingCommand"), exports);
|
|
75
|
+
tslib_1.__exportStar(require("./PutBucketMetricsConfigurationCommand"), exports);
|
|
76
|
+
tslib_1.__exportStar(require("./PutBucketNotificationConfigurationCommand"), exports);
|
|
77
|
+
tslib_1.__exportStar(require("./PutBucketOwnershipControlsCommand"), exports);
|
|
78
|
+
tslib_1.__exportStar(require("./PutBucketPolicyCommand"), exports);
|
|
79
|
+
tslib_1.__exportStar(require("./PutBucketReplicationCommand"), exports);
|
|
80
|
+
tslib_1.__exportStar(require("./PutBucketRequestPaymentCommand"), exports);
|
|
81
|
+
tslib_1.__exportStar(require("./PutBucketTaggingCommand"), exports);
|
|
82
|
+
tslib_1.__exportStar(require("./PutBucketVersioningCommand"), exports);
|
|
83
|
+
tslib_1.__exportStar(require("./PutBucketWebsiteCommand"), exports);
|
|
84
|
+
tslib_1.__exportStar(require("./PutObjectAclCommand"), exports);
|
|
85
|
+
tslib_1.__exportStar(require("./PutObjectCommand"), exports);
|
|
86
|
+
tslib_1.__exportStar(require("./PutObjectLegalHoldCommand"), exports);
|
|
87
|
+
tslib_1.__exportStar(require("./PutObjectLockConfigurationCommand"), exports);
|
|
88
|
+
tslib_1.__exportStar(require("./PutObjectRetentionCommand"), exports);
|
|
89
|
+
tslib_1.__exportStar(require("./PutObjectTaggingCommand"), exports);
|
|
90
|
+
tslib_1.__exportStar(require("./PutPublicAccessBlockCommand"), exports);
|
|
91
|
+
tslib_1.__exportStar(require("./RestoreObjectCommand"), exports);
|
|
92
|
+
tslib_1.__exportStar(require("./SelectObjectContentCommand"), exports);
|
|
93
|
+
tslib_1.__exportStar(require("./UploadPartCommand"), exports);
|
|
94
|
+
tslib_1.__exportStar(require("./UploadPartCopyCommand"), exports);
|
|
95
|
+
tslib_1.__exportStar(require("./WriteGetObjectResponseCommand"), exports);
|