Class: Fog::Compute::Google::Disks
- Inherits:
-
Fog::Collection
- Object
- Array
- Fog::Collection
- Fog::Compute::Google::Disks
- Defined in:
- lib/fog/google/models/compute/disks.rb
Instance Attribute Summary
Attributes inherited from Fog::Collection
Instance Method Summary collapse
Methods inherited from Fog::Collection
#clear, #create, #destroy, #initialize, #inspect, #load, model, #model, #new, #reload, #table, #to_json
Methods included from Attributes::ClassMethods
#_load, #aliases, #attribute, #attributes, #identity, #ignore_attributes, #ignored_attributes
Methods included from Fog::Core::DeprecatedConnectionAccessors
#connection, #connection=, #prepare_service_value
Methods included from Attributes::InstanceMethods
#_dump, #attributes, #dup, #identity, #identity=, #merge_attributes, #new_record?, #persisted?, #requires, #requires_one
Constructor Details
This class inherits a constructor from Fog::Collection
Instance Method Details
#all(filters = {}) ⇒ Object
12 13 14 15 16 17 18 19 20 21 22 |
# File 'lib/fog/google/models/compute/disks.rb', line 12 def all(filters={}) if filters['zone'].nil? data = [] service.list_zones.body['items'].each do |zone| data += service.list_disks(zone['name']).body["items"] || [] end else data = service.list_disks(filters['zone']).body["items"] || [] end load(data) end |
#get(identity, zone = nil) ⇒ Object
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 |
# File 'lib/fog/google/models/compute/disks.rb', line 24 def get(identity, zone=nil) response = nil if zone.nil? service.list_zones.body['items'].each do |zone| begin response = service.get_disk(identity, zone['name']) break if response.status == 200 rescue Fog::Errors::Error end end else response = service.get_disk(identity, zone) end return nil if response.nil? new(response.body) end |