RequestBatch
Um lote de solicitações a serem executadas.
Representação JSON |
{
"name": string,
"requests": [
{
object (Request )
}
]
} |
Campos |
name |
string
O nome do recurso ao qual a solicitação se refere. Algumas implementações do Batch podem exigir que um lote seja destinado a apenas um recurso, por exemplo, um único banco de dados.
|
requests[] |
object (Request )
As solicitações contidas neste lote.
|
Exceto em caso de indicação contrária, o conteúdo desta página é licenciado de acordo com a Licença de atribuição 4.0 do Creative Commons, e as amostras de código são licenciadas de acordo com a Licença Apache 2.0. Para mais detalhes, consulte as políticas do site do Google Developers. Java é uma marca registrada da Oracle e/ou afiliadas.
Última atualização 2024-09-05 UTC.
[null,null,["Última atualização 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"]]