mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
2e0b7e545a
Done with `rubocop --auto-correct --only EmptyLineBetweenDefs,EmptyLines,EmptyLinesAroundBody`
36 lines
775 B
Ruby
36 lines
775 B
Ruby
require 'fog/core/model'
|
|
require 'fog/hp/models/storage/shared_files'
|
|
|
|
module Fog
|
|
module Storage
|
|
class HP
|
|
class SharedDirectory < Fog::Model
|
|
identity :url
|
|
|
|
attribute :bytes, :aliases => 'X-Container-Bytes-Used'
|
|
attribute :count, :aliases => 'X-Container-Object-Count'
|
|
|
|
def files
|
|
@files ||= begin
|
|
Fog::Storage::HP::SharedFiles.new(
|
|
:shared_directory => self,
|
|
:service => service
|
|
)
|
|
end
|
|
end
|
|
|
|
def destroy
|
|
requires :url
|
|
# delete is not allowed
|
|
false
|
|
end
|
|
|
|
def save(options = {})
|
|
requires :url
|
|
# put is not allowed
|
|
false
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|