Class: Azure::ARM::Network::Models::ExpressRouteCircuitArpTable
- Inherits:
-
Object
- Object
- Azure::ARM::Network::Models::ExpressRouteCircuitArpTable
- Includes:
- MsRestAzure
- Defined in:
- lib/azure_mgmt_network/models/express_route_circuit_arp_table.rb
Overview
The arp table associated with the ExpressRouteCircuit
Instance Attribute Summary collapse
-
#ip_address ⇒ String
Gets ipAddress.
-
#mac_address ⇒ String
Gets macAddress.
Class Method Summary collapse
-
.deserialize_object(object) ⇒ ExpressRouteCircuitArpTable
Deserializes given Ruby Hash into Model object.
-
.serialize_object(object) ⇒ Hash
Serializes given Model object into Ruby Hash.
Instance Method Summary collapse
-
#validate ⇒ Object
Validate the object.
Instance Attribute Details
#ip_address ⇒ String
Returns Gets ipAddress.
16 17 18 |
# File 'lib/azure_mgmt_network/models/express_route_circuit_arp_table.rb', line 16 def ip_address @ip_address end |
#mac_address ⇒ String
Returns Gets macAddress.
19 20 21 |
# File 'lib/azure_mgmt_network/models/express_route_circuit_arp_table.rb', line 19 def mac_address @mac_address end |
Class Method Details
.deserialize_object(object) ⇒ ExpressRouteCircuitArpTable
Deserializes given Ruby Hash into Model object.
51 52 53 54 55 56 57 58 59 60 61 62 |
# File 'lib/azure_mgmt_network/models/express_route_circuit_arp_table.rb', line 51 def self.deserialize_object(object) return if object.nil? output_object = ExpressRouteCircuitArpTable.new deserialized_property = object['ipAddress'] output_object.ip_address = deserialized_property deserialized_property = object['macAddress'] output_object.mac_address = deserialized_property output_object end |
.serialize_object(object) ⇒ Hash
Serializes given Model object into Ruby Hash.
33 34 35 36 37 38 39 40 41 42 43 44 |
# File 'lib/azure_mgmt_network/models/express_route_circuit_arp_table.rb', line 33 def self.serialize_object(object) object.validate output_object = {} serialized_property = object.ip_address output_object['ipAddress'] = serialized_property unless serialized_property.nil? serialized_property = object.mac_address output_object['macAddress'] = serialized_property unless serialized_property.nil? output_object end |
Instance Method Details
#validate ⇒ Object
Validate the object. Throws ValidationError if validation fails.
24 25 26 |
# File 'lib/azure_mgmt_network/models/express_route_circuit_arp_table.rb', line 24 def validate # Nothing to validate end |