# File lib/fog/storm_on_demand/models/dns/record.rb, line 27 def initialize(attributes={}) super end
# File lib/fog/storm_on_demand/models/dns/record.rb, line 43 def create_region(options) requires :identity service.create_record_region({:record_id => identity}.merge!(options)) true end
# File lib/fog/storm_on_demand/models/dns/record.rb, line 49 def delete_region(options) requires :identity service.delete_record_region({:record_id => identity}.merge!(options)) end
# File lib/fog/storm_on_demand/models/dns/record.rb, line 31 def destroy requires :identity service.delete_record(:id => identity) true end
# File lib/fog/storm_on_demand/models/dns/record.rb, line 37 def update(options={}) requires :identity service.update_record({:id => identity}.merge!(options)) true end
# File lib/fog/storm_on_demand/models/dns/record.rb, line 54 def update_region(options) requires :identity service.update_record_region({:record_id => identity}.merge!(options)) end