Sha256: e860d1da764aa0fd2b8e9841dcfbbbc9bc18be131e5f10dd72fb9948fd5b3d5f

Contents?: true

Size: 1.12 KB

Versions: 9

Compression:

Stored size: 1.12 KB

Contents

module Fog
  module Zerigo
    class DNS
      class Real

        require 'fog/dns/parsers/zerigo/get_zone_stats'

        # returns current traffic statistics about this zone. Queries is measured from the 
        # beginning of the current period through the time of the API call.
        #
        # ==== Parameters
        # * zone_id<~Integer> - the zone ID 
        #
        # ==== Returns
        # * response<~Excon::Response>:
        #   * body<~Hash>:
        #     * 'domain'<~String> - domain name  (ie example.com)
        #     * 'id'<~Integer> - Id of the zone
        #     * 'period-being'<~String> - date in following format 2010-07-01
        #     * 'period-end'<~String> - date
        #     * 'queries'<~Integer> - # of queries for the zone during period
        #   * 'status'<~Integer> - 200 indicates success
        
        def get_zone_stats(zone_id)
          request(
            :expects  => 200,
            :method   => 'GET',
            :parser   => Fog::Parsers::Zerigo::DNS::GetZoneStats.new,
            :path     => "/api/1.1/zones/#{zone_id}/stats.xml"
          )
        end

      end
    end
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
fog-0.8.2 lib/fog/dns/requests/zerigo/get_zone_stats.rb
fog-0.8.1 lib/fog/dns/requests/zerigo/get_zone_stats.rb
fog-0.8.0 lib/fog/dns/requests/zerigo/get_zone_stats.rb
fog-0.7.2 lib/fog/dns/requests/zerigo/get_zone_stats.rb
fog-0.7.1 lib/fog/dns/requests/zerigo/get_zone_stats.rb
fog-0.7.0 lib/fog/dns/requests/zerigo/get_zone_stats.rb
fog-0.6.0 lib/fog/dns/requests/zerigo/get_zone_stats.rb
fog-0.5.3 lib/fog/dns/requests/zerigo/get_zone_stats.rb
fog-0.5.2 lib/fog/dns/requests/zerigo/get_zone_stats.rb