Class: OracleBMC::Core::Models::CreateCrossConnectDetails
- Inherits:
-
Object
- Object
- OracleBMC::Core::Models::CreateCrossConnectDetails
- Defined in:
- lib/oraclebmc/core/models/create_cross_connect_details.rb
Instance Attribute Summary collapse
-
#compartment_id ⇒ String
The OCID of the compartment to contain the cross-connect.
-
#cross_connect_group_id ⇒ String
The OCID of the cross-connect group to put this cross-connect in.
-
#display_name ⇒ String
A user-friendly name.
-
#far_cross_connect_or_cross_connect_group_id ⇒ String
If you already have an existing cross-connect or cross-connect group at this FastConnect location, and you want this new cross-connect to be on a different router (for the purposes of redundancy), provide the OCID of that existing cross-connect or cross-connect group.
-
#location_name ⇒ String
The name of the FastConnect location where this cross-connect will be installed.
-
#near_cross_connect_or_cross_connect_group_id ⇒ String
If you already have an existing cross-connect or cross-connect group at this FastConnect location, and you want this new cross-connect to be on the same router, provide the OCID of that existing cross-connect or cross-connect group.
-
#port_speed_shape_name ⇒ String
The port speed for this cross-connect.
Instance Method Summary collapse
-
#==(other_object) ⇒ Object
Checks equality by comparing each attribute.
-
#build_from_hash(attributes) ⇒ Object
Builds the object from hash.
- #eql?(other_object) ⇒ Boolean
-
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
-
#initialize(attributes = {}) ⇒ CreateCrossConnectDetails
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 = {}) ⇒ CreateCrossConnectDetails
Initializes the object
54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 |
# File 'lib/oraclebmc/core/models/create_cross_connect_details.rb', line 54 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} if attributes[:'compartmentId'] self.compartment_id = attributes[:'compartmentId'] end if attributes[:'crossConnectGroupId'] self.cross_connect_group_id = attributes[:'crossConnectGroupId'] end if attributes[:'displayName'] self.display_name = attributes[:'displayName'] end if attributes[:'farCrossConnectOrCrossConnectGroupId'] self.far_cross_connect_or_cross_connect_group_id = attributes[:'farCrossConnectOrCrossConnectGroupId'] end if attributes[:'locationName'] self.location_name = attributes[:'locationName'] end if attributes[:'nearCrossConnectOrCrossConnectGroupId'] self.near_cross_connect_or_cross_connect_group_id = attributes[:'nearCrossConnectOrCrossConnectGroupId'] end if attributes[:'portSpeedShapeName'] self.port_speed_shape_name = attributes[:'portSpeedShapeName'] end end |
Instance Attribute Details
#compartment_id ⇒ String
The OCID of the compartment to contain the cross-connect.
9 10 11 |
# File 'lib/oraclebmc/core/models/create_cross_connect_details.rb', line 9 def compartment_id @compartment_id end |
#cross_connect_group_id ⇒ String
The OCID of the cross-connect group to put this cross-connect in.
13 14 15 |
# File 'lib/oraclebmc/core/models/create_cross_connect_details.rb', line 13 def cross_connect_group_id @cross_connect_group_id end |
#display_name ⇒ String
A user-friendly name. Does not have to be unique, and it’s changeable.
17 18 19 |
# File 'lib/oraclebmc/core/models/create_cross_connect_details.rb', line 17 def display_name @display_name end |
#far_cross_connect_or_cross_connect_group_id ⇒ String
If you already have an existing cross-connect or cross-connect group at this FastConnect location, and you want this new cross-connect to be on a different router (for the purposes of redundancy), provide the OCID of that existing cross-connect or cross-connect group.
25 26 27 |
# File 'lib/oraclebmc/core/models/create_cross_connect_details.rb', line 25 def far_cross_connect_or_cross_connect_group_id @far_cross_connect_or_cross_connect_group_id end |
#location_name ⇒ String
The name of the FastConnect location where this cross-connect will be installed. To get a list of the available locations, see list_cross_connect_locations.
Example: ‘CyrusOne, Chandler, AZ`
34 35 36 |
# File 'lib/oraclebmc/core/models/create_cross_connect_details.rb', line 34 def location_name @location_name end |
#near_cross_connect_or_cross_connect_group_id ⇒ String
If you already have an existing cross-connect or cross-connect group at this FastConnect location, and you want this new cross-connect to be on the same router, provide the OCID of that existing cross-connect or cross-connect group.
41 42 43 |
# File 'lib/oraclebmc/core/models/create_cross_connect_details.rb', line 41 def near_cross_connect_or_cross_connect_group_id @near_cross_connect_or_cross_connect_group_id end |
#port_speed_shape_name ⇒ String
The port speed for this cross-connect. To get a list of the available port speeds, see list_crossconnect_port_speed_shapes.
Example: ‘10 Gbps`
49 50 51 |
# File 'lib/oraclebmc/core/models/create_cross_connect_details.rb', line 49 def port_speed_shape_name @port_speed_shape_name end |
Instance Method Details
#==(other_object) ⇒ Object
Checks equality by comparing each attribute.
93 94 95 96 97 98 99 100 101 102 103 |
# File 'lib/oraclebmc/core/models/create_cross_connect_details.rb', line 93 def ==(other_object) return true if self.equal?(other_object) self.class == other_object.class && compartment_id == other_object.compartment_id && cross_connect_group_id == other_object.cross_connect_group_id && display_name == other_object.display_name && far_cross_connect_or_cross_connect_group_id == other_object.far_cross_connect_or_cross_connect_group_id && location_name == other_object.location_name && near_cross_connect_or_cross_connect_group_id == other_object.near_cross_connect_or_cross_connect_group_id && port_speed_shape_name == other_object.port_speed_shape_name end |
#build_from_hash(attributes) ⇒ Object
Builds the object from hash
120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 |
# File 'lib/oraclebmc/core/models/create_cross_connect_details.rb', line 120 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) self.send("#{key}=", attributes[self.class.attribute_map[key]].map{ |v| OracleBMC::Internal::Util.convert_to_type($1, v) } ) end elsif !attributes[self.class.attribute_map[key]].nil? self.send("#{key}=", OracleBMC::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_object) ⇒ Boolean
107 108 109 |
# File 'lib/oraclebmc/core/models/create_cross_connect_details.rb', line 107 def eql?(other_object) self == other_object end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
113 114 115 |
# File 'lib/oraclebmc/core/models/create_cross_connect_details.rb', line 113 def hash [compartment_id, cross_connect_group_id, display_name, far_cross_connect_or_cross_connect_group_id, location_name, near_cross_connect_or_cross_connect_group_id, port_speed_shape_name].hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
145 146 147 148 149 150 151 152 153 |
# File 'lib/oraclebmc/core/models/create_cross_connect_details.rb', line 145 def to_hash hash = {} self.class.attribute_map.each_pair do |attr, param| value = self.send(attr) next if value.nil? hash[param] = _to_hash(value) end hash end |
#to_s ⇒ String
Returns the string representation of the object
139 140 141 |
# File 'lib/oraclebmc/core/models/create_cross_connect_details.rb', line 139 def to_s to_hash.to_s end |