Class: Fog::DNS::Bluebox::Zone

Inherits:
Model
  • Object
show all
Defined in:
lib/fog/bluebox/models/dns/zone.rb

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ Zone

Returns a new instance of Zone.



19
20
21
# File 'lib/fog/bluebox/models/dns/zone.rb', line 19

def initialize(attributes = {})
  super(attributes)
end

Instance Method Details

#destroyObject

Raises:

  • (Fog::Errors::Error)


23
24
25
# File 'lib/fog/bluebox/models/dns/zone.rb', line 23

def destroy
  raise Fog::Errors::Error.new('Not implemented')
end

#nameserversObject



36
37
38
39
40
41
42
# File 'lib/fog/bluebox/models/dns/zone.rb', line 36

def nameservers
  [
    'ns1.blueblxgrid.com',
    'ns2.blueblxgrid.com',
    'ns3.blueblxgrid.com'
  ]
end

#recordsObject



27
28
29
30
31
32
33
34
# File 'lib/fog/bluebox/models/dns/zone.rb', line 27

def records
  @records ||= begin
    Fog::DNS::Bluebox::Records.new(
      :zone       => self,
      :service => service
    )
  end
end

#saveObject



50
51
52
53
54
55
56
57
58
# File 'lib/fog/bluebox/models/dns/zone.rb', line 50

def save
  self.ttl ||= 3600
  requires :domain, :ttl
  options = attributes.dup
  options[:name] = options.delete(:domain)
  data = identity.nil? ? service.create_zone(options) : service.update_zone(identity, options)
  merge_attributes(data.body)
  true
end