class OCI::Core::Models::CrossConnectStatus

The status of the cross-connect.

Constants

INTERFACE_STATE_ENUM
LIGHT_LEVEL_INDICATOR_ENUM

Attributes

cross_connect_id[RW]

[Required] The OCID of the cross-connect. @return [String]

interface_state[R]

Whether Oracle's side of the interface is up or down. @return [String]

light_level_ind_bm[RW]

The light level of the cross-connect (in dBm).

Example: `14.0`

@return [Float]

light_level_indicator[R]

Status indicator corresponding to the light level.

* **NO_LIGHT:** No measurable light

* **LOW_WARN:** There's measurable light but it's too low

* **HIGH_WARN:** Light level is too high

* **BAD:** There's measurable light but the signal-to-noise ratio is bad

* **GOOD:** Good light level

@return [String]

Public Class Methods

attribute_map() click to toggle source

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

# File lib/oci/core/models/cross_connect_status.rb, line 57
def self.attribute_map
  {
    # rubocop:disable Style/SymbolLiteral
    'cross_connect_id': :'crossConnectId',
    'interface_state': :'interfaceState',
    'light_level_ind_bm': :'lightLevelIndBm',
    'light_level_indicator': :'lightLevelIndicator'
    # rubocop:enable Style/SymbolLiteral
  }
end
new(attributes = {}) click to toggle source

Initializes the object @param [Hash] attributes Model attributes in the form of hash @option attributes [String] :cross_connect_id The value to assign to the {#cross_connect_id} property @option attributes [String] :interface_state The value to assign to the {#interface_state} property @option attributes [Float] :light_level_ind_bm The value to assign to the {#light_level_ind_bm} property @option attributes [String] :light_level_indicator The value to assign to the {#light_level_indicator} property

# File lib/oci/core/models/cross_connect_status.rb, line 90
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.cross_connect_id = attributes[:'crossConnectId'] if attributes[:'crossConnectId']

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

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

  self.interface_state = attributes[:'interfaceState'] if attributes[:'interfaceState']

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

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

  self.light_level_ind_bm = attributes[:'lightLevelIndBm'] if attributes[:'lightLevelIndBm']

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

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

  self.light_level_indicator = attributes[:'lightLevelIndicator'] if attributes[:'lightLevelIndicator']

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

  self.light_level_indicator = attributes[:'light_level_indicator'] if attributes[:'light_level_indicator']
end
swagger_types() click to toggle source

Attribute type mapping.

# File lib/oci/core/models/cross_connect_status.rb, line 69
def self.swagger_types
  {
    # rubocop:disable Style/SymbolLiteral
    'cross_connect_id': :'String',
    'interface_state': :'String',
    'light_level_ind_bm': :'Float',
    'light_level_indicator': :'String'
    # rubocop:enable Style/SymbolLiteral
  }
end

Public Instance Methods

==(other) click to toggle source

Checks equality by comparing each attribute. @param [Object] other the other object to be compared

# File lib/oci/core/models/cross_connect_status.rb, line 154
def ==(other)
  return true if equal?(other)

  self.class == other.class &&
    cross_connect_id == other.cross_connect_id &&
    interface_state == other.interface_state &&
    light_level_ind_bm == other.light_level_ind_bm &&
    light_level_indicator == other.light_level_indicator
end
build_from_hash(attributes) click to toggle source

Builds the object from hash @param [Hash] attributes Model attributes in the form of hash @return [Object] Returns the model itself

# File lib/oci/core/models/cross_connect_status.rb, line 187
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) click to toggle source

@see the `==` method @param [Object] other the other object to be compared

# File lib/oci/core/models/cross_connect_status.rb, line 167
def eql?(other)
  self == other
end
hash() click to toggle source

Calculates hash code according to all attributes. @return [Fixnum] Hash code

# File lib/oci/core/models/cross_connect_status.rb, line 176
def hash
  [cross_connect_id, interface_state, light_level_ind_bm, light_level_indicator].hash
end
interface_state=(interface_state) click to toggle source

Custom attribute writer method checking allowed values (enum). @param [Object] interface_state Object to be assigned

# File lib/oci/core/models/cross_connect_status.rb, line 125
def interface_state=(interface_state)
  # rubocop:disable Style/ConditionalAssignment
  if interface_state && !INTERFACE_STATE_ENUM.include?(interface_state)
    OCI.logger.debug("Unknown value for 'interface_state' [" + interface_state + "]. Mapping to 'INTERFACE_STATE_UNKNOWN_ENUM_VALUE'") if OCI.logger
    @interface_state = INTERFACE_STATE_UNKNOWN_ENUM_VALUE
  else
    @interface_state = interface_state
  end
  # rubocop:enable Style/ConditionalAssignment
end
light_level_indicator=(light_level_indicator) click to toggle source

Custom attribute writer method checking allowed values (enum). @param [Object] light_level_indicator Object to be assigned

# File lib/oci/core/models/cross_connect_status.rb, line 138
def light_level_indicator=(light_level_indicator)
  # rubocop:disable Style/ConditionalAssignment
  if light_level_indicator && !LIGHT_LEVEL_INDICATOR_ENUM.include?(light_level_indicator)
    OCI.logger.debug("Unknown value for 'light_level_indicator' [" + light_level_indicator + "]. Mapping to 'LIGHT_LEVEL_INDICATOR_UNKNOWN_ENUM_VALUE'") if OCI.logger
    @light_level_indicator = LIGHT_LEVEL_INDICATOR_UNKNOWN_ENUM_VALUE
  else
    @light_level_indicator = light_level_indicator
  end
  # rubocop:enable Style/ConditionalAssignment
end
to_hash() click to toggle source

Returns the object in the form of hash @return [Hash] Returns the object in the form of hash

# File lib/oci/core/models/cross_connect_status.rb, line 220
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() click to toggle source

Returns the string representation of the object @return [String] String presentation of the object

# File lib/oci/core/models/cross_connect_status.rb, line 214
def to_s
  to_hash.to_s
end

Private Instance Methods

_to_hash(value) click to toggle source

Outputs non-array value in the form of hash For object, use to_hash. Otherwise, just return the value @param [Object] value Any valid value @return [Hash] Returns the value in the form of hash

# File lib/oci/core/models/cross_connect_status.rb, line 237
def _to_hash(value)
  if value.is_a?(Array)
    value.compact.map { |v| _to_hash(v) }
  elsif value.is_a?(Hash)
    {}.tap do |hash|
      value.each { |k, v| hash[k] = _to_hash(v) }
    end
  elsif value.respond_to? :to_hash
    value.to_hash
  else
    value
  end
end