Class: Azure::Network::Mgmt::V2018_11_01::Models::ExpressRouteCircuitArpTable

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2018-11-01/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 Entry age in minutes.

Returns:

  • (Integer)

    Entry age in minutes



16
17
18
# File 'lib/2018-11-01/generated/azure_mgmt_network/models/express_route_circuit_arp_table.rb', line 16

def age
  @age
end

#interfaceString

Returns Interface address.

Returns:

  • (String)

    Interface address



19
20
21
# File 'lib/2018-11-01/generated/azure_mgmt_network/models/express_route_circuit_arp_table.rb', line 19

def interface
  @interface
end

#ip_addressString

Returns The IP address.

Returns:

  • (String)

    The IP address.



22
23
24
# File 'lib/2018-11-01/generated/azure_mgmt_network/models/express_route_circuit_arp_table.rb', line 22

def ip_address
  @ip_address
end

#mac_addressString

Returns The MAC address.

Returns:

  • (String)

    The MAC address.



25
26
27
# File 'lib/2018-11-01/generated/azure_mgmt_network/models/express_route_circuit_arp_table.rb', line 25

def mac_address
  @mac_address
end

Class Method Details

.mapperObject

Mapper for ExpressRouteCircuitArpTable class as Ruby Hash. This will be used for serialization/deserialization.



32
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
73
74
75
76
# File 'lib/2018-11-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