2023-11-30 08:25:05 +00:00
|
|
|
package middleware
|
|
|
|
|
|
|
|
const (
|
|
|
|
ListBucketsOperation = "ListBuckets"
|
|
|
|
|
|
|
|
// bucket operations.
|
|
|
|
|
2024-05-31 13:55:37 +00:00
|
|
|
OptionsBucketOperation = "OptionsBucket"
|
2023-11-30 08:25:05 +00:00
|
|
|
HeadBucketOperation = "HeadBucket"
|
|
|
|
ListMultipartUploadsOperation = "ListMultipartUploads"
|
|
|
|
GetBucketLocationOperation = "GetBucketLocation"
|
2024-03-05 06:56:12 +00:00
|
|
|
GetBucketPolicyStatusOperation = "GetBucketPolicyStatus"
|
2023-11-30 08:25:05 +00:00
|
|
|
GetBucketPolicyOperation = "GetBucketPolicy"
|
|
|
|
GetBucketLifecycleOperation = "GetBucketLifecycle"
|
|
|
|
GetBucketEncryptionOperation = "GetBucketEncryption"
|
|
|
|
GetBucketCorsOperation = "GetBucketCors"
|
|
|
|
GetBucketACLOperation = "GetBucketACL"
|
|
|
|
GetBucketWebsiteOperation = "GetBucketWebsite"
|
|
|
|
GetBucketAccelerateOperation = "GetBucketAccelerate"
|
|
|
|
GetBucketRequestPaymentOperation = "GetBucketRequestPayment"
|
|
|
|
GetBucketLoggingOperation = "GetBucketLogging"
|
|
|
|
GetBucketReplicationOperation = "GetBucketReplication"
|
|
|
|
GetBucketTaggingOperation = "GetBucketTagging"
|
|
|
|
GetBucketObjectLockConfigOperation = "GetBucketObjectLockConfig"
|
|
|
|
GetBucketVersioningOperation = "GetBucketVersioning"
|
|
|
|
GetBucketNotificationOperation = "GetBucketNotification"
|
|
|
|
ListenBucketNotificationOperation = "ListenBucketNotification"
|
|
|
|
ListBucketObjectVersionsOperation = "ListBucketObjectVersions"
|
|
|
|
ListObjectsV2MOperation = "ListObjectsV2M"
|
|
|
|
ListObjectsV2Operation = "ListObjectsV2"
|
|
|
|
ListObjectsV1Operation = "ListObjectsV1"
|
|
|
|
PutBucketCorsOperation = "PutBucketCors"
|
|
|
|
PutBucketACLOperation = "PutBucketACL"
|
|
|
|
PutBucketLifecycleOperation = "PutBucketLifecycle"
|
|
|
|
PutBucketEncryptionOperation = "PutBucketEncryption"
|
|
|
|
PutBucketPolicyOperation = "PutBucketPolicy"
|
|
|
|
PutBucketObjectLockConfigOperation = "PutBucketObjectLockConfig"
|
|
|
|
PutBucketTaggingOperation = "PutBucketTagging"
|
|
|
|
PutBucketVersioningOperation = "PutBucketVersioning"
|
|
|
|
PutBucketNotificationOperation = "PutBucketNotification"
|
|
|
|
CreateBucketOperation = "CreateBucket"
|
|
|
|
DeleteMultipleObjectsOperation = "DeleteMultipleObjects"
|
|
|
|
PostObjectOperation = "PostObject"
|
|
|
|
DeleteBucketCorsOperation = "DeleteBucketCors"
|
|
|
|
DeleteBucketWebsiteOperation = "DeleteBucketWebsite"
|
|
|
|
DeleteBucketTaggingOperation = "DeleteBucketTagging"
|
|
|
|
DeleteBucketPolicyOperation = "DeleteBucketPolicy"
|
|
|
|
DeleteBucketLifecycleOperation = "DeleteBucketLifecycle"
|
|
|
|
DeleteBucketEncryptionOperation = "DeleteBucketEncryption"
|
|
|
|
DeleteBucketOperation = "DeleteBucket"
|
|
|
|
|
|
|
|
// object operations.
|
|
|
|
|
2024-05-31 13:55:37 +00:00
|
|
|
OptionsObjectOperation = "OptionsObject"
|
2023-11-30 08:25:05 +00:00
|
|
|
HeadObjectOperation = "HeadObject"
|
|
|
|
ListPartsOperation = "ListParts"
|
|
|
|
GetObjectACLOperation = "GetObjectACL"
|
|
|
|
GetObjectTaggingOperation = "GetObjectTagging"
|
|
|
|
GetObjectRetentionOperation = "GetObjectRetention"
|
|
|
|
GetObjectLegalHoldOperation = "GetObjectLegalHold"
|
|
|
|
GetObjectAttributesOperation = "GetObjectAttributes"
|
|
|
|
GetObjectOperation = "GetObject"
|
|
|
|
UploadPartCopyOperation = "UploadPartCopy"
|
|
|
|
UploadPartOperation = "UploadPart"
|
|
|
|
PutObjectACLOperation = "PutObjectACL"
|
|
|
|
PutObjectTaggingOperation = "PutObjectTagging"
|
|
|
|
CopyObjectOperation = "CopyObject"
|
|
|
|
PutObjectRetentionOperation = "PutObjectRetention"
|
|
|
|
PutObjectLegalHoldOperation = "PutObjectLegalHold"
|
|
|
|
PutObjectOperation = "PutObject"
|
|
|
|
CompleteMultipartUploadOperation = "CompleteMultipartUpload"
|
|
|
|
CreateMultipartUploadOperation = "CreateMultipartUpload"
|
|
|
|
SelectObjectContentOperation = "SelectObjectContent"
|
|
|
|
AbortMultipartUploadOperation = "AbortMultipartUpload"
|
|
|
|
DeleteObjectTaggingOperation = "DeleteObjectTagging"
|
|
|
|
DeleteObjectOperation = "DeleteObject"
|
2024-08-13 15:21:16 +00:00
|
|
|
PatchObjectOperation = "PatchObject"
|
2023-11-30 08:25:05 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
UploadsQuery = "uploads"
|
|
|
|
LocationQuery = "location"
|
2024-03-05 06:56:12 +00:00
|
|
|
PolicyStatusQuery = "policyStatus"
|
2023-11-30 08:25:05 +00:00
|
|
|
PolicyQuery = "policy"
|
|
|
|
LifecycleQuery = "lifecycle"
|
|
|
|
EncryptionQuery = "encryption"
|
|
|
|
CorsQuery = "cors"
|
|
|
|
ACLQuery = "acl"
|
|
|
|
WebsiteQuery = "website"
|
|
|
|
AccelerateQuery = "accelerate"
|
|
|
|
RequestPaymentQuery = "requestPayment"
|
|
|
|
LoggingQuery = "logging"
|
|
|
|
ReplicationQuery = "replication"
|
|
|
|
TaggingQuery = "tagging"
|
|
|
|
ObjectLockQuery = "object-lock"
|
|
|
|
VersioningQuery = "versioning"
|
|
|
|
NotificationQuery = "notification"
|
|
|
|
EventsQuery = "events"
|
|
|
|
VersionsQuery = "versions"
|
|
|
|
ListTypeQuery = "list-type"
|
|
|
|
MetadataQuery = "metadata"
|
|
|
|
DeleteQuery = "delete"
|
|
|
|
UploadIDQuery = "uploadId"
|
|
|
|
RetentionQuery = "retention"
|
|
|
|
LegalQuery = "legal"
|
|
|
|
AttributesQuery = "attributes"
|
|
|
|
PartNumberQuery = "partNumber"
|
|
|
|
LegalHoldQuery = "legal-hold"
|
|
|
|
)
|