Class: Fog::DNS::Bluebox::Record
- Inherits:
-
Model
- Object
- Model
- Fog::DNS::Bluebox::Record
- Extended by:
- Fog::Deprecation
- Defined in:
- lib/fog/bluebox/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.
19 20 21 |
# File 'lib/fog/bluebox/models/dns/record.rb', line 19 def initialize(attributes={}) super end |
Instance Method Details
#destroy ⇒ Object
23 24 25 26 27 |
# File 'lib/fog/bluebox/models/dns/record.rb', line 23 def destroy requires :identity service.delete_record(@zone.identity, identity) true end |
#save ⇒ Object
33 34 35 36 37 38 39 40 41 42 |
# File 'lib/fog/bluebox/models/dns/record.rb', line 33 def save requires :zone, :type, :name, :value data = unless identity service.create_record(zone.identity, type, name, value) else service.update_record(zone.identity, identity, {:type => type, :name => name, :content => value}) end merge_attributes(data.body) true end |
#zone ⇒ Object
29 30 31 |
# File 'lib/fog/bluebox/models/dns/record.rb', line 29 def zone @zone end |