com.azure.resourcemanager.costmanagement.models.QueryGrouping 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 group by expression to be used in the query. */
@Fluent
public final class QueryGrouping {
@JsonIgnore private final ClientLogger logger = new ClientLogger(QueryGrouping.class);
/*
* Has type of the column to group.
*/
@JsonProperty(value = "type", required = true)
private QueryColumnType type;
/*
* The name of the column to group.
*/
@JsonProperty(value = "name", required = true)
private String name;
/**
* Get the type property: Has type of the column to group.
*
* @return the type value.
*/
public QueryColumnType type() {
return this.type;
}
/**
* Set the type property: Has type of the column to group.
*
* @param type the type value to set.
* @return the QueryGrouping object itself.
*/
public QueryGrouping withType(QueryColumnType type) {
this.type = type;
return this;
}
/**
* Get the name property: The name of the column to group.
*
* @return the name value.
*/
public String name() {
return this.name;
}
/**
* Set the name property: The name of the column to group.
*
* @param name the name value to set.
* @return the QueryGrouping object itself.
*/
public QueryGrouping withName(String name) {
this.name = name;
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
if (type() == null) {
throw logger
.logExceptionAsError(
new IllegalArgumentException("Missing required property type in model QueryGrouping"));
}
if (name() == null) {
throw logger
.logExceptionAsError(
new IllegalArgumentException("Missing required property name in model QueryGrouping"));
}
}
}