Sha256: cc0e63c72025013ffc6d85767f976573a3c88cd8241936d9fceead5c95f4e089

Contents?: true

Size: 646 Bytes

Versions: 21

Compression:

Stored size: 646 Bytes

Contents

require 'fog/openstack/models/collection'
require 'fog/openstack/compute/models/host'

module Fog
  module OpenStack
    class Compute
      class Hosts < Fog::OpenStack::Collection
        model Fog::OpenStack::Compute::Host

        def all(options = {})
          data = service.list_hosts(options)
          load_response(data, 'hosts')
        end

        def get(host_name)
          if host = service.get_host_details(host_name).body['host']
            new('host_name' => host_name,
                'details'   => host)
          end
        rescue Fog::OpenStack::Compute::NotFound
          nil
        end
      end
    end
  end
end

Version data entries

21 entries across 21 versions & 3 rubygems

Version Path
fog-openstack-1.1.4 lib/fog/openstack/compute/models/hosts.rb
fog-openstack-1.1.3 lib/fog/openstack/compute/models/hosts.rb
fog-openstack-1.1.2 lib/fog/openstack/compute/models/hosts.rb
fog-openstack-fork-99 lib/fog/openstack/compute/models/hosts.rb
fog-openstack-1.1.0 lib/fog/openstack/compute/models/hosts.rb
fog-openstack-1.1.0.pre lib/fog/openstack/compute/models/hosts.rb
fog-openstack-apibank-1.0.102 lib/fog/openstack/compute/models/hosts.rb
fog-openstack-1.0.11 lib/fog/openstack/compute/models/hosts.rb
fog-openstack-apibank-1.0.101 lib/fog/openstack/compute/models/hosts.rb
fog-openstack-1.0.10 lib/fog/openstack/compute/models/hosts.rb
fog-openstack-1.0.9 lib/fog/openstack/compute/models/hosts.rb
fog-openstack-1.0.8 lib/fog/openstack/compute/models/hosts.rb
fog-openstack-1.0.7 lib/fog/openstack/compute/models/hosts.rb
fog-openstack-1.0.6 lib/fog/openstack/compute/models/hosts.rb
fog-openstack-1.0.5 lib/fog/openstack/compute/models/hosts.rb
fog-openstack-1.0.4 lib/fog/openstack/compute/models/hosts.rb
fog-openstack-1.0.3 lib/fog/openstack/compute/models/hosts.rb
fog-openstack-1.0.2 lib/fog/openstack/compute/models/hosts.rb
fog-openstack-1.0.1 lib/fog/openstack/compute/models/hosts.rb
fog-openstack-1.0.0 lib/fog/openstack/compute/models/hosts.rb