Class: Fog::Compute::Google::DiskTypes
- Inherits:
-
Fog::Collection
- Object
- Fog::Collection
- Fog::Compute::Google::DiskTypes
- Defined in:
- lib/fog/compute/google/models/disk_types.rb
Instance Method Summary collapse
- #all(zone: nil, filter: nil, max_results: nil, order_by: nil, page_token: nil) ⇒ Object
- #get(identity, zone = nil) ⇒ Object
Instance Method Details
#all(zone: nil, filter: nil, max_results: nil, order_by: nil, page_token: nil) ⇒ Object
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
# File 'lib/fog/compute/google/models/disk_types.rb', line 7 def all(zone: nil, filter: nil, max_results: nil, order_by: nil, page_token: nil) opts = { :filter => filter, :max_results => max_results, :order_by => order_by, :page_token => page_token } if zone data = service.list_disk_types(zone, opts).items else data = [] service.list_aggregated_disk_types(opts).items.each_value do |scoped_lst| data.concat(scoped_lst.disk_types) if scoped_lst && scoped_lst.disk_types end end load(data.map(&:to_h)) end |
#get(identity, zone = nil) ⇒ Object
26 27 28 29 30 31 32 33 34 35 36 37 38 |
# File 'lib/fog/compute/google/models/disk_types.rb', line 26 def get(identity, zone = nil) if zone disk_type = service.get_disk_type(identity, zone).to_h return new(disk_type) else response = all(:filter => "name eq .*#{identity}") disk_type = response.first unless response.empty? return disk_type end rescue ::Google::Apis::ClientError => e raise e unless e.status_code == 404 nil end |