mirror of
https://github.com/imjasonh/gcloud-help
synced 2026-07-11 15:39:42 +00:00
115 lines
4.5 KiB
Text
115 lines
4.5 KiB
Text
NAME
|
|
gcloud alpha dns response-policies rules create - creates a new Cloud DNS
|
|
response policy rule
|
|
|
|
SYNOPSIS
|
|
gcloud alpha dns response-policies rules create
|
|
(RESPONSE_POLICY_RULE : --response-policy=RESPONSE_POLICY)
|
|
--dns-name=DNS_NAME [--behavior=BEHAVIOR]
|
|
[--local-data=[LOCAL_DATA,...]] [--location=LOCATION]
|
|
[GCLOUD_WIDE_FLAG ...]
|
|
|
|
EXAMPLES
|
|
To create a new response policy rule with local data rrsets, run:
|
|
|
|
$ gcloud alpha dns response-policies rules create \
|
|
myresponsepolicyrule --response-policy="myresponsepolicy" \
|
|
--dns-name="www.zone.com." \
|
|
--local-data=name=www.zone.com.,type=CNAME,ttl=21600,\
|
|
rrdatas=zone.com.
|
|
|
|
To create a new response policy rule with behavior, run:
|
|
|
|
$ gcloud alpha dns response-policies rules create \
|
|
myresponsepolicyrule --response-policy="myresponsepolicy" \
|
|
--dns-name="www.zone.com." --behavior=bypassResponsePolicy
|
|
|
|
To create a new response policy rule with behavior in a zonal response
|
|
policy in us-east1-a, run:
|
|
|
|
$ gcloud alpha dns response-policies rules create \
|
|
myresponsepolicyrule --response-policy="myresponsepolicy" \
|
|
--dns-name="www.zone.com." --behavior=bypassResponsePolicy \
|
|
--location=us-east1-a
|
|
|
|
POSITIONAL ARGUMENTS
|
|
Response policy rule resource - The response policy rule to create. The
|
|
arguments in this group can be used to specify the attributes of this
|
|
resource. (NOTE) Some attributes are not given arguments in this group but
|
|
can be set in other ways. To set the project attribute:
|
|
◆ provide the argument response_policy_rule on the command line with a
|
|
fully specified name;
|
|
◆ set the property core/project.
|
|
|
|
This must be specified.
|
|
|
|
RESPONSE_POLICY_RULE
|
|
ID of the response_policy_rule or fully qualified identifier for the
|
|
response_policy_rule. To set the response-policy-rule attribute:
|
|
▸ provide the argument response_policy_rule on the command line.
|
|
|
|
This positional argument must be specified if any of the other
|
|
arguments in this group are specified.
|
|
|
|
--response-policy=RESPONSE_POLICY
|
|
The Cloud DNS response policy name response_policy_rule. To set the
|
|
response-policy attribute:
|
|
▸ provide the argument response_policy_rule on the command line
|
|
with a fully specified name;
|
|
▸ provide the argument --response-policy on the command line.
|
|
|
|
REQUIRED FLAGS
|
|
--dns-name=DNS_NAME
|
|
DNS name (wildcard or exact) to apply this rule to.
|
|
|
|
OPTIONAL FLAGS
|
|
--behavior=BEHAVIOR
|
|
The response policy rule query behavior. BEHAVIOR must be one of:
|
|
behaviorUnspecified, bypassResponsePolicy.
|
|
|
|
--local-data=[LOCAL_DATA,...]
|
|
All resource record sets for this selector, one per resource record
|
|
type. The name must match the dns_name.
|
|
|
|
This is a repeated argument that can be specified multiple times to
|
|
specify multiple local data rrsets. (e.g.
|
|
--local-data=name="zone.com.",type="A",ttl=21600,rrdata="1.2.3.4 "
|
|
--local-data=name="www.zone.com.",type="CNAME",ttl=21600,rrdata="1.2.3.4|5.6.7.8")
|
|
|
|
name
|
|
The DnsName of a resource record set.
|
|
|
|
type
|
|
Type of all resource records in this set. For example, A, AAAA,
|
|
SOA, MX, NS, TXT ...
|
|
|
|
ttl
|
|
Number of seconds that this ResourceRecordSet can be cached by
|
|
resolvers.
|
|
|
|
rrdatas
|
|
The list of datas for this record, split by "|".
|
|
|
|
--location=LOCATION
|
|
Specifies the desired service location the request is sent to. Defaults
|
|
to Cloud DNS global service. Use --location=global if you want to
|
|
target the global service.
|
|
|
|
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 alpha and might change without notice. If this
|
|
command fails with API permission errors despite specifying the correct
|
|
project, you might be trying to access an API with an invitation-only early
|
|
access allowlist. These variants are also available:
|
|
|
|
$ gcloud dns response-policies rules create
|
|
|
|
$ gcloud beta dns response-policies rules create
|
|
|