class Azure::Network::Mgmt::V2018_01_01::Models::ExpressRouteCircuitRoutesTableSummary

The routes table associated with the ExpressRouteCircuit.

Attributes

as[RW]

@return [Integer] Autonomous system number.

neighbor[RW]

@return [String] Neighbor

state_pfx_rcd[RW]

@return [String] Current state of the BGP session, and the number of prefixes that have been received from a neighbor or peer group.

up_down[RW]

@return [String] The length of time that the BGP session has been in the Established state, or the current status if not in the Established state.

v[RW]

@return [Integer] BGP version number spoken to the neighbor.

Public Class Methods

mapper() click to toggle source

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

# File lib/2018-01-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