你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
StoredProcedure 类
- java.
lang. Object - JsonSerializable
- 资源
- com.
microsoft. azure. cosmosdb. StoredProcedure
- com.
public class StoredProcedure extends Resource
表示 Azure Cosmos DB 数据库服务中的存储过程。
Cosmos DB 允许在存储层中直接针对文档集合执行存储过程。 脚本在指定集合的主存储分区上的 ACID 事务下执行。 有关更多详细信息,请参阅服务器端 JavaScript API 文档。
构造函数摘要
构造函数 | 说明 |
---|---|
StoredProcedure() |
构造函数。 |
StoredProcedure(String jsonString) |
构造函数。 |
方法摘要
修饰符和类型 | 方法和描述 |
---|---|
String |
getBody()
获取存储过程的正文。 |
void |
setBody(String body)
设置存储过程的正文。 |
继承成员
JsonSerializable.get(String propertyName)
JsonSerializable.getBoolean(String propertyName)
JsonSerializable.getCollection(String propertyName)
JsonSerializable.getDouble(String propertyName)
Resource.getETag()
JsonSerializable.getHashMap()
Resource.getId()
JsonSerializable.getInt(String propertyName)
JsonSerializable.getLogger()
JsonSerializable.getLong(String propertyName)
JsonSerializable.getMapper()
JsonSerializable.getObject(String propertyName)
JsonSerializable.getObjectByPath(List<String> propertyNames)
Resource.getResourceId()
Resource.getSelfLink()
JsonSerializable.getString(String propertyName)
Resource.getTimestamp()
JsonSerializable.has(String propertyName)
JsonSerializable.JsonSerializable()
JsonSerializable.JsonSerializable(String jsonString, ObjectMapper objectMapper)
JsonSerializable.JsonSerializable(String jsonString)
JsonSerializable.remove(String propertyName)
Resource.Resource(Resource resource)
Resource.Resource()
Resource.Resource(String jsonString, ObjectMapper objectMapper)
Resource.Resource(String jsonString)
Resource.setId(String id)
Resource.setResourceId(String resourceId)
JsonSerializable.toJson()
JsonSerializable.toJson(SerializationFormattingPolicy formattingPolicy)
JsonSerializable.toString()
构造函数详细信息
StoredProcedure
public StoredProcedure()
构造函数。
StoredProcedure
public StoredProcedure(String jsonString)
构造函数。
参数:
jsonString
- 表示存储过程的 json 字符串。
方法详细信息
getBody
public String getBody()
获取存储过程的正文。
返回:
存储过程的主体。
setBody
public void setBody(String body)
设置存储过程的正文。
参数:
body
- 存储过程的主体。