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

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

Instance Method Summary collapse

Instance Method Details

#allObject



10
11
12
13
# File 'lib/fog/google/models/compute/zones.rb', line 10

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

#get(identity) ⇒ Object



15
16
17
18
19
20
# File 'lib/fog/google/models/compute/zones.rb', line 15

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