Class: Fog::AWS::DNS::Mock

Inherits:
Object
  • Object
show all
Defined in:
lib/fog/dns/aws.rb

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(options = {}) ⇒ Mock

Returns a new instance of Mock.



36
37
38
39
40
41
42
43
44
45
46
47
48
# File 'lib/fog/dns/aws.rb', line 36

def initialize(options={})
  unless options.delete(:provider)
    location = caller.first
    warning = "[yellow][WARN] Fog::AWS::DNS.new is deprecated, use Fog::DNS.new(:provider => 'AWS') instead[/]"
    warning << " [light_black](" << location << ")[/] "
    Formatador.display_line(warning)
  end

  require 'mime/types'
  @aws_access_key_id  = options[:aws_access_key_id]
  @region             = options[:region]
  reset_data
end

Class Method Details

.dataObject



26
27
28
29
30
31
32
33
34
# File 'lib/fog/dns/aws.rb', line 26

def self.data
  @data ||= Hash.new do |hash, region|
    hash[region] = Hash.new do |region_hash, key|
      region_hash[key] = {
        :buckets => {}
      }
    end
  end
end

Instance Method Details

#reset_dataObject



50
51
52
53
# File 'lib/fog/dns/aws.rb', line 50

def reset_data
  self.class.data[@region].delete(@aws_access_key_id)
  @data = self.class.data[@region][@aws_access_key_id]
end

#signature(params) ⇒ Object



55
56
57
# File 'lib/fog/dns/aws.rb', line 55

def signature(params)
  "foo"
end