Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What's the difference in GET operations in Google Cloud Storage?

Google Cloud Storage has several types of GET operations:

Class A

  • GET Service
  • GET Bucket (when listing objects in a bucket)

Class B

  • GET Bucket (when retrieving bucket configuration)
  • GET Object

Can anyone explain in "newbie's term" their differences?

like image 331
IMB Avatar asked Nov 01 '22 22:11

IMB


1 Answers

These are terms specific to the XML API. You can see a full list of XML API methods and their names and meanings here: https://developers.google.com/storage/docs/reference-methods

"GET Service" is the call to the XML API to list buckets owned by a project.

"GET Bucket (when listing objects)" is the call to list objects in a particular bucket.

"GET Bucket (when retrieving bucket configuration)" is the call to retrieve the metadata and configuratino of a particular bucket.

"GET Object" is the call to view an object's metadata or download its contents.

like image 100
Brandon Yarbrough Avatar answered Nov 08 '22 04:11

Brandon Yarbrough