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

com.azure.resourcemanager.cosmos.fluent.models.RestorableMongodbResourcesGetResultInner 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.fluent.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;

/**
 * Specific Databases to restore.
 */
@Fluent
public final class RestorableMongodbResourcesGetResultInner
    implements JsonSerializable {
    /*
     * The unique resource identifier of the ARM resource.
     */
    private String id;

    /*
     * The name of the ARM resource.
     */
    private String name;

    /*
     * The type of Azure resource.
     */
    private String type;

    /*
     * The name of the database available for restore.
     */
    private String databaseName;

    /*
     * The names of the collections available for restore.
     */
    private List collectionNames;

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

    /**
     * Get the id property: The unique resource identifier of the ARM resource.
     * 
     * @return the id value.
     */
    public String id() {
        return this.id;
    }

    /**
     * Get the name property: The name of the ARM resource.
     * 
     * @return the name value.
     */
    public String name() {
        return this.name;
    }

    /**
     * Get the type property: The type of Azure resource.
     * 
     * @return the type value.
     */
    public String type() {
        return this.type;
    }

    /**
     * Get the databaseName property: The name of the database available for restore.
     * 
     * @return the databaseName value.
     */
    public String databaseName() {
        return this.databaseName;
    }

    /**
     * Set the databaseName property: The name of the database available for restore.
     * 
     * @param databaseName the databaseName value to set.
     * @return the RestorableMongodbResourcesGetResultInner object itself.
     */
    public RestorableMongodbResourcesGetResultInner withDatabaseName(String databaseName) {
        this.databaseName = databaseName;
        return this;
    }

    /**
     * Get the collectionNames property: The names of the collections available for restore.
     * 
     * @return the collectionNames value.
     */
    public List collectionNames() {
        return this.collectionNames;
    }

    /**
     * Set the collectionNames property: The names of the collections available for restore.
     * 
     * @param collectionNames the collectionNames value to set.
     * @return the RestorableMongodbResourcesGetResultInner object itself.
     */
    public RestorableMongodbResourcesGetResultInner withCollectionNames(List collectionNames) {
        this.collectionNames = collectionNames;
        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.writeStringField("databaseName", this.databaseName);
        jsonWriter.writeArrayField("collectionNames", this.collectionNames,
            (writer, element) -> writer.writeString(element));
        return jsonWriter.writeEndObject();
    }

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

                if ("id".equals(fieldName)) {
                    deserializedRestorableMongodbResourcesGetResultInner.id = reader.getString();
                } else if ("name".equals(fieldName)) {
                    deserializedRestorableMongodbResourcesGetResultInner.name = reader.getString();
                } else if ("type".equals(fieldName)) {
                    deserializedRestorableMongodbResourcesGetResultInner.type = reader.getString();
                } else if ("databaseName".equals(fieldName)) {
                    deserializedRestorableMongodbResourcesGetResultInner.databaseName = reader.getString();
                } else if ("collectionNames".equals(fieldName)) {
                    List collectionNames = reader.readArray(reader1 -> reader1.getString());
                    deserializedRestorableMongodbResourcesGetResultInner.collectionNames = collectionNames;
                } else {
                    reader.skipChildren();
                }
            }

            return deserializedRestorableMongodbResourcesGetResultInner;
        });
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy