class Azure::Network::Mgmt::V2019_04_01::Models::ExpressRouteCircuitRoutesTable

The routes table associated with the ExpressRouteCircuit.

Attributes

loc_prf[RW]

@return [String] Local preference value as set with the set local-preference route-map configuration command.

network[RW]

@return [String] IP address of a network entity.

next_hop[RW]

@return [String] NextHop address.

path[RW]

@return [String] Autonomous system paths to the destination network.

weight[RW]

@return [Integer] Route Weight.

Public Class Methods

mapper() click to toggle source

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

# File lib/2019-04-01/generated/azure_mgmt_network/models/express_route_circuit_routes_table.rb, line 36
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'ExpressRouteCircuitRoutesTable',
    type: {
      name: 'Composite',
      class_name: 'ExpressRouteCircuitRoutesTable',
      model_properties: {
        network: {
          client_side_validation: true,
          required: false,
          serialized_name: 'network',
          type: {
            name: 'String'
          }
        },
        next_hop: {
          client_side_validation: true,
          required: false,
          serialized_name: 'nextHop',
          type: {
            name: 'String'
          }
        },
        loc_prf: {
          client_side_validation: true,
          required: false,
          serialized_name: 'locPrf',
          type: {
            name: 'String'
          }
        },
        weight: {
          client_side_validation: true,
          required: false,
          serialized_name: 'weight',
          type: {
            name: 'Number'
          }
        },
        path: {
          client_side_validation: true,
          required: false,
          serialized_name: 'path',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end