class Azure::Network::Mgmt::V2015_05_01_preview::Models::ExpressRouteCircuitRoutesTable

The routes table associated with the ExpressRouteCircuit

Attributes

address_prefix[RW]

@return [String] Gets AddressPrefix.

as_path[RW]

@return [String] Gets AsPath.

next_hop_ip[RW]

@return [String] Gets NextHopIP.

next_hop_type[RW]

@return [RouteNextHopType] Gets NextHopType. Possible values include: 'VirtualNetworkGateway', 'VnetLocal', 'Internet', 'VirtualAppliance', 'None'

Public Class Methods

mapper() click to toggle source

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

# File lib/2015-05-01-preview/generated/azure_mgmt_network/models/express_route_circuit_routes_table.rb, line 34
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'ExpressRouteCircuitRoutesTable',
    type: {
      name: 'Composite',
      class_name: 'ExpressRouteCircuitRoutesTable',
      model_properties: {
        address_prefix: {
          client_side_validation: true,
          required: false,
          serialized_name: 'addressPrefix',
          type: {
            name: 'String'
          }
        },
        next_hop_type: {
          client_side_validation: true,
          required: true,
          serialized_name: 'nextHopType',
          type: {
            name: 'String'
          }
        },
        next_hop_ip: {
          client_side_validation: true,
          required: false,
          serialized_name: 'nextHopIP',
          type: {
            name: 'String'
          }
        },
        as_path: {
          client_side_validation: true,
          required: false,
          serialized_name: 'asPath',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end