Yes, this was done. Just place attached script under /etc/bash_completion.d folder.
You can easily create new auto-completion scripts based on attached one. I'll explain a bit how it works:
- at top line function called "_do_update" is declared
- within that function there is a switch statement for each of parameters (based on position)
- at the end of the script "complete" command is called with script name (to be auto-completed) and function name, that is responsible for it.
Make sure that you choose unique function name, because it's defined in global scope and is accessible to other completion scripts as well.