Class: OCI::Core::Models::FastConnectProviderService
- Inherits:
-
Object
- Object
- OCI::Core::Models::FastConnectProviderService
- Defined in:
- lib/oci/core/models/fast_connect_provider_service.rb
Overview
A service offering from a supported provider. For more information, see [FastConnect Overview](docs.us-phoenix-1.oraclecloud.com/Content/Network/Concepts/fastconnect.htm).
Constant Summary collapse
- PRIVATE_PEERING_BGP_MANAGEMENT_ENUM =
rubocop:disable Metrics/LineLength
[ PRIVATE_PEERING_BGP_MANAGEMENT_CUSTOMER_MANAGED = 'CUSTOMER_MANAGED'.freeze, PRIVATE_PEERING_BGP_MANAGEMENT_PROVIDER_MANAGED = 'PROVIDER_MANAGED'.freeze, PRIVATE_PEERING_BGP_MANAGEMENT_ORACLE_MANAGED = 'ORACLE_MANAGED'.freeze, PRIVATE_PEERING_BGP_MANAGEMENT_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze ].freeze
- PUBLIC_PEERING_BGP_MANAGEMENT_ENUM =
[ PUBLIC_PEERING_BGP_MANAGEMENT_CUSTOMER_MANAGED = 'CUSTOMER_MANAGED'.freeze, PUBLIC_PEERING_BGP_MANAGEMENT_PROVIDER_MANAGED = 'PROVIDER_MANAGED'.freeze, PUBLIC_PEERING_BGP_MANAGEMENT_ORACLE_MANAGED = 'ORACLE_MANAGED'.freeze, PUBLIC_PEERING_BGP_MANAGEMENT_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze ].freeze
- SUPPORTED_VIRTUAL_CIRCUIT_TYPES_ENUM =
[ SUPPORTED_VIRTUAL_CIRCUIT_TYPES_PUBLIC = 'PUBLIC'.freeze, SUPPORTED_VIRTUAL_CIRCUIT_TYPES_PRIVATE = 'PRIVATE'.freeze, SUPPORTED_VIRTUAL_CIRCUIT_TYPES_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze ].freeze
- TYPE_ENUM =
[ TYPE_LAYER2 = 'LAYER2'.freeze, TYPE_LAYER3 = 'LAYER3'.freeze, TYPE_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze ].freeze
Instance Attribute Summary collapse
-
#description ⇒ String
A description of the service offered by the provider.
-
#id ⇒ String
[Required] The OCID of the service offered by the provider.
-
#private_peering_bgp_management ⇒ String
[Required] Who is responsible for managing the private peering BGP information.
-
#provider_name ⇒ String
[Required] The name of the provider.
-
#provider_service_name ⇒ String
[Required] The name of the service offered by the provider.
-
#public_peering_bgp_management ⇒ String
[Required] Who is responsible for managing the public peering BGP information.
-
#supported_virtual_circuit_types ⇒ Array<String>
An array of virtual circuit types supported by this service.
-
#type ⇒ String
[Required] Provider service type.
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 = {}) ⇒ FastConnectProviderService
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 = {}) ⇒ FastConnectProviderService
Initializes the object
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 165 |
# File 'lib/oci/core/models/fast_connect_provider_service.rb', line 124 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.description = attributes[:'description'] if attributes[:'description'] self.id = attributes[:'id'] if attributes[:'id'] self.private_peering_bgp_management = attributes[:'privatePeeringBgpManagement'] if attributes[:'privatePeeringBgpManagement'] raise 'You cannot provide both :privatePeeringBgpManagement and :private_peering_bgp_management' if attributes.key?(:'privatePeeringBgpManagement') && attributes.key?(:'private_peering_bgp_management') self.private_peering_bgp_management = attributes[:'private_peering_bgp_management'] if attributes[:'private_peering_bgp_management'] self.provider_name = attributes[:'providerName'] if attributes[:'providerName'] raise 'You cannot provide both :providerName and :provider_name' if attributes.key?(:'providerName') && attributes.key?(:'provider_name') self.provider_name = attributes[:'provider_name'] if attributes[:'provider_name'] self.provider_service_name = attributes[:'providerServiceName'] if attributes[:'providerServiceName'] raise 'You cannot provide both :providerServiceName and :provider_service_name' if attributes.key?(:'providerServiceName') && attributes.key?(:'provider_service_name') self.provider_service_name = attributes[:'provider_service_name'] if attributes[:'provider_service_name'] self.public_peering_bgp_management = attributes[:'publicPeeringBgpManagement'] if attributes[:'publicPeeringBgpManagement'] raise 'You cannot provide both :publicPeeringBgpManagement and :public_peering_bgp_management' if attributes.key?(:'publicPeeringBgpManagement') && attributes.key?(:'public_peering_bgp_management') self.public_peering_bgp_management = attributes[:'public_peering_bgp_management'] if attributes[:'public_peering_bgp_management'] self.supported_virtual_circuit_types = attributes[:'supportedVirtualCircuitTypes'] if attributes[:'supportedVirtualCircuitTypes'] raise 'You cannot provide both :supportedVirtualCircuitTypes and :supported_virtual_circuit_types' if attributes.key?(:'supportedVirtualCircuitTypes') && attributes.key?(:'supported_virtual_circuit_types') self.supported_virtual_circuit_types = attributes[:'supported_virtual_circuit_types'] if attributes[:'supported_virtual_circuit_types'] self.type = attributes[:'type'] if attributes[:'type'] end |
Instance Attribute Details
#description ⇒ String
A description of the service offered by the provider.
41 42 43 |
# File 'lib/oci/core/models/fast_connect_provider_service.rb', line 41 def description @description end |
#id ⇒ String
[Required] The OCID of the service offered by the provider.
46 47 48 |
# File 'lib/oci/core/models/fast_connect_provider_service.rb', line 46 def id @id end |
#private_peering_bgp_management ⇒ String
[Required] Who is responsible for managing the private peering BGP information.
51 52 53 |
# File 'lib/oci/core/models/fast_connect_provider_service.rb', line 51 def private_peering_bgp_management @private_peering_bgp_management end |
#provider_name ⇒ String
[Required] The name of the provider.
56 57 58 |
# File 'lib/oci/core/models/fast_connect_provider_service.rb', line 56 def provider_name @provider_name end |
#provider_service_name ⇒ String
[Required] The name of the service offered by the provider.
61 62 63 |
# File 'lib/oci/core/models/fast_connect_provider_service.rb', line 61 def provider_service_name @provider_service_name end |
#public_peering_bgp_management ⇒ String
[Required] Who is responsible for managing the public peering BGP information.
66 67 68 |
# File 'lib/oci/core/models/fast_connect_provider_service.rb', line 66 def public_peering_bgp_management @public_peering_bgp_management end |
#supported_virtual_circuit_types ⇒ Array<String>
An array of virtual circuit types supported by this service.
71 72 73 |
# File 'lib/oci/core/models/fast_connect_provider_service.rb', line 71 def supported_virtual_circuit_types @supported_virtual_circuit_types end |
#type ⇒ String
[Required] Provider service type.
76 77 78 |
# File 'lib/oci/core/models/fast_connect_provider_service.rb', line 76 def type @type end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
79 80 81 82 83 84 85 86 87 88 89 90 91 92 |
# File 'lib/oci/core/models/fast_connect_provider_service.rb', line 79 def self.attribute_map { # rubocop:disable Style/SymbolLiteral 'description': :'description', 'id': :'id', 'private_peering_bgp_management': :'privatePeeringBgpManagement', 'provider_name': :'providerName', 'provider_service_name': :'providerServiceName', 'public_peering_bgp_management': :'publicPeeringBgpManagement', 'supported_virtual_circuit_types': :'supportedVirtualCircuitTypes', 'type': :'type' # rubocop:enable Style/SymbolLiteral } end |
.swagger_types ⇒ Object
Attribute type mapping.
95 96 97 98 99 100 101 102 103 104 105 106 107 108 |
# File 'lib/oci/core/models/fast_connect_provider_service.rb', line 95 def self.swagger_types { # rubocop:disable Style/SymbolLiteral 'description': :'String', 'id': :'String', 'private_peering_bgp_management': :'String', 'provider_name': :'String', 'provider_service_name': :'String', 'public_peering_bgp_management': :'String', 'supported_virtual_circuit_types': :'Array<String>', 'type': :'String' # rubocop:enable Style/SymbolLiteral } end |
Instance Method Details
#==(other) ⇒ Object
Checks equality by comparing each attribute.
241 242 243 244 245 246 247 248 249 250 251 252 |
# File 'lib/oci/core/models/fast_connect_provider_service.rb', line 241 def ==(other) return true if equal?(other) self.class == other.class && description == other.description && id == other.id && private_peering_bgp_management == other.private_peering_bgp_management && provider_name == other.provider_name && provider_service_name == other.provider_service_name && public_peering_bgp_management == other.public_peering_bgp_management && supported_virtual_circuit_types == other.supported_virtual_circuit_types && type == other.type end |
#build_from_hash(attributes) ⇒ Object
Builds the object from hash
277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 |
# File 'lib/oci/core/models/fast_connect_provider_service.rb', line 277 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
257 258 259 |
# File 'lib/oci/core/models/fast_connect_provider_service.rb', line 257 def eql?(other) self == other end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
266 267 268 |
# File 'lib/oci/core/models/fast_connect_provider_service.rb', line 266 def hash [description, id, private_peering_bgp_management, provider_name, provider_service_name, public_peering_bgp_management, supported_virtual_circuit_types, type].hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
309 310 311 312 313 314 315 316 317 |
# File 'lib/oci/core/models/fast_connect_provider_service.rb', line 309 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
303 304 305 |
# File 'lib/oci/core/models/fast_connect_provider_service.rb', line 303 def to_s to_hash.to_s end |