Class: OCI::Mysql::Models::DbSystemEndpoint
- Inherits:
-
Object
- Object
- OCI::Mysql::Models::DbSystemEndpoint
- Defined in:
- lib/oci/mysql/models/db_system_endpoint.rb
Overview
A particular functional endpoint for access to a DB System, and the properties that apply to it.
Constant Summary collapse
- MODES_ENUM =
[ MODES_READ = 'READ'.freeze, MODES_WRITE = 'WRITE'.freeze, MODES_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze ].freeze
- STATUS_ENUM =
[ STATUS_ACTIVE = 'ACTIVE'.freeze, STATUS_INACTIVE = 'INACTIVE'.freeze, STATUS_UPDATING = 'UPDATING'.freeze, STATUS_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze ].freeze
- RESOURCE_TYPE_ENUM =
[ RESOURCE_TYPE_DBSYSTEM = 'DBSYSTEM'.freeze, RESOURCE_TYPE_READ_REPLICA = 'READ_REPLICA'.freeze, RESOURCE_TYPE_LOAD_BALANCER = 'LOAD_BALANCER'.freeze, RESOURCE_TYPE_READ_ENDPOINT = 'READ_ENDPOINT'.freeze, RESOURCE_TYPE_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze ].freeze
Instance Attribute Summary collapse
-
#hostname ⇒ String
The network address of the DB System.
-
#ip_address ⇒ String
[Required] The IP address the DB System is configured to listen on.
-
#modes ⇒ Array<String>
The access modes from the client that this endpoint supports.
-
#port ⇒ Integer
[Required] The port the MySQL instance listens on.
-
#port_x ⇒ Integer
[Required] The network port where to connect to use this endpoint using the X protocol.
-
#resource_id ⇒ String
The OCID of the resource that this endpoint is attached to.
-
#resource_type ⇒ String
The type of endpoint that clients and connectors can connect to.
-
#status ⇒ String
The state of the endpoints, as far as it can seen from the DB System.
-
#status_details ⇒ String
Additional information about the current endpoint status.
Class Method Summary collapse
-
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
-
.swagger_types ⇒ Object
Attribute type mapping.
Instance Method Summary collapse
-
#==(other) ⇒ Object
Checks equality by comparing each attribute.
-
#build_from_hash(attributes) ⇒ Object
Builds the object from hash.
- #eql?(other) ⇒ Boolean
-
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
-
#initialize(attributes = {}) ⇒ DbSystemEndpoint
constructor
Initializes the object.
-
#to_hash ⇒ Hash
Returns the object in the form of hash.
-
#to_s ⇒ String
Returns the string representation of the object.
Constructor Details
#initialize(attributes = {}) ⇒ DbSystemEndpoint
Initializes the object
121 122 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 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 |
# File 'lib/oci/mysql/models/db_system_endpoint.rb', line 121 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.hostname = attributes[:'hostname'] if attributes[:'hostname'] 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.modes = attributes[:'modes'] if attributes[:'modes'] self.status = attributes[:'status'] if attributes[:'status'] self.status_details = attributes[:'statusDetails'] if attributes[:'statusDetails'] raise 'You cannot provide both :statusDetails and :status_details' if attributes.key?(:'statusDetails') && attributes.key?(:'status_details') self.status_details = attributes[:'status_details'] if attributes[:'status_details'] self.resource_type = attributes[:'resourceType'] if attributes[:'resourceType'] raise 'You cannot provide both :resourceType and :resource_type' if attributes.key?(:'resourceType') && attributes.key?(:'resource_type') self.resource_type = attributes[:'resource_type'] if attributes[:'resource_type'] self.resource_id = attributes[:'resourceId'] if attributes[:'resourceId'] raise 'You cannot provide both :resourceId and :resource_id' if attributes.key?(:'resourceId') && attributes.key?(:'resource_id') self.resource_id = attributes[:'resource_id'] if attributes[:'resource_id'] end |
Instance Attribute Details
#hostname ⇒ String
The network address of the DB System.
36 37 38 |
# File 'lib/oci/mysql/models/db_system_endpoint.rb', line 36 def hostname @hostname end |
#ip_address ⇒ String
[Required] The IP address the DB System is configured to listen on.
40 41 42 |
# File 'lib/oci/mysql/models/db_system_endpoint.rb', line 40 def ip_address @ip_address end |
#modes ⇒ Array<String>
The access modes from the client that this endpoint supports.
52 53 54 |
# File 'lib/oci/mysql/models/db_system_endpoint.rb', line 52 def modes @modes end |
#port ⇒ Integer
[Required] The port the MySQL instance listens on.
44 45 46 |
# File 'lib/oci/mysql/models/db_system_endpoint.rb', line 44 def port @port end |
#port_x ⇒ Integer
[Required] The network port where to connect to use this endpoint using the X protocol.
48 49 50 |
# File 'lib/oci/mysql/models/db_system_endpoint.rb', line 48 def port_x @port_x end |
#resource_id ⇒ String
The OCID of the resource that this endpoint is attached to.
70 71 72 |
# File 'lib/oci/mysql/models/db_system_endpoint.rb', line 70 def resource_id @resource_id end |
#resource_type ⇒ String
The type of endpoint that clients and connectors can connect to.
66 67 68 |
# File 'lib/oci/mysql/models/db_system_endpoint.rb', line 66 def resource_type @resource_type end |
#status ⇒ String
The state of the endpoints, as far as it can seen from the DB System. There may be some inconsistency with the actual state of the MySQL service.
58 59 60 |
# File 'lib/oci/mysql/models/db_system_endpoint.rb', line 58 def status @status end |
#status_details ⇒ String
Additional information about the current endpoint status.
62 63 64 |
# File 'lib/oci/mysql/models/db_system_endpoint.rb', line 62 def status_details @status_details end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 |
# File 'lib/oci/mysql/models/db_system_endpoint.rb', line 73 def self.attribute_map { # rubocop:disable Style/SymbolLiteral 'hostname': :'hostname', 'ip_address': :'ipAddress', 'port': :'port', 'port_x': :'portX', 'modes': :'modes', 'status': :'status', 'status_details': :'statusDetails', 'resource_type': :'resourceType', 'resource_id': :'resourceId' # rubocop:enable Style/SymbolLiteral } end |
.swagger_types ⇒ Object
Attribute type mapping.
90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 |
# File 'lib/oci/mysql/models/db_system_endpoint.rb', line 90 def self.swagger_types { # rubocop:disable Style/SymbolLiteral 'hostname': :'String', 'ip_address': :'String', 'port': :'Integer', 'port_x': :'Integer', 'modes': :'Array<String>', 'status': :'String', 'status_details': :'String', 'resource_type': :'String', 'resource_id': :'String' # rubocop:enable Style/SymbolLiteral } end |
Instance Method Details
#==(other) ⇒ Object
Checks equality by comparing each attribute.
219 220 221 222 223 224 225 226 227 228 229 230 231 232 |
# File 'lib/oci/mysql/models/db_system_endpoint.rb', line 219 def ==(other) return true if equal?(other) self.class == other.class && hostname == other.hostname && ip_address == other.ip_address && port == other.port && port_x == other.port_x && modes == other.modes && status == other.status && status_details == other.status_details && resource_type == other.resource_type && resource_id == other.resource_id end |
#build_from_hash(attributes) ⇒ Object
Builds the object from hash
257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 |
# File 'lib/oci/mysql/models/db_system_endpoint.rb', line 257 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
237 238 239 |
# File 'lib/oci/mysql/models/db_system_endpoint.rb', line 237 def eql?(other) self == other end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
246 247 248 |
# File 'lib/oci/mysql/models/db_system_endpoint.rb', line 246 def hash [hostname, ip_address, port, port_x, modes, status, status_details, resource_type, resource_id].hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
290 291 292 293 294 295 296 297 298 299 |
# File 'lib/oci/mysql/models/db_system_endpoint.rb', line 290 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_s ⇒ String
Returns the string representation of the object
284 285 286 |
# File 'lib/oci/mysql/models/db_system_endpoint.rb', line 284 def to_s to_hash.to_s end |