Class: Azure::ARM::Network::Models::ExpressRouteCircuitArpTable
- Inherits:
-
Object
- Object
- Azure::ARM::Network::Models::ExpressRouteCircuitArpTable
- Includes:
- MsRest::JSONable, MsRestAzure
- Defined in:
- lib/generated/azure_mgmt_network/models/express_route_circuit_arp_table.rb
Overview
The ARP table associated with the ExpressRouteCircuit.
Instance Attribute Summary collapse
-
#age ⇒ Integer
Age.
-
#interface ⇒ String
Interface.
-
#ip_address ⇒ String
The IP address.
-
#mac_address ⇒ String
The MAC address.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for ExpressRouteCircuitArpTable class as Ruby Hash.
Instance Attribute Details
#age ⇒ Integer
Returns Age.
17 18 19 |
# File 'lib/generated/azure_mgmt_network/models/express_route_circuit_arp_table.rb', line 17 def age @age end |
#interface ⇒ String
Returns Interface.
20 21 22 |
# File 'lib/generated/azure_mgmt_network/models/express_route_circuit_arp_table.rb', line 20 def interface @interface end |
#ip_address ⇒ String
Returns The IP address.
23 24 25 |
# File 'lib/generated/azure_mgmt_network/models/express_route_circuit_arp_table.rb', line 23 def ip_address @ip_address end |
#mac_address ⇒ String
Returns The MAC address.
26 27 28 |
# File 'lib/generated/azure_mgmt_network/models/express_route_circuit_arp_table.rb', line 26 def mac_address @mac_address end |
Class Method Details
.mapper ⇒ Object
Mapper for ExpressRouteCircuitArpTable class as Ruby Hash. This will be used for serialization/deserialization.
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 |
# File 'lib/generated/azure_mgmt_network/models/express_route_circuit_arp_table.rb', line 33 def self.mapper() { required: false, serialized_name: 'ExpressRouteCircuitArpTable', type: { name: 'Composite', class_name: 'ExpressRouteCircuitArpTable', model_properties: { age: { required: false, serialized_name: 'age', type: { name: 'Number' } }, interface: { required: false, serialized_name: 'interface', type: { name: 'String' } }, ip_address: { required: false, serialized_name: 'ipAddress', type: { name: 'String' } }, mac_address: { required: false, serialized_name: 'macAddress', type: { name: 'String' } } } } } end |