Hi @NGaur-3476 ,
maybe this helps to get started:
foreach ($RecoveryServicesVault in Get-AzRecoveryServicesvault) {
Get-AzRecoveryServicesBackupJob -VaultID $RecoveryServicesVault.ID -Operation "Backup" -From ((Get-Date).AddDays(-1).ToUniversalTime()) |
Select-Object WorkloadName,Operation,Status,StartTime,EndTime,Duration
}
----------
(If the reply was helpful please don't forget to upvote and/or accept as answer, thank you)
Regards
Andreas Baumgarten