1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/google
2013-08-05 11:27:01 +02:00
..
examples [google|compute] fix typo on disk example 2013-08-05 11:27:01 +02:00
models [google|compute] disks.all shouldn't return nil 2013-08-05 11:10:45 +02:00
parsers/storage [storage|google] move google storage to shared google stuff (namespacing should probably be corrected) 2011-08-24 13:55:35 -05:00
requests [google] client.images doesn't list google public images 2013-08-03 09:22:58 +02:00
compute.rb Google Cloud Compute now raises Errors rather than throwing them. 2013-07-12 13:23:47 -07:00
Rakefile A set of smoke tests for GCE. 2013-07-24 18:46:20 -07:00
README.md Be alittle more specific in the footer of Google Readme. 2013-07-25 15:05:50 -07:00
storage.rb Changed GoogleAccessKeyId to GoogleAccessId 2013-03-09 23:48:39 +08:00

Fog with Google

Fog currently supports two Google Cloud services: Google Compute Engine and Google Cloud Storage. The main maintainer for the Google sections is @icco.

Storage

Google Cloud Storage originally was very similar to Amazon's S3. Because of this, Fog implements the XML GCS API. We eventually want to move to the new JSON API, once it has similar performance characteristics to the XML API. If this migration interests you, send us a pull request!

Compute

Google Compute Engine is a Virtual Machine hosting service. Currently it is built on version v1beta15 of the GCE API.

Our implementation of the API currently supports

  • Server creation, deletion and bootstrapping
  • All server "flavors" (micro and normal)
  • Persistent Disk creation and deletion
  • Image lookup

Features we are looking forward to implementing in the future:

  • Network and Firewall configuration
  • Global Metadata support
  • Image creation

v1beta15 is still in beta, so we can imagine lots of changes to the API. If you are using Fog to interact with GCE, please keep Fog up to date and file issues for any anomalies you see.

Thanks!