RequestBatch
JSON 表現 |
{
"name": string,
"requests": [
{
object (Request )
}
]
} |
フィールド |
name |
string
このリクエストの対象となるリソースの名前。Batch の実装によっては、単一のリソース(単一のデータベースなど)のみを対象とするバッチが必要になる場合があります。
|
requests[] |
object (Request )
このバッチに含まれるリクエスト。
|
特に記載のない限り、このページのコンテンツはクリエイティブ・コモンズの表示 4.0 ライセンスにより使用許諾されます。コードサンプルは Apache 2.0 ライセンスにより使用許諾されます。詳しくは、Google Developers サイトのポリシーをご覧ください。Java は Oracle および関連会社の登録商標です。
最終更新日 2024-09-05 UTC。
[null,null,["最終更新日 2024-09-05 UTC。"],[[["The JSON representation outlines a batch of execution requests."],["Each batch can be named and contains an array of individual requests defined by the `Request` object."],["Batches may be limited to a single resource, depending on the implementation."]]],["The JSON representation outlines a structure for batch requests. A batch, identified by a `name` string, contains multiple `requests`. Each request within the `requests` array is defined by a separate `Request` object. The `name` field specifies the target resource for the entire batch, with some implementations restricting batches to a single resource. The `requests` array holds the specific operations to be executed in the batch.\n"]]