Object Storage API, gRPC: BucketService.Update
- gRPC request
- UpdateBucketRequest
- AnonymousAccessFlags
- CorsRule
- WebsiteSettings
- Scheme
- RoutingRule
- Condition
- Redirect
- LifecycleRule
- RuleFilter
- Tag
- And
- Expiration
- Transition
- AfterDays
- NoncurrentExpiration
- NoncurrentTransition
- NoncurrentDeleteMarkers
- ACL
- Grant
- ObjectLock
- DefaultRetention
- Encryption
- EncryptionRule
- operation.Operation
- UpdateBucketMetadata
- Bucket
- AnonymousAccessFlags
- ACL
- Grant
- CorsRule
- WebsiteSettings
- Scheme
- RoutingRule
- Condition
- Redirect
- LifecycleRule
- RuleFilter
- Tag
- And
- Expiration
- Transition
- AfterDays
- NoncurrentExpiration
- NoncurrentTransition
- NoncurrentDeleteMarkers
- ObjectLock
- DefaultRetention
- Encryption
- EncryptionRule
Updates the specified bucket.
In most cases, storage.editor
role (see documentation) should be enough
to update a bucket, subject to its policy.
gRPC request
rpc Update (UpdateBucketRequest) returns (operation.Operation)
UpdateBucketRequest
{
"name": "string",
"updateMask": "google.protobuf.FieldMask",
"anonymousAccessFlags": {
"read": "google.protobuf.BoolValue",
"list": "google.protobuf.BoolValue",
"configRead": "google.protobuf.BoolValue"
},
"defaultStorageClass": "string",
"maxSize": "int64",
"cors": [
{
"id": "string",
"allowedMethods": [
"Method"
],
"allowedHeaders": [
"string"
],
"allowedOrigins": [
"string"
],
"exposeHeaders": [
"string"
],
"maxAgeSeconds": "google.protobuf.Int64Value"
}
],
"websiteSettings": {
"index": "string",
"error": "string",
"redirectAllRequests": {
"protocol": "Protocol",
"hostname": "string"
},
"routingRules": [
{
"condition": {
"httpErrorCodeReturnedEquals": "string",
"keyPrefixEquals": "string"
},
"redirect": {
"hostname": "string",
"httpRedirectCode": "string",
"protocol": "Protocol",
"replaceKeyPrefixWith": "string",
"replaceKeyWith": "string"
}
}
]
},
"versioning": "Versioning",
"lifecycleRules": [
{
"id": "google.protobuf.StringValue",
"enabled": "bool",
"filter": {
"prefix": "string",
"objectSizeGreaterThan": "google.protobuf.Int64Value",
"objectSizeLessThan": "google.protobuf.Int64Value",
"tag": {
"key": "string",
"value": "string"
},
"andOperator": {
"prefix": "string",
"objectSizeGreaterThan": "google.protobuf.Int64Value",
"objectSizeLessThan": "google.protobuf.Int64Value",
"tag": [
{
"key": "string",
"value": "string"
}
]
}
},
"expiration": {
"date": "google.protobuf.Timestamp",
"days": "google.protobuf.Int64Value",
"expiredObjectDeleteMarker": "google.protobuf.BoolValue"
},
"transitions": [
{
"date": "google.protobuf.Timestamp",
"days": "google.protobuf.Int64Value",
"storageClass": "string"
}
],
"abortIncompleteMultipartUpload": {
"daysAfterExpiration": "google.protobuf.Int64Value"
},
"noncurrentExpiration": {
"noncurrentDays": "google.protobuf.Int64Value"
},
"noncurrentTransitions": [
{
"noncurrentDays": "google.protobuf.Int64Value",
"storageClass": "string"
}
],
"noncurrentDeleteMarkers": {
"noncurrentDays": "google.protobuf.Int64Value"
}
}
],
"policy": "google.protobuf.Struct",
"acl": {
"grants": [
{
"permission": "Permission",
"grantType": "GrantType",
"granteeId": "string"
}
]
},
"tags": [
{
"key": "string",
"value": "string"
}
],
"objectLock": {
"status": "ObjectLockStatus",
"defaultRetention": {
"mode": "Mode",
// Includes only one of the fields `days`, `years`
"days": "int64",
"years": "int64"
// end of the list of possible fields
}
},
"encryption": {
"rules": [
{
"kmsMasterKeyId": "string",
"sseAlgorithm": "string"
}
]
}
}
Field |
Description |
name |
string Required field. Name of the bucket to update. The name cannot be updated. To get the bucket name, make a BucketService.List request. |
updateMask |
Required field. Update mask that specifies which attributes of the bucket should be updated. |
anonymousAccessFlags |
Flags for configuring public (anonymous) access to the bucket's content and settings. |
defaultStorageClass |
string Default storage class for objects in the bucket. Supported classes are standard storage ( |
maxSize |
int64 Maximum size of the bucket, in bytes. |
cors[] |
List of rules for cross-domain requests to objects in the bucket (cross-origin resource sharing, CORS). |
websiteSettings |
Configuration for hosting a static website in the bucket. |
versioning |
enum Versioning Bucket versioning status.
|
lifecycleRules[] |
List of object lifecycle rules for the bucket. |
policy |
Bucket policies that set permissions for actions with the bucket, its objects, and groups of objects. |
acl |
Access control list (ACL) of the bucket. |
tags[] |
List of tags for the bucket. |
objectLock |
Configuration for object lock on the bucket. |
encryption |
Configuration for bucket's encryption |
AnonymousAccessFlags
Field |
Description |
read |
Specifies whether public (anonymous) access to read objects in the bucket is enabled. |
list |
Specifies whether public (anonymous) access to the list of objects in the bucket is enabled. |
configRead |
Specifies whether public (anonymous) access to read CORS, |
CorsRule
A CORS rule resource.
For details about the concept, see documentation.
Field |
Description |
id |
string ID of the CORS rule. |
allowedMethods[] |
enum Method List of HTTP methods allowed by the CORS rule. When a client sends a CORS-preflight
|
allowedHeaders[] |
string List of HTTP headers allowed by the CORS rule. When a client sends a CORS-preflight Each string in the list can contain at most one |
allowedOrigins[] |
string List of request origins allowed by the CORS rule. Each string in the list can contain at most one |
exposeHeaders[] |
string List of headers contained in responses to CORS requests that can be accessed by applications. |
maxAgeSeconds |
Time in seconds that a client can cache the response to a CORS-preflight request as identified by the |
WebsiteSettings
Field |
Description |
index |
string Key of the index page object that is returned when a response is made to the root of the website. Either If specified, the index page object must be located in the root of the bucket. |
error |
string Key of the error page object that is returned when an error occurs. |
redirectAllRequests |
Configuration for redirecting all requests sent to the website. Either |
routingRules[] |
List of redirect rules. |
Scheme
A configuration resource for redirecting all requests sent to the website.
Field |
Description |
protocol |
enum Protocol Scheme of the redirect URI.
|
hostname |
string Hostname of the redirect URI. |
RoutingRule
List of redirect rules.
Field |
Description |
condition |
Redirect condition. |
redirect |
Redirect instructions. |
Condition
Field |
Description |
httpErrorCodeReturnedEquals |
string HTTP status code (number only) that must match for the redirect to apply. |
keyPrefixEquals |
string Prefix of the object key from which requests are redirected. |
Redirect
Field |
Description |
hostname |
string Hostname of the redirect URI. |
httpRedirectCode |
string HTTP status code of the redirect response. Default value: |
protocol |
enum Protocol Scheme of the redirect URI.
|
replaceKeyPrefixWith |
string Substitution for the prefix of the object key specified in Condition.keyPrefixEquals. At most one of |
replaceKeyWith |
string New object key. At most one of |
LifecycleRule
An object lifecycle rule resource for the bucket.
For details about the concept, see documentation.
Field |
Description |
id |
ID of the rule. Provided by the client or generated at creation time. |
enabled |
bool Indicates whether the rule is in effect. |
filter |
Filter that identifies the objects to which the rule applies. If not specified, the rule applies to all objects in the bucket. |
expiration |
Expiration rule. The expiration of an object is described as follows. For the unversioned bucket (Bucket.versioning is For the bucket with versioning enabled (Bucket.versioning is For the bucket with versioning suspended (Bucket.versioning is |
transitions[] |
List of transition rules. The transition of an object is described as follows. For the unversioned bucket (Bucket.versioning is For the bucket with versioning enabled (Bucket.versioning is |
abortIncompleteMultipartUpload |
Configuration for aborting incomplete multipart uploads. |
noncurrentExpiration |
Expiration rule for non-current versions of objects in a bucket with versioning enabled (Bucket.versioning is At expiration, the non-current version of the object is deleted and cannot be recovered. |
noncurrentTransitions[] |
List of transition rules for non-current versions of objects in a bucket with versioning enabled At transition, the non-current version of the object is transitioned to the specified storage class. |
noncurrentDeleteMarkers |
Expiration rule for non-current delete markers of an objects in a bucket with versioning At expiration, the non-current delete marker of the object is deleted and cannot be recovered. |
RuleFilter
Field |
Description |
prefix |
string Key prefix that the object must have in order for the rule to apply. |
objectSizeGreaterThan |
Size that the object must be greater. |
objectSizeLessThan |
Size that the object must be less t. |
tag |
Tags that the object's tag set must have for the rule to apply. |
andOperator |
Apply a logical AND to all of the predicates configured inside the And operator. |
Tag
Field |
Description |
key |
string Key of the bucket tag. |
value |
string Value of the bucket tag. |
And
Field |
Description |
prefix |
string |
objectSizeGreaterThan |
|
objectSizeLessThan |
|
tag[] |
Expiration
Field |
Description |
date |
Specific date of object expiration. The rule continues to apply even after the date has passed, i.e. any new objects created in the bucket expire Exactly one of |
days |
Time period, in number of days from the creation or modification of the object, after which an object expires. Exactly one of |
expiredObjectDeleteMarker |
Indicates whether a delete marker of an object with no non-current versions (referred to as an expired object Exactly one of |
Transition
List of transition rules.
The transition of an object is described as follows.
For the unversioned bucket (Bucket.versioning is VERSIONING_DISABLED
), the object is transitioned to the
specified storage class.
For the bucket with versioning enabled (Bucket.versioning is VERSIONING_ENABLED
) or suspended
(VERSIONING_SUSPENDED
), the current version of the object is transitioned to the specified storage class.
Field |
Description |
date |
Specific date of object transition. The rule continues to apply even after the date has passed, i.e. any new objects created in the bucket are At most one of |
days |
Time period, in number of days from the creation or modification of the object, after which an object is At most one of |
storageClass |
string Required field. Storage class to which an object is transitioned from standard storage. The only supported class is cold storage ( |
AfterDays
Field |
Description |
daysAfterExpiration |
Time period, in number of days from the start of the multipart upload, after which the incomplete upload is |
NoncurrentExpiration
Field |
Description |
noncurrentDays |
Time period, in number of days since the version of an object was classified as non-current, after which the |
NoncurrentTransition
List of transition rules for non-current versions of objects in a bucket with versioning enabled
(Bucket.versioning is VERSIONING_ENABLED
) or suspended (VERSIONING_SUSPENDED
).
At transition, the non-current version of the object is transitioned to the specified storage class.
Field |
Description |
noncurrentDays |
Time period, in number of days since the version of an object was classified as non-current, after which the |
storageClass |
string Required field. Storage class to which a non-current version of an object is transitioned from standard storage. The only supported class is cold storage ( |
NoncurrentDeleteMarkers
Field |
Description |
noncurrentDays |
Time period, in number of days since the version of a delete marker was classified as non-current, after which |
ACL
Field |
Description |
grants[] |
List of permissions granted and the grantees. |
Grant
A grant resource, used to specify the permission granted and the grantee.
Field |
Description |
permission |
enum Permission Required field. Permission granted by the grant.
|
grantType |
enum GrantType Required field. The grantee type for the grant.
|
granteeId |
string ID of the account who is a grantee. Required when the |
ObjectLock
A resource for Object Lock configuration of a bucket.
For details about the concept, see documentation.
Field |
Description |
status |
enum ObjectLockStatus
|
defaultRetention |
DefaultRetention
Default lock configuration for added objects
Field |
Description |
mode |
enum Mode
|
days |
int64 Number of days for locking Includes only one of the fields |
years |
int64 Number of years for locking Includes only one of the fields |
Encryption
Field |
Description |
rules[] |
EncryptionRule
Field |
Description |
kmsMasterKeyId |
string |
sseAlgorithm |
string |
operation.Operation
{
"id": "string",
"description": "string",
"createdAt": "google.protobuf.Timestamp",
"createdBy": "string",
"modifiedAt": "google.protobuf.Timestamp",
"done": "bool",
"metadata": {
"name": "string"
},
// Includes only one of the fields `error`, `response`
"error": "google.rpc.Status",
"response": {
"id": "string",
"name": "string",
"folderId": "string",
"anonymousAccessFlags": {
"read": "google.protobuf.BoolValue",
"list": "google.protobuf.BoolValue",
"configRead": "google.protobuf.BoolValue"
},
"defaultStorageClass": "string",
"versioning": "Versioning",
"maxSize": "int64",
"policy": "google.protobuf.Struct",
"acl": {
"grants": [
{
"permission": "Permission",
"grantType": "GrantType",
"granteeId": "string"
}
]
},
"createdAt": "google.protobuf.Timestamp",
"cors": [
{
"id": "string",
"allowedMethods": [
"Method"
],
"allowedHeaders": [
"string"
],
"allowedOrigins": [
"string"
],
"exposeHeaders": [
"string"
],
"maxAgeSeconds": "google.protobuf.Int64Value"
}
],
"websiteSettings": {
"index": "string",
"error": "string",
"redirectAllRequests": {
"protocol": "Protocol",
"hostname": "string"
},
"routingRules": [
{
"condition": {
"httpErrorCodeReturnedEquals": "string",
"keyPrefixEquals": "string"
},
"redirect": {
"hostname": "string",
"httpRedirectCode": "string",
"protocol": "Protocol",
"replaceKeyPrefixWith": "string",
"replaceKeyWith": "string"
}
}
]
},
"lifecycleRules": [
{
"id": "google.protobuf.StringValue",
"enabled": "bool",
"filter": {
"prefix": "string",
"objectSizeGreaterThan": "google.protobuf.Int64Value",
"objectSizeLessThan": "google.protobuf.Int64Value",
"tag": {
"key": "string",
"value": "string"
},
"andOperator": {
"prefix": "string",
"objectSizeGreaterThan": "google.protobuf.Int64Value",
"objectSizeLessThan": "google.protobuf.Int64Value",
"tag": [
{
"key": "string",
"value": "string"
}
]
}
},
"expiration": {
"date": "google.protobuf.Timestamp",
"days": "google.protobuf.Int64Value",
"expiredObjectDeleteMarker": "google.protobuf.BoolValue"
},
"transitions": [
{
"date": "google.protobuf.Timestamp",
"days": "google.protobuf.Int64Value",
"storageClass": "string"
}
],
"abortIncompleteMultipartUpload": {
"daysAfterExpiration": "google.protobuf.Int64Value"
},
"noncurrentExpiration": {
"noncurrentDays": "google.protobuf.Int64Value"
},
"noncurrentTransitions": [
{
"noncurrentDays": "google.protobuf.Int64Value",
"storageClass": "string"
}
],
"noncurrentDeleteMarkers": {
"noncurrentDays": "google.protobuf.Int64Value"
}
}
],
"tags": [
{
"key": "string",
"value": "string"
}
],
"objectLock": {
"status": "ObjectLockStatus",
"defaultRetention": {
"mode": "Mode",
// Includes only one of the fields `days`, `years`
"days": "int64",
"years": "int64"
// end of the list of possible fields
}
},
"encryption": {
"rules": [
{
"kmsMasterKeyId": "string",
"sseAlgorithm": "string"
}
]
}
}
// end of the list of possible fields
}
An Operation resource. For more information, see Operation.
Field |
Description |
id |
string ID of the operation. |
description |
string Description of the operation. 0-256 characters long. |
createdAt |
Creation timestamp. |
createdBy |
string ID of the user or service account who initiated the operation. |
modifiedAt |
The time when the Operation resource was last modified. |
done |
bool If the value is |
metadata |
Service-specific metadata associated with the operation. |
error |
The error result of the operation in case of failure or cancellation. Includes only one of the fields The operation result. |
response |
The normal response of the operation in case of success. Includes only one of the fields The operation result. |
UpdateBucketMetadata
Field |
Description |
name |
string Name of the bucket that is being updated. |
Bucket
A bucket resource.
For details about the concept, see documentation.
Field |
Description |
id |
string ID of the bucket. Always equal to |
name |
string Name of the bucket. The name is unique within the platform. For naming limitations and rules, see |
folderId |
string ID of the folder that the bucket belongs to. |
anonymousAccessFlags |
Flags for configuring public (anonymous) access to the bucket's content and settings. |
defaultStorageClass |
string Default storage class for objects in the bucket. Supported classes are standard storage ( |
versioning |
enum Versioning Bucket versioning status.
|
maxSize |
int64 Maximum size of the bucket, in bytes. |
policy |
Bucket policies that set permissions for actions with the bucket, its objects, and groups of objects. |
acl |
Access control list (ACL) of the bucket. |
createdAt |
Creation timestamp. |
cors[] |
List of rules for cross-domain requests to objects in the bucket (cross-origin resource sharing, CORS). |
websiteSettings |
Configuration for hosting a static website in the bucket. |
lifecycleRules[] |
List of object lifecycle rules for the bucket. |
tags[] |
List of tags for the bucket. |
objectLock |
Configuration for object lock on the bucket. |
encryption |
Configuration for bucket's encryption |
AnonymousAccessFlags
Field |
Description |
read |
Specifies whether public (anonymous) access to read objects in the bucket is enabled. |
list |
Specifies whether public (anonymous) access to the list of objects in the bucket is enabled. |
configRead |
Specifies whether public (anonymous) access to read CORS, |
ACL
Field |
Description |
grants[] |
List of permissions granted and the grantees. |
Grant
A grant resource, used to specify the permission granted and the grantee.
Field |
Description |
permission |
enum Permission Required field. Permission granted by the grant.
|
grantType |
enum GrantType Required field. The grantee type for the grant.
|
granteeId |
string ID of the account who is a grantee. Required when the |
CorsRule
A CORS rule resource.
For details about the concept, see documentation.
Field |
Description |
id |
string ID of the CORS rule. |
allowedMethods[] |
enum Method List of HTTP methods allowed by the CORS rule. When a client sends a CORS-preflight
|
allowedHeaders[] |
string List of HTTP headers allowed by the CORS rule. When a client sends a CORS-preflight Each string in the list can contain at most one |
allowedOrigins[] |
string List of request origins allowed by the CORS rule. Each string in the list can contain at most one |
exposeHeaders[] |
string List of headers contained in responses to CORS requests that can be accessed by applications. |
maxAgeSeconds |
Time in seconds that a client can cache the response to a CORS-preflight request as identified by the |
WebsiteSettings
Field |
Description |
index |
string Key of the index page object that is returned when a response is made to the root of the website. Either If specified, the index page object must be located in the root of the bucket. |
error |
string Key of the error page object that is returned when an error occurs. |
redirectAllRequests |
Configuration for redirecting all requests sent to the website. Either |
routingRules[] |
List of redirect rules. |
Scheme
A configuration resource for redirecting all requests sent to the website.
Field |
Description |
protocol |
enum Protocol Scheme of the redirect URI.
|
hostname |
string Hostname of the redirect URI. |
RoutingRule
List of redirect rules.
Field |
Description |
condition |
Redirect condition. |
redirect |
Redirect instructions. |
Condition
Field |
Description |
httpErrorCodeReturnedEquals |
string HTTP status code (number only) that must match for the redirect to apply. |
keyPrefixEquals |
string Prefix of the object key from which requests are redirected. |
Redirect
Field |
Description |
hostname |
string Hostname of the redirect URI. |
httpRedirectCode |
string HTTP status code of the redirect response. Default value: |
protocol |
enum Protocol Scheme of the redirect URI.
|
replaceKeyPrefixWith |
string Substitution for the prefix of the object key specified in Condition.keyPrefixEquals. At most one of |
replaceKeyWith |
string New object key. At most one of |
LifecycleRule
An object lifecycle rule resource for the bucket.
For details about the concept, see documentation.
Field |
Description |
id |
ID of the rule. Provided by the client or generated at creation time. |
enabled |
bool Indicates whether the rule is in effect. |
filter |
Filter that identifies the objects to which the rule applies. If not specified, the rule applies to all objects in the bucket. |
expiration |
Expiration rule. The expiration of an object is described as follows. For the unversioned bucket (Bucket.versioning is For the bucket with versioning enabled (Bucket.versioning is For the bucket with versioning suspended (Bucket.versioning is |
transitions[] |
List of transition rules. The transition of an object is described as follows. For the unversioned bucket (Bucket.versioning is For the bucket with versioning enabled (Bucket.versioning is |
abortIncompleteMultipartUpload |
Configuration for aborting incomplete multipart uploads. |
noncurrentExpiration |
Expiration rule for non-current versions of objects in a bucket with versioning enabled (Bucket.versioning is At expiration, the non-current version of the object is deleted and cannot be recovered. |
noncurrentTransitions[] |
List of transition rules for non-current versions of objects in a bucket with versioning enabled At transition, the non-current version of the object is transitioned to the specified storage class. |
noncurrentDeleteMarkers |
Expiration rule for non-current delete markers of an objects in a bucket with versioning At expiration, the non-current delete marker of the object is deleted and cannot be recovered. |
RuleFilter
Field |
Description |
prefix |
string Key prefix that the object must have in order for the rule to apply. |
objectSizeGreaterThan |
Size that the object must be greater. |
objectSizeLessThan |
Size that the object must be less t. |
tag |
Tags that the object's tag set must have for the rule to apply. |
andOperator |
Apply a logical AND to all of the predicates configured inside the And operator. |
Tag
Field |
Description |
key |
string Key of the bucket tag. |
value |
string Value of the bucket tag. |
And
Field |
Description |
prefix |
string |
objectSizeGreaterThan |
|
objectSizeLessThan |
|
tag[] |
Expiration
Field |
Description |
date |
Specific date of object expiration. The rule continues to apply even after the date has passed, i.e. any new objects created in the bucket expire Exactly one of |
days |
Time period, in number of days from the creation or modification of the object, after which an object expires. Exactly one of |
expiredObjectDeleteMarker |
Indicates whether a delete marker of an object with no non-current versions (referred to as an expired object Exactly one of |
Transition
List of transition rules.
The transition of an object is described as follows.
For the unversioned bucket (Bucket.versioning is VERSIONING_DISABLED
), the object is transitioned to the
specified storage class.
For the bucket with versioning enabled (Bucket.versioning is VERSIONING_ENABLED
) or suspended
(VERSIONING_SUSPENDED
), the current version of the object is transitioned to the specified storage class.
Field |
Description |
date |
Specific date of object transition. The rule continues to apply even after the date has passed, i.e. any new objects created in the bucket are At most one of |
days |
Time period, in number of days from the creation or modification of the object, after which an object is At most one of |
storageClass |
string Required field. Storage class to which an object is transitioned from standard storage. The only supported class is cold storage ( |
AfterDays
Field |
Description |
daysAfterExpiration |
Time period, in number of days from the start of the multipart upload, after which the incomplete upload is |
NoncurrentExpiration
Field |
Description |
noncurrentDays |
Time period, in number of days since the version of an object was classified as non-current, after which the |
NoncurrentTransition
List of transition rules for non-current versions of objects in a bucket with versioning enabled
(Bucket.versioning is VERSIONING_ENABLED
) or suspended (VERSIONING_SUSPENDED
).
At transition, the non-current version of the object is transitioned to the specified storage class.
Field |
Description |
noncurrentDays |
Time period, in number of days since the version of an object was classified as non-current, after which the |
storageClass |
string Required field. Storage class to which a non-current version of an object is transitioned from standard storage. The only supported class is cold storage ( |
NoncurrentDeleteMarkers
Field |
Description |
noncurrentDays |
Time period, in number of days since the version of a delete marker was classified as non-current, after which |
ObjectLock
A resource for Object Lock configuration of a bucket.
For details about the concept, see documentation.
Field |
Description |
status |
enum ObjectLockStatus
|
defaultRetention |
DefaultRetention
Default lock configuration for added objects
Field |
Description |
mode |
enum Mode
|
days |
int64 Number of days for locking Includes only one of the fields |
years |
int64 Number of years for locking Includes only one of the fields |
Encryption
Field |
Description |
rules[] |
EncryptionRule
Field |
Description |
kmsMasterKeyId |
string |
sseAlgorithm |
string |