| | 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 ExpressRouteCrossConnectionRoutesTableSummary |
| | 12 | | { |
| | 13 | | /// <summary> Initializes a new instance of ExpressRouteCrossConnectionRoutesTableSummary. </summary> |
| 0 | 14 | | internal ExpressRouteCrossConnectionRoutesTableSummary() |
| | 15 | | { |
| 0 | 16 | | } |
| | 17 | |
|
| | 18 | | /// <summary> Initializes a new instance of ExpressRouteCrossConnectionRoutesTableSummary. </summary> |
| | 19 | | /// <param name="neighbor"> IP address of Neighbor router. </param> |
| | 20 | | /// <param name="asn"> Autonomous system number. </param> |
| | 21 | | /// <param name="upDown"> The length of time that the BGP session has been in the Established state, or the curr |
| | 22 | | /// <param name="stateOrPrefixesReceived"> Current state of the BGP session, and the number of prefixes that hav |
| 0 | 23 | | internal ExpressRouteCrossConnectionRoutesTableSummary(string neighbor, int? asn, string upDown, string stateOrP |
| | 24 | | { |
| 0 | 25 | | Neighbor = neighbor; |
| 0 | 26 | | Asn = asn; |
| 0 | 27 | | UpDown = upDown; |
| 0 | 28 | | StateOrPrefixesReceived = stateOrPrefixesReceived; |
| 0 | 29 | | } |
| | 30 | |
|
| | 31 | | /// <summary> IP address of Neighbor router. </summary> |
| 0 | 32 | | public string Neighbor { get; } |
| | 33 | | /// <summary> Autonomous system number. </summary> |
| 0 | 34 | | public int? Asn { get; } |
| | 35 | | /// <summary> The length of time that the BGP session has been in the Established state, or the current status i |
| 0 | 36 | | public string UpDown { get; } |
| | 37 | | /// <summary> Current state of the BGP session, and the number of prefixes that have been received from a neighb |
| 0 | 38 | | public string StateOrPrefixesReceived { get; } |
| | 39 | | } |
| | 40 | | } |