deactivated property

  1. @TagNumber.new(11)
bool get deactivated

This flag indicates whether this BackupPlan has been deactivated. Setting this field to True locks the BackupPlan such that no further updates will be allowed (except deletes), including the deactivated field itself. It also prevents any new Backups from being created via this BackupPlan (including scheduled Backups).

Default: False

Implementation

@$pb.TagNumber(11)
$core.bool get deactivated => $_getBF(10);
  1. @TagNumber.new(11)
set deactivated (bool v)

Implementation

@$pb.TagNumber(11)
set deactivated($core.bool v) {
  $_setBool(10, v);
}