Class: Azure::ARM::Network::Models::ExpressRouteCircuitArpTable

Inherits:
Object
  • Object
show all
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

Class Method Summary collapse

Instance Attribute Details

#ageInteger

Returns Age.

Returns:

  • (Integer)

    Age



17
18
19
# File 'lib/generated/azure_mgmt_network/models/express_route_circuit_arp_table.rb', line 17

def age
  @age
end

#interfaceString

Returns Interface.

Returns:

  • (String)

    Interface



20
21
22
# File 'lib/generated/azure_mgmt_network/models/express_route_circuit_arp_table.rb', line 20

def interface
  @interface
end

#ip_addressString

Returns The IP address.

Returns:

  • (String)

    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_addressString

Returns The MAC address.

Returns:

  • (String)

    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

.mapperObject

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