Sha256: 112a3176411ad38e922cf4cc414ef39ae3dc7f4776baaba3d044bfe833295e91

Contents?: true

Size: 1.9 KB

Versions: 29

Compression:

Stored size: 1.9 KB

Contents

module Fog
  module HP
    class DNS
      class Real
        # Get authoritative nameservers for existing DNS domain
        #
        # ==== Parameters
        # * domain_id<~String> - UUId of the domain to get nameservers for
        #
        # ==== Returns
        # * response<~Excon::Response>:
        #   * body<~Hash>:
        #     * 'nameservers'<~Array>:
        #       * 'id'<~String> - UUID of the domain
        #       * 'name'<~String> - Name of the domain
        #       * 'ttl'<~Integer> - TTL for the domain
        #       * 'email'<~String> - Email for the domain
        #       * 'serial'<~Integer> - Serial number for the domain
        #       * 'created_at'<~String> - created date time stamp
        def get_servers_hosting_domain(domain_id)
          request(
              :expects => 200,
              :method  => 'GET',
              :path    => "domains/#{domain_id}/servers"
          )
        end
      end

      class Mock
        def get_servers_hosting_domain(domain_id)
          response = Excon::Response.new
          if list_domains.body['domains'].find { |_| _['id'] == domain_id }
            response.status = 200
            response.body   = { 'servers' => dummy_servers }
            response
          else
            raise Fog::HP::DNS::NotFound
          end
        end

        def dummy_servers
          [
              {
                  'id'         => Fog::HP::Mock.uuid.to_s,
                  'name'       => 'ns1.provider.com.',
                  'created_at' => '2012-01-01T13:32:20Z',
                  'updated_at' => '2012-01-01T13:32:20Z'
              },
              {
                  'id'         => Fog::HP::Mock.uuid.to_s,
                  'name'       => 'ns2.provider.com.',
                  'created_at' => '2012-01-01T13:32:20Z',
                  'updated_at' => '2012-01-01T13:32:20Z'
              },
          ]
        end
      end
    end
  end
end

Version data entries

29 entries across 29 versions & 4 rubygems

Version Path
fog-1.37.0 lib/fog/hp/requests/dns/get_servers_hosting_domain.rb
fog-1.36.0 lib/fog/hp/requests/dns/get_servers_hosting_domain.rb
fog-1.35.0 lib/fog/hp/requests/dns/get_servers_hosting_domain.rb
fog-2.0.0.pre.0 lib/fog/hp/requests/dns/get_servers_hosting_domain.rb
vagrant-cloudstack-1.2.0 vendor/bundle/gems/fog-1.32.0/lib/fog/hp/requests/dns/get_servers_hosting_domain.rb
fog-1.34.0 lib/fog/hp/requests/dns/get_servers_hosting_domain.rb
fog-1.33.0 lib/fog/hp/requests/dns/get_servers_hosting_domain.rb
fog-1.32.0 lib/fog/hp/requests/dns/get_servers_hosting_domain.rb
fog-1.31.0 lib/fog/hp/requests/dns/get_servers_hosting_domain.rb
vagrant-cloudstack-1.1.0 vendor/bundle/gems/fog-1.22.1/lib/fog/hp/requests/dns/get_servers_hosting_domain.rb
fog-1.30.0 lib/fog/hp/requests/dns/get_servers_hosting_domain.rb
fog-1.29.0 lib/fog/hp/requests/dns/get_servers_hosting_domain.rb
fog-1.28.0 lib/fog/hp/requests/dns/get_servers_hosting_domain.rb
fog-1.27.0 lib/fog/hp/requests/dns/get_servers_hosting_domain.rb
fog-1.26.0 lib/fog/hp/requests/dns/get_servers_hosting_domain.rb
fog-1.25.0 lib/fog/hp/requests/dns/get_servers_hosting_domain.rb
nsidc-fog-1.24.1 lib/fog/hp/requests/dns/get_servers_hosting_domain.rb
fog-1.24.0 lib/fog/hp/requests/dns/get_servers_hosting_domain.rb
ns-fog-1.22.11 lib/fog/hp/requests/dns/get_servers_hosting_domain.rb
ns-fog-1.22.10 lib/fog/hp/requests/dns/get_servers_hosting_domain.rb