Compare commits

..

No commits in common. "a2648e4c16cb59dd272073fe333d9d3d5e45070e" and "3fd4f641767136492a7c845fe8465df511ae234d" have entirely different histories.

5 changed files with 1 additions and 8 deletions

View File

@ -156,10 +156,6 @@
"code": 400, "code": 400,
"description": "The target bucket for logging does not exist, is not owned by you, or does not have the appropriate grants for the log-delivery group." "description": "The target bucket for logging does not exist, is not owned by you, or does not have the appropriate grants for the log-delivery group."
}, },
"InvalidTag": {
"code": 400,
"description": "The Tag you have provided is invalid"
},
"InvalidToken": { "InvalidToken": {
"code": 400, "code": 400,
"description": "The provided token is malformed or otherwise invalid." "description": "The provided token is malformed or otherwise invalid."

1
index.d.ts vendored
View File

@ -49,7 +49,6 @@ declare module "arsenal" {
'InvalidSOAPRequest'?: boolean; 'InvalidSOAPRequest'?: boolean;
'InvalidStorageClass'?: boolean; 'InvalidStorageClass'?: boolean;
'InvalidTargetBucketForLogging'?: boolean; 'InvalidTargetBucketForLogging'?: boolean;
'InvalidTag'?: boolean;
'InvalidToken'?: boolean; 'InvalidToken'?: boolean;
'InvalidURI'?: boolean; 'InvalidURI'?: boolean;
'KeyTooLong'?: boolean; 'KeyTooLong'?: boolean;

View File

@ -35,7 +35,6 @@ function getCanonicalizedResource(request) {
'partNumber', 'partNumber',
'policy', 'policy',
'requestPayment', 'requestPayment',
'tagging',
'torrent', 'torrent',
'uploadId', 'uploadId',
'uploads', 'uploads',

View File

@ -20,7 +20,6 @@ const _actionMap = {
bucketPut: 's3:CreateBucket', bucketPut: 's3:CreateBucket',
bucketPutACL: 's3:PutBucketAcl', bucketPutACL: 's3:PutBucketAcl',
bucketPutCors: 's3:PutBucketCORS', bucketPutCors: 's3:PutBucketCORS',
bucketPutTagging: 's3:PutBucketTagging',
// for bucketDeleteCors need s3:PutBucketCORS permission // for bucketDeleteCors need s3:PutBucketCORS permission
// see http://docs.aws.amazon.com/AmazonS3/latest/API/ // see http://docs.aws.amazon.com/AmazonS3/latest/API/
// RESTBucketDELETEcors.html // RESTBucketDELETEcors.html

View File

@ -3,7 +3,7 @@
"engines": { "engines": {
"node": "6.9.5" "node": "6.9.5"
}, },
"version": "7.0.0-putbuckettagging", "version": "7.0.0",
"description": "Common utilities for the S3 project components", "description": "Common utilities for the S3 project components",
"main": "index.js", "main": "index.js",
"repository": { "repository": {