com.azure.resourcemanager.costmanagement.fluent.models.DimensionInner 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.fluent.models;
import com.azure.core.annotation.Fluent;
import com.azure.core.management.ProxyResource;
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.time.OffsetDateTime;
import java.util.List;
import java.util.Map;
/** The Dimension model. */
@Fluent
public final class DimensionInner extends ProxyResource {
@JsonIgnore private final ClientLogger logger = new ClientLogger(DimensionInner.class);
/*
* The properties property.
*/
@JsonProperty(value = "properties")
private DimensionProperties innerProperties;
/*
* Resource tags.
*/
@JsonProperty(value = "tags", access = JsonProperty.Access.WRITE_ONLY)
@JsonInclude(value = JsonInclude.Include.NON_NULL, content = JsonInclude.Include.ALWAYS)
private Map tags;
/**
* Get the innerProperties property: The properties property.
*
* @return the innerProperties value.
*/
private DimensionProperties innerProperties() {
return this.innerProperties;
}
/**
* Get the tags property: Resource tags.
*
* @return the tags value.
*/
public Map tags() {
return this.tags;
}
/**
* Get the description property: Dimension description.
*
* @return the description value.
*/
public String description() {
return this.innerProperties() == null ? null : this.innerProperties().description();
}
/**
* Get the filterEnabled property: Filter enabled.
*
* @return the filterEnabled value.
*/
public Boolean filterEnabled() {
return this.innerProperties() == null ? null : this.innerProperties().filterEnabled();
}
/**
* Get the groupingEnabled property: Grouping enabled.
*
* @return the groupingEnabled value.
*/
public Boolean groupingEnabled() {
return this.innerProperties() == null ? null : this.innerProperties().groupingEnabled();
}
/**
* Get the data property: The data property.
*
* @return the data value.
*/
public List data() {
return this.innerProperties() == null ? null : this.innerProperties().data();
}
/**
* Set the data property: The data property.
*
* @param data the data value to set.
* @return the DimensionInner object itself.
*/
public DimensionInner withData(List data) {
if (this.innerProperties() == null) {
this.innerProperties = new DimensionProperties();
}
this.innerProperties().withData(data);
return this;
}
/**
* Get the total property: Total number of data for the dimension.
*
* @return the total value.
*/
public Integer total() {
return this.innerProperties() == null ? null : this.innerProperties().total();
}
/**
* Get the category property: Dimension category.
*
* @return the category value.
*/
public String category() {
return this.innerProperties() == null ? null : this.innerProperties().category();
}
/**
* Get the usageStart property: Usage start.
*
* @return the usageStart value.
*/
public OffsetDateTime usageStart() {
return this.innerProperties() == null ? null : this.innerProperties().usageStart();
}
/**
* Get the usageEnd property: Usage end.
*
* @return the usageEnd value.
*/
public OffsetDateTime usageEnd() {
return this.innerProperties() == null ? null : this.innerProperties().usageEnd();
}
/**
* Get the nextLink property: The link (url) to the next page of results.
*
* @return the nextLink value.
*/
public String nextLink() {
return this.innerProperties() == null ? null : this.innerProperties().nextLink();
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
if (innerProperties() != null) {
innerProperties().validate();
}
}
}