locked property

  1. @TagNumber.new(3)
bool get 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.new(3)
set locked (bool v)

Implementation

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