Complete the code to enable requester pays on a GCP bucket.
gsutil [1] set on gs://my-bucketThe requesterpays command enables requester pays on the bucket.
Complete the code to download an object from a requester pays bucket.
gsutil -u [1] cp gs://my-bucket/my-object.txt ./-u flag causes access errors.You must specify your billing project ID with -u to download from a requester pays bucket.
Fix the error in the gsutil command to enable requester pays on a bucket.
gsutil [1] set on gs://my-bucketThe correct gsutil command uses requesterpays without dashes or underscores.
Fill both blanks to set the billing project and copy an object from a requester pays bucket.
gsutil -u [1] cp gs://my-bucket/[2] ./
You specify your billing project ID after -u and the object name to copy.
Fill all three blanks to enable requester pays, set the billing project, and copy an object.
gsutil [1] set on gs://my-bucket && gsutil -u [2] cp gs://my-bucket/[3] ./
First, enable requester pays on the bucket, then specify your billing project to copy the object.