Sha256: 26b8d24971b2dcffe6daa35091320d00ab84e154d2a04e6252d2d4f0a8f91d91
Contents?: true
Size: 1.49 KB
Versions: 37
Compression:
Stored size: 1.49 KB
Contents
require 'fog/openstack/models/model' module Fog module DNS class OpenStack 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
Version data entries
37 entries across 35 versions & 3 rubygems