Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT License. See License.txt in the project root for license information.
/** * 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.
/** * An Azure Cosmos DB SQL database. */
@Beta(Beta.SinceVersion.V1_24_0) public interface SqlDatabase extends HasInner<SqlDatabaseGetResultsInner> {
Get name of the Cosmos DB SQL database.
Returns:the sqlDatabaseId value
/** * Get name of the Cosmos DB SQL database. * * @return the sqlDatabaseId value */
String sqlDatabaseId();
Get a system generated property. A unique identifier.
Returns:the _rid value
/** * 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.
Returns:the _ts value
/** * 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.
Returns:the _etag value
/** * 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.
Returns:the _colls value
/** * 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.
Returns:the _users value
/** * Get a system generated property that specifies the addressable path of the users resource. * * @return the _users value */
String _users(); }