I would like to create a bucket in GCS based in Europe using the python client.
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))
This creates the bucket multiregional in the US. How can I change this to Europe?