1
0
Fork 0
mirror of https://github.com/imjasonh/gcloud-help synced 2026-07-11 15:39:42 +00:00
gcloud-help/gcloud/beta/dns/record-sets/transaction/remove
2022-03-01 21:43:54 +00:00

63 lines
2 KiB
Text

NAME
gcloud beta dns record-sets transaction remove - append a record-set
deletion to the transaction
SYNOPSIS
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 ...]
DESCRIPTION
(BETA) This command appends a record-set deletion to the transaction.
EXAMPLES
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"
POSITIONAL ARGUMENTS
RRDATAS [RRDATAS ...]
DNS name of the record-set to be removed.
REQUIRED FLAGS
--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.
OPTIONAL FLAGS
--transaction-file=TRANSACTION_FILE; default="transaction.yaml"
Path of the file which contains the transaction.
GCLOUD WIDE FLAGS
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.
NOTES
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