com.azure.resourcemanager.costmanagement.models.QueryColumn 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.
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.JsonProperty;
/** QueryColumn properties. */
@Fluent
public final class QueryColumn {
/*
* The name of column.
*/
@JsonProperty(value = "name")
private String name;
/*
* The type of column.
*/
@JsonProperty(value = "type")
private String type;
/** Creates an instance of QueryColumn class. */
public QueryColumn() {
}
/**
* Get the name property: The name of column.
*
* @return the name value.
*/
public String name() {
return this.name;
}
/**
* Set the name property: The name of column.
*
* @param name the name value to set.
* @return the QueryColumn object itself.
*/
public QueryColumn withName(String name) {
this.name = name;
return this;
}
/**
* Get the type property: The type of column.
*
* @return the type value.
*/
public String type() {
return this.type;
}
/**
* Set the type property: The type of column.
*
* @param type the type value to set.
* @return the QueryColumn object itself.
*/
public QueryColumn withType(String type) {
this.type = type;
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
}
}