Given that GCS pricing varies greatly depending on the storage class you use (standard, nearline, coldline), and that picking a file class is mostly determined by how frequently you'll need to access the file, what does Google Cloud Storage consider as an "access"? Downloading and uploading blobs seam the most obvious answers, but I was wondering if using gsutil commands like ls or operations like renaming a file would be considered as an access as well.
Thanks for your help!
ls
list objects but do not read the contents of objects. These are different types ofaccess
. These types are broken down into HTTP operations such asHEAD
,GET
,POST
,PUT
,DELETE
, etc. – John Hanley