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

com.microsoft.azure.management.cosmosdb.PercentileMetricValue Maven / Gradle / Ivy

Go to download

This package contains Microsoft Azure CosmosDB 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.cosmosdb;

import com.fasterxml.jackson.annotation.JsonProperty;

/**
 * Represents percentile metrics values.
 */
public class PercentileMetricValue extends MetricValue {
    /**
     * The 10th percentile value for the metric.
     */
    @JsonProperty(value = "P10", access = JsonProperty.Access.WRITE_ONLY)
    private Double p10;

    /**
     * The 25th percentile value for the metric.
     */
    @JsonProperty(value = "P25", access = JsonProperty.Access.WRITE_ONLY)
    private Double p25;

    /**
     * The 50th percentile value for the metric.
     */
    @JsonProperty(value = "P50", access = JsonProperty.Access.WRITE_ONLY)
    private Double p50;

    /**
     * The 75th percentile value for the metric.
     */
    @JsonProperty(value = "P75", access = JsonProperty.Access.WRITE_ONLY)
    private Double p75;

    /**
     * The 90th percentile value for the metric.
     */
    @JsonProperty(value = "P90", access = JsonProperty.Access.WRITE_ONLY)
    private Double p90;

    /**
     * The 95th percentile value for the metric.
     */
    @JsonProperty(value = "P95", access = JsonProperty.Access.WRITE_ONLY)
    private Double p95;

    /**
     * The 99th percentile value for the metric.
     */
    @JsonProperty(value = "P99", access = JsonProperty.Access.WRITE_ONLY)
    private Double p99;

    /**
     * Get the 10th percentile value for the metric.
     *
     * @return the p10 value
     */
    public Double p10() {
        return this.p10;
    }

    /**
     * Get the 25th percentile value for the metric.
     *
     * @return the p25 value
     */
    public Double p25() {
        return this.p25;
    }

    /**
     * Get the 50th percentile value for the metric.
     *
     * @return the p50 value
     */
    public Double p50() {
        return this.p50;
    }

    /**
     * Get the 75th percentile value for the metric.
     *
     * @return the p75 value
     */
    public Double p75() {
        return this.p75;
    }

    /**
     * Get the 90th percentile value for the metric.
     *
     * @return the p90 value
     */
    public Double p90() {
        return this.p90;
    }

    /**
     * Get the 95th percentile value for the metric.
     *
     * @return the p95 value
     */
    public Double p95() {
        return this.p95;
    }

    /**
     * Get the 99th percentile value for the metric.
     *
     * @return the p99 value
     */
    public Double p99() {
        return this.p99;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy