com.azure.resourcemanager.netapp.fluent.models.SubscriptionQuotaItemProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-netapp Show documentation
Show all versions of azure-resourcemanager-netapp Show documentation
This package contains Microsoft Azure SDK for NetAppFiles Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. Microsoft NetApp Files Azure Resource Provider specification. Package tag package-2024-03.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.netapp.fluent.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;
/**
* SubscriptionQuotaItem Properties.
*/
@Immutable
public final class SubscriptionQuotaItemProperties implements JsonSerializable {
/*
* The current quota value.
*/
private Integer current;
/*
* The default quota value.
*/
private Integer defaultProperty;
/**
* Creates an instance of SubscriptionQuotaItemProperties class.
*/
public SubscriptionQuotaItemProperties() {
}
/**
* Get the current property: The current quota value.
*
* @return the current value.
*/
public Integer current() {
return this.current;
}
/**
* Get the defaultProperty property: The default quota value.
*
* @return the defaultProperty value.
*/
public Integer defaultProperty() {
return this.defaultProperty;
}
/**
* 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 SubscriptionQuotaItemProperties from the JsonReader.
*
* @param jsonReader The JsonReader being read.
* @return An instance of SubscriptionQuotaItemProperties 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 SubscriptionQuotaItemProperties.
*/
public static SubscriptionQuotaItemProperties fromJson(JsonReader jsonReader) throws IOException {
return jsonReader.readObject(reader -> {
SubscriptionQuotaItemProperties deserializedSubscriptionQuotaItemProperties
= new SubscriptionQuotaItemProperties();
while (reader.nextToken() != JsonToken.END_OBJECT) {
String fieldName = reader.getFieldName();
reader.nextToken();
if ("current".equals(fieldName)) {
deserializedSubscriptionQuotaItemProperties.current = reader.getNullable(JsonReader::getInt);
} else if ("default".equals(fieldName)) {
deserializedSubscriptionQuotaItemProperties.defaultProperty
= reader.getNullable(JsonReader::getInt);
} else {
reader.skipChildren();
}
}
return deserializedSubscriptionQuotaItemProperties;
});
}
}