Overview Configuration samples
This page describes how to set Object Lifecycle Management on a bucket and how to view a bucket's current lifecycle configuration. Lifecycle configurations apply to all current and future objects in the bucket.
Required roles
To get the permissions that you need to set and manage Object Lifecycle
Management for a bucket, ask your administrator to grant you the Storage Admin
( roles/storage.admin
) role on the bucket. This predefined role
contains
the permissions required to set and manage Object Lifecycle Management for a
bucket. To see the exact permissions required, expand the Required permissionssection:
Required permissions
-
storage.buckets.get
-
storage.buckets.list
- This permission is only required if you plan on using the Google Cloud console to perform the instructions on this page.
-
storage.buckets.update
You might also be able to get these permissions with custom roles .
For information about granting roles on buckets, see Use IAM with buckets .
Set the lifecycle configuration for a bucket
Console
- In the Google Cloud console, go to the Cloud Storage Buckets
page.
-
In the bucket list, find the bucket you want to enable, and click the bucket's name.
-
Click the Lifecycletab.
The lifecycle rules page appears. From here you can edit or delete existing rules. To add a new rule:
-
Click Add a rule.
-
In the page that appears, specify a configuration.
-
Select the action to take when an object meets the conditions.
-
Click Continue.
-
Select the conditions under which an action is taken.
-
Click Continue.
-
Click Create.
-
To learn how to get detailed error information about failed Cloud Storage operations in the Google Cloud console, see Troubleshooting .
Command line
-
Create a JSON file with the lifecycle configuration rules you would like to apply. See configuration examples for sample JSON files.
-
Use the
gcloud storage buckets update
command with the--lifecycle-file
flag:gcloud storage buckets update gs:// BUCKET_NAME --lifecycle-file= LIFECYCLE_CONFIG_FILE
Where:
-
BUCKET_NAME
is the name of the relevant bucket. For example,my-bucket
. -
LIFECYCLE_CONFIG_FILE
is the path for the JSON file that you created in Step 1.
-
Client libraries
C++
For more information, see the Cloud Storage C++ API reference documentation .
To authenticate to Cloud Storage, set up Application Default Credentials. For more information, see Set up authentication for client libraries .
The following sample sets a lifecycle configuration on a bucket:
The following sample removes any existing lifecycle configuration from on a bucket:
C#
For more information, see the Cloud Storage C# API reference documentation .
To authenticate to Cloud Storage, set up Application Default Credentials. For more information, see Set up authentication for client libraries .
The following sample sets a lifecycle configuration on a bucket:
The following sample removes any existing lifecycle configuration from on a bucket:
Go
For more information, see the Cloud Storage Go API reference documentation .
To authenticate to Cloud Storage, set up Application Default Credentials. For more information, see Set up authentication for client libraries .
The following sample sets a lifecycle configuration on a bucket:
The following sample removes any existing lifecycle configuration from on a bucket:
Java
For more information, see the Cloud Storage Java API reference documentation .
To authenticate to Cloud Storage, set up Application Default Credentials. For more information, see Set up authentication for client libraries .
The following sample sets a lifecycle configuration on a bucket:
The following sample removes any existing lifecycle configuration from on a bucket:
Node.js
For more information, see the Cloud Storage Node.js API reference documentation .
To authenticate to Cloud Storage, set up Application Default Credentials. For more information, see Set up authentication for client libraries .
The following sample sets a lifecycle configuration on a bucket:
The following sample removes any existing lifecycle configuration from on a bucket:
PHP
For more information, see the Cloud Storage PHP API reference documentation .
To authenticate to Cloud Storage, set up Application Default Credentials. For more information, see Set up authentication for client libraries .
The following sample sets a lifecycle configuration on a bucket:
The following sample removes any existing lifecycle configuration from on a bucket:
Python
For more information, see the Cloud Storage Python API reference documentation .
To authenticate to Cloud Storage, set up Application Default Credentials. For more information, see Set up authentication for client libraries .
The following sample sets a lifecycle configuration on a bucket:
The following sample removes any existing lifecycle configuration from on a bucket:
Ruby
For more information, see the Cloud Storage Ruby API reference documentation .
To authenticate to Cloud Storage, set up Application Default Credentials. For more information, see Set up authentication for client libraries .
The following sample sets a lifecycle configuration on a bucket:
The following sample removes any existing lifecycle configuration from on a bucket: