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

com.azure.resourcemanager.costmanagement.models.QueryGrouping 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.

There is a newer version: 1.0.0-beta.6
Show 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.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"));
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy