com.azure.resourcemanager.elasticsan.models.SkuCapability 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.elasticsan.models;
import com.azure.core.annotation.Immutable;
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 capability information in the specified SKU.
*/
@Immutable
public final class SkuCapability implements JsonSerializable {
/*
* The name of capability.
*/
private String name;
/*
* A string value to indicate states of given capability.
*/
private String value;
/**
* Creates an instance of SkuCapability class.
*/
public SkuCapability() {
}
/**
* Get the name property: The name of capability.
*
* @return the name value.
*/
public String name() {
return this.name;
}
/**
* Get the value property: A string value to indicate states of given capability.
*
* @return the value value.
*/
public String value() {
return this.value;
}
/**
* 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();
return jsonWriter.writeEndObject();
}
/**
* Reads an instance of SkuCapability from the JsonReader.
*
* @param jsonReader The JsonReader being read.
* @return An instance of SkuCapability 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 SkuCapability.
*/
public static SkuCapability fromJson(JsonReader jsonReader) throws IOException {
return jsonReader.readObject(reader -> {
SkuCapability deserializedSkuCapability = new SkuCapability();
while (reader.nextToken() != JsonToken.END_OBJECT) {
String fieldName = reader.getFieldName();
reader.nextToken();
if ("name".equals(fieldName)) {
deserializedSkuCapability.name = reader.getString();
} else if ("value".equals(fieldName)) {
deserializedSkuCapability.value = reader.getString();
} else {
reader.skipChildren();
}
}
return deserializedSkuCapability;
});
}
}