| Modifier and Type | Method and Description |
|---|---|
Document |
StoredProcedureResponse.getResponseAsDocument()
Gets the response of a stored procedure, serialized into a document.
|
| Modifier and Type | Method and Description |
|---|---|
ResourceResponse<Document> |
DocumentClient.createDocument(String collectionLink,
Object document,
RequestOptions options,
boolean disableAutomaticIdGeneration)
Creates a document.
|
ResourceResponse<Document> |
DocumentClient.deleteDocument(String documentLink,
RequestOptions options)
Deletes a document by the document link.
|
FeedResponse<Document> |
DocumentClient.queryDocumentChangeFeed(String collectionLink,
ChangeFeedOptions changeFeedOptions)
Query for documents change feed in a document collection.
|
FeedResponse<Document> |
DocumentClient.queryDocuments(String collectionLink,
SqlQuerySpec querySpec,
FeedOptions options)
Query for documents in a document collection.
|
FeedResponse<Document> |
DocumentClient.queryDocuments(String collectionLink,
SqlQuerySpec querySpec,
FeedOptions options,
Object partitionKey)
Query for documents in a document collection.
|
FeedResponse<Document> |
DocumentClient.queryDocuments(String collectionLink,
String query,
FeedOptions options)
Query for documents in a document collection.
|
FeedResponse<Document> |
DocumentClient.queryDocuments(String collectionLink,
String query,
FeedOptions options,
Object partitionKey)
Query for documents in a document collection with a partitionKey
|
ResourceResponse<Document> |
DocumentClient.readDocument(String documentLink,
RequestOptions options)
Reads a document by the document link.
|
FeedResponse<Document> |
DocumentClient.readDocuments(String collectionLink,
FeedOptions options)
Reads all documents in a document collection.
|
ResourceResponse<Document> |
DocumentClient.replaceDocument(Document document,
RequestOptions options)
Replaces a document with the passed in document.
|
ResourceResponse<Document> |
DocumentClient.replaceDocument(String documentLink,
Object document,
RequestOptions options)
Replaces a document using a POJO object.
|
ResourceResponse<Document> |
DocumentClient.upsertDocument(String collectionLink,
Object document,
RequestOptions options,
boolean disableAutomaticIdGeneration)
Upserts a document.
|
| Modifier and Type | Method and Description |
|---|---|
ResourceResponse<Document> |
DocumentClient.replaceDocument(Document document,
RequestOptions options)
Replaces a document with the passed in document.
|
Copyright © 2018. All rights reserved.