StoredProcedure Class
- java.
lang. Object - JsonSerializable
- Resource
- com.
microsoft. azure. cosmosdb. StoredProcedure
- com.
public class StoredProcedure extends Resource
Represents a stored procedure in the Azure Cosmos DB database service.
Cosmos DB allows stored procedures to be executed in the storage tier, directly against a document collection. The script gets executed under ACID transactions on the primary storage partition of the specified collection. For additional details, refer to the server-side JavaScript API documentation.
Constructor Summary
Constructor | Description |
---|---|
StoredProcedure() |
Constructor. |
StoredProcedure(String jsonString) |
Constructor. |
Method Summary
Modifier and Type | Method and Description |
---|---|
String |
getBody()
Get the body of the stored procedure. |
void |
setBody(String body)
Set the body of the stored procedure. |
Inherited Members
Constructor Details
StoredProcedure
public StoredProcedure()
Constructor.
StoredProcedure
public StoredProcedure(String jsonString)
Constructor.
Parameters:
Method Details
getBody
public String getBody()
Get the body of the stored procedure.
Returns:
setBody
public void setBody(String body)
Set the body of the stored procedure.
Parameters:
Applies to
Azure SDK for Java