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

com.azure.resourcemanager.sql.models.MaxSizeRangeCapability 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;

/**
 * The maximum size range capability.
 */
@Fluent
public final class MaxSizeRangeCapability implements JsonSerializable {
    /*
     * Minimum value.
     */
    private MaxSizeCapability minValue;

    /*
     * Maximum value.
     */
    private MaxSizeCapability maxValue;

    /*
     * Scale/step size for discrete values between the minimum value and the maximum value.
     */
    private MaxSizeCapability scaleSize;

    /*
     * Size of transaction log.
     */
    private LogSizeCapability logSize;

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

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

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

    /**
     * Get the minValue property: Minimum value.
     * 
     * @return the minValue value.
     */
    public MaxSizeCapability minValue() {
        return this.minValue;
    }

    /**
     * Get the maxValue property: Maximum value.
     * 
     * @return the maxValue value.
     */
    public MaxSizeCapability maxValue() {
        return this.maxValue;
    }

    /**
     * Get the scaleSize property: Scale/step size for discrete values between the minimum value and the maximum value.
     * 
     * @return the scaleSize value.
     */
    public MaxSizeCapability scaleSize() {
        return this.scaleSize;
    }

    /**
     * Get the logSize property: Size of transaction log.
     * 
     * @return the logSize value.
     */
    public LogSizeCapability logSize() {
        return this.logSize;
    }

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

    /**
     * Validates the instance.
     * 
     * @throws IllegalArgumentException thrown if the instance is not valid.
     */
    public void validate() {
        if (minValue() != null) {
            minValue().validate();
        }
        if (maxValue() != null) {
            maxValue().validate();
        }
        if (scaleSize() != null) {
            scaleSize().validate();
        }
        if (logSize() != null) {
            logSize().validate();
        }
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
        jsonWriter.writeStartObject();
        jsonWriter.writeStringField("reason", this.reason);
        return jsonWriter.writeEndObject();
    }

    /**
     * Reads an instance of MaxSizeRangeCapability from the JsonReader.
     * 
     * @param jsonReader The JsonReader being read.
     * @return An instance of MaxSizeRangeCapability 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 MaxSizeRangeCapability.
     */
    public static MaxSizeRangeCapability fromJson(JsonReader jsonReader) throws IOException {
        return jsonReader.readObject(reader -> {
            MaxSizeRangeCapability deserializedMaxSizeRangeCapability = new MaxSizeRangeCapability();
            while (reader.nextToken() != JsonToken.END_OBJECT) {
                String fieldName = reader.getFieldName();
                reader.nextToken();

                if ("minValue".equals(fieldName)) {
                    deserializedMaxSizeRangeCapability.minValue = MaxSizeCapability.fromJson(reader);
                } else if ("maxValue".equals(fieldName)) {
                    deserializedMaxSizeRangeCapability.maxValue = MaxSizeCapability.fromJson(reader);
                } else if ("scaleSize".equals(fieldName)) {
                    deserializedMaxSizeRangeCapability.scaleSize = MaxSizeCapability.fromJson(reader);
                } else if ("logSize".equals(fieldName)) {
                    deserializedMaxSizeRangeCapability.logSize = LogSizeCapability.fromJson(reader);
                } else if ("status".equals(fieldName)) {
                    deserializedMaxSizeRangeCapability.status = CapabilityStatus.fromString(reader.getString());
                } else if ("reason".equals(fieldName)) {
                    deserializedMaxSizeRangeCapability.reason = reader.getString();
                } else {
                    reader.skipChildren();
                }
            }

            return deserializedMaxSizeRangeCapability;
        });
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy