Class: OCI::ObjectStorage::Models::ObjectSummary

Inherits:
Object
  • Object
show all
Defined in:
lib/oci/object_storage/models/object_summary.rb

Overview

To use any of the API operations, you must be authorized in an IAM policy. If you are not authorized, talk to an administrator. If you are an administrator who needs to write policies to give users access, see Getting Started with Policies.

Constant Summary collapse

STORAGE_TIER_ENUM =
[
  STORAGE_TIER_STANDARD = 'Standard'.freeze,
  STORAGE_TIER_INFREQUENT_ACCESS = 'InfrequentAccess'.freeze,
  STORAGE_TIER_ARCHIVE = 'Archive'.freeze,
  STORAGE_TIER_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze
].freeze
ARCHIVAL_STATE_ENUM =
[
  ARCHIVAL_STATE_ARCHIVED = 'Archived'.freeze,
  ARCHIVAL_STATE_RESTORING = 'Restoring'.freeze,
  ARCHIVAL_STATE_RESTORED = 'Restored'.freeze,
  ARCHIVAL_STATE_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze
].freeze

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ ObjectSummary

Initializes the object

Parameters:

  • attributes (Hash) (defaults to: {})

    Model attributes in the form of hash

Options Hash (attributes):

  • :name (String)

    The value to assign to the #name property

  • :size (Integer)

    The value to assign to the #size property

  • :md5 (String)

    The value to assign to the #md5 property

  • :time_created (DateTime)

    The value to assign to the #time_created property

  • :etag (String)

    The value to assign to the #etag property

  • :storage_tier (String)

    The value to assign to the #storage_tier property

  • :archival_state (String)

    The value to assign to the #archival_state property

  • :time_modified (DateTime)

    The value to assign to the #time_modified property



109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
# File 'lib/oci/object_storage/models/object_summary.rb', line 109

def initialize(attributes = {})
  return unless attributes.is_a?(Hash)

  # convert string to symbol for hash key
  attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }

  self.name = attributes[:'name'] if attributes[:'name']

  self.size = attributes[:'size'] if attributes[:'size']

  self.md5 = attributes[:'md5'] if attributes[:'md5']

  self.time_created = attributes[:'timeCreated'] if attributes[:'timeCreated']

  raise 'You cannot provide both :timeCreated and :time_created' if attributes.key?(:'timeCreated') && attributes.key?(:'time_created')

  self.time_created = attributes[:'time_created'] if attributes[:'time_created']

  self.etag = attributes[:'etag'] if attributes[:'etag']

  self.storage_tier = attributes[:'storageTier'] if attributes[:'storageTier']

  raise 'You cannot provide both :storageTier and :storage_tier' if attributes.key?(:'storageTier') && attributes.key?(:'storage_tier')

  self.storage_tier = attributes[:'storage_tier'] if attributes[:'storage_tier']

  self.archival_state = attributes[:'archivalState'] if attributes[:'archivalState']

  raise 'You cannot provide both :archivalState and :archival_state' if attributes.key?(:'archivalState') && attributes.key?(:'archival_state')

  self.archival_state = attributes[:'archival_state'] if attributes[:'archival_state']

  self.time_modified = attributes[:'timeModified'] if attributes[:'timeModified']

  raise 'You cannot provide both :timeModified and :time_modified' if attributes.key?(:'timeModified') && attributes.key?(:'time_modified')

  self.time_modified = attributes[:'time_modified'] if attributes[:'time_modified']
end

Instance Attribute Details

#archival_stateString

Archival state of an object. This field is set only for objects in Archive tier.

Returns:

  • (String)


57
58
59
# File 'lib/oci/object_storage/models/object_summary.rb', line 57

def archival_state
  @archival_state
end

#etagString

The current entity tag (ETag) for the object.

Returns:

  • (String)


49
50
51
# File 'lib/oci/object_storage/models/object_summary.rb', line 49

def etag
  @etag
end

#md5String

Base64-encoded MD5 hash of the object data.

Returns:

  • (String)


41
42
43
# File 'lib/oci/object_storage/models/object_summary.rb', line 41

def md5
  @md5
end

#nameString

[Required] The name of the object. Avoid entering confidential information. Example: test/object1.log

Returns:

  • (String)


33
34
35
# File 'lib/oci/object_storage/models/object_summary.rb', line 33

def name
  @name
end

#sizeInteger

Size of the object in bytes.

Returns:

  • (Integer)


37
38
39
# File 'lib/oci/object_storage/models/object_summary.rb', line 37

def size
  @size
end

#storage_tierString

The storage tier that the object is stored in.

Returns:

  • (String)


53
54
55
# File 'lib/oci/object_storage/models/object_summary.rb', line 53

def storage_tier
  @storage_tier
end

#time_createdDateTime

The date and time the object was created, as described in RFC 2616.

Returns:

  • (DateTime)


45
46
47
# File 'lib/oci/object_storage/models/object_summary.rb', line 45

def time_created
  @time_created
end

#time_modifiedDateTime

The date and time the object was modified, as described in RFC 2616, section 14.29.

Returns:

  • (DateTime)


61
62
63
# File 'lib/oci/object_storage/models/object_summary.rb', line 61

def time_modified
  @time_modified
end

Class Method Details

.attribute_mapObject

Attribute mapping from ruby-style variable name to JSON key.



64
65
66
67
68
69
70
71
72
73
74
75
76
77
# File 'lib/oci/object_storage/models/object_summary.rb', line 64

def self.attribute_map
  {
    # rubocop:disable Style/SymbolLiteral
    'name': :'name',
    'size': :'size',
    'md5': :'md5',
    'time_created': :'timeCreated',
    'etag': :'etag',
    'storage_tier': :'storageTier',
    'archival_state': :'archivalState',
    'time_modified': :'timeModified'
    # rubocop:enable Style/SymbolLiteral
  }
end

.swagger_typesObject

Attribute type mapping.



80
81
82
83
84
85
86
87
88
89
90
91
92
93
# File 'lib/oci/object_storage/models/object_summary.rb', line 80

def self.swagger_types
  {
    # rubocop:disable Style/SymbolLiteral
    'name': :'String',
    'size': :'Integer',
    'md5': :'String',
    'time_created': :'DateTime',
    'etag': :'String',
    'storage_tier': :'String',
    'archival_state': :'String',
    'time_modified': :'DateTime'
    # rubocop:enable Style/SymbolLiteral
  }
end

Instance Method Details

#==(other) ⇒ Object

Checks equality by comparing each attribute.

Parameters:

  • other (Object)

    the other object to be compared



181
182
183
184
185
186
187
188
189
190
191
192
193
# File 'lib/oci/object_storage/models/object_summary.rb', line 181

def ==(other)
  return true if equal?(other)

  self.class == other.class &&
    name == other.name &&
    size == other.size &&
    md5 == other.md5 &&
    time_created == other.time_created &&
    etag == other.etag &&
    storage_tier == other.storage_tier &&
    archival_state == other.archival_state &&
    time_modified == other.time_modified
end

#build_from_hash(attributes) ⇒ Object

Builds the object from hash

Parameters:

  • attributes (Hash)

    Model attributes in the form of hash

Returns:

  • (Object)

    Returns the model itself



218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
# File 'lib/oci/object_storage/models/object_summary.rb', line 218

def build_from_hash(attributes)
  return nil unless attributes.is_a?(Hash)

  self.class.swagger_types.each_pair do |key, type|
    if type =~ /^Array<(.*)>/i
      # check to ensure the input is an array given that the the attribute
      # is documented as an array but the input is not
      if attributes[self.class.attribute_map[key]].is_a?(Array)
        public_method("#{key}=").call(
          attributes[self.class.attribute_map[key]]
            .map { |v| OCI::Internal::Util.convert_to_type(Regexp.last_match(1), v) }
        )
      end
    elsif !attributes[self.class.attribute_map[key]].nil?
      public_method("#{key}=").call(
        OCI::Internal::Util.convert_to_type(type, attributes[self.class.attribute_map[key]])
      )
    end
    # or else data not found in attributes(hash), not an issue as the data can be optional
  end

  self
end

#eql?(other) ⇒ Boolean

Parameters:

  • other (Object)

    the other object to be compared

Returns:

  • (Boolean)

See Also:

  • `==` method


198
199
200
# File 'lib/oci/object_storage/models/object_summary.rb', line 198

def eql?(other)
  self == other
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



207
208
209
# File 'lib/oci/object_storage/models/object_summary.rb', line 207

def hash
  [name, size, md5, time_created, etag, storage_tier, archival_state, time_modified].hash
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



251
252
253
254
255
256
257
258
259
260
# File 'lib/oci/object_storage/models/object_summary.rb', line 251

def to_hash
  hash = {}
  self.class.attribute_map.each_pair do |attr, param|
    value = public_method(attr).call
    next if value.nil? && !instance_variable_defined?("@#{attr}")

    hash[param] = _to_hash(value)
  end
  hash
end

#to_sString

Returns the string representation of the object

Returns:

  • (String)

    String presentation of the object



245
246
247
# File 'lib/oci/object_storage/models/object_summary.rb', line 245

def to_s
  to_hash.to_s
end