Sha256: 046e560422ae38254f6b47cd062c7c772b6294eefaa9491363ec6c6bc385ed39

Contents?: true

Size: 1.37 KB

Versions: 38

Compression:

Stored size: 1.37 KB

Contents

module Fog
  module DNS
    class Zerigo
      class Real
        require 'fog/zerigo/parsers/dns/get_host'

        # get details about a given host record
        #
        # ==== Parameters
        # * host_id<~Integer> - ID of the host record to retrieve
        # ==== Returns
        # * response<~Excon::Response>:
        #   * body<~Hash>:
        #     * 'created-at'<~String>
        #     * 'data'<~String>
        #     * 'fqdn'<~String>
        #     * 'host-type'<~String>
        #     * 'hostname'<~String>
        #     * 'id'<~Integer>
        #     * 'notes'<~String>
        #     * 'priority'<~Integer>
        #     * 'ttl'<~Integer>
        #     * 'updated-at'<~String>
        #     * 'zone-id'<~String>
        #   * 'status'<~Integer> - 200 indicates success
        def get_host(host_id)
          request(
            :expects  => 200,
            :method   => 'GET',
            :parser   => Fog::Parsers::DNS::Zerigo::GetHost.new,
            :path     => "/api/1.1/hosts/#{host_id}.xml"
          )
        end
      end

      class Mock # :nodoc:all
        def get_host(host_id)
          host = find_host(host_id)

          response = Excon::Response.new

          if host
            response.status = 200
            response.body = host
          else
            response.status = 404
          end

          response
        end
      end
    end
  end
end

Version data entries

38 entries across 36 versions & 5 rubygems

Version Path
vagrant-packet-0.1.1 vendor/bundle/ruby/2.5.0/gems/fog-1.42.1/lib/fog/zerigo/requests/dns/get_host.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.4.0/gems/fog-1.42.1/lib/fog/zerigo/requests/dns/get_host.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.3.0/gems/fog-1.42.1/lib/fog/zerigo/requests/dns/get_host.rb
fog-1.42.1 lib/fog/zerigo/requests/dns/get_host.rb
fog-1.42.0 lib/fog/zerigo/requests/dns/get_host.rb
fog-1.41.0 lib/fog/zerigo/requests/dns/get_host.rb
fog-1.40.0 lib/fog/zerigo/requests/dns/get_host.rb
fog-1.39.0 lib/fog/zerigo/requests/dns/get_host.rb
fog-1.38.0 lib/fog/zerigo/requests/dns/get_host.rb
fog-1.37.0 lib/fog/zerigo/requests/dns/get_host.rb
fog-1.36.0 lib/fog/zerigo/requests/dns/get_host.rb
fog-1.35.0 lib/fog/zerigo/requests/dns/get_host.rb
fog-2.0.0.pre.0 lib/fog/zerigo/requests/dns/get_host.rb
vagrant-cloudstack-1.2.0 vendor/bundle/gems/fog-1.32.0/lib/fog/zerigo/requests/dns/get_host.rb
fog-1.34.0 lib/fog/zerigo/requests/dns/get_host.rb
fog-1.33.0 lib/fog/zerigo/requests/dns/get_host.rb
fog-1.32.0 lib/fog/zerigo/requests/dns/get_host.rb
fog-1.31.0 lib/fog/zerigo/requests/dns/get_host.rb
vagrant-cloudstack-1.1.0 vendor/bundle/gems/fog-1.22.1/lib/fog/zerigo/requests/dns/get_host.rb
fog-1.30.0 lib/fog/zerigo/requests/dns/get_host.rb