Exemple #1
0
def delete_bucket(name):
    client = GoogleCloudStorage().client
    bucket = client.bucket(name)
    bucket.delete(force=True)
Exemple #2
0
def create_bucket(name):
    client = GoogleCloudStorage().client
    bucket = client.bucket(name)
    bucket.location = settings.GCP_BUCKET_LOCATION
    bucket.iam_configuration.uniform_bucket_level_access_enabled = True
    client.create_bucket(bucket)