Sha256: f349546a8c3fad989233cca9a2a5457273451b873f58e7009f8915810ded95c7

Contents?: true

Size: 1.82 KB

Versions: 48

Compression:

Stored size: 1.82 KB

Contents

require 'fog/storm_on_demand'
require 'fog/dns'
require 'fog/storm_on_demand/shared'

module Fog
  module DNS
    class StormOnDemand < Fog::Service

      API_URL = 'https://api.stormondemand.com'
      API_VERSION = 'v1'

      requires :storm_on_demand_username, :storm_on_demand_password
      recognizes :storm_on_demand_auth_url

      model_path 'fog/storm_on_demand/models/dns'
      model       :domain
      collection  :domains
      model       :record
      collection  :records
      model       :reverse
      collection  :reverses
      model       :zone
      collection  :zones

      request_path 'fog/storm_on_demand/requests/dns'
      request :list_domains
      request :renew_domain

      request :create_record
      request :delete_record
      request :get_record
      request :list_records
      request :update_record
      request :create_record_region
      request :delete_record_region
      request :update_record_region

      request :delete_reverse
      request :update_reverse

      request :create_zone
      request :check_zone_delegation
      request :delete_zone
      request :get_zone
      request :list_zones
      request :update_zone
      
      class Mock

        def self.data
          @data ||= Hash.new
        end

        def self.reset
          @data = nil
        end

        def self.reset_data(keys=data.keys)
          for key in [*keys]
            data.delete(key)
          end
        end

        def initialize(options={})
          @storm_on_demand_username = options[:storm_on_demand_username]
        end

        def data
          self.class.data[@storm_on_demand_username]
        end

        def reset_data
          self.class.data.delete(@storm_on_demand_username)
        end

      end

      class Real

        include Fog::StormOnDemand::RealShared

      end
    end
  end
end

Version data entries

48 entries across 48 versions & 3 rubygems

Version Path
fog-maestrodev-1.19.0.20140212012611 lib/fog/storm_on_demand/dns.rb
fog-maestrodev-1.19.0.20140110004459 lib/fog/storm_on_demand/dns.rb
fog-maestrodev-1.19.0.20140110003812 lib/fog/storm_on_demand/dns.rb
fog-maestrodev-1.19.0.20140109202555 lib/fog/storm_on_demand/dns.rb
fog-maestrodev-1.19.0.20140107192102 lib/fog/storm_on_demand/dns.rb
fog-maestrodev-1.19.0.20140107142106 lib/fog/storm_on_demand/dns.rb
fog-maestrodev-1.19.0.20131219203941 lib/fog/storm_on_demand/dns.rb
fog-maestrodev-1.18.0.20131219193542 lib/fog/storm_on_demand/dns.rb
fog-1.19.0 lib/fog/storm_on_demand/dns.rb
fog-maestrodev-1.18.0.20131219033443 lib/fog/storm_on_demand/dns.rb
fog-maestrodev-1.18.0.20131219032002 lib/fog/storm_on_demand/dns.rb
fog-maestrodev-1.18.0.20131219030716 lib/fog/storm_on_demand/dns.rb
fog-maestrodev-1.18.0.20131219022322 lib/fog/storm_on_demand/dns.rb
fog-maestrodev-1.18.0.20131218202447 lib/fog/storm_on_demand/dns.rb
fog-maestrodev-1.18.0.20131209091424 lib/fog/storm_on_demand/dns.rb
fog-maestrodev-1.18.0.20131209090811 lib/fog/storm_on_demand/dns.rb
fog-maestrodev-1.18.0.20131206115947 lib/fog/storm_on_demand/dns.rb
fog-maestrodev-1.18.0.20131205181604 lib/fog/storm_on_demand/dns.rb
fog-maestrodev-1.18.0.20131127194823 lib/fog/storm_on_demand/dns.rb
fog-maestrodev-1.18.0.20131126183714 lib/fog/storm_on_demand/dns.rb