Is there any way to retrieve the weekly Storage-level corruption guard schedule from powershell?

Currently I can get the monthly schedule from '$Bkjob.Options.GenerationPolicy.CheckBackupMonthlyScheduleOptions' but there seems to be no option to get the weekly part.
Code: Select all
PS AsBuiltReport.Veeam.VBR> $Bkjob.Options.GenerationPolicy.RecheckBackupMonthlyScheduleOptions
DayOfWeek DayNumberInMonth DayOfMonth Months
--------- ---------------- ---------- ------
Friday Last 1 {January, February, March, April...}
PS AsBuiltReport.Veeam.VBR>
Code: Select all
PS AsBuiltReport.Veeam.VBR> $Bkjob.Options.GenerationPolicy
EnableDeletedVmDataRetention : False
DeletedVmsDataRetentionPeriodDays : 30
IsBackupCopySimpleMode : False
RecoveryPointObjectiveValue : 1
RecoveryPointObjectiveUnit : Day
SyncIntervalStartTime : 00:00:00
DeletionGuardDays : 0
UseDeletionGuardDays : False
RetentionPolicyType : Simple
KeepGfsBackup : False
SimpleRetentionRestorePoints : 7
EnableCompactFull : False
EnableCompactFullLastTime :
CompactFullBackupScheduleKind : Monthly
CompactFullBackupDays : {Saturday}
CompactFullBackupMonthlyScheduleOptions : Veeam.Backup.Model.CDomFullBackupMonthlyScheduleOptions
EnableRechek : True
EnableSimpleObjectStorageRecheck : False
RecheckScheduleKind : Daily
RecheckDays : {Friday}
RecheckBackupMonthlyScheduleOptions : Veeam.Backup.Model.CDomFullBackupMonthlyScheduleOptions
RecheckTime : 05:00:00
GFSRecentPoints : 7
GFSWeeklyBackups : 4
GFSWeeklyBackupsEnabled : False
GFSMonthlyBackups : 0
GFSMonthlyBackupsEnabled : False
GFSQuarterlyBackups : 0
GFSQuarterlyBackupsEnabled : False
GFSYearlyBackups : 0
GFSYearlyBackupsEnabled : False
GFSIsReadEntireRestorePoint : False
WeeklyBackupDayOfWeek : Sunday
MonthlyBackup : Veeam.Backup.Model.CDomMonthlyBackupCreationTime
QuarterlyBackup : Veeam.Backup.Model.CDomQuarterlyBackupCreationTime
YearlyBackup : Veeam.Backup.Model.CDomYearlyBackupCreationTime
ActualRetentionRestorePoints : 7
DailyBackupTime : 22:00:00
PS AsBuiltReport.Veeam.VBR>