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
- ストアド プロシージャの本体。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
Azure SDK for Java