Sha256: 73a54cbd69680c079e0b4b75801715a6308a486d5c962af166ec80ecd6d4c3f1
Contents?: true
Size: 870 Bytes
Versions: 22
Compression:
Stored size: 870 Bytes
Contents
require 'fog/openstack/models/model' module Fog module OpenStack class SharedFileSystem class ShareAccessRule < Fog::OpenStack::Model attr_accessor :share identity :id attribute :access_level attribute :access_type attribute :access_to attribute :state def save requires :share, :access_level, :access_type, :access_to raise Fog::Errors::Error, 'Resaving an existing object may create a duplicate' if persisted? merge_attributes(service.grant_share_access(@share.id, access_to, access_type, access_level).body['access']) true end def destroy requires :id, :share service.revoke_share_access(@share.id, id) true end def ready? state == 'active' end end end end end
Version data entries
22 entries across 22 versions & 3 rubygems