com.microsoft.azure.management.network.implementation.NextHopResultInner Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-mgmt-network Show documentation
Show all versions of azure-mgmt-network Show documentation
This package contains Microsoft Azure Network Management SDK. A new set of management libraries are now Generally Available. For documentation on how to use the new libraries, please see https://aka.ms/azsdk/java/mgmt
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
*/
package com.microsoft.azure.management.network.implementation;
import com.microsoft.azure.management.network.NextHopType;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* The information about next hop from the specified VM.
*/
public class NextHopResultInner {
/**
* Next hop type. Possible values include: 'Internet', 'VirtualAppliance',
* 'VirtualNetworkGateway', 'VnetLocal', 'HyperNetGateway', 'None'.
*/
@JsonProperty(value = "nextHopType")
private NextHopType nextHopType;
/**
* Next hop IP Address.
*/
@JsonProperty(value = "nextHopIpAddress")
private String nextHopIpAddress;
/**
* The resource identifier for the route table associated with the route
* being returned. If the route being returned does not correspond to any
* user created routes then this field will be the string 'System Route'.
*/
@JsonProperty(value = "routeTableId")
private String routeTableId;
/**
* Get the nextHopType value.
*
* @return the nextHopType value
*/
public NextHopType nextHopType() {
return this.nextHopType;
}
/**
* Set the nextHopType value.
*
* @param nextHopType the nextHopType value to set
* @return the NextHopResultInner object itself.
*/
public NextHopResultInner withNextHopType(NextHopType nextHopType) {
this.nextHopType = nextHopType;
return this;
}
/**
* Get the nextHopIpAddress value.
*
* @return the nextHopIpAddress value
*/
public String nextHopIpAddress() {
return this.nextHopIpAddress;
}
/**
* Set the nextHopIpAddress value.
*
* @param nextHopIpAddress the nextHopIpAddress value to set
* @return the NextHopResultInner object itself.
*/
public NextHopResultInner withNextHopIpAddress(String nextHopIpAddress) {
this.nextHopIpAddress = nextHopIpAddress;
return this;
}
/**
* Get the routeTableId value.
*
* @return the routeTableId value
*/
public String routeTableId() {
return this.routeTableId;
}
/**
* Set the routeTableId value.
*
* @param routeTableId the routeTableId value to set
* @return the NextHopResultInner object itself.
*/
public NextHopResultInner withRouteTableId(String routeTableId) {
this.routeTableId = routeTableId;
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy