com.azure.resourcemanager.compute.models.UsageName Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-compute Show documentation
Show all versions of azure-resourcemanager-compute Show documentation
This package contains Microsoft Azure Compute Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.compute.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 java.io.IOException;
/**
* The Usage Names.
*/
@Fluent
public final class UsageName implements JsonSerializable {
/*
* The name of the resource.
*/
private String value;
/*
* The localized name of the resource.
*/
private String localizedValue;
/**
* Creates an instance of UsageName class.
*/
public UsageName() {
}
/**
* Get the value property: The name of the resource.
*
* @return the value value.
*/
public String value() {
return this.value;
}
/**
* Set the value property: The name of the resource.
*
* @param value the value value to set.
* @return the UsageName object itself.
*/
public UsageName withValue(String value) {
this.value = value;
return this;
}
/**
* Get the localizedValue property: The localized name of the resource.
*
* @return the localizedValue value.
*/
public String localizedValue() {
return this.localizedValue;
}
/**
* Set the localizedValue property: The localized name of the resource.
*
* @param localizedValue the localizedValue value to set.
* @return the UsageName object itself.
*/
public UsageName withLocalizedValue(String localizedValue) {
this.localizedValue = localizedValue;
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
}
/**
* {@inheritDoc}
*/
@Override
public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
jsonWriter.writeStartObject();
jsonWriter.writeStringField("value", this.value);
jsonWriter.writeStringField("localizedValue", this.localizedValue);
return jsonWriter.writeEndObject();
}
/**
* Reads an instance of UsageName from the JsonReader.
*
* @param jsonReader The JsonReader being read.
* @return An instance of UsageName 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 UsageName.
*/
public static UsageName fromJson(JsonReader jsonReader) throws IOException {
return jsonReader.readObject(reader -> {
UsageName deserializedUsageName = new UsageName();
while (reader.nextToken() != JsonToken.END_OBJECT) {
String fieldName = reader.getFieldName();
reader.nextToken();
if ("value".equals(fieldName)) {
deserializedUsageName.value = reader.getString();
} else if ("localizedValue".equals(fieldName)) {
deserializedUsageName.localizedValue = reader.getString();
} else {
reader.skipChildren();
}
}
return deserializedUsageName;
});
}
}