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.
/** * 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; import java.util.List; import com.fasterxml.jackson.annotation.JsonProperty;
Azure reachability report details for a given provider location.
/** * Azure reachability report details for a given provider location. */
public class AzureReachabilityReportItem {
The Internet service provider.
/** * The Internet service provider. */
@JsonProperty(value = "provider") private String provider;
The Azure region.
/** * The Azure region. */
@JsonProperty(value = "azureLocation") private String azureLocation;
List of latency details for each of the time series.
/** * List of latency details for each of the time series. */
@JsonProperty(value = "latencies") private List<AzureReachabilityReportLatencyInfo> latencies;
Get the Internet service provider.
Returns:the provider value
/** * Get the Internet service provider. * * @return the provider value */
public String provider() { return this.provider; }
Set the Internet service provider.
Params:
  • provider – the provider value to set
Returns:the AzureReachabilityReportItem object itself.
/** * Set 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 Azure region.
Returns:the azureLocation value
/** * Get the Azure region. * * @return the azureLocation value */
public String azureLocation() { return this.azureLocation; }
Set the Azure region.
Params:
  • azureLocation – the azureLocation value to set
Returns:the AzureReachabilityReportItem object itself.
/** * Set 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 list of latency details for each of the time series.
Returns:the latencies value
/** * Get list of latency details for each of the time series. * * @return the latencies value */
public List<AzureReachabilityReportLatencyInfo> latencies() { return this.latencies; }
Set list of latency details for each of the time series.
Params:
  • latencies – the latencies value to set
Returns:the AzureReachabilityReportItem object itself.
/** * Set 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<AzureReachabilityReportLatencyInfo> latencies) { this.latencies = latencies; return this; } }