-1

I recently switched the key of a bucket from being managed by Google to being managed by the customer. However, the existing files in the bucket are still using the old key. To resolve this, I need to rewrite the files so that they can utilize the new key. Can you please assist me in calculating the cost of this migration?

https://cloud.google.com/storage/docs/gsutil/commands/rewrite

vignesh
  • 1,414
  • 5
  • 19
  • 38

1 Answers1

1

Based on this documentation on Google Cloud Storage pricing, rewrite operation (storage.objects.rewrite) will fall under Class A Operations.

For buckets located in a single region:

Storage Class Class A operations (per 1,000 operations)
Standard storage $0.005
Nearline storage and Durable Reduced Availability (DRA) storage $0.01
Coldline storage $0.02
Archive storage $0.05

For buckets located in a dual-region or multi-region:

Storage Class Class A operations (per 1,000 operations)
Standard storage $0.01
Nearline storage and Durable Reduced Availability (DRA) storage $0.02
Coldline storage $0.04
Archive storage $0.10

Please be advised that these are all just estimates and pricing may change depending on the region, operations, and Google Cloud Terms of Service and Program Policies, as well as Google's Privacy Policy.

You may also check Google Cloud Pricing Calculator for estimates of operations for your project.

Finally, you may reach out to Google Cloud Billing support to properly explain all the charges that may incur during the operations of your project.

Hope this helps.

Robert G
  • 1,583
  • 3
  • 13