ObjectDefinitions/Rubrik.VMwareVmMount.ps1xml
<?xml version="1.0" encoding="utf-8" ?>
<Configuration> <ViewDefinitions> <View> <Name>Default</Name> <ViewSelectedBy> <TypeName>Rubrik.VMwareVmMount</TypeName> </ViewSelectedBy> <TableControl> <TableHeaders> <TableColumnHeader> <Label>Name</Label> </TableColumnHeader> <TableColumnHeader> <Label>Source Name</Label> </TableColumnHeader> <TableColumnHeader> <Label>Snapshot Date</Label> </TableColumnHeader> <TableColumnHeader> <Label>Mount Timestamp</Label> </TableColumnHeader> </TableHeaders> <TableRowEntries> <TableRowEntry> <TableColumnItems> <TableColumnItem> <ScriptBlock> (Get-RubrikVM -id $_.mountedVmId).name </ScriptBlock> </TableColumnItem> <TableColumnItem> <ScriptBlock> (Get-RubrikVM -id $_.vmId).name </ScriptBlock> </TableColumnItem> <TableColumnItem> <PropertyName>snapshotDate</PropertyName> </TableColumnItem> <TableColumnItem> <PropertyName>mountTimestamp</PropertyName> </TableColumnItem> </TableColumnItems> </TableRowEntry> </TableRowEntries> </TableControl> </View> </ViewDefinitions> </Configuration> |