1
0
Fork 0
mirror of https://github.com/imjasonh/gcloud-help synced 2026-07-21 14:39:15 +00:00

gcloud: Wed Jul 27 08:55:33 UTC 2022

This commit is contained in:
Automated 2022-07-27 08:55:33 +00:00
parent 380c3aa29f
commit 3513fd1c11
Failed to extract signature
171 changed files with 3989 additions and 448 deletions

View file

@ -44,9 +44,15 @@ COMMANDS
get-transfer-parameters
(BETA) Get transfer parameters of a specific domain.
import
(BETA) Import a domain from Google Domains registrar to Cloud Domains.
list
(BETA) List Cloud Domains registrations.
list-importable-domains
(BETA) List Google Domains registrations importable into Cloud Domains.
register
(BETA) Register a new domain.

View file

@ -0,0 +1,74 @@
NAME
gcloud beta domains registrations import - import a domain from Google
Domains registrar to Cloud Domains
SYNOPSIS
gcloud beta domains registrations import REGISTRATION [--async]
[--labels=[KEY=VALUE,...]] [GCLOUD_WIDE_FLAG ...]
DESCRIPTION
(BETA) Create a new Cloud Domains registration resource by importing an
existing domain from Google Domains registrar. The new resource's ID will
be equal to the domain name.
After this command executes, a resource is created with state ACTIVE,
indicating that the import was successful. Cloud Domains will automatically
renew your domain as long as your Cloud Billing account is active. If this
command fails, no resource is created.
Other users may lose access to the domain and will need IAM permissions on
the Cloud project containing the registration resource to regain access.
EXAMPLES
To import example.com, run:
$ gcloud beta domains registrations import example.com
POSITIONAL ARGUMENTS
Registration resource - The domain name to import. This represents a Cloud
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 registration on the command line with a fully
specified name;
◆ provide the argument --project on the command line;
◆ set the property core/project. To set the location attribute:
◆ provide the argument registration on the command line with a fully
specified name;
◆ location is always global.
This must be specified.
REGISTRATION
ID of the registration or fully qualified identifier for the
registration. To set the registration attribute:
▸ provide the argument registration on the command line.
FLAGS
--async
Return immediately, without waiting for the operation in progress to
complete.
--labels=[KEY=VALUE,...]
List of label KEY=VALUE pairs to add.
Keys must start with a lowercase character and contain only hyphens
(-), underscores (_), lowercase characters, and numbers. Values must
contain only hyphens (-), underscores (_), lowercase characters, and
numbers.
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 domains registrations import
$ gcloud alpha domains registrations import

View file

@ -0,0 +1,69 @@
NAME
gcloud beta domains registrations list-importable-domains - list Google
Domains registrations importable into Cloud Domains
SYNOPSIS
gcloud beta domains registrations list-importable-domains
[--filter=EXPRESSION] [--limit=LIMIT] [--page-size=PAGE_SIZE]
[--sort-by=[FIELD,...]] [GCLOUD_WIDE_FLAG ...]
DESCRIPTION
(BETA) List Google Domains registrations that can be imported to a Cloud
Domains project.
Registrations with an IMPORTABLE resource state can be imported from Google
Domains registrar to Cloud Domains.
Registrations with a SUSPENDED, EXPIRED, or DELETED resource state must
have their states resolved with Google Domains registrar to be imported.
Registrations with an UNSUPPORTED resource state are not currently
supported for import.
EXAMPLES
To list Google Domains registrations that can be imported, run:
$ gcloud beta domains registrations list-importable-domains
LIST COMMAND FLAGS
--filter=EXPRESSION
Apply a Boolean filter EXPRESSION to each resource item to be listed.
If the expression evaluates True, then that item is listed. For more
details and examples of filter expressions, run $ gcloud topic filters.
This flag interacts with other flags that are applied in this order:
--flatten, --sort-by, --filter, --limit.
--limit=LIMIT
Maximum number of resources to list. The default is unlimited. This
flag interacts with other flags that are applied in this order:
--flatten, --sort-by, --filter, --limit.
--page-size=PAGE_SIZE
Some services group resource list output into pages. This flag
specifies the maximum number of resources per page. The default is
determined by the service if it supports paging, otherwise it is
unlimited (no paging). Paging may be applied before or after --filter
and --limit depending on the service.
--sort-by=[FIELD,...]
Comma-separated list of resource field key names to sort by. The
default order is ascending. Prefix a field with ``~'' for descending
order on that field. This flag interacts with other flags that are
applied in this order: --flatten, --sort-by, --filter, --limit.
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 domains registrations list-importable-domains
$ gcloud alpha domains registrations list-importable-domains