class Azure::Network::Mgmt::V2017_11_01::Models::ExpressRouteCircuitArpTable
The ARP table associated with the ExpressRouteCircuit.
Attributes
age[RW]
@return [Integer] Age
interface[RW]
@return [String] Interface
ip_address[RW]
@return [String] The IP address.
mac_address[RW]
@return [String] The MAC address.
Public Class Methods
mapper()
click to toggle source
Mapper for ExpressRouteCircuitArpTable class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2017-11-01/generated/azure_mgmt_network/models/express_route_circuit_arp_table.rb, line 31 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ExpressRouteCircuitArpTable', type: { name: 'Composite', class_name: 'ExpressRouteCircuitArpTable', model_properties: { age: { client_side_validation: true, required: false, serialized_name: 'age', type: { name: 'Number' } }, interface: { client_side_validation: true, required: false, serialized_name: 'interface', type: { name: 'String' } }, ip_address: { client_side_validation: true, required: false, serialized_name: 'ipAddress', type: { name: 'String' } }, mac_address: { client_side_validation: true, required: false, serialized_name: 'macAddress', type: { name: 'String' } } } } } end