com.azure.resourcemanager.network.fluent.models.HopLinkProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-network Show documentation
Show all versions of azure-resourcemanager-network Show documentation
This package contains Microsoft Azure Network Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.network.fluent.models;
import com.azure.core.annotation.Immutable;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* Hop link properties.
*/
@Immutable
public final class HopLinkProperties {
/*
* Minimum roundtrip time in milliseconds.
*/
@JsonProperty(value = "roundTripTimeMin", access = JsonProperty.Access.WRITE_ONLY)
private Long roundTripTimeMin;
/*
* Average roundtrip time in milliseconds.
*/
@JsonProperty(value = "roundTripTimeAvg", access = JsonProperty.Access.WRITE_ONLY)
private Long roundTripTimeAvg;
/*
* Maximum roundtrip time in milliseconds.
*/
@JsonProperty(value = "roundTripTimeMax", access = JsonProperty.Access.WRITE_ONLY)
private Long roundTripTimeMax;
/**
* Creates an instance of HopLinkProperties class.
*/
public HopLinkProperties() {
}
/**
* Get the roundTripTimeMin property: Minimum roundtrip time in milliseconds.
*
* @return the roundTripTimeMin value.
*/
public Long roundTripTimeMin() {
return this.roundTripTimeMin;
}
/**
* Get the roundTripTimeAvg property: Average roundtrip time in milliseconds.
*
* @return the roundTripTimeAvg value.
*/
public Long roundTripTimeAvg() {
return this.roundTripTimeAvg;
}
/**
* Get the roundTripTimeMax property: Maximum roundtrip time in milliseconds.
*
* @return the roundTripTimeMax value.
*/
public Long roundTripTimeMax() {
return this.roundTripTimeMax;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
}
}