partialSuccess property

  1. @TagNumber(5)
bool get partialSuccess

Optional. Whether a batch's valid entries should be written even if some other entry failed due to a permanent error such as INVALID_ARGUMENT or PERMISSION_DENIED. If any entry failed, then the response status is the response status of one of the failed entries. The response will include error details in WriteLogEntriesPartialErrors.log_entry_errors keyed by the entries' zero-based index in the entries. Failed requests for which no entries are written will not include per-entry errors.

Implementation

@$pb.TagNumber(5)
$core.bool get partialSuccess => $_getBF(4);
  1. @TagNumber(5)
set partialSuccess (bool v)

Implementation

@$pb.TagNumber(5)
set partialSuccess($core.bool v) {
  $_setBool(4, v);
}