class Azure::Network::Mgmt::V2020_03_01::Models::ExpressRouteCircuitArpTable

The ARP table associated with the ExpressRouteCircuit.

Attributes

age[RW]

@return [Integer] Entry age in minutes.

interface[RW]

@return [String] Interface address.

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/2020-03-01/generated/azure_mgmt_network/models/express_route_circuit_arp_table.rb, line 32
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