创建 gcloud 存储桶时无法指定桶的位置
cannot specify location of bucket when creating a glcoud storage bucket
我认为以下代码会在美国西部地区构建一个存储桶,但在我的 google 控制台上,该地区被列为多地区。
from google.cloud import storage
storage_client = storage.Client()
bucket = storage_client.create_bucket(bucket_name)
bucket.location = 'us-west2-a'
from google.cloud import storage
storage_client = storage.Client()
bucket = storage_client.create_bucket(bucket_name)
bucket.location = 'us-west2-a'
您的代码示例中的问题是您指定了区域名称 'us-west2-a',而不是区域(位置)名称 'us-west2'。
from google.cloud import storage
storage_client = storage.Client()
bucket = storage_client.create_bucket(bucket_name)
bucket.location = 'us-west2'
通过更改为 'us-west2',它应该会在所需位置创建您的存储桶。
参考文献:
我认为以下代码会在美国西部地区构建一个存储桶,但在我的 google 控制台上,该地区被列为多地区。
from google.cloud import storage
storage_client = storage.Client()
bucket = storage_client.create_bucket(bucket_name)
bucket.location = 'us-west2-a'
from google.cloud import storage
storage_client = storage.Client()
bucket = storage_client.create_bucket(bucket_name)
bucket.location = 'us-west2-a'
您的代码示例中的问题是您指定了区域名称 'us-west2-a',而不是区域(位置)名称 'us-west2'。
from google.cloud import storage
storage_client = storage.Client()
bucket = storage_client.create_bucket(bucket_name)
bucket.location = 'us-west2'
通过更改为 'us-west2',它应该会在所需位置创建您的存储桶。
参考文献: