You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: protos/schemas/document.proto
+18Lines changed: 18 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -183,7 +183,25 @@ message DeleteOperation {
183
183
}
184
184
185
185
// todo: Proposal Spec this name
186
+
// Bulk response contains the individual results of each operation in the request, returned in the order submitted. The success or failure of an individual operation does not affect other operations in the request.
186
187
messageBulkResponse {
188
+
oneofresponse {
189
+
// The bulk success response
190
+
BulkResponseBodybulk_response_body=1;
191
+
// The bulk error response
192
+
BulkErrorResponsebulk_error_response=2;
193
+
}
194
+
}
195
+
196
+
messageBulkErrorResponse {
197
+
// [optional] The bulk error
198
+
optionalErrorerror=1;
199
+
// [optional] HTTP response status code
200
+
optionalint32status=2;
201
+
}
202
+
203
+
messageBulkResponseBody {
204
+
187
205
// [required] If true, one or more of the operations in the bulk request did not complete successfully.
188
206
boolerrors=1;
189
207
// [required] Contains the result of each operation in the bulk request, in the order they were submitted.
0 commit comments