gcloud beta dns record-sets transaction remove - append a record-set deletion to the transaction
gcloud beta dns record-sets transaction remove RRDATAS [RRDATAS ...] --name=NAME --ttl=TTL --type=TYPE --zone=ZONE, -z ZONE [--transaction-file=TRANSACTION_FILE; default="transaction.yaml"] [GCLOUD_WIDE_FLAG ...]
(BETA) This command appends a record-set deletion to the transaction.
To remove an A record, run:
$ gcloud beta dns record-sets transaction remove \ --zone=MANAGED_ZONE --name=my.domain. --ttl=1234 --type=A \ "1.2.3.4"
To remove a TXT record with multiple data values, run:
$ gcloud beta dns record-sets transaction remove \ --zone=MANAGED_ZONE --name=my.domain. --ttl=2345 --type=TXT \ "Hello world" "Bye world"
- RRDATAS [RRDATAS ...]
DNS name of the record-set to be removed.
- --name=NAME
DNS name of the record-set to be removed.
- --ttl=TTL
TTL for the record-set to be removed.
- --type=TYPE
Type of the record-set to be removed.
- --zone=ZONE, -z ZONE
Name of the managed zone whose record sets you want to manage.
- --transaction-file=TRANSACTION_FILE; default="transaction.yaml"
Path of the file which contains the transaction.
These flags are available to all commands: --access-token-file, --account, --billing-project, --configuration, --flags-file, --flatten, --format, --help, --impersonate-service-account, --log-http, --project, --quiet, --trace-token, --user-output-enabled, --verbosity.
Run $ gcloud help for details.
This command is currently in beta and might change without notice. These variants are also available:
$ gcloud dns record-sets transaction remove
$ gcloud alpha dns record-sets transaction remove