| | | 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 information about next hop from the specified VM. </summary> |
| | | 11 | | public partial class NextHopResult |
| | | 12 | | { |
| | | 13 | | /// <summary> Initializes a new instance of NextHopResult. </summary> |
| | 0 | 14 | | internal NextHopResult() |
| | | 15 | | { |
| | 0 | 16 | | } |
| | | 17 | | |
| | | 18 | | /// <summary> Initializes a new instance of NextHopResult. </summary> |
| | | 19 | | /// <param name="nextHopType"> Next hop type. </param> |
| | | 20 | | /// <param name="nextHopIpAddress"> Next hop IP Address. </param> |
| | | 21 | | /// <param name="routeTableId"> The resource identifier for the route table associated with the route being retu |
| | 8 | 22 | | internal NextHopResult(NextHopType? nextHopType, string nextHopIpAddress, string routeTableId) |
| | | 23 | | { |
| | 8 | 24 | | NextHopType = nextHopType; |
| | 8 | 25 | | NextHopIpAddress = nextHopIpAddress; |
| | 8 | 26 | | RouteTableId = routeTableId; |
| | 8 | 27 | | } |
| | | 28 | | |
| | | 29 | | /// <summary> Next hop type. </summary> |
| | 4 | 30 | | public NextHopType? NextHopType { get; } |
| | | 31 | | /// <summary> Next hop IP Address. </summary> |
| | 4 | 32 | | public string NextHopIpAddress { get; } |
| | | 33 | | /// <summary> The resource identifier for the route table associated with the route being returned. If the route |
| | 8 | 34 | | public string RouteTableId { get; } |
| | | 35 | | } |
| | | 36 | | } |