Class: OCI::OsManagement::Models::EventContent

Inherits:
Object
  • Object
show all
Defined in:
lib/oci/os_management/models/event_content.rb

Overview

Information about the data collected as a ZIP file when the event occurred.

Constant Summary collapse

CONTENT_AVAILABILITY_ENUM =
[
  CONTENT_AVAILABILITY_NOT_AVAILABLE = 'NOT_AVAILABLE'.freeze,
  CONTENT_AVAILABILITY_AVAILABLE_ON_INSTANCE = 'AVAILABLE_ON_INSTANCE'.freeze,
  CONTENT_AVAILABILITY_AVAILABLE_ON_SERVICE = 'AVAILABLE_ON_SERVICE'.freeze,
  CONTENT_AVAILABILITY_AVAILABLE_ON_INSTANCE_AND_SERVICE = 'AVAILABLE_ON_INSTANCE_AND_SERVICE'.freeze,
  CONTENT_AVAILABILITY_AVAILABLE_ON_INSTANCE_UPLOAD_IN_PROGRESS = 'AVAILABLE_ON_INSTANCE_UPLOAD_IN_PROGRESS'.freeze,
  CONTENT_AVAILABILITY_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze
].freeze

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ EventContent

Initializes the object

Parameters:

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

    Model attributes in the form of hash

Options Hash (attributes):

  • :content_availability (String)

    The value to assign to the #content_availability property

  • :instance_path (String)

    The value to assign to the #instance_path property

  • :size (Integer)

    The value to assign to the #size property



64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
# File 'lib/oci/os_management/models/event_content.rb', line 64

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

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

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

  self.instance_path = attributes[:'instancePath'] if attributes[:'instancePath']

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

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

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

Instance Attribute Details

#content_availabilityString

Status of the event content

Returns:

  • (String)


23
24
25
# File 'lib/oci/os_management/models/event_content.rb', line 23

def content_availability
  @content_availability
end

#instance_pathString

Path to the event content on the instance

Returns:

  • (String)


27
28
29
# File 'lib/oci/os_management/models/event_content.rb', line 27

def instance_path
  @instance_path
end

#sizeInteger

size in bytes of the event content (size of the zip file uploaded)

Returns:

  • (Integer)


31
32
33
# File 'lib/oci/os_management/models/event_content.rb', line 31

def size
  @size
end

Class Method Details

.attribute_mapObject

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



34
35
36
37
38
39
40
41
42
# File 'lib/oci/os_management/models/event_content.rb', line 34

def self.attribute_map
  {
    # rubocop:disable Style/SymbolLiteral
    'content_availability': :'contentAvailability',
    'instance_path': :'instancePath',
    'size': :'size'
    # rubocop:enable Style/SymbolLiteral
  }
end

.swagger_typesObject

Attribute type mapping.



45
46
47
48
49
50
51
52
53
# File 'lib/oci/os_management/models/event_content.rb', line 45

def self.swagger_types
  {
    # rubocop:disable Style/SymbolLiteral
    'content_availability': :'String',
    'instance_path': :'String',
    'size': :'Integer'
    # 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



105
106
107
108
109
110
111
112
# File 'lib/oci/os_management/models/event_content.rb', line 105

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

  self.class == other.class &&
    content_availability == other.content_availability &&
    instance_path == other.instance_path &&
    size == other.size
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



137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
# File 'lib/oci/os_management/models/event_content.rb', line 137

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


117
118
119
# File 'lib/oci/os_management/models/event_content.rb', line 117

def eql?(other)
  self == other
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



126
127
128
# File 'lib/oci/os_management/models/event_content.rb', line 126

def hash
  [content_availability, instance_path, size].hash
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



170
171
172
173
174
175
176
177
178
179
# File 'lib/oci/os_management/models/event_content.rb', line 170

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



164
165
166
# File 'lib/oci/os_management/models/event_content.rb', line 164

def to_s
  to_hash.to_s
end