Skip to content

Commit 4710346

Browse files
committed
Merge branch 'bugfix/UTAPI-114/add_missing_lifecycle_ops' into q/7.70
2 parents 1b05e85 + ef31052 commit 4710346

File tree

3 files changed

+15
-1
lines changed

3 files changed

+15
-1
lines changed

libV2/constants.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ const constants = {
1414
envNamespace: 'UTAPI',
1515
operations: [
1616
'abortMultipartUpload',
17+
'bucketDeleteQuota',
1718
'completeMultipartUpload',
1819
'copyObject',
1920
'createBucket',
@@ -33,6 +34,7 @@ const constants = {
3334
'getBucketLocation',
3435
'getBucketNotification',
3536
'getBucketObjectLock',
37+
'getBucketQuota',
3638
'getBucketReplication',
3739
'getBucketVersioning',
3840
'getBucketTagging',
@@ -46,8 +48,12 @@ const constants = {
4648
'headObject',
4749
'initiateMultipartUpload',
4850
'listBucket',
51+
'listLifecycleCurrents',
52+
'listLifecycleNonCurrents',
53+
'listLifecycleOrphanDeleteMarkers',
4954
'listMultipartUploadParts',
5055
'listMultipartUploads',
56+
'metadataSearch',
5157
'multiObjectDelete',
5258
'putBucketAcl',
5359
'putBucketCors',
@@ -68,6 +74,8 @@ const constants = {
6874
'replicateDelete',
6975
'replicateObject',
7076
'replicateTags',
77+
'restoreObject',
78+
'updateBucketQuota',
7179
'uploadPart',
7280
'uploadPartCopy',
7381
],

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"engines": {
44
"node": ">=16"
55
},
6-
"version": "7.70.8",
6+
"version": "7.70.9",
77
"description": "API for tracking resource utilization and reporting metrics",
88
"main": "index.js",
99
"repository": {

tests/utils/v2Data/events.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,7 @@ const eventTemplateToOperation = {
9191

9292
bucket: [
9393
'abortMultipartUpload',
94+
'bucketDeleteQuota',
9495
'completeMultipartUpload',
9596
'initiateMultipartUpload',
9697
'listMultipartUploadParts',
@@ -104,14 +105,19 @@ const eventTemplateToOperation = {
104105
'getBucketCors',
105106
'getBucketLocation',
106107
'getBucketObjectLock',
108+
'getBucketQuota',
107109
'getBucketReplication',
108110
'getBucketVersioning',
109111
'getBucketWebsite',
110112
'headBucket',
111113
'listBucket',
114+
'listLifecycleCurrents',
115+
'listLifecycleNonCurrents',
116+
'listLifecycleOrphanDeleteMarkers',
112117
'putBucketAcl',
113118
'putBucketCors',
114119
'putBucketObjectLock',
120+
'updateBucketQuota',
115121
'putBucketReplication',
116122
'putBucketVersioning',
117123
'putBucketWebsite',

0 commit comments

Comments
 (0)