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

com.azure.resourcemanager.cosmos.models.DatabaseRestoreResource 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.fasterxml.jackson.annotation.JsonProperty;
import java.util.List;

/**
 * Specific Databases to restore.
 */
@Fluent
public final class DatabaseRestoreResource {
    /*
     * The name of the database available for restore.
     */
    @JsonProperty(value = "databaseName")
    private String databaseName;

    /*
     * The names of the collections available for restore.
     */
    @JsonProperty(value = "collectionNames")
    private List collectionNames;

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

    /**
     * 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 DatabaseRestoreResource object itself.
     */
    public DatabaseRestoreResource 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 DatabaseRestoreResource object itself.
     */
    public DatabaseRestoreResource withCollectionNames(List collectionNames) {
        this.collectionNames = collectionNames;
        return this;
    }

    /**
     * Validates the instance.
     * 
     * @throws IllegalArgumentException thrown if the instance is not valid.
     */
    public void validate() {
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy