RequestBatch
Un batch di richieste da eseguire.
Rappresentazione JSON |
{
"name": string,
"requests": [
{
object (Request )
}
]
} |
Campi |
name |
string
Il nome della risorsa per cui è richiesta questa richiesta. Alcune implementazioni batch possono richiedere che un batch sia riferito a una sola risorsa, ad esempio un singolo database.
|
requests[] |
object (Request )
Le richieste contenute in questo batch.
|
Salvo quando diversamente specificato, i contenuti di questa pagina sono concessi in base alla licenza Creative Commons Attribution 4.0, mentre gli esempi di codice sono concessi in base alla licenza Apache 2.0. Per ulteriori dettagli, consulta le norme del sito di Google Developers. Java è un marchio registrato di Oracle e/o delle sue consociate.
Ultimo aggiornamento 2024-09-05 UTC.
[null,null,["Ultimo aggiornamento 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"]]