Class: Fog::Compute::Google::Zones

Inherits:
Fog::Collection
  • Object
show all
Defined in:
lib/fog/compute/google/models/zones.rb

Instance Method Summary collapse

Instance Method Details

#allObject



7
8
9
10
# File 'lib/fog/compute/google/models/zones.rb', line 7

def all
  data = service.list_zones.body["items"] || []
  load(data)
end

#get(identity) ⇒ Object



12
13
14
15
16
17
# File 'lib/fog/compute/google/models/zones.rb', line 12

def get(identity)
  data = service.get_zone(identity).body
  new(data)
rescue Fog::Errors::NotFound
  nil
end