| | | 1 | | // Copyright (c) Microsoft Corporation. All rights reserved. |
| | | 2 | | // Licensed under the MIT License. |
| | | 3 | | |
| | | 4 | | // <auto-generated/> |
| | | 5 | | |
| | | 6 | | #nullable disable |
| | | 7 | | |
| | | 8 | | namespace Azure.ResourceManager.Network.Models |
| | | 9 | | { |
| | | 10 | | /// <summary> The routes table associated with the ExpressRouteCircuit. </summary> |
| | | 11 | | public partial class ExpressRouteCircuitRoutesTable |
| | | 12 | | { |
| | | 13 | | /// <summary> Initializes a new instance of ExpressRouteCircuitRoutesTable. </summary> |
| | 0 | 14 | | internal ExpressRouteCircuitRoutesTable() |
| | | 15 | | { |
| | 0 | 16 | | } |
| | | 17 | | |
| | | 18 | | /// <summary> Initializes a new instance of ExpressRouteCircuitRoutesTable. </summary> |
| | | 19 | | /// <param name="network"> IP address of a network entity. </param> |
| | | 20 | | /// <param name="nextHop"> NextHop address. </param> |
| | | 21 | | /// <param name="locPrf"> Local preference value as set with the set local-preference route-map configuration co |
| | | 22 | | /// <param name="weight"> Route Weight. </param> |
| | | 23 | | /// <param name="path"> Autonomous system paths to the destination network. </param> |
| | 0 | 24 | | internal ExpressRouteCircuitRoutesTable(string network, string nextHop, string locPrf, int? weight, string path) |
| | | 25 | | { |
| | 0 | 26 | | Network = network; |
| | 0 | 27 | | NextHop = nextHop; |
| | 0 | 28 | | LocPrf = locPrf; |
| | 0 | 29 | | Weight = weight; |
| | 0 | 30 | | Path = path; |
| | 0 | 31 | | } |
| | | 32 | | |
| | | 33 | | /// <summary> IP address of a network entity. </summary> |
| | 0 | 34 | | public string Network { get; } |
| | | 35 | | /// <summary> NextHop address. </summary> |
| | 0 | 36 | | public string NextHop { get; } |
| | | 37 | | /// <summary> Local preference value as set with the set local-preference route-map configuration command. </sum |
| | 0 | 38 | | public string LocPrf { get; } |
| | | 39 | | /// <summary> Route Weight. </summary> |
| | 0 | 40 | | public int? Weight { get; } |
| | | 41 | | /// <summary> Autonomous system paths to the destination network. </summary> |
| | 0 | 42 | | public string Path { get; } |
| | | 43 | | } |
| | | 44 | | } |