com.azure.resourcemanager.costmanagement.models.CostManagementProxyResource 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.azure.core.management.ProxyResource;
import com.fasterxml.jackson.annotation.JsonProperty;
/** The Resource model definition. */
@Fluent
public class CostManagementProxyResource extends ProxyResource {
/*
* eTag of the resource. To handle concurrent update scenario, this field will be used to determine whether the
* user is updating the latest version or not.
*/
@JsonProperty(value = "eTag")
private String etag;
/** Creates an instance of CostManagementProxyResource class. */
public CostManagementProxyResource() {
}
/**
* Get the etag property: eTag of the resource. To handle concurrent update scenario, this field will be used to
* determine whether the user is updating the latest version or not.
*
* @return the etag value.
*/
public String etag() {
return this.etag;
}
/**
* Set the etag property: eTag of the resource. To handle concurrent update scenario, this field will be used to
* determine whether the user is updating the latest version or not.
*
* @param etag the etag value to set.
* @return the CostManagementProxyResource object itself.
*/
public CostManagementProxyResource withEtag(String etag) {
this.etag = etag;
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
}
}