Class: OCI::Database::Models::DbSystemUpgradeHistoryEntrySummary

Inherits:
Object
  • Object
show all
Defined in:
lib/oci/database/models/db_system_upgrade_history_entry_summary.rb

Overview

The summary for the record of an OS upgrade action on a DB system.

Constant Summary collapse

ACTION_ENUM =
[
  ACTION_PRECHECK = 'PRECHECK'.freeze,
  ACTION_ROLLBACK = 'ROLLBACK'.freeze,
  ACTION_UPDATE_SNAPSHOT_RETENTION_DAYS = 'UPDATE_SNAPSHOT_RETENTION_DAYS'.freeze,
  ACTION_UPGRADE = 'UPGRADE'.freeze,
  ACTION_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze
].freeze
LIFECYCLE_STATE_ENUM =
[
  LIFECYCLE_STATE_IN_PROGRESS = 'IN_PROGRESS'.freeze,
  LIFECYCLE_STATE_SUCCEEDED = 'SUCCEEDED'.freeze,
  LIFECYCLE_STATE_FAILED = 'FAILED'.freeze,
  LIFECYCLE_STATE_NEEDS_ATTENTION = 'NEEDS_ATTENTION'.freeze,
  LIFECYCLE_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 = {}) ⇒ DbSystemUpgradeHistoryEntrySummary

Initializes the object

Parameters:

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

    Model attributes in the form of hash

Options Hash (attributes):

  • :id (String)

    The value to assign to the #id property

  • :action (String)

    The value to assign to the #action property

  • :new_gi_version (String)

    The value to assign to the #new_gi_version property

  • :old_gi_version (String)

    The value to assign to the #old_gi_version property

  • :old_os_version (String)

    The value to assign to the #old_os_version property

  • :new_os_version (String)

    The value to assign to the #new_os_version property

  • :snapshot_retention_period_in_days (Integer)

    The value to assign to the #snapshot_retention_period_in_days property

  • :lifecycle_state (String)

    The value to assign to the #lifecycle_state property

  • :lifecycle_details (String)

    The value to assign to the #lifecycle_details property

  • :time_started (DateTime)

    The value to assign to the #time_started property

  • :time_ended (DateTime)

    The value to assign to the #time_ended property



130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
# File 'lib/oci/database/models/db_system_upgrade_history_entry_summary.rb', line 130

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

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

  self.new_gi_version = attributes[:'newGiVersion'] if attributes[:'newGiVersion']

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

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

  self.old_gi_version = attributes[:'oldGiVersion'] if attributes[:'oldGiVersion']

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

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

  self.old_os_version = attributes[:'oldOsVersion'] if attributes[:'oldOsVersion']

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

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

  self.new_os_version = attributes[:'newOsVersion'] if attributes[:'newOsVersion']

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

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

  self.snapshot_retention_period_in_days = attributes[:'snapshotRetentionPeriodInDays'] if attributes[:'snapshotRetentionPeriodInDays']

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

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

  self.lifecycle_state = attributes[:'lifecycleState'] if attributes[:'lifecycleState']

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

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

  self.lifecycle_details = attributes[:'lifecycleDetails'] if attributes[:'lifecycleDetails']

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

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

  self.time_started = attributes[:'timeStarted'] if attributes[:'timeStarted']

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

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

  self.time_ended = attributes[:'timeEnded'] if attributes[:'timeEnded']

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

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

Instance Attribute Details

#actionString

[Required] The operating system upgrade action.

Returns:

  • (String)


35
36
37
# File 'lib/oci/database/models/db_system_upgrade_history_entry_summary.rb', line 35

def action
  @action
end

#idString

[Required] The OCID of the upgrade history entry.

Returns:

  • (String)


31
32
33
# File 'lib/oci/database/models/db_system_upgrade_history_entry_summary.rb', line 31

def id
  @id
end

#lifecycle_detailsString

A descriptive text associated with the lifecycleState. Typically contains additional displayable text.

Returns:

  • (String)


65
66
67
# File 'lib/oci/database/models/db_system_upgrade_history_entry_summary.rb', line 65

def lifecycle_details
  @lifecycle_details
end

#lifecycle_stateString

[Required] The current state of the action.

Returns:

  • (String)


59
60
61
# File 'lib/oci/database/models/db_system_upgrade_history_entry_summary.rb', line 59

def lifecycle_state
  @lifecycle_state
end

#new_gi_versionString

A valid Oracle Grid Infrastructure (GI) software version.

Returns:

  • (String)


39
40
41
# File 'lib/oci/database/models/db_system_upgrade_history_entry_summary.rb', line 39

def new_gi_version
  @new_gi_version
end

#new_os_versionString

A valid Oracle Software (OS) version eg. Oracle Linux Server release 8

Returns:

  • (String)


51
52
53
# File 'lib/oci/database/models/db_system_upgrade_history_entry_summary.rb', line 51

def new_os_version
  @new_os_version
end

#old_gi_versionString

A valid Oracle Grid Infrastructure (GI) software version.

Returns:

  • (String)


43
44
45
# File 'lib/oci/database/models/db_system_upgrade_history_entry_summary.rb', line 43

def old_gi_version
  @old_gi_version
end

#old_os_versionString

A valid Oracle Software (OS) version eg. Oracle Linux Server release 8

Returns:

  • (String)


47
48
49
# File 'lib/oci/database/models/db_system_upgrade_history_entry_summary.rb', line 47

def old_os_version
  @old_os_version
end

#snapshot_retention_period_in_daysInteger

[Required] The retention period, in days, for the snapshot that allows you to perform a rollback of the upgrade operation. After this number of days passes, you cannot roll back the upgrade.

Returns:

  • (Integer)


55
56
57
# File 'lib/oci/database/models/db_system_upgrade_history_entry_summary.rb', line 55

def snapshot_retention_period_in_days
  @snapshot_retention_period_in_days
end

#time_endedDateTime

The date and time when the upgrade action completed

Returns:

  • (DateTime)


73
74
75
# File 'lib/oci/database/models/db_system_upgrade_history_entry_summary.rb', line 73

def time_ended
  @time_ended
end

#time_startedDateTime

[Required] The date and time when the upgrade action started.

Returns:

  • (DateTime)


69
70
71
# File 'lib/oci/database/models/db_system_upgrade_history_entry_summary.rb', line 69

def time_started
  @time_started
end

Class Method Details

.attribute_mapObject

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



76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
# File 'lib/oci/database/models/db_system_upgrade_history_entry_summary.rb', line 76

def self.attribute_map
  {
    # rubocop:disable Style/SymbolLiteral
    'id': :'id',
    'action': :'action',
    'new_gi_version': :'newGiVersion',
    'old_gi_version': :'oldGiVersion',
    'old_os_version': :'oldOsVersion',
    'new_os_version': :'newOsVersion',
    'snapshot_retention_period_in_days': :'snapshotRetentionPeriodInDays',
    'lifecycle_state': :'lifecycleState',
    'lifecycle_details': :'lifecycleDetails',
    'time_started': :'timeStarted',
    'time_ended': :'timeEnded'
    # rubocop:enable Style/SymbolLiteral
  }
end

.swagger_typesObject

Attribute type mapping.



95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
# File 'lib/oci/database/models/db_system_upgrade_history_entry_summary.rb', line 95

def self.swagger_types
  {
    # rubocop:disable Style/SymbolLiteral
    'id': :'String',
    'action': :'String',
    'new_gi_version': :'String',
    'old_gi_version': :'String',
    'old_os_version': :'String',
    'new_os_version': :'String',
    'snapshot_retention_period_in_days': :'Integer',
    'lifecycle_state': :'String',
    'lifecycle_details': :'String',
    'time_started': :'DateTime',
    'time_ended': :'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



228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
# File 'lib/oci/database/models/db_system_upgrade_history_entry_summary.rb', line 228

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

  self.class == other.class &&
    id == other.id &&
    action == other.action &&
    new_gi_version == other.new_gi_version &&
    old_gi_version == other.old_gi_version &&
    old_os_version == other.old_os_version &&
    new_os_version == other.new_os_version &&
    snapshot_retention_period_in_days == other.snapshot_retention_period_in_days &&
    lifecycle_state == other.lifecycle_state &&
    lifecycle_details == other.lifecycle_details &&
    time_started == other.time_started &&
    time_ended == other.time_ended
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



268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
# File 'lib/oci/database/models/db_system_upgrade_history_entry_summary.rb', line 268

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


248
249
250
# File 'lib/oci/database/models/db_system_upgrade_history_entry_summary.rb', line 248

def eql?(other)
  self == other
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



257
258
259
# File 'lib/oci/database/models/db_system_upgrade_history_entry_summary.rb', line 257

def hash
  [id, action, new_gi_version, old_gi_version, old_os_version, new_os_version, snapshot_retention_period_in_days, lifecycle_state, lifecycle_details, time_started, time_ended].hash
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



301
302
303
304
305
306
307
308
309
310
# File 'lib/oci/database/models/db_system_upgrade_history_entry_summary.rb', line 301

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



295
296
297
# File 'lib/oci/database/models/db_system_upgrade_history_entry_summary.rb', line 295

def to_s
  to_hash.to_s
end