I am able to edit DNS records with gcloud tool by interactively editing JSON file from vi/mate using the command:
gcloud dns records --zone=myzone edit
However, I would like to be able to do bulk updates, something like this:
gcloud dns records --zone=myzone edit < my-additional-records.txt
...where my-additional-records.txt contain the DNS records I want to add.
I think it is not so simple as the JSON file to edit contains both addition and deletion of DNS records. So, any tips will be appreciated.