com.azure.resourcemanager.costmanagement.models.ReportConfigDatasetConfiguration 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;
import java.util.List;
/** The configuration of dataset in the report. */
@Fluent
public final class ReportConfigDatasetConfiguration {
@JsonIgnore private final ClientLogger logger = new ClientLogger(ReportConfigDatasetConfiguration.class);
/*
* Array of column names to be included in the report. Any valid report
* column name is allowed. If not provided, then report includes all
* columns.
*/
@JsonProperty(value = "columns")
private List columns;
/**
* Get the columns property: Array of column names to be included in the report. Any valid report column name is
* allowed. If not provided, then report includes all columns.
*
* @return the columns value.
*/
public List columns() {
return this.columns;
}
/**
* Set the columns property: Array of column names to be included in the report. Any valid report column name is
* allowed. If not provided, then report includes all columns.
*
* @param columns the columns value to set.
* @return the ReportConfigDatasetConfiguration object itself.
*/
public ReportConfigDatasetConfiguration withColumns(List columns) {
this.columns = columns;
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
}
}