Class: OCI::Mysql::Models::ReplicaSummary

Inherits:
Object
  • Object
show all
Defined in:
lib/oci/mysql/models/replica_summary.rb

Overview

Summary of the read replica.

Constant Summary collapse

LIFECYCLE_STATE_ENUM =
[
  LIFECYCLE_STATE_CREATING = 'CREATING'.freeze,
  LIFECYCLE_STATE_ACTIVE = 'ACTIVE'.freeze,
  LIFECYCLE_STATE_INACTIVE = 'INACTIVE'.freeze,
  LIFECYCLE_STATE_UPDATING = 'UPDATING'.freeze,
  LIFECYCLE_STATE_DELETING = 'DELETING'.freeze,
  LIFECYCLE_STATE_DELETED = 'DELETED'.freeze,
  LIFECYCLE_STATE_NEEDS_ATTENTION = 'NEEDS_ATTENTION'.freeze,
  LIFECYCLE_STATE_FAILED = 'FAILED'.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 = {}) ⇒ ReplicaSummary

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

  • :db_system_id (String)

    The value to assign to the #db_system_id property

  • :compartment_id (String)

    The value to assign to the #compartment_id property

  • :display_name (String)

    The value to assign to the #display_name property

  • :description (String)

    The value to assign to the #description 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_created (DateTime)

    The value to assign to the #time_created property

  • :time_updated (DateTime)

    The value to assign to the #time_updated property

  • :mysql_version (String)

    The value to assign to the #mysql_version property

  • :availability_domain (String)

    The value to assign to the #availability_domain property

  • :fault_domain (String)

    The value to assign to the #fault_domain property

  • :ip_address (String)

    The value to assign to the #ip_address property

  • :port (Integer)

    The value to assign to the #port property

  • :port_x (Integer)

    The value to assign to the #port_x property

  • :freeform_tags (Hash<String, String>)

    The value to assign to the #freeform_tags property

  • :defined_tags (Hash<String, Hash<String, Object>>)

    The value to assign to the #defined_tags property

  • :is_delete_protected (BOOLEAN)

    The value to assign to the #is_delete_protected property

  • :shape_name (String)

    The value to assign to the #shape_name property

  • :configuration_id (String)

    The value to assign to the #configuration_id property

  • :replica_overrides (OCI::Mysql::Models::ReplicaOverrides)

    The value to assign to the #replica_overrides property



207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
# File 'lib/oci/mysql/models/replica_summary.rb', line 207

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

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

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

  self.compartment_id = attributes[:'compartmentId'] if attributes[:'compartmentId']

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

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

  self.display_name = attributes[:'displayName'] if attributes[:'displayName']

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

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

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

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

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

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

  self.mysql_version = attributes[:'mysqlVersion'] if attributes[:'mysqlVersion']

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

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

  self.availability_domain = attributes[:'availabilityDomain'] if attributes[:'availabilityDomain']

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

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

  self.fault_domain = attributes[:'faultDomain'] if attributes[:'faultDomain']

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

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

  self.ip_address = attributes[:'ipAddress'] if attributes[:'ipAddress']

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

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

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

  self.port_x = attributes[:'portX'] if attributes[:'portX']

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

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

  self.freeform_tags = attributes[:'freeformTags'] if attributes[:'freeformTags']

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

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

  self.defined_tags = attributes[:'definedTags'] if attributes[:'definedTags']

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

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

  self.is_delete_protected = attributes[:'isDeleteProtected'] unless attributes[:'isDeleteProtected'].nil?
  self.is_delete_protected = false if is_delete_protected.nil? && !attributes.key?(:'isDeleteProtected') # rubocop:disable Style/StringLiterals

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

  self.is_delete_protected = attributes[:'is_delete_protected'] unless attributes[:'is_delete_protected'].nil?
  self.is_delete_protected = false if is_delete_protected.nil? && !attributes.key?(:'isDeleteProtected') && !attributes.key?(:'is_delete_protected') # rubocop:disable Style/StringLiterals

  self.shape_name = attributes[:'shapeName'] if attributes[:'shapeName']

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

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

  self.configuration_id = attributes[:'configurationId'] if attributes[:'configurationId']

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

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

  self.replica_overrides = attributes[:'replicaOverrides'] if attributes[:'replicaOverrides']

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

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

Instance Attribute Details

#availability_domainString

The name of the Availability Domain the read replica is located in.

Returns:

  • (String)


68
69
70
# File 'lib/oci/mysql/models/replica_summary.rb', line 68

def availability_domain
  @availability_domain
end

#compartment_idString

[Required] The OCID of the compartment that contains the read replica.

Returns:

  • (String)


34
35
36
# File 'lib/oci/mysql/models/replica_summary.rb', line 34

def compartment_id
  @compartment_id
end

#configuration_idString

The OCID of the Configuration currently in use by the read replica.

Returns:

  • (String)


117
118
119
# File 'lib/oci/mysql/models/replica_summary.rb', line 117

def configuration_id
  @configuration_id
end

#db_system_idString

[Required] The OCID of the DB System the read replica is associated with.

Returns:

  • (String)


30
31
32
# File 'lib/oci/mysql/models/replica_summary.rb', line 30

def db_system_id
  @db_system_id
end

#defined_tagsHash<String, Hash<String, Object>>

Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {\"foo-namespace\": {\"bar-key\": \"value\"}}

Returns:

  • (Hash<String, Hash<String, Object>>)


98
99
100
# File 'lib/oci/mysql/models/replica_summary.rb', line 98

def defined_tags
  @defined_tags
end

#descriptionString

User provided description of the read replica.

Returns:

  • (String)


42
43
44
# File 'lib/oci/mysql/models/replica_summary.rb', line 42

def description
  @description
end

#display_nameString

[Required] The user-friendly name for the read replica. It does not have to be unique.

Returns:

  • (String)


38
39
40
# File 'lib/oci/mysql/models/replica_summary.rb', line 38

def display_name
  @display_name
end

#fault_domainString

The name of the Fault Domain the read replica is located in.

Returns:

  • (String)


72
73
74
# File 'lib/oci/mysql/models/replica_summary.rb', line 72

def fault_domain
  @fault_domain
end

#freeform_tagsHash<String, String>

Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {\"bar-key\": \"value\"}

Returns:

  • (Hash<String, String>)


92
93
94
# File 'lib/oci/mysql/models/replica_summary.rb', line 92

def freeform_tags
  @freeform_tags
end

#idString

[Required] The OCID of the read replica.

Returns:

  • (String)


26
27
28
# File 'lib/oci/mysql/models/replica_summary.rb', line 26

def id
  @id
end

#ip_addressString

[Required] The IP address the read replica is configured to listen on.

Returns:

  • (String)


77
78
79
# File 'lib/oci/mysql/models/replica_summary.rb', line 77

def ip_address
  @ip_address
end

#is_delete_protectedBOOLEAN

Specifies whether the read replica can be deleted. Set to true to prevent deletion, false (default) to allow. Note that if a read replica is delete protected it also prevents the entire DB System from being deleted. If the DB System is delete protected, read replicas can still be deleted individually if they are not delete protected themselves.

Returns:

  • (BOOLEAN)


106
107
108
# File 'lib/oci/mysql/models/replica_summary.rb', line 106

def is_delete_protected
  @is_delete_protected
end

#lifecycle_detailsString

A message describing the state of the read replica.

Returns:

  • (String)


50
51
52
# File 'lib/oci/mysql/models/replica_summary.rb', line 50

def lifecycle_details
  @lifecycle_details
end

#lifecycle_stateString

[Required] The state of the read replica.

Returns:

  • (String)


46
47
48
# File 'lib/oci/mysql/models/replica_summary.rb', line 46

def lifecycle_state
  @lifecycle_state
end

#mysql_versionString

[Required] The MySQL version currently in use by the read replica.

Returns:

  • (String)


64
65
66
# File 'lib/oci/mysql/models/replica_summary.rb', line 64

def mysql_version
  @mysql_version
end

#portInteger

[Required] The port the read replica is configured to listen on.

Returns:

  • (Integer)


81
82
83
# File 'lib/oci/mysql/models/replica_summary.rb', line 81

def port
  @port
end

#port_xInteger

[Required] The TCP network port on which X Plugin listens for connections. This is the X Plugin equivalent of port.

Returns:

  • (Integer)


86
87
88
# File 'lib/oci/mysql/models/replica_summary.rb', line 86

def port_x
  @port_x
end

#replica_overridesOCI::Mysql::Models::ReplicaOverrides



120
121
122
# File 'lib/oci/mysql/models/replica_summary.rb', line 120

def replica_overrides
  @replica_overrides
end

#shape_nameString

The shape currently in use by the read replica. The shape determines the resources allocated: CPU cores and memory for VM shapes, CPU cores, memory and storage for non-VM (bare metal) shapes. To get a list of shapes, use the list_shapes operation.

Returns:

  • (String)


113
114
115
# File 'lib/oci/mysql/models/replica_summary.rb', line 113

def shape_name
  @shape_name
end

#time_createdDateTime

[Required] The date and time the read replica was created, as described by RFC 3339.

Returns:

  • (DateTime)


55
56
57
# File 'lib/oci/mysql/models/replica_summary.rb', line 55

def time_created
  @time_created
end

#time_updatedDateTime

The time the read replica was last updated, as described by RFC 3339.

Returns:

  • (DateTime)


60
61
62
# File 'lib/oci/mysql/models/replica_summary.rb', line 60

def time_updated
  @time_updated
end

Class Method Details

.attribute_mapObject

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



123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
# File 'lib/oci/mysql/models/replica_summary.rb', line 123

def self.attribute_map
  {
    # rubocop:disable Style/SymbolLiteral
    'id': :'id',
    'db_system_id': :'dbSystemId',
    'compartment_id': :'compartmentId',
    'display_name': :'displayName',
    'description': :'description',
    'lifecycle_state': :'lifecycleState',
    'lifecycle_details': :'lifecycleDetails',
    'time_created': :'timeCreated',
    'time_updated': :'timeUpdated',
    'mysql_version': :'mysqlVersion',
    'availability_domain': :'availabilityDomain',
    'fault_domain': :'faultDomain',
    'ip_address': :'ipAddress',
    'port': :'port',
    'port_x': :'portX',
    'freeform_tags': :'freeformTags',
    'defined_tags': :'definedTags',
    'is_delete_protected': :'isDeleteProtected',
    'shape_name': :'shapeName',
    'configuration_id': :'configurationId',
    'replica_overrides': :'replicaOverrides'
    # rubocop:enable Style/SymbolLiteral
  }
end

.swagger_typesObject

Attribute type mapping.



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
# File 'lib/oci/mysql/models/replica_summary.rb', line 152

def self.swagger_types
  {
    # rubocop:disable Style/SymbolLiteral
    'id': :'String',
    'db_system_id': :'String',
    'compartment_id': :'String',
    'display_name': :'String',
    'description': :'String',
    'lifecycle_state': :'String',
    'lifecycle_details': :'String',
    'time_created': :'DateTime',
    'time_updated': :'DateTime',
    'mysql_version': :'String',
    'availability_domain': :'String',
    'fault_domain': :'String',
    'ip_address': :'String',
    'port': :'Integer',
    'port_x': :'Integer',
    'freeform_tags': :'Hash<String, String>',
    'defined_tags': :'Hash<String, Hash<String, Object>>',
    'is_delete_protected': :'BOOLEAN',
    'shape_name': :'String',
    'configuration_id': :'String',
    'replica_overrides': :'OCI::Mysql::Models::ReplicaOverrides'
    # 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



350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
# File 'lib/oci/mysql/models/replica_summary.rb', line 350

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

  self.class == other.class &&
    id == other.id &&
    db_system_id == other.db_system_id &&
    compartment_id == other.compartment_id &&
    display_name == other.display_name &&
    description == other.description &&
    lifecycle_state == other.lifecycle_state &&
    lifecycle_details == other.lifecycle_details &&
    time_created == other.time_created &&
    time_updated == other.time_updated &&
    mysql_version == other.mysql_version &&
    availability_domain == other.availability_domain &&
    fault_domain == other.fault_domain &&
    ip_address == other.ip_address &&
    port == other.port &&
    port_x == other.port_x &&
    freeform_tags == other.freeform_tags &&
    defined_tags == other.defined_tags &&
    is_delete_protected == other.is_delete_protected &&
    shape_name == other.shape_name &&
    configuration_id == other.configuration_id &&
    replica_overrides == other.replica_overrides
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



400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
# File 'lib/oci/mysql/models/replica_summary.rb', line 400

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


380
381
382
# File 'lib/oci/mysql/models/replica_summary.rb', line 380

def eql?(other)
  self == other
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



389
390
391
# File 'lib/oci/mysql/models/replica_summary.rb', line 389

def hash
  [id, db_system_id, compartment_id, display_name, description, lifecycle_state, lifecycle_details, time_created, time_updated, mysql_version, availability_domain, fault_domain, ip_address, port, port_x, freeform_tags, defined_tags, is_delete_protected, shape_name, configuration_id, replica_overrides].hash
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



433
434
435
436
437
438
439
440
441
442
# File 'lib/oci/mysql/models/replica_summary.rb', line 433

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



427
428
429
# File 'lib/oci/mysql/models/replica_summary.rb', line 427

def to_s
  to_hash.to_s
end