RequestBatch
Ein Batch von auszuführenden Anfragen.
JSON-Darstellung |
{
"name": string,
"requests": [
{
object (Request )
}
]
} |
Felder |
name |
string
Der Name der Ressource, für die diese Anfrage gilt. Bei einigen Batch-Implementierungen muss ein Batch nur für eine einzelne Ressource vorgesehen sein, z. B. für eine einzelne Datenbank.
|
requests[] |
object (Request )
Die in diesem Batch enthaltenen Anfragen.
|
Sofern nicht anders angegeben, sind die Inhalte dieser Seite unter der Creative Commons Attribution 4.0 License und Codebeispiele unter der Apache 2.0 License lizenziert. Weitere Informationen finden Sie in den Websiterichtlinien von Google Developers. Java ist eine eingetragene Marke von Oracle und/oder seinen Partnern.
Zuletzt aktualisiert: 2024-09-05 (UTC).
[null,null,["Zuletzt aktualisiert: 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"]]