| | 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 ExpressRouteCircuitRoutesTableSummary |
| | 12 | | { |
| | 13 | | /// <summary> Initializes a new instance of ExpressRouteCircuitRoutesTableSummary. </summary> |
| 0 | 14 | | internal ExpressRouteCircuitRoutesTableSummary() |
| | 15 | | { |
| 0 | 16 | | } |
| | 17 | |
|
| | 18 | | /// <summary> Initializes a new instance of ExpressRouteCircuitRoutesTableSummary. </summary> |
| | 19 | | /// <param name="neighbor"> IP address of the neighbor. </param> |
| | 20 | | /// <param name="v"> BGP version number spoken to the neighbor. </param> |
| | 21 | | /// <param name="as"> Autonomous system number. </param> |
| | 22 | | /// <param name="upDown"> The length of time that the BGP session has been in the Established state, or the curr |
| | 23 | | /// <param name="statePfxRcd"> Current state of the BGP session, and the number of prefixes that have been recei |
| 0 | 24 | | internal ExpressRouteCircuitRoutesTableSummary(string neighbor, int? v, int? @as, string upDown, string statePfx |
| | 25 | | { |
| 0 | 26 | | Neighbor = neighbor; |
| 0 | 27 | | V = v; |
| 0 | 28 | | As = @as; |
| 0 | 29 | | UpDown = upDown; |
| 0 | 30 | | StatePfxRcd = statePfxRcd; |
| 0 | 31 | | } |
| | 32 | |
|
| | 33 | | /// <summary> IP address of the neighbor. </summary> |
| 0 | 34 | | public string Neighbor { get; } |
| | 35 | | /// <summary> BGP version number spoken to the neighbor. </summary> |
| 0 | 36 | | public int? V { get; } |
| | 37 | | /// <summary> Autonomous system number. </summary> |
| 0 | 38 | | public int? As { get; } |
| | 39 | | /// <summary> The length of time that the BGP session has been in the Established state, or the current status i |
| 0 | 40 | | public string UpDown { get; } |
| | 41 | | /// <summary> Current state of the BGP session, and the number of prefixes that have been received from a neighb |
| 0 | 42 | | public string StatePfxRcd { get; } |
| | 43 | | } |
| | 44 | | } |