Class: Azure::Network::Mgmt::V2016_09_01::Models::ExpressRouteCircuitRoutesTableSummary

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2016-09-01/generated/azure_mgmt_network/models/express_route_circuit_routes_table_summary.rb

Overview

The routes table associated with the ExpressRouteCircuit.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#asInteger

Returns Autonomous system number.

Returns:

  • (Integer)

    Autonomous system number.



22
23
24
# File 'lib/2016-09-01/generated/azure_mgmt_network/models/express_route_circuit_routes_table_summary.rb', line 22

def as
  @as
end

#neighborString

Returns Neighbor.

Returns:

  • (String)

    Neighbor



16
17
18
# File 'lib/2016-09-01/generated/azure_mgmt_network/models/express_route_circuit_routes_table_summary.rb', line 16

def neighbor
  @neighbor
end

#state_pfx_rcdString

prefixes that have been received from a neighbor or peer group.

Returns:

  • (String)

    Current state of the BGP session, and the number of



31
32
33
# File 'lib/2016-09-01/generated/azure_mgmt_network/models/express_route_circuit_routes_table_summary.rb', line 31

def state_pfx_rcd
  @state_pfx_rcd
end

#up_downString

the Established state, or the current status if not in the Established state.

Returns:

  • (String)

    The length of time that the BGP session has been in



27
28
29
# File 'lib/2016-09-01/generated/azure_mgmt_network/models/express_route_circuit_routes_table_summary.rb', line 27

def up_down
  @up_down
end

#vInteger

Returns BGP version number spoken to the neighbor.

Returns:

  • (Integer)

    BGP version number spoken to the neighbor.



19
20
21
# File 'lib/2016-09-01/generated/azure_mgmt_network/models/express_route_circuit_routes_table_summary.rb', line 19

def v
  @v
end

Class Method Details

.mapperObject

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



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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
# File 'lib/2016-09-01/generated/azure_mgmt_network/models/express_route_circuit_routes_table_summary.rb', line 38

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'ExpressRouteCircuitRoutesTableSummary',
    type: {
      name: 'Composite',
      class_name: 'ExpressRouteCircuitRoutesTableSummary',
      model_properties: {
        neighbor: {
          client_side_validation: true,
          required: false,
          serialized_name: 'neighbor',
          type: {
            name: 'String'
          }
        },
        v: {
          client_side_validation: true,
          required: false,
          serialized_name: 'v',
          type: {
            name: 'Number'
          }
        },
        as: {
          client_side_validation: true,
          required: false,
          serialized_name: 'as',
          type: {
            name: 'Number'
          }
        },
        up_down: {
          client_side_validation: true,
          required: false,
          serialized_name: 'upDown',
          type: {
            name: 'String'
          }
        },
        state_pfx_rcd: {
          client_side_validation: true,
          required: false,
          serialized_name: 'statePfxRcd',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end