com.azure.resourcemanager.network.models.AzureReachabilityReportItem 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.models;
import com.azure.core.annotation.Fluent;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.List;
/**
* Azure reachability report details for a given provider location.
*/
@Fluent
public final class AzureReachabilityReportItem {
/*
* The Internet service provider.
*/
@JsonProperty(value = "provider")
private String provider;
/*
* The Azure region.
*/
@JsonProperty(value = "azureLocation")
private String azureLocation;
/*
* List of latency details for each of the time series.
*/
@JsonProperty(value = "latencies")
private List latencies;
/**
* Creates an instance of AzureReachabilityReportItem class.
*/
public AzureReachabilityReportItem() {
}
/**
* Get the provider property: The Internet service provider.
*
* @return the provider value.
*/
public String provider() {
return this.provider;
}
/**
* Set the provider property: The Internet service provider.
*
* @param provider the provider value to set.
* @return the AzureReachabilityReportItem object itself.
*/
public AzureReachabilityReportItem withProvider(String provider) {
this.provider = provider;
return this;
}
/**
* Get the azureLocation property: The Azure region.
*
* @return the azureLocation value.
*/
public String azureLocation() {
return this.azureLocation;
}
/**
* Set the azureLocation property: The Azure region.
*
* @param azureLocation the azureLocation value to set.
* @return the AzureReachabilityReportItem object itself.
*/
public AzureReachabilityReportItem withAzureLocation(String azureLocation) {
this.azureLocation = azureLocation;
return this;
}
/**
* Get the latencies property: List of latency details for each of the time series.
*
* @return the latencies value.
*/
public List latencies() {
return this.latencies;
}
/**
* Set the latencies property: List of latency details for each of the time series.
*
* @param latencies the latencies value to set.
* @return the AzureReachabilityReportItem object itself.
*/
public AzureReachabilityReportItem withLatencies(List latencies) {
this.latencies = latencies;
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
if (latencies() != null) {
latencies().forEach(e -> e.validate());
}
}
}