BatchProcessingStatus
使用集合让一切井井有条
根据您的偏好保存内容并对其进行分类。
批处理的状态。它会告知批处理是处于待处理、正在进行还是已完成。
枚举 |
BATCH_PROCESS_PENDING |
Pending. |
BATCH_PROCESS_IN_PROGRESS |
正在进行。 |
BATCH_PROCESS_PROCESSED |
已处理。这并不意味着所有项都已成功处理,您应该检查 response 字段以查看各项结果。 |
如未另行说明,那么本页面中的内容已根据知识共享署名 4.0 许可获得了许可,并且代码示例已根据 Apache 2.0 许可获得了许可。有关详情,请参阅 Google 开发者网站政策。Java 是 Oracle 和/或其关联公司的注册商标。
最后更新时间 (UTC):2025-07-25。
[null,null,["最后更新时间 (UTC):2025-07-25。"],[[["\u003cp\u003eThe batch process can have three statuses: pending, in progress, or processed.\u003c/p\u003e\n"],["\u003cp\u003e\u003ccode\u003eBATCH_PROCESS_PENDING\u003c/code\u003e indicates that the batch process is waiting to start.\u003c/p\u003e\n"],["\u003cp\u003e\u003ccode\u003eBATCH_PROCESS_IN_PROGRESS\u003c/code\u003e signifies that the batch process is currently running.\u003c/p\u003e\n"],["\u003cp\u003e\u003ccode\u003eBATCH_PROCESS_PROCESSED\u003c/code\u003e means the batch process has finished, but the \u003ccode\u003eresponse\u003c/code\u003e field for each item should be checked for successful completion.\u003c/p\u003e\n"]]],["The document outlines the status of a batch process, which can be `BATCH_PROCESS_PENDING`, indicating the process is waiting to start; `BATCH_PROCESS_IN_PROGRESS`, meaning the process is currently running; or `BATCH_PROCESS_PROCESSED`, signifying completion. Completion does not guarantee success for all items within the batch. The `response` field must be consulted to verify the result of each individual item's processing.\n"],null,["# BatchProcessingStatus\n\nStatus of the batch process. It tells whether the batch process is still pending, in progress, or finished.\n\n| Enums ||\n|-----------------------------|-----------------------------------------------------------------------------------------------------------------------------------------|\n| `BATCH_PROCESS_PENDING` | Pending. |\n| `BATCH_PROCESS_IN_PROGRESS` | In progress. |\n| `BATCH_PROCESS_PROCESSED` | Processed. This doesn't mean all items were processed successfully, you should check the `response` field for the result of every item. |"]]