I want to know if we can schedule the report fo Cloud Connect Tenants. The output from the report button in the GUI is really nice but I can find a way to schedule it. I've looked in Veeam One Reporter but it's not the exact same info as the report button from the GUI. I also checked to build a custom report from Powershell but it seems I don't have access to all the informations I need (like # of VM by repo by tenant).
Code: Select all
"Get-VBRCloudTenant" return the # of VM that tenant have, but I can't find the info per repo.
"Get-VBRCloudTenant | Select-Object -ExpandProperty Resources" returns a bit more infos but again I don't know the # of VM or the last results for that repo.
Code: Select all
Get-VBRBackupRepository -Name "SomeRepoName" | Get-VBRCloudTenant
Get-VBRCloudTenant : Sequence contains more than one matching element
At line:1 char:55
+ Get-VBRBackupRepository -Name "SomeRepoName" | Get-VBRCloudTenant
+ ~~~~~~~~~~~~~~~~~~
+ CategoryInfo : NotSpecified: (:) [Get-VBRCloudTenant], InvalidOperationException
+ FullyQualifiedErrorId : System.InvalidOperationException,Veeam.Backup.PowerShell.Cmdlets.GetVBRCloudTenant