locked property

  1. @TagNumber(3)
bool locked

This flag denotes whether the retention policy of this BackupPlan is locked. If set to True, no further update is allowed on this policy, including the locked field itself.

Default: False

Implementation

@$pb.TagNumber(3)
$core.bool get locked => $_getBF(2);
  1. @TagNumber(3)
void locked=(bool v)

Implementation

@$pb.TagNumber(3)
set locked($core.bool v) { $_setBool(2, v); }