All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.microsoft.azure.management.network.implementation.AzureReachabilityReportInner Maven / Gradle / Ivy

Go to download

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

There is a newer version: 1.41.4
Show newest version
/**
 * 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.AzureReachabilityReportLocation;
import java.util.List;
import com.microsoft.azure.management.network.AzureReachabilityReportItem;
import com.fasterxml.jackson.annotation.JsonProperty;

/**
 * Azure reachability report details.
 */
public class AzureReachabilityReportInner {
    /**
     * The aggregation level of Azure reachability report. Can be Country,
     * State or City.
     */
    @JsonProperty(value = "aggregationLevel", required = true)
    private String aggregationLevel;

    /**
     * Parameters that define a geographic location.
     */
    @JsonProperty(value = "providerLocation", required = true)
    private AzureReachabilityReportLocation providerLocation;

    /**
     * List of Azure reachability report items.
     */
    @JsonProperty(value = "reachabilityReport", required = true)
    private List reachabilityReport;

    /**
     * Get the aggregation level of Azure reachability report. Can be Country, State or City.
     *
     * @return the aggregationLevel value
     */
    public String aggregationLevel() {
        return this.aggregationLevel;
    }

    /**
     * Set the aggregation level of Azure reachability report. Can be Country, State or City.
     *
     * @param aggregationLevel the aggregationLevel value to set
     * @return the AzureReachabilityReportInner object itself.
     */
    public AzureReachabilityReportInner withAggregationLevel(String aggregationLevel) {
        this.aggregationLevel = aggregationLevel;
        return this;
    }

    /**
     * Get parameters that define a geographic location.
     *
     * @return the providerLocation value
     */
    public AzureReachabilityReportLocation providerLocation() {
        return this.providerLocation;
    }

    /**
     * Set parameters that define a geographic location.
     *
     * @param providerLocation the providerLocation value to set
     * @return the AzureReachabilityReportInner object itself.
     */
    public AzureReachabilityReportInner withProviderLocation(AzureReachabilityReportLocation providerLocation) {
        this.providerLocation = providerLocation;
        return this;
    }

    /**
     * Get list of Azure reachability report items.
     *
     * @return the reachabilityReport value
     */
    public List reachabilityReport() {
        return this.reachabilityReport;
    }

    /**
     * Set list of Azure reachability report items.
     *
     * @param reachabilityReport the reachabilityReport value to set
     * @return the AzureReachabilityReportInner object itself.
     */
    public AzureReachabilityReportInner withReachabilityReport(List reachabilityReport) {
        this.reachabilityReport = reachabilityReport;
        return this;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy