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

com.azure.resourcemanager.costmanagement.models.ReportConfigDataset Maven / Gradle / Ivy

Go to download

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.

The newest version!
// 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.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 report. */
@Fluent
public final class ReportConfigDataset {
    /*
     * The granularity of rows in the report.
     */
    @JsonProperty(value = "granularity")
    private ReportGranularityType granularity;

    /*
     * Has configuration information for the data in the report. The configuration will be ignored if aggregation and
     * grouping are provided.
     */
    @JsonProperty(value = "configuration")
    private ReportConfigDatasetConfiguration configuration;

    /*
     * Dictionary of aggregation expression to use in the report. The key of each item in the dictionary is the alias
     * for the aggregated column. Report 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 report. Report can have up to 2 group by clauses.
     */
    @JsonProperty(value = "grouping")
    private List grouping;

    /*
     * Array of order by expression to use in the report.
     */
    @JsonProperty(value = "sorting")
    private List sorting;

    /*
     * Has filter expression to use in the report.
     */
    @JsonProperty(value = "filter")
    private ReportConfigFilter filter;

    /** Creates an instance of ReportConfigDataset class. */
    public ReportConfigDataset() {
    }

    /**
     * Get the granularity property: The granularity of rows in the report.
     *
     * @return the granularity value.
     */
    public ReportGranularityType granularity() {
        return this.granularity;
    }

    /**
     * Set the granularity property: The granularity of rows in the report.
     *
     * @param granularity the granularity value to set.
     * @return the ReportConfigDataset object itself.
     */
    public ReportConfigDataset withGranularity(ReportGranularityType granularity) {
        this.granularity = granularity;
        return this;
    }

    /**
     * Get the configuration property: Has configuration information for the data in the report. The configuration will
     * be ignored if aggregation and grouping are provided.
     *
     * @return the configuration value.
     */
    public ReportConfigDatasetConfiguration configuration() {
        return this.configuration;
    }

    /**
     * Set the configuration property: Has configuration information for the data in the report. The configuration will
     * be ignored if aggregation and grouping are provided.
     *
     * @param configuration the configuration value to set.
     * @return the ReportConfigDataset object itself.
     */
    public ReportConfigDataset withConfiguration(ReportConfigDatasetConfiguration configuration) {
        this.configuration = configuration;
        return this;
    }

    /**
     * Get the aggregation property: Dictionary of aggregation expression to use in the report. The key of each item in
     * the dictionary is the alias for the aggregated column. Report 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 report. The key of each item in
     * the dictionary is the alias for the aggregated column. Report can have up to 2 aggregation clauses.
     *
     * @param aggregation the aggregation value to set.
     * @return the ReportConfigDataset object itself.
     */
    public ReportConfigDataset withAggregation(Map aggregation) {
        this.aggregation = aggregation;
        return this;
    }

    /**
     * Get the grouping property: Array of group by expression to use in the report. Report 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 report. Report can have up to 2 group by
     * clauses.
     *
     * @param grouping the grouping value to set.
     * @return the ReportConfigDataset object itself.
     */
    public ReportConfigDataset withGrouping(List grouping) {
        this.grouping = grouping;
        return this;
    }

    /**
     * Get the sorting property: Array of order by expression to use in the report.
     *
     * @return the sorting value.
     */
    public List sorting() {
        return this.sorting;
    }

    /**
     * Set the sorting property: Array of order by expression to use in the report.
     *
     * @param sorting the sorting value to set.
     * @return the ReportConfigDataset object itself.
     */
    public ReportConfigDataset withSorting(List sorting) {
        this.sorting = sorting;
        return this;
    }

    /**
     * Get the filter property: Has filter expression to use in the report.
     *
     * @return the filter value.
     */
    public ReportConfigFilter filter() {
        return this.filter;
    }

    /**
     * Set the filter property: Has filter expression to use in the report.
     *
     * @param filter the filter value to set.
     * @return the ReportConfigDataset object itself.
     */
    public ReportConfigDataset withFilter(ReportConfigFilter 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 (sorting() != null) {
            sorting().forEach(e -> e.validate());
        }
        if (filter() != null) {
            filter().validate();
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy