
com.azure.resourcemanager.devcenter.fluent.models.UsageInner Maven / Gradle / Ivy
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.devcenter.fluent.models;
import com.azure.core.annotation.Fluent;
import com.azure.json.JsonReader;
import com.azure.json.JsonSerializable;
import com.azure.json.JsonToken;
import com.azure.json.JsonWriter;
import com.azure.resourcemanager.devcenter.models.UsageName;
import com.azure.resourcemanager.devcenter.models.UsageUnit;
import java.io.IOException;
/**
* The core usage details.
*/
@Fluent
public final class UsageInner implements JsonSerializable {
/*
* The current usage.
*/
private Long currentValue;
/*
* The limit integer.
*/
private Long limit;
/*
* The unit details.
*/
private UsageUnit unit;
/*
* The name.
*/
private UsageName name;
/*
* The fully qualified arm resource id.
*/
private String id;
/**
* Creates an instance of UsageInner class.
*/
public UsageInner() {
}
/**
* Get the currentValue property: The current usage.
*
* @return the currentValue value.
*/
public Long currentValue() {
return this.currentValue;
}
/**
* Set the currentValue property: The current usage.
*
* @param currentValue the currentValue value to set.
* @return the UsageInner object itself.
*/
public UsageInner withCurrentValue(Long currentValue) {
this.currentValue = currentValue;
return this;
}
/**
* Get the limit property: The limit integer.
*
* @return the limit value.
*/
public Long limit() {
return this.limit;
}
/**
* Set the limit property: The limit integer.
*
* @param limit the limit value to set.
* @return the UsageInner object itself.
*/
public UsageInner withLimit(Long limit) {
this.limit = limit;
return this;
}
/**
* Get the unit property: The unit details.
*
* @return the unit value.
*/
public UsageUnit unit() {
return this.unit;
}
/**
* Set the unit property: The unit details.
*
* @param unit the unit value to set.
* @return the UsageInner object itself.
*/
public UsageInner withUnit(UsageUnit unit) {
this.unit = unit;
return this;
}
/**
* Get the name property: The name.
*
* @return the name value.
*/
public UsageName name() {
return this.name;
}
/**
* Set the name property: The name.
*
* @param name the name value to set.
* @return the UsageInner object itself.
*/
public UsageInner withName(UsageName name) {
this.name = name;
return this;
}
/**
* Get the id property: The fully qualified arm resource id.
*
* @return the id value.
*/
public String id() {
return this.id;
}
/**
* Set the id property: The fully qualified arm resource id.
*
* @param id the id value to set.
* @return the UsageInner object itself.
*/
public UsageInner withId(String id) {
this.id = id;
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
if (name() != null) {
name().validate();
}
}
/**
* {@inheritDoc}
*/
@Override
public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
jsonWriter.writeStartObject();
jsonWriter.writeNumberField("currentValue", this.currentValue);
jsonWriter.writeNumberField("limit", this.limit);
jsonWriter.writeStringField("unit", this.unit == null ? null : this.unit.toString());
jsonWriter.writeJsonField("name", this.name);
jsonWriter.writeStringField("id", this.id);
return jsonWriter.writeEndObject();
}
/**
* Reads an instance of UsageInner from the JsonReader.
*
* @param jsonReader The JsonReader being read.
* @return An instance of UsageInner if the JsonReader was pointing to an instance of it, or null if it was pointing
* to JSON null.
* @throws IOException If an error occurs while reading the UsageInner.
*/
public static UsageInner fromJson(JsonReader jsonReader) throws IOException {
return jsonReader.readObject(reader -> {
UsageInner deserializedUsageInner = new UsageInner();
while (reader.nextToken() != JsonToken.END_OBJECT) {
String fieldName = reader.getFieldName();
reader.nextToken();
if ("currentValue".equals(fieldName)) {
deserializedUsageInner.currentValue = reader.getNullable(JsonReader::getLong);
} else if ("limit".equals(fieldName)) {
deserializedUsageInner.limit = reader.getNullable(JsonReader::getLong);
} else if ("unit".equals(fieldName)) {
deserializedUsageInner.unit = UsageUnit.fromString(reader.getString());
} else if ("name".equals(fieldName)) {
deserializedUsageInner.name = UsageName.fromJson(reader);
} else if ("id".equals(fieldName)) {
deserializedUsageInner.id = reader.getString();
} else {
reader.skipChildren();
}
}
return deserializedUsageInner;
});
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy