Sha256: e1afcadc93fc2f346818da7caca23f462922cb15e5957f7f94b526d4da59a5ff

Contents?: true

Size: 939 Bytes

Versions: 118

Compression:

Stored size: 939 Bytes

Contents

module Fog
  module Bluebox
    class DNS
      class Real

        # Updates an existing record in a DNS zone
        # ==== Parameters
        # * type<~String> - type of DNS record (A, CNAME, etc)
        # * name<~String> - host name for this DNS record
        # * content<~String> - data for the DNS record (ie for an A record, the IP address)
        def update_record(zone_id, record_id, options)
          body = %Q{<?xml version="1.0" encoding="UTF-8"?><record>}
          options.each {|k,v| body += "<#{k}>#{v}</#{k}>"}
          body += "</record>"
          request(
            :body     => body,
            :expects  => 202,
            :method   => 'PUT',
            :path     => "/api/domains/#{zone_id}/records/#{record_id}.xml"
          )
        end

      end

      class Mock

        def create_record(zone_id, type, domain, content)
          Fog::Mock.not_implemented
        end

      end
    end
  end
end

Version data entries

118 entries across 118 versions & 19 rubygems

Version Path
fog-1.22.0 lib/fog/bluebox/requests/dns/update_record.rb
fog-1.21.0 lib/fog/bluebox/requests/dns/update_record.rb
fog-maestrodev-1.20.0.20140305101839 lib/fog/bluebox/requests/dns/update_record.rb
fog-maestrodev-1.20.0.20140305101305 lib/fog/bluebox/requests/dns/update_record.rb
fog-maestrodev-1.19.0.20140212012611 lib/fog/bluebox/requests/dns/update_record.rb
fog-1.20.0 lib/fog/bluebox/requests/dns/update_record.rb
fog-maestrodev-1.19.0.20140110004459 lib/fog/bluebox/requests/dns/update_record.rb
fog-maestrodev-1.19.0.20140110003812 lib/fog/bluebox/requests/dns/update_record.rb
fog-maestrodev-1.19.0.20140109202555 lib/fog/bluebox/requests/dns/update_record.rb
fog-maestrodev-1.19.0.20140107192102 lib/fog/bluebox/requests/dns/update_record.rb
fog-maestrodev-1.19.0.20140107142106 lib/fog/bluebox/requests/dns/update_record.rb
fog-maestrodev-1.19.0.20131219203941 lib/fog/bluebox/requests/dns/update_record.rb
fog-maestrodev-1.18.0.20131219193542 lib/fog/bluebox/requests/dns/update_record.rb
fog-1.19.0 lib/fog/bluebox/requests/dns/update_record.rb
fog-maestrodev-1.18.0.20131219033443 lib/fog/bluebox/requests/dns/update_record.rb
fog-maestrodev-1.18.0.20131219032002 lib/fog/bluebox/requests/dns/update_record.rb
fog-maestrodev-1.18.0.20131219030716 lib/fog/bluebox/requests/dns/update_record.rb
fog-maestrodev-1.18.0.20131219022322 lib/fog/bluebox/requests/dns/update_record.rb
fog-maestrodev-1.18.0.20131218202447 lib/fog/bluebox/requests/dns/update_record.rb
fog-maestrodev-1.18.0.20131209091424 lib/fog/bluebox/requests/dns/update_record.rb