Class: Fog::DNS::DNSimple::Zone
- Defined in:
- lib/fog/dnsimple/models/dns/zone.rb
Instance Attribute Summary
Attributes inherited from Model
Instance Method Summary collapse
Methods inherited from Model
#initialize, #inspect, #reload, #symbolize_keys, #to_json, #wait_for
Methods included from Attributes::ClassMethods
#_load, #aliases, #attribute, #attributes, #identity, #ignore_attributes, #ignored_attributes
Methods included from Attributes::InstanceMethods
#_dump, #attributes, #dup, #identity, #identity=, #merge_attributes, #new_record?, #requires, #requires_one
Constructor Details
This class inherits a constructor from Fog::Model
Instance Method Details
#destroy ⇒ Object
16 17 18 19 |
# File 'lib/fog/dnsimple/models/dns/zone.rb', line 16 def destroy connection.delete_domain(identity) true end |
#nameservers ⇒ Object
30 31 32 33 34 35 36 37 |
# File 'lib/fog/dnsimple/models/dns/zone.rb', line 30 def nameservers [ "ns1.dnsimple.com", "ns2.dnsimple.com", "ns3.dnsimple.com", "ns4.dnsimple.com", ] end |
#records ⇒ Object
21 22 23 24 25 26 27 28 |
# File 'lib/fog/dnsimple/models/dns/zone.rb', line 21 def records @records ||= begin Fog::DNS::DNSimple::Records.new( :zone => self, :connection => connection ) end end |
#save ⇒ Object
39 40 41 42 43 44 |
# File 'lib/fog/dnsimple/models/dns/zone.rb', line 39 def save requires :domain data = connection.create_domain(domain).body["domain"] merge_attributes(data) true end |