1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
|
require 'fog/openstack/models/model'
module Fog
module OpenStack
class DNS
class V2
class Recordset < Fog::OpenStack::Model
identity :id
attribute :name
attribute :project_id
attribute :status
attribute :action
attribute :zone_id
attribute :zone_name
attribute :type
attribute :records
attribute :version
attribute :created_at
attribute :links
attribute :ttl
attribute :description
attribute :updated_at
def save
raise Fog::Errors::Error, 'Resaving an existing object may create a duplicate' if persisted?
requires :zone_id, :name, :type, :records
merge_attributes(service.create_recordset(zone_id, name, type, records, attributes).body)
true
end
# overwritten because zone_id is needed for get
def reload(options = {})
requires :zone_id, :id
merge_attributes(collection.get(zone_id, id, options).attributes)
self
end
def update(options = nil)
requires :zone_id, :id
merge_attributes(service.update_recordset(zone_id, id, options || attributes).body)
self
end
def destroy(options = {})
requires :zone_id, :id
service.delete_recordset(zone_id, id, options)
true
end
end
end
end
end
end
|