Sha256: 4ae65a7723c9cb21dfe9e5a02ae753222d4cdf68c3b146113b8f9442dd6d609c
Contents?: true
Size: 1.1 KB
Versions: 65
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.service.delete_object(collection.file.directory.key, key, 'versionId' => version) else collection.service.delete_object(collection.directory.key, key, 'versionId' => version) end end end end end end
Version data entries
65 entries across 65 versions & 6 rubygems