Class: OCI::ComputeCloudAtCustomer::Models::CccInfrastructureRoutingDynamicDetails
- Inherits:
-
Object
- Object
- OCI::ComputeCloudAtCustomer::Models::CccInfrastructureRoutingDynamicDetails
- Defined in:
- lib/oci/compute_cloud_at_customer/models/ccc_infrastructure_routing_dynamic_details.rb
Overview
Dynamic routing information for the Compute Cloud@Customer infrastructure.
Constant Summary collapse
- BGP_TOPOLOGY_ENUM =
[ BGP_TOPOLOGY_TRIANGLE = 'TRIANGLE'.freeze, BGP_TOPOLOGY_SQUARE = 'SQUARE'.freeze, BGP_TOPOLOGY_MESH = 'MESH'.freeze, BGP_TOPOLOGY_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze ].freeze
Instance Attribute Summary collapse
-
#bgp_topology ⇒ String
The topology in use for the Border Gateway Protocol (BGP) configuration.
-
#oracle_asn ⇒ Integer
The Oracle Autonomous System Number (ASN) to control routing and exchange information within the dynamic routing configuration.
-
#peer_information ⇒ Array<OCI::ComputeCloudAtCustomer::Models::PeerInformation>
The list of peer devices in the dynamic routing configuration.
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 = {}) ⇒ CccInfrastructureRoutingDynamicDetails
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 = {}) ⇒ CccInfrastructureRoutingDynamicDetails
Initializes the object
66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 |
# File 'lib/oci/compute_cloud_at_customer/models/ccc_infrastructure_routing_dynamic_details.rb', line 66 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.peer_information = attributes[:'peerInformation'] if attributes[:'peerInformation'] raise 'You cannot provide both :peerInformation and :peer_information' if attributes.key?(:'peerInformation') && attributes.key?(:'peer_information') self.peer_information = attributes[:'peer_information'] if attributes[:'peer_information'] self.oracle_asn = attributes[:'oracleAsn'] if attributes[:'oracleAsn'] raise 'You cannot provide both :oracleAsn and :oracle_asn' if attributes.key?(:'oracleAsn') && attributes.key?(:'oracle_asn') self.oracle_asn = attributes[:'oracle_asn'] if attributes[:'oracle_asn'] self.bgp_topology = attributes[:'bgpTopology'] if attributes[:'bgpTopology'] self.bgp_topology = "TRIANGLE" if bgp_topology.nil? && !attributes.key?(:'bgpTopology') # rubocop:disable Style/StringLiterals raise 'You cannot provide both :bgpTopology and :bgp_topology' if attributes.key?(:'bgpTopology') && attributes.key?(:'bgp_topology') self.bgp_topology = attributes[:'bgp_topology'] if attributes[:'bgp_topology'] self.bgp_topology = "TRIANGLE" if bgp_topology.nil? && !attributes.key?(:'bgpTopology') && !attributes.key?(:'bgp_topology') # rubocop:disable Style/StringLiterals end |
Instance Attribute Details
#bgp_topology ⇒ String
The topology in use for the Border Gateway Protocol (BGP) configuration.
33 34 35 |
# File 'lib/oci/compute_cloud_at_customer/models/ccc_infrastructure_routing_dynamic_details.rb', line 33 def bgp_topology @bgp_topology end |
#oracle_asn ⇒ Integer
The Oracle Autonomous System Number (ASN) to control routing and exchange information within the dynamic routing configuration.
28 29 30 |
# File 'lib/oci/compute_cloud_at_customer/models/ccc_infrastructure_routing_dynamic_details.rb', line 28 def oracle_asn @oracle_asn end |
#peer_information ⇒ Array<OCI::ComputeCloudAtCustomer::Models::PeerInformation>
The list of peer devices in the dynamic routing configuration.
22 23 24 |
# File 'lib/oci/compute_cloud_at_customer/models/ccc_infrastructure_routing_dynamic_details.rb', line 22 def peer_information @peer_information end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
36 37 38 39 40 41 42 43 44 |
# File 'lib/oci/compute_cloud_at_customer/models/ccc_infrastructure_routing_dynamic_details.rb', line 36 def self.attribute_map { # rubocop:disable Style/SymbolLiteral 'peer_information': :'peerInformation', 'oracle_asn': :'oracleAsn', 'bgp_topology': :'bgpTopology' # rubocop:enable Style/SymbolLiteral } end |
.swagger_types ⇒ Object
Attribute type mapping.
47 48 49 50 51 52 53 54 55 |
# File 'lib/oci/compute_cloud_at_customer/models/ccc_infrastructure_routing_dynamic_details.rb', line 47 def self.swagger_types { # rubocop:disable Style/SymbolLiteral 'peer_information': :'Array<OCI::ComputeCloudAtCustomer::Models::PeerInformation>', 'oracle_asn': :'Integer', 'bgp_topology': :'String' # rubocop:enable Style/SymbolLiteral } end |
Instance Method Details
#==(other) ⇒ Object
Checks equality by comparing each attribute.
113 114 115 116 117 118 119 120 |
# File 'lib/oci/compute_cloud_at_customer/models/ccc_infrastructure_routing_dynamic_details.rb', line 113 def ==(other) return true if equal?(other) self.class == other.class && peer_information == other.peer_information && oracle_asn == other.oracle_asn && bgp_topology == other.bgp_topology end |
#build_from_hash(attributes) ⇒ Object
Builds the object from hash
145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 |
# File 'lib/oci/compute_cloud_at_customer/models/ccc_infrastructure_routing_dynamic_details.rb', line 145 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
125 126 127 |
# File 'lib/oci/compute_cloud_at_customer/models/ccc_infrastructure_routing_dynamic_details.rb', line 125 def eql?(other) self == other end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
134 135 136 |
# File 'lib/oci/compute_cloud_at_customer/models/ccc_infrastructure_routing_dynamic_details.rb', line 134 def hash [peer_information, oracle_asn, bgp_topology].hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
178 179 180 181 182 183 184 185 186 187 |
# File 'lib/oci/compute_cloud_at_customer/models/ccc_infrastructure_routing_dynamic_details.rb', line 178 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
172 173 174 |
# File 'lib/oci/compute_cloud_at_customer/models/ccc_infrastructure_routing_dynamic_details.rb', line 172 def to_s to_hash.to_s end |