All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.azure.resourcemanager.sql.models.InstancePoolFamilyCapability Maven / Gradle / Ivy

Go to download

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 instance pool family capability.
 */
@Fluent
public final class InstancePoolFamilyCapability implements JsonSerializable {
    /*
     * Family name.
     */
    private String name;

    /*
     * List of supported license types.
     */
    private List supportedLicenseTypes;

    /*
     * List of supported virtual cores values.
     */
    private List supportedVcoresValues;

    /*
     * The status of the capability.
     */
    private CapabilityStatus status;

    /*
     * The reason for the capability not being available.
     */
    private String reason;

    /**
     * Creates an instance of InstancePoolFamilyCapability class.
     */
    public InstancePoolFamilyCapability() {
    }

    /**
     * Get the name property: Family name.
     * 
     * @return the name value.
     */
    public String name() {
        return this.name;
    }

    /**
     * Get the supportedLicenseTypes property: List of supported license types.
     * 
     * @return the supportedLicenseTypes value.
     */
    public List supportedLicenseTypes() {
        return this.supportedLicenseTypes;
    }

    /**
     * Get the supportedVcoresValues property: List of supported virtual cores values.
     * 
     * @return the supportedVcoresValues value.
     */
    public List supportedVcoresValues() {
        return this.supportedVcoresValues;
    }

    /**
     * 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 InstancePoolFamilyCapability object itself.
     */
    public InstancePoolFamilyCapability withReason(String reason) {
        this.reason = reason;
        return this;
    }

    /**
     * Validates the instance.
     * 
     * @throws IllegalArgumentException thrown if the instance is not valid.
     */
    public void validate() {
        if (supportedLicenseTypes() != null) {
            supportedLicenseTypes().forEach(e -> e.validate());
        }
        if (supportedVcoresValues() != null) {
            supportedVcoresValues().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 InstancePoolFamilyCapability from the JsonReader.
     * 
     * @param jsonReader The JsonReader being read.
     * @return An instance of InstancePoolFamilyCapability 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 InstancePoolFamilyCapability.
     */
    public static InstancePoolFamilyCapability fromJson(JsonReader jsonReader) throws IOException {
        return jsonReader.readObject(reader -> {
            InstancePoolFamilyCapability deserializedInstancePoolFamilyCapability = new InstancePoolFamilyCapability();
            while (reader.nextToken() != JsonToken.END_OBJECT) {
                String fieldName = reader.getFieldName();
                reader.nextToken();

                if ("name".equals(fieldName)) {
                    deserializedInstancePoolFamilyCapability.name = reader.getString();
                } else if ("supportedLicenseTypes".equals(fieldName)) {
                    List supportedLicenseTypes
                        = reader.readArray(reader1 -> LicenseTypeCapability.fromJson(reader1));
                    deserializedInstancePoolFamilyCapability.supportedLicenseTypes = supportedLicenseTypes;
                } else if ("supportedVcoresValues".equals(fieldName)) {
                    List supportedVcoresValues
                        = reader.readArray(reader1 -> InstancePoolVcoresCapability.fromJson(reader1));
                    deserializedInstancePoolFamilyCapability.supportedVcoresValues = supportedVcoresValues;
                } else if ("status".equals(fieldName)) {
                    deserializedInstancePoolFamilyCapability.status = CapabilityStatus.fromString(reader.getString());
                } else if ("reason".equals(fieldName)) {
                    deserializedInstancePoolFamilyCapability.reason = reader.getString();
                } else {
                    reader.skipChildren();
                }
            }

            return deserializedInstancePoolFamilyCapability;
        });
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy