com.azure.resourcemanager.sql.models.ManagedInstanceVcoresCapability Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-sql Show documentation
Show all versions of azure-resourcemanager-sql Show documentation
This package contains Microsoft Azure Sql Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt
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.sql.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;
import java.util.List;
/**
* The managed instance virtual cores capability.
*/
@Fluent
public final class ManagedInstanceVcoresCapability implements JsonSerializable {
/*
* The virtual cores identifier.
*/
private String name;
/*
* The virtual cores value.
*/
private Integer value;
/*
* Included size.
*/
private MaxSizeCapability includedMaxSize;
/*
* Storage size ranges.
*/
private List supportedStorageSizes;
/*
* True if this service objective is supported for managed instances in an instance pool.
*/
private Boolean instancePoolSupported;
/*
* True if this service objective is supported for standalone managed instances.
*/
private Boolean standaloneSupported;
/*
* List of supported maintenance configurations
*/
private List supportedMaintenanceConfigurations;
/*
* The status of the capability.
*/
private CapabilityStatus status;
/*
* The reason for the capability not being available.
*/
private String reason;
/**
* Creates an instance of ManagedInstanceVcoresCapability class.
*/
public ManagedInstanceVcoresCapability() {
}
/**
* Get the name property: The virtual cores identifier.
*
* @return the name value.
*/
public String name() {
return this.name;
}
/**
* Get the value property: The virtual cores value.
*
* @return the value value.
*/
public Integer value() {
return this.value;
}
/**
* Get the includedMaxSize property: Included size.
*
* @return the includedMaxSize value.
*/
public MaxSizeCapability includedMaxSize() {
return this.includedMaxSize;
}
/**
* Get the supportedStorageSizes property: Storage size ranges.
*
* @return the supportedStorageSizes value.
*/
public List supportedStorageSizes() {
return this.supportedStorageSizes;
}
/**
* Get the instancePoolSupported property: True if this service objective is supported for managed instances in an
* instance pool.
*
* @return the instancePoolSupported value.
*/
public Boolean instancePoolSupported() {
return this.instancePoolSupported;
}
/**
* Get the standaloneSupported property: True if this service objective is supported for standalone managed
* instances.
*
* @return the standaloneSupported value.
*/
public Boolean standaloneSupported() {
return this.standaloneSupported;
}
/**
* Get the supportedMaintenanceConfigurations property: List of supported maintenance configurations.
*
* @return the supportedMaintenanceConfigurations value.
*/
public List supportedMaintenanceConfigurations() {
return this.supportedMaintenanceConfigurations;
}
/**
* Get the status property: The status of the capability.
*
* @return the status value.
*/
public CapabilityStatus status() {
return this.status;
}
/**
* Get the reason property: The reason for the capability not being available.
*
* @return the reason value.
*/
public String reason() {
return this.reason;
}
/**
* Set the reason property: The reason for the capability not being available.
*
* @param reason the reason value to set.
* @return the ManagedInstanceVcoresCapability object itself.
*/
public ManagedInstanceVcoresCapability withReason(String reason) {
this.reason = reason;
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
if (includedMaxSize() != null) {
includedMaxSize().validate();
}
if (supportedStorageSizes() != null) {
supportedStorageSizes().forEach(e -> e.validate());
}
if (supportedMaintenanceConfigurations() != null) {
supportedMaintenanceConfigurations().forEach(e -> e.validate());
}
}
/**
* {@inheritDoc}
*/
@Override
public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
jsonWriter.writeStartObject();
jsonWriter.writeStringField("reason", this.reason);
return jsonWriter.writeEndObject();
}
/**
* Reads an instance of ManagedInstanceVcoresCapability from the JsonReader.
*
* @param jsonReader The JsonReader being read.
* @return An instance of ManagedInstanceVcoresCapability 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 ManagedInstanceVcoresCapability.
*/
public static ManagedInstanceVcoresCapability fromJson(JsonReader jsonReader) throws IOException {
return jsonReader.readObject(reader -> {
ManagedInstanceVcoresCapability deserializedManagedInstanceVcoresCapability
= new ManagedInstanceVcoresCapability();
while (reader.nextToken() != JsonToken.END_OBJECT) {
String fieldName = reader.getFieldName();
reader.nextToken();
if ("name".equals(fieldName)) {
deserializedManagedInstanceVcoresCapability.name = reader.getString();
} else if ("value".equals(fieldName)) {
deserializedManagedInstanceVcoresCapability.value = reader.getNullable(JsonReader::getInt);
} else if ("includedMaxSize".equals(fieldName)) {
deserializedManagedInstanceVcoresCapability.includedMaxSize = MaxSizeCapability.fromJson(reader);
} else if ("supportedStorageSizes".equals(fieldName)) {
List supportedStorageSizes
= reader.readArray(reader1 -> MaxSizeRangeCapability.fromJson(reader1));
deserializedManagedInstanceVcoresCapability.supportedStorageSizes = supportedStorageSizes;
} else if ("instancePoolSupported".equals(fieldName)) {
deserializedManagedInstanceVcoresCapability.instancePoolSupported
= reader.getNullable(JsonReader::getBoolean);
} else if ("standaloneSupported".equals(fieldName)) {
deserializedManagedInstanceVcoresCapability.standaloneSupported
= reader.getNullable(JsonReader::getBoolean);
} else if ("supportedMaintenanceConfigurations".equals(fieldName)) {
List supportedMaintenanceConfigurations = reader
.readArray(reader1 -> ManagedInstanceMaintenanceConfigurationCapability.fromJson(reader1));
deserializedManagedInstanceVcoresCapability.supportedMaintenanceConfigurations
= supportedMaintenanceConfigurations;
} else if ("status".equals(fieldName)) {
deserializedManagedInstanceVcoresCapability.status
= CapabilityStatus.fromString(reader.getString());
} else if ("reason".equals(fieldName)) {
deserializedManagedInstanceVcoresCapability.reason = reader.getString();
} else {
reader.skipChildren();
}
}
return deserializedManagedInstanceVcoresCapability;
});
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy