Class: OCI::ObjectStorage::Models::CreateMultipartUploadDetails

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

Overview

To use any of the API operations, you must be authorized in an IAM policy. If you’re not authorized, talk to an administrator. If you’re an administrator who needs to write policies to give users access, see [Getting Started with Policies](docs.us-phoenix-1.oraclecloud.com/Content/Identity/Concepts/policygetstarted.htm).

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ CreateMultipartUploadDetails

Initializes the object

Parameters:

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

    Model attributes in the form of hash

Options Hash (attributes):

  • :object (String)

    The value to assign to the #object property

  • :content_type (String)

    The value to assign to the #content_type property

  • :content_language (String)

    The value to assign to the #content_language property

  • :content_encoding (String)

    The value to assign to the #content_encoding property

  • :metadata (Hash<String, String>)

    The value to assign to the #metadata property



73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
# File 'lib/oci/object_storage/models/create_multipart_upload_details.rb', line 73

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.object = attributes[:'object'] if attributes[:'object']

  self.content_type = attributes[:'contentType'] if attributes[:'contentType']

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

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

  self.content_language = attributes[:'contentLanguage'] if attributes[:'contentLanguage']

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

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

  self.content_encoding = attributes[:'contentEncoding'] if attributes[:'contentEncoding']

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

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

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

Instance Attribute Details

#content_encodingString

The content encoding of the object to upload.

Returns:

  • (String)


28
29
30
# File 'lib/oci/object_storage/models/create_multipart_upload_details.rb', line 28

def content_encoding
  @content_encoding
end

#content_languageString

The content language of the object to upload.

Returns:

  • (String)


24
25
26
# File 'lib/oci/object_storage/models/create_multipart_upload_details.rb', line 24

def content_language
  @content_language
end

#content_typeString

The content type of the object to upload.

Returns:

  • (String)


20
21
22
# File 'lib/oci/object_storage/models/create_multipart_upload_details.rb', line 20

def content_type
  @content_type
end

#metadataHash<String, String>

Arbitrary string keys and values for the user-defined metadata for the object. Keys must be in "opc-meta-*" format. Avoid entering confidential information.

Returns:

  • (Hash<String, String>)


34
35
36
# File 'lib/oci/object_storage/models/create_multipart_upload_details.rb', line 34

def 
  @metadata
end

#objectString

[Required] The name of the object to which this multi-part upload is targeted. Avoid entering confidential information. Example: test/object1.log

Returns:

  • (String)


16
17
18
# File 'lib/oci/object_storage/models/create_multipart_upload_details.rb', line 16

def object
  @object
end

Class Method Details

.attribute_mapObject

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



37
38
39
40
41
42
43
44
45
46
47
# File 'lib/oci/object_storage/models/create_multipart_upload_details.rb', line 37

def self.attribute_map
  {
    # rubocop:disable Style/SymbolLiteral
    'object': :'object',
    'content_type': :'contentType',
    'content_language': :'contentLanguage',
    'content_encoding': :'contentEncoding',
    'metadata': :'metadata'
    # rubocop:enable Style/SymbolLiteral
  }
end

.swagger_typesObject

Attribute type mapping.



50
51
52
53
54
55
56
57
58
59
60
# File 'lib/oci/object_storage/models/create_multipart_upload_details.rb', line 50

def self.swagger_types
  {
    # rubocop:disable Style/SymbolLiteral
    'object': :'String',
    'content_type': :'String',
    'content_language': :'String',
    'content_encoding': :'String',
    'metadata': :'Hash<String, String>'
    # 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



109
110
111
112
113
114
115
116
117
# File 'lib/oci/object_storage/models/create_multipart_upload_details.rb', line 109

def ==(other)
  return true if equal?(other)
  self.class == other.class &&
    object == other.object &&
    content_type == other.content_type &&
    content_language == other.content_language &&
    content_encoding == other.content_encoding &&
     == other.
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



142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
# File 'lib/oci/object_storage/models/create_multipart_upload_details.rb', line 142

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


122
123
124
# File 'lib/oci/object_storage/models/create_multipart_upload_details.rb', line 122

def eql?(other)
  self == other
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



131
132
133
# File 'lib/oci/object_storage/models/create_multipart_upload_details.rb', line 131

def hash
  [object, content_type, content_language, content_encoding, ].hash
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



174
175
176
177
178
179
180
181
182
# File 'lib/oci/object_storage/models/create_multipart_upload_details.rb', line 174

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



168
169
170
# File 'lib/oci/object_storage/models/create_multipart_upload_details.rb', line 168

def to_s
  to_hash.to_s
end