class Fog::Compute::Google::MachineTypes

Public Instance Methods

all(zone: nil, filter: nil, max_results: nil, order_by: nil, page_token: nil) click to toggle source
# File lib/fog/compute/google/models/machine_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_machine_types(zone, opts).items
  else
    data = []
    service.list_aggregated_machine_types(opts).items.each_value do |scoped_list|
      data.concat(scoped_list.machine_types) if scoped_list && scoped_list.machine_types
    end
  end
  load(data.map(&:to_h) || [])
end
get(identity, zone) click to toggle source
# File lib/fog/compute/google/models/machine_types.rb, line 26
def get(identity, zone)
  machine_type = service.get_machine_type(identity, zone).to_h
  return nil if machine_type.nil?
  new(machine_type)
rescue ::Google::Apis::ClientError => e
  raise e unless e.status_code == 404
  nil
end