Class: OCI::DatabaseManagement::Models::ManagedMySqlDatabaseHighAvailabilityMemberSummary

Inherits:
Object
  • Object
show all
Defined in:
lib/oci/database_management/models/managed_my_sql_database_high_availability_member_summary.rb

Overview

Information about a member of a MySQL server group replication for high availability. MySQL support within OCI Database Management service has been deprecated as of January 29, 2026.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ ManagedMySqlDatabaseHighAvailabilityMemberSummary

Initializes the object

Parameters:

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

    Model attributes in the form of hash

Options Hash (attributes):

  • :member_host (String)

    The value to assign to the #member_host property

  • :member_port (Integer)

    The value to assign to the #member_port property

  • :member_state (String)

    The value to assign to the #member_state property

  • :member_role (String)

    The value to assign to the #member_role property

  • :member_uuid (String)

    The value to assign to the #member_uuid property



68
69
70
71
72
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
101
102
103
# File 'lib/oci/database_management/models/managed_my_sql_database_high_availability_member_summary.rb', line 68

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

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

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

  self.member_port = attributes[:'memberPort'] if attributes[:'memberPort']

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

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

  self.member_state = attributes[:'memberState'] if attributes[:'memberState']

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

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

  self.member_role = attributes[:'memberRole'] if attributes[:'memberRole']

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

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

  self.member_uuid = attributes[:'memberUuid'] if attributes[:'memberUuid']

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

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

Instance Attribute Details

#member_hostString

[Required] The host name of the group member that clients use to connect to it.

Returns:

  • (String)


13
14
15
# File 'lib/oci/database_management/models/managed_my_sql_database_high_availability_member_summary.rb', line 13

def member_host
  @member_host
end

#member_portInteger

[Required] The port number of the group member that clients use to connect to it.

Returns:

  • (Integer)


17
18
19
# File 'lib/oci/database_management/models/managed_my_sql_database_high_availability_member_summary.rb', line 17

def member_port
  @member_port
end

#member_roleString

The current role of the group member in the group.

Returns:

  • (String)


25
26
27
# File 'lib/oci/database_management/models/managed_my_sql_database_high_availability_member_summary.rb', line 25

def member_role
  @member_role
end

#member_stateString

The current state of the group member.

Returns:

  • (String)


21
22
23
# File 'lib/oci/database_management/models/managed_my_sql_database_high_availability_member_summary.rb', line 21

def member_state
  @member_state
end

#member_uuidString

[Required] The Universally Unique Identifier (UUID) of the member server.

Returns:

  • (String)


29
30
31
# File 'lib/oci/database_management/models/managed_my_sql_database_high_availability_member_summary.rb', line 29

def member_uuid
  @member_uuid
end

Class Method Details

.attribute_mapObject

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



32
33
34
35
36
37
38
39
40
41
42
# File 'lib/oci/database_management/models/managed_my_sql_database_high_availability_member_summary.rb', line 32

def self.attribute_map
  {
    # rubocop:disable Style/SymbolLiteral
    'member_host': :'memberHost',
    'member_port': :'memberPort',
    'member_state': :'memberState',
    'member_role': :'memberRole',
    'member_uuid': :'memberUuid'
    # rubocop:enable Style/SymbolLiteral
  }
end

.swagger_typesObject

Attribute type mapping.



45
46
47
48
49
50
51
52
53
54
55
# File 'lib/oci/database_management/models/managed_my_sql_database_high_availability_member_summary.rb', line 45

def self.swagger_types
  {
    # rubocop:disable Style/SymbolLiteral
    'member_host': :'String',
    'member_port': :'Integer',
    'member_state': :'String',
    'member_role': :'String',
    'member_uuid': :'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



112
113
114
115
116
117
118
119
120
121
# File 'lib/oci/database_management/models/managed_my_sql_database_high_availability_member_summary.rb', line 112

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

  self.class == other.class &&
    member_host == other.member_host &&
    member_port == other.member_port &&
    member_state == other.member_state &&
    member_role == other.member_role &&
    member_uuid == other.member_uuid
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



146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
# File 'lib/oci/database_management/models/managed_my_sql_database_high_availability_member_summary.rb', line 146

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


126
127
128
# File 'lib/oci/database_management/models/managed_my_sql_database_high_availability_member_summary.rb', line 126

def eql?(other)
  self == other
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



135
136
137
# File 'lib/oci/database_management/models/managed_my_sql_database_high_availability_member_summary.rb', line 135

def hash
  [member_host, member_port, member_state, member_role, member_uuid].hash
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



179
180
181
182
183
184
185
186
187
188
# File 'lib/oci/database_management/models/managed_my_sql_database_high_availability_member_summary.rb', line 179

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



173
174
175
# File 'lib/oci/database_management/models/managed_my_sql_database_high_availability_member_summary.rb', line 173

def to_s
  to_hash.to_s
end