Database Class

public class Database extends Resource

Represents a Database in the Azure Cosmos DB database service. A database manages users, permissions and a set of collections

Each Azure Cosmos DB Service is able to support multiple independent named databases, with the database being the logical container for data. Each Database consists of one or more collections, each of which in turn contain one or more documents. Since databases are an an administrative resource and the Service Master Key will be required in order to access and successfully complete any action using the User APIs.

Constructor Summary

Constructor Description
Database()

Initialize a database object.

Database(String jsonString)

Initialize a database object from json string.

Method Summary

Modifier and Type Method and Description
String getCollectionsLink()

Gets the self-link for collections in the database

String getUsersLink()

Gets the self-link for users in the database.

Inherited Members

Constructor Details

Database

public Database()

Initialize a database object.

Database

public Database(String jsonString)

Initialize a database object from json string.

Parameters:

jsonString - the json string.

Method Details

getCollectionsLink

public String getCollectionsLink()

Gets the self-link for collections in the database

Returns:

the collections link.

getUsersLink

public String getUsersLink()

Gets the self-link for users in the database.

Returns:

the users link.

Applies to