What are “buckets”?
Buckets are containers that hold your data. Everything you store in Cloud Storage must be in a bucket. Buckets allow you to organize your data and control access to your data. Unlike directories and folders, however, you cannot nest buckets.
How to connect your bucket to Channel Pilot Pro
If you have not yet uploaded the file, you can do this via the Google Cloud Console or the “gsutil tool”: gsutil cp FILE gs://BUCKET_NAME/
To make the file accessible to everyone, you must give it the “allUsers” permission. There are two different methods for this:
Method 1: Via the Google Cloud Console
Go to Google Cloud Console.
Open Storage > Buckets and select your bucket.
Click on the file you want to share.
Go to "Edit permissions".
Click on + Add.
Enter “allUsers” under New principals.
Select Storage Object Viewer as the role.
Save the changes.
Method 2: Via the terminal (gsutil)
If you want to share the file via the command line, you can use this command:
gsutil acl ch -u AllUsers:R gs://BUCKET_NAME/DATEI
As soon as the file is public, you can retrieve it via the following URL:
https://storage.googleapis.com/BUCKET_NAME/DATEI
Example:
https://storage.googleapis.com/my-public-bucket/beispielfeed.csv
Now you can import your product catalog as described here.
You can find detailed and further information on Google Cloud Bucket on the official website.
