idempotencyPrefix property

  1. @TagNumber(2)
String get idempotencyPrefix

Optional idempotency prefix. When non-empty, each row is recorded under the key "{prefix}:{row_index}" transactionally with the write, so re-submitting the same batch returns the already-created revisions instead of writing duplicates (replayed rows skip artifact creation too). Empty = no idempotency.

Implementation

@$pb.TagNumber(2)
$core.String get idempotencyPrefix => $_getSZ(1);
  1. @TagNumber(2)
set idempotencyPrefix (String value)

Implementation

@$pb.TagNumber(2)
set idempotencyPrefix($core.String value) => $_setString(1, value);