com.azure.resourcemanager.costmanagement.models.QueryDatasetAutoGenerated 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.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.List;
import java.util.Map;
/** The definition of data present in the query. */
@Fluent
public final class QueryDatasetAutoGenerated {
@JsonIgnore private final ClientLogger logger = new ClientLogger(QueryDatasetAutoGenerated.class);
/*
* The granularity of rows in the query.
*/
@JsonProperty(value = "granularity")
private GranularityType granularity;
/*
* Has configuration information for the data in the export. The
* configuration will be ignored if aggregation and grouping are provided.
*/
@JsonProperty(value = "configuration")
private QueryDatasetConfiguration configuration;
/*
* Dictionary of aggregation expression to use in the query. The key of
* each item in the dictionary is the alias for the aggregated column.
* Query can have up to 2 aggregation clauses.
*/
@JsonProperty(value = "aggregation")
@JsonInclude(value = JsonInclude.Include.NON_NULL, content = JsonInclude.Include.ALWAYS)
private Map aggregation;
/*
* Array of group by expression to use in the query. Query can have up to 2
* group by clauses.
*/
@JsonProperty(value = "grouping")
private List grouping;
/*
* The filter expression to use in the query. Please reference our Query
* API REST documentation for how to properly format the filter.
*/
@JsonProperty(value = "filter")
private QueryFilterAutoGenerated filter;
/**
* Get the granularity property: The granularity of rows in the query.
*
* @return the granularity value.
*/
public GranularityType granularity() {
return this.granularity;
}
/**
* Set the granularity property: The granularity of rows in the query.
*
* @param granularity the granularity value to set.
* @return the QueryDatasetAutoGenerated object itself.
*/
public QueryDatasetAutoGenerated withGranularity(GranularityType granularity) {
this.granularity = granularity;
return this;
}
/**
* Get the configuration property: Has configuration information for the data in the export. The configuration will
* be ignored if aggregation and grouping are provided.
*
* @return the configuration value.
*/
public QueryDatasetConfiguration configuration() {
return this.configuration;
}
/**
* Set the configuration property: Has configuration information for the data in the export. The configuration will
* be ignored if aggregation and grouping are provided.
*
* @param configuration the configuration value to set.
* @return the QueryDatasetAutoGenerated object itself.
*/
public QueryDatasetAutoGenerated withConfiguration(QueryDatasetConfiguration configuration) {
this.configuration = configuration;
return this;
}
/**
* Get the aggregation property: Dictionary of aggregation expression to use in the query. The key of each item in
* the dictionary is the alias for the aggregated column. Query can have up to 2 aggregation clauses.
*
* @return the aggregation value.
*/
public Map aggregation() {
return this.aggregation;
}
/**
* Set the aggregation property: Dictionary of aggregation expression to use in the query. The key of each item in
* the dictionary is the alias for the aggregated column. Query can have up to 2 aggregation clauses.
*
* @param aggregation the aggregation value to set.
* @return the QueryDatasetAutoGenerated object itself.
*/
public QueryDatasetAutoGenerated withAggregation(Map aggregation) {
this.aggregation = aggregation;
return this;
}
/**
* Get the grouping property: Array of group by expression to use in the query. Query can have up to 2 group by
* clauses.
*
* @return the grouping value.
*/
public List grouping() {
return this.grouping;
}
/**
* Set the grouping property: Array of group by expression to use in the query. Query can have up to 2 group by
* clauses.
*
* @param grouping the grouping value to set.
* @return the QueryDatasetAutoGenerated object itself.
*/
public QueryDatasetAutoGenerated withGrouping(List grouping) {
this.grouping = grouping;
return this;
}
/**
* Get the filter property: The filter expression to use in the query. Please reference our Query API REST
* documentation for how to properly format the filter.
*
* @return the filter value.
*/
public QueryFilterAutoGenerated filter() {
return this.filter;
}
/**
* Set the filter property: The filter expression to use in the query. Please reference our Query API REST
* documentation for how to properly format the filter.
*
* @param filter the filter value to set.
* @return the QueryDatasetAutoGenerated object itself.
*/
public QueryDatasetAutoGenerated withFilter(QueryFilterAutoGenerated filter) {
this.filter = filter;
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
if (configuration() != null) {
configuration().validate();
}
if (aggregation() != null) {
aggregation()
.values()
.forEach(
e -> {
if (e != null) {
e.validate();
}
});
}
if (grouping() != null) {
grouping().forEach(e -> e.validate());
}
if (filter() != null) {
filter().validate();
}
}
}