# File lib/fog/bluebox/models/dns/record.rb, line 24 def destroy requires :identity service.delete_record(@zone.identity, identity) true end
# File lib/fog/bluebox/models/dns/record.rb, line 34 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
Generated with the Darkfish Rdoc Generator 2.