mirror of
https://github.com/imjasonh/gcloud-help
synced 2026-07-18 23:08:48 +00:00
gcloud: Wed Mar 6 09:53:10 UTC 2024
This commit is contained in:
parent
37dd57701a
commit
7f632e0c5d
115 changed files with 5800 additions and 308 deletions
|
|
@ -103,8 +103,9 @@ OPTIONAL FLAGS
|
|||
accelerator-optimized-a3, compute-optimized, compute-optimized-c2d,
|
||||
compute-optimized-c3, compute-optimized-c3d, compute-optimized-h3,
|
||||
general-purpose, general-purpose-e2, general-purpose-n2,
|
||||
general-purpose-n2d, general-purpose-t2d, graphics-optimized,
|
||||
memory-optimized, memory-optimized-m3, storage-optimized-z3.
|
||||
general-purpose-n2d, general-purpose-n4, general-purpose-t2d,
|
||||
graphics-optimized, memory-optimized, memory-optimized-m3,
|
||||
storage-optimized-z3.
|
||||
|
||||
Manage the reservations to be created with the commitment.
|
||||
|
||||
|
|
|
|||
|
|
@ -5,7 +5,8 @@ NAME
|
|||
SYNOPSIS
|
||||
gcloud beta compute public-advertised-prefixes create NAME
|
||||
--dns-verification-ip=DNS_VERIFICATION_IP --range=RANGE
|
||||
[--description=DESCRIPTION] [GCLOUD_WIDE_FLAG ...]
|
||||
[--description=DESCRIPTION] [--pdp-scope=PDP_SCOPE]
|
||||
[GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
EXAMPLES
|
||||
To create a public advertised prefix:
|
||||
|
|
@ -14,6 +15,12 @@ EXAMPLES
|
|||
my-public-advertised-prefix --range=120.120.10.0/24 \
|
||||
--dns-verification-ip=120.120.10.15
|
||||
|
||||
To create a v2 public advertised prefix:
|
||||
|
||||
$ gcloud beta compute public-advertised-prefixes create \
|
||||
my-v2-public-advertised-prefix --range=120.120.10.0/24 \
|
||||
--dns-verification-ip=120.120.10.15 --pdp-scope=REGIONAL
|
||||
|
||||
POSITIONAL ARGUMENTS
|
||||
NAME
|
||||
Name of the public advertised prefix to operate on.
|
||||
|
|
@ -30,6 +37,10 @@ OPTIONAL FLAGS
|
|||
--description=DESCRIPTION
|
||||
Description of this public advertised prefix.
|
||||
|
||||
--pdp-scope=PDP_SCOPE
|
||||
Specifies how child public delegated prefix will be scoped. PDP_SCOPE
|
||||
must be one of: GLOBAL, REGIONAL.
|
||||
|
||||
GCLOUD WIDE FLAGS
|
||||
These flags are available to all commands: --access-token-file, --account,
|
||||
--billing-project, --configuration, --flags-file, --flatten, --format,
|
||||
|
|
|
|||
|
|
@ -3,7 +3,8 @@ NAME
|
|||
Engine public advertised prefix
|
||||
|
||||
SYNOPSIS
|
||||
gcloud beta compute public-advertised-prefixes update NAME --status=STATUS
|
||||
gcloud beta compute public-advertised-prefixes update NAME
|
||||
(--announce-prefix | --status=STATUS | --withdraw-prefix)
|
||||
[GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
EXAMPLES
|
||||
|
|
@ -12,14 +13,32 @@ EXAMPLES
|
|||
$ gcloud beta compute public-advertised-prefixes update my-pap \
|
||||
--status=ptr-configured
|
||||
|
||||
To announce a public advertised prefix:
|
||||
|
||||
$ gcloud beta compute public-advertised-prefixes update my-pap \
|
||||
--announce-prefix
|
||||
|
||||
To withdraw a public advertised prefix:
|
||||
|
||||
$ gcloud beta compute public-advertised-prefixes update my-pap \
|
||||
--withdraw-prefix
|
||||
|
||||
POSITIONAL ARGUMENTS
|
||||
NAME
|
||||
Name of the public advertised prefix to operate on.
|
||||
|
||||
REQUIRED FLAGS
|
||||
--status=STATUS
|
||||
The status of public advertised prefix. STATUS must be (only one value
|
||||
is supported): ptr-configured.
|
||||
Exactly one of these must be specified:
|
||||
|
||||
--announce-prefix
|
||||
Specify if the prefix will be announced. Default is false.
|
||||
|
||||
--status=STATUS
|
||||
The status of public advertised prefix. STATUS must be (only one
|
||||
value is supported): ptr-configured.
|
||||
|
||||
--withdraw-prefix
|
||||
Specify if the prefix will be withdrawn. Default is false.
|
||||
|
||||
GCLOUD WIDE FLAGS
|
||||
These flags are available to all commands: --access-token-file, --account,
|
||||
|
|
|
|||
|
|
@ -35,6 +35,9 @@ COMMANDS
|
|||
list
|
||||
(BETA) List Google Compute Engine public delegated prefixes.
|
||||
|
||||
update
|
||||
(BETA) Updates a Compute Engine public delegated prefix.
|
||||
|
||||
NOTES
|
||||
This command is currently in beta and might change without notice. These
|
||||
variants are also available:
|
||||
|
|
|
|||
54
gcloud/beta/compute/public-delegated-prefixes/update
Normal file
54
gcloud/beta/compute/public-delegated-prefixes/update
Normal file
|
|
@ -0,0 +1,54 @@
|
|||
NAME
|
||||
gcloud beta compute public-delegated-prefixes update - updates a Compute
|
||||
Engine public delegated prefix
|
||||
|
||||
SYNOPSIS
|
||||
gcloud beta compute public-delegated-prefixes update NAME
|
||||
(--announce-prefix | --withdraw-prefix) [--region=REGION]
|
||||
[GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
EXAMPLES
|
||||
To announce a regional v2 public delegated prefix:
|
||||
|
||||
$ gcloud beta compute public-delegated-prefixes update my-pdp \
|
||||
--announce-prefix --region=us-central1
|
||||
|
||||
To withdraw a regional v2 public delegated prefix:
|
||||
|
||||
$ gcloud beta compute public-delegated-prefixes update my-pdp \
|
||||
--withdraw-prefix --region=us-central1
|
||||
|
||||
POSITIONAL ARGUMENTS
|
||||
NAME
|
||||
Name of the public delegated prefix to operate on.
|
||||
|
||||
REQUIRED FLAGS
|
||||
Exactly one of these must be specified:
|
||||
|
||||
--announce-prefix
|
||||
Specify if the prefix will be announced. Default is false.
|
||||
|
||||
--withdraw-prefix
|
||||
Specify if the prefix will be withdrawn. Default is false.
|
||||
|
||||
OPTIONAL FLAGS
|
||||
--region=REGION
|
||||
Region of the public delegated prefix to operate on. Overrides the
|
||||
default compute/region property value for this command invocation.
|
||||
|
||||
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 compute public-delegated-prefixes update
|
||||
|
||||
$ gcloud alpha compute public-delegated-prefixes update
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue