1

我正在为 Google Storage API 使用 python 客户端库,并且我有一个文件 pythonScript.py,它包含以下内容:

# Imports the Google Cloud client library
from google.cloud import storage

# Instantiates a client
storage_client = storage.Client()

# The name for the new bucket
bucket_name = 'my-new-bucket'

# Creates the new bucket
bucket = storage_client.create_bucket(bucket_name)

print('Bucket {} created.'.format(bucket.name))

当我尝试运行它时,我在终端中得到了这个:

回溯(最后一次调用):文件“pythonScript.py”,第 11 行,在 bucket = storage_client.create_bucket(bucket_name) 文件“/home/joel/MATI/env/lib/python3.5/site-packages/google/ cloud/storage/client.py”,第 218 行,在 create_bucket bucket.create(client=self) 文件中“/home/joel/MATI/env/lib/python3.5/site-packages/google/cloud/storage/bucket .py”,第 199 行,在创建数据 = 属性,_target_object=self) 文件“/home/joel/MATI/env/lib/python3.5/site-packages/google/cloud/_http.py”,第 293 行,在 api_request raise exceptions.from_http_response(response) google.cloud.exceptions.Conflict: 409 POST https://www.googleapis.com/storage/v1/b?project=avid-folder-180918:抱歉,该名称不可用. 请尝试不同的。

我不知道为什么,因为我确实为我的项目启用了 GSS API,并且默认配置似乎是正确的。的输出gcloud config list是:

[计算]

地区 = 我们-东1

区域 = us-east1-d

[核心] 帐户 = joel@southbendcodeschool.com

disable_usage_reporting = 真

项目 = 狂热文件夹 180918

您的活动配置是:[默认]

4

1 回答 1

7

存储桶名称是全局唯一的。其他人必须已经拥有名为“my-new-bucket”的存储桶。

于 2017-09-28T17:25:50.237 回答