Sha256: a65be94c85ad7208b0ddb17a3f1731049fb24222f28ae9e3816f6d8568cdb955
Contents?: true
Size: 1.1 KB
Versions: 22
Compression:
Stored size: 1.1 KB
Contents
require 'fog/core/model' module Fog module Storage class AWS class Version < Fog::Model identity :version, :aliases => 'VersionId' attribute :key, :aliases => 'Key' attribute :last_modified, :aliases => ['Last-Modified', 'LastModified'] attribute :latest, :aliases => 'IsLatest', :type => :boolean attribute :content_length, :aliases => ['Content-Length', 'Size'], :type => :integer attribute :delete_marker, :type => :boolean def file @file ||= if collection.file collection.file.directory.files.get(key, 'versionId' => version) else collection.directory.files.get(key, 'versionId' => version) end end def destroy if collection.file collection.connection.delete_object(collection.file.directory.key, key, 'versionId' => version) else collection.connection.delete_object(collection.directory.key, key, 'versionId' => version) end end end end end end
Version data entries
22 entries across 22 versions & 11 rubygems