How do we find boot volume backups of the particular instance using python oci package
list_boot_volume_backups function will return all the backups in the compartment.
ref: https://docs.oracle.com/en-us/iaas/api/#/en/iaas/20160918/BootVolumeBackup/ListBootVolumeBackups
if we need to pass
source_boot_volume_backup_id
then where do we find this valuewe can use
boot_volume_id
but in that case as wellListBootVolumes
function will list all the boot volumes in the compartment.
ref: https://docs.oracle.com/en-us/iaas/api/#/en/iaas/20160918/BootVolume/ListBootVolumes
Thank you in advance!!