Orphaning a disk rather than deleting it preserves the disk for possible recovery. In circumstances after performing recovery operations, you can reattach the disk to a VM. By default, Bosh will delete the disk automatically after 5 days. If you don't want the orphaned disk to be deleted by Bosh, you can preserve the disk.
TO PRESERVE AN ORPHANED DISK:
cf create-service p.mysql db-small new-parent
bosh -d service-instance_$(cf service new-parent --guid) stop
bosh -d service-instance_$(cf service new-parent --guid) ssh
sudo -i
cd /var/vcap/jobs/mysql/config
mv my.cnf DISABLED_my.cnf
mv mylogin.cnf DISABLED_mylogin.cnf
exit
bosh -d service-instance_$(cf service new-parent --guid) instances --details # get INSTANCE-ID e.g. mysql/e62c10f7-e1f1-4065-88dc-a8e0b7c0794d
bosh disks -o # get ORPHAN-CID
bosh -d service-instance_$(cf service new-parent --guid) attach-disk INSTANCE-ID ORPHAN-CID