Class: Fog::DNS::Zerigo::Record
- Inherits:
-
Model
- Object
- Model
- Fog::DNS::Zerigo::Record
- Extended by:
- Fog::Deprecation
- Defined in:
- lib/fog/zerigo/models/dns/record.rb
Instance Method Summary collapse
- #destroy ⇒ Object
-
#initialize(attributes = {}) ⇒ Record
constructor
A new instance of Record.
- #save ⇒ Object
- #zone ⇒ Object
Constructor Details
#initialize(attributes = {}) ⇒ Record
Returns a new instance of Record.
24 25 26 |
# File 'lib/fog/zerigo/models/dns/record.rb', line 24 def initialize(attributes={}) super end |
Instance Method Details
#destroy ⇒ Object
28 29 30 31 32 |
# File 'lib/fog/zerigo/models/dns/record.rb', line 28 def destroy requires :identity service.delete_host(identity) true end |
#save ⇒ Object
38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 |
# File 'lib/fog/zerigo/models/dns/record.rb', line 38 def save requires :zone, :type, :value = {} [:hostname] = name if name [:notes] = description if description [:priority] = priority if priority [:ttl] = ttl if ttl if persisted? [:host_type] = type [:data] = value service.update_host(identity, ) else data = service.create_host(@zone.id, type, value, ) merge_attributes(data.body) end true end |
#zone ⇒ Object
34 35 36 |
# File 'lib/fog/zerigo/models/dns/record.rb', line 34 def zone @zone end |