Class: Fog::OpenStack::ContainerInfra::Bays

Inherits:
Fog::OpenStack::Collection show all
Defined in:
lib/fog/openstack/container_infra/models/bays.rb

Instance Attribute Summary

Attributes inherited from Fog::OpenStack::Collection

#response

Instance Method Summary collapse

Methods inherited from Fog::OpenStack::Collection

#destroy, #find_by_id, #load_response, #summary

Instance Method Details

#allObject



10
11
12
# File 'lib/fog/openstack/container_infra/models/bays.rb', line 10

def all
  load_response(service.list_bays, "bays")
end

#get(bay_uuid_or_name) ⇒ Object



14
15
16
17
18
19
# File 'lib/fog/openstack/container_infra/models/bays.rb', line 14

def get(bay_uuid_or_name)
  resource = service.get_bay(bay_uuid_or_name).body
  new(resource)
rescue Fog::OpenStack::ContainerInfra::NotFound
  nil
end