com.azure.resourcemanager.costmanagement.models.QueryAggregation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-costmanagement Show documentation
Show all versions of azure-resourcemanager-costmanagement Show documentation
This package contains Microsoft Azure SDK for CostManagement Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. CostManagement management client provides access to CostManagement resources for Azure Enterprise Subscriptions. Package tag package-2022-10.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.costmanagement.models;
import com.azure.core.annotation.Fluent;
import com.azure.core.util.logging.ClientLogger;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonProperty;
/** The aggregation expression to be used in the query. */
@Fluent
public final class QueryAggregation {
@JsonIgnore private final ClientLogger logger = new ClientLogger(QueryAggregation.class);
/*
* The name of the column to aggregate.
*/
@JsonProperty(value = "name", required = true)
private String name;
/*
* The name of the aggregation function to use.
*/
@JsonProperty(value = "function", required = true)
private FunctionType function;
/**
* Get the name property: The name of the column to aggregate.
*
* @return the name value.
*/
public String name() {
return this.name;
}
/**
* Set the name property: The name of the column to aggregate.
*
* @param name the name value to set.
* @return the QueryAggregation object itself.
*/
public QueryAggregation withName(String name) {
this.name = name;
return this;
}
/**
* Get the function property: The name of the aggregation function to use.
*
* @return the function value.
*/
public FunctionType function() {
return this.function;
}
/**
* Set the function property: The name of the aggregation function to use.
*
* @param function the function value to set.
* @return the QueryAggregation object itself.
*/
public QueryAggregation withFunction(FunctionType function) {
this.function = function;
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
if (name() == null) {
throw logger
.logExceptionAsError(
new IllegalArgumentException("Missing required property name in model QueryAggregation"));
}
if (function() == null) {
throw logger
.logExceptionAsError(
new IllegalArgumentException("Missing required property function in model QueryAggregation"));
}
}
}