Sha256: d7dbb440d634a16b2411c9e906281f7b109f046ff2e980baa924832ce6bdcb59

Contents?: true

Size: 1.93 KB

Versions: 7

Compression:

Stored size: 1.93 KB

Contents

module Fog
  module DNS
    class Bluebox
      class Real

        require 'fog/dns/parsers/bluebox/create_zone'

        # Create a new DNS zone
        # ==== Parameters
        #     * 'name'<~String> - The name of the zone
        #     * 'ttl'<~Integer> - TimeToLive (ttl) for the domain, in seconds
        #     * 'retry'<~Integer> - Retry interval for the domain, in seconds
        #     * 'refresh'<~Integer> - Refresh interval for the zone
        #     * 'minimum'<~Integer> - Minimum refresh interval for the zone
        # ==== Returns
        # * response<~Excon::Response>:
        #   * body<~Hash>:
        #     * 'name'<~String> - The name of the zone
        #     * 'serial'<~Integer> - Serial number of the zone
        #     * 'ttl'<~Integer> - TimeToLive (ttl) for the domain, in seconds
        #     * 'retry'<~Integer> - Retry interval for the domain, in seconds
        #     * 'record-count'<~Integer> - Number of records in the zone
        #     * 'id'<~String> - Id for the zone
        #     * 'refresh'<~Integer> - Refresh interval for the zone
        #     * 'minimum'<~Integer> - Minimum refresh interval for the zone
        def create_zone(options)
          body = %Q{<?xml version="1.0" encoding="UTF-8"?><domain><name>#{options[:name]}</name><ttl>#{options[:ttl]}</ttl>}
          body += %Q{<retry>#{options[:retry]}</retry>} if options[:retry]
          body += %Q{<refresh>#{options[:retry]}</refresh>} if options[:refresh]
          body += %Q{<minimum>#{options[:minimum]}</minimum>} if options[:minimum]
          body += %Q{</domain>}
          request(
            :body     => body,
            :expects  => 202,
            :method   => 'POST',
            :parser   => Fog::Parsers::DNS::Bluebox::CreateZone.new,
            :path     => "/api/domains.xml"
          )
        end

      end

      class Mock

        def create_zone(options)
          Fog::Mock.not_implemented
        end

      end
    end
  end
end

Version data entries

7 entries across 7 versions & 3 rubygems

Version Path
brightbox-cli-0.13.1 lib/brightbox-cli/vendor/fog/lib/fog/dns/requests/bluebox/create_zone.rb
brightbox-cli-0.13.0 lib/brightbox-cli/vendor/fog/lib/fog/dns/requests/bluebox/create_zone.rb
fog-0.11.0 lib/fog/dns/requests/bluebox/create_zone.rb
fog-0.10.0 lib/fog/dns/requests/bluebox/create_zone.rb
fog4encbs-0.9.0.1 lib/fog/dns/requests/bluebox/create_zone.rb
fog4encbs-0.9.0 lib/fog/dns/requests/bluebox/create_zone.rb
fog-0.9.0 lib/fog/dns/requests/bluebox/create_zone.rb