1
0
Fork 0
mirror of https://github.com/imjasonh/gcloud-help synced 2026-07-18 23:08:48 +00:00

gcloud: Tue Mar 1 21:43:54 UTC 2022

This commit is contained in:
Automated 2022-03-01 21:43:54 +00:00
parent c1c3b75313
commit 21878eea72
1018 changed files with 4838 additions and 3409 deletions

View file

@ -19,16 +19,14 @@ EXAMPLES
"my.domain.", and a managed zone "MANAGED_ZONE", run:
$ gcloud beta dns record-sets transaction add "1.2.3.4" \
--name=my.domain. --ttl=1234 \
--type=A --zone=MANAGED_ZONE
--name=my.domain. --ttl=1234 --type=A --zone=MANAGED_ZONE
To add a TXT record with multiple data values while specifying time to live
as 14400 seconds, run:
$ gcloud beta dns record-sets transaction add "Hello world" \
"Bye world" \
--name=my.domain. --ttl=14400 \
--type=TXT --zone=MANAGED_ZONE
"Bye world" --name=my.domain. --ttl=14400 --type=TXT \
--zone=MANAGED_ZONE
POSITIONAL ARGUMENTS
RRDATAS [RRDATAS ...]

View file

@ -15,14 +15,14 @@ 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"
--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"
--zone=MANAGED_ZONE --name=my.domain. --ttl=2345 --type=TXT \
"Hello world" "Bye world"
POSITIONAL ARGUMENTS
RRDATAS [RRDATAS ...]