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

com.azure.resourcemanager.cosmos.models.ManagedCassandraReaperStatus Maven / Gradle / Ivy

Go to download

This package contains Microsoft Azure CosmosDB SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt

There is a newer version: 2.46.0
Show 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.cosmos.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.Map;

/**
 * The ManagedCassandraReaperStatus model.
 */
@Fluent
public final class ManagedCassandraReaperStatus implements JsonSerializable {
    /*
     * The healthy property.
     */
    private Boolean healthy;

    /*
     * Dictionary of 
     */
    private Map repairRunIds;

    /*
     * Dictionary of 
     */
    private Map repairSchedules;

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

    /**
     * Get the healthy property: The healthy property.
     * 
     * @return the healthy value.
     */
    public Boolean healthy() {
        return this.healthy;
    }

    /**
     * Set the healthy property: The healthy property.
     * 
     * @param healthy the healthy value to set.
     * @return the ManagedCassandraReaperStatus object itself.
     */
    public ManagedCassandraReaperStatus withHealthy(Boolean healthy) {
        this.healthy = healthy;
        return this;
    }

    /**
     * Get the repairRunIds property: Dictionary of <string>.
     * 
     * @return the repairRunIds value.
     */
    public Map repairRunIds() {
        return this.repairRunIds;
    }

    /**
     * Set the repairRunIds property: Dictionary of <string>.
     * 
     * @param repairRunIds the repairRunIds value to set.
     * @return the ManagedCassandraReaperStatus object itself.
     */
    public ManagedCassandraReaperStatus withRepairRunIds(Map repairRunIds) {
        this.repairRunIds = repairRunIds;
        return this;
    }

    /**
     * Get the repairSchedules property: Dictionary of <string>.
     * 
     * @return the repairSchedules value.
     */
    public Map repairSchedules() {
        return this.repairSchedules;
    }

    /**
     * Set the repairSchedules property: Dictionary of <string>.
     * 
     * @param repairSchedules the repairSchedules value to set.
     * @return the ManagedCassandraReaperStatus object itself.
     */
    public ManagedCassandraReaperStatus withRepairSchedules(Map repairSchedules) {
        this.repairSchedules = repairSchedules;
        return this;
    }

    /**
     * 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();
        jsonWriter.writeBooleanField("healthy", this.healthy);
        jsonWriter.writeMapField("repairRunIds", this.repairRunIds, (writer, element) -> writer.writeString(element));
        jsonWriter.writeMapField("repairSchedules", this.repairSchedules,
            (writer, element) -> writer.writeString(element));
        return jsonWriter.writeEndObject();
    }

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

                if ("healthy".equals(fieldName)) {
                    deserializedManagedCassandraReaperStatus.healthy = reader.getNullable(JsonReader::getBoolean);
                } else if ("repairRunIds".equals(fieldName)) {
                    Map repairRunIds = reader.readMap(reader1 -> reader1.getString());
                    deserializedManagedCassandraReaperStatus.repairRunIds = repairRunIds;
                } else if ("repairSchedules".equals(fieldName)) {
                    Map repairSchedules = reader.readMap(reader1 -> reader1.getString());
                    deserializedManagedCassandraReaperStatus.repairSchedules = repairSchedules;
                } else {
                    reader.skipChildren();
                }
            }

            return deserializedManagedCassandraReaperStatus;
        });
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy