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

com.microsoft.azure.management.cosmosdb.SqlDatabase Maven / Gradle / Ivy

Go to download

This package contains Microsoft Azure CosmosDB SDK. A new set of management libraries are now Generally Available. For documentation on how to use the new libraries, please see https://aka.ms/azsdk/java/mgmt

There is a newer version: 1.41.4
Show newest version
/**
 * Copyright (c) Microsoft Corporation. All rights reserved.
 * Licensed under the MIT License. See License.txt in the project root for
 * license information.
 */
package com.microsoft.azure.management.cosmosdb;

import com.microsoft.azure.management.apigeneration.Beta;
import com.microsoft.azure.management.cosmosdb.implementation.SqlDatabaseGetResultsInner;
import com.microsoft.azure.management.resources.fluentcore.model.HasInner;

/**
 * An Azure Cosmos DB SQL database.
 */
@Beta(Beta.SinceVersion.V1_24_0)
public interface SqlDatabase
        extends HasInner {

    /**
     * Get name of the Cosmos DB SQL database.
     *
     * @return the sqlDatabaseId value
     */
    String sqlDatabaseId();

    /**
     * Get a system generated property. A unique identifier.
     *
     * @return the _rid value
     */
    String _rid();

    /**
     * Get a system generated property that denotes the last updated timestamp of the resource.
     *
     * @return the _ts value
     */
    Object _ts();

    /**
     * Get a system generated property representing the resource etag required for optimistic concurrency control.
     *
     * @return the _etag value
     */
    String _etag();

    /**
     * Get a system generated property that specified the addressable path of the collections resource.
     *
     * @return the _colls value
     */
    String _colls();

    /**
     * Get a system generated property that specifies the addressable path of the users resource.
     *
     * @return the _users value
     */
    String _users();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy