PartitionMetricListResult.java
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.cosmos.models;
import com.azure.core.annotation.Immutable;
import com.azure.core.util.logging.ClientLogger;
import com.azure.resourcemanager.cosmos.fluent.models.PartitionMetricInner;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.List;
/** The response to a list partition metrics request. */
@Immutable
public final class PartitionMetricListResult {
@JsonIgnore private final ClientLogger logger = new ClientLogger(PartitionMetricListResult.class);
/*
* The list of partition-level metrics for the account.
*/
@JsonProperty(value = "value", access = JsonProperty.Access.WRITE_ONLY)
private List<PartitionMetricInner> value;
/**
* Get the value property: The list of partition-level metrics for the account.
*
* @return the value value.
*/
public List<PartitionMetricInner> value() {
return this.value;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
if (value() != null) {
value().forEach(e -> e.validate());
}
}
}