Class: OCI::Mysql::Models::ChannelStatusResult
- Inherits:
-
Object
- Object
- OCI::Mysql::Models::ChannelStatusResult
- Defined in:
- lib/oci/mysql/models/channel_status_result.rb
Overview
Status information for the channel attached to the DB System.
Instance Attribute Summary collapse
-
#channel_id ⇒ String
[Required] The OCID of the Channel for which the status is gathered.
-
#errors ⇒ Array<String>
Channel errors identified, if there are any.
-
#is_healthy ⇒ BOOLEAN
Specifies if the channel is healthy or not.
-
#is_received_gtid_set_applied ⇒ BOOLEAN
Specifies if all transactions received by this channel are executed and their GTIDs are part of gtid_executed set.
-
#lag_duration ⇒ String
The channel lag, with respect to the immediate source of the channel.
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 = {}) ⇒ ChannelStatusResult
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 = {}) ⇒ ChannelStatusResult
Initializes the object
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 104 105 106 107 |
# File 'lib/oci/mysql/models/channel_status_result.rb', line 76 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.channel_id = attributes[:'channelId'] if attributes[:'channelId'] raise 'You cannot provide both :channelId and :channel_id' if attributes.key?(:'channelId') && attributes.key?(:'channel_id') self.channel_id = attributes[:'channel_id'] if attributes[:'channel_id'] self.is_healthy = attributes[:'isHealthy'] unless attributes[:'isHealthy'].nil? raise 'You cannot provide both :isHealthy and :is_healthy' if attributes.key?(:'isHealthy') && attributes.key?(:'is_healthy') self.is_healthy = attributes[:'is_healthy'] unless attributes[:'is_healthy'].nil? self.is_received_gtid_set_applied = attributes[:'isReceivedGtidSetApplied'] unless attributes[:'isReceivedGtidSetApplied'].nil? raise 'You cannot provide both :isReceivedGtidSetApplied and :is_received_gtid_set_applied' if attributes.key?(:'isReceivedGtidSetApplied') && attributes.key?(:'is_received_gtid_set_applied') self.is_received_gtid_set_applied = attributes[:'is_received_gtid_set_applied'] unless attributes[:'is_received_gtid_set_applied'].nil? self.errors = attributes[:'errors'] if attributes[:'errors'] self.lag_duration = attributes[:'lagDuration'] if attributes[:'lagDuration'] raise 'You cannot provide both :lagDuration and :lag_duration' if attributes.key?(:'lagDuration') && attributes.key?(:'lag_duration') self.lag_duration = attributes[:'lag_duration'] if attributes[:'lag_duration'] end |
Instance Attribute Details
#channel_id ⇒ String
[Required] The OCID of the Channel for which the status is gathered.
15 16 17 |
# File 'lib/oci/mysql/models/channel_status_result.rb', line 15 def channel_id @channel_id end |
#errors ⇒ Array<String>
Channel errors identified, if there are any.
31 32 33 |
# File 'lib/oci/mysql/models/channel_status_result.rb', line 31 def errors @errors end |
#is_healthy ⇒ BOOLEAN
Specifies if the channel is healthy or not. If healthy, replication target DB System is connected to the source and no replication errors are seen.
21 22 23 |
# File 'lib/oci/mysql/models/channel_status_result.rb', line 21 def is_healthy @is_healthy end |
#is_received_gtid_set_applied ⇒ BOOLEAN
Specifies if all transactions received by this channel are executed and their GTIDs are part of gtid_executed set.
27 28 29 |
# File 'lib/oci/mysql/models/channel_status_result.rb', line 27 def is_received_gtid_set_applied @is_received_gtid_set_applied end |
#lag_duration ⇒ String
The channel lag, with respect to the immediate source of the channel. If the channel is configured with replication delay, the channel lag includes the replication delay.
37 38 39 |
# File 'lib/oci/mysql/models/channel_status_result.rb', line 37 def lag_duration @lag_duration end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
40 41 42 43 44 45 46 47 48 49 50 |
# File 'lib/oci/mysql/models/channel_status_result.rb', line 40 def self.attribute_map { # rubocop:disable Style/SymbolLiteral 'channel_id': :'channelId', 'is_healthy': :'isHealthy', 'is_received_gtid_set_applied': :'isReceivedGtidSetApplied', 'errors': :'errors', 'lag_duration': :'lagDuration' # rubocop:enable Style/SymbolLiteral } end |
.swagger_types ⇒ Object
Attribute type mapping.
53 54 55 56 57 58 59 60 61 62 63 |
# File 'lib/oci/mysql/models/channel_status_result.rb', line 53 def self.swagger_types { # rubocop:disable Style/SymbolLiteral 'channel_id': :'String', 'is_healthy': :'BOOLEAN', 'is_received_gtid_set_applied': :'BOOLEAN', 'errors': :'Array<String>', 'lag_duration': :'String' # rubocop:enable Style/SymbolLiteral } end |
Instance Method Details
#==(other) ⇒ Object
Checks equality by comparing each attribute.
116 117 118 119 120 121 122 123 124 125 |
# File 'lib/oci/mysql/models/channel_status_result.rb', line 116 def ==(other) return true if equal?(other) self.class == other.class && channel_id == other.channel_id && is_healthy == other.is_healthy && is_received_gtid_set_applied == other.is_received_gtid_set_applied && errors == other.errors && lag_duration == other.lag_duration end |
#build_from_hash(attributes) ⇒ Object
Builds the object from hash
150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 |
# File 'lib/oci/mysql/models/channel_status_result.rb', line 150 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
130 131 132 |
# File 'lib/oci/mysql/models/channel_status_result.rb', line 130 def eql?(other) self == other end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
139 140 141 |
# File 'lib/oci/mysql/models/channel_status_result.rb', line 139 def hash [channel_id, is_healthy, is_received_gtid_set_applied, errors, lag_duration].hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
183 184 185 186 187 188 189 190 191 192 |
# File 'lib/oci/mysql/models/channel_status_result.rb', line 183 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
177 178 179 |
# File 'lib/oci/mysql/models/channel_status_result.rb', line 177 def to_s to_hash.to_s end |