mirror of
https://github.com/imjasonh/gcloud-help
synced 2026-07-16 20:36:39 +00:00
gcloud: Wed Oct 25 11:42:23 UTC 2023
This commit is contained in:
parent
a15665661a
commit
d34c41a2ce
305 changed files with 5549 additions and 699 deletions
|
|
@ -28,6 +28,9 @@ COMMANDS
|
|||
list
|
||||
(BETA) List Google Compute Engine network attachments.
|
||||
|
||||
update
|
||||
(BETA) Update a Google Compute Engine network attachment.
|
||||
|
||||
NOTES
|
||||
This command is currently in beta and might change without notice. These
|
||||
variants are also available:
|
||||
|
|
|
|||
92
gcloud/beta/compute/network-attachments/update
Normal file
92
gcloud/beta/compute/network-attachments/update
Normal file
|
|
@ -0,0 +1,92 @@
|
|||
NAME
|
||||
gcloud beta compute network-attachments update - update a Google Compute
|
||||
Engine network attachment
|
||||
|
||||
SYNOPSIS
|
||||
gcloud beta compute network-attachments update NAME
|
||||
[--description=DESCRIPTION] [--producer-accept-list=[ACCEPT_LIST,...]]
|
||||
[--producer-reject-list=[REJECT_LIST,...]] [--region=REGION]
|
||||
[--subnets=SUBNETS,[SUBNETS,...]] [--subnets-region=SUBNETS_REGION]
|
||||
[GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(BETA) gcloud beta compute network-attachments update is used to update
|
||||
network attachments. You can update the following fields: description,
|
||||
subnets, producer-accept-list and producer-reject-list. If you update the
|
||||
producer-accept-list or producer-reject-list, the full new list should be
|
||||
specified.
|
||||
|
||||
EXAMPLES
|
||||
To update all the parameters with the new list, run:
|
||||
|
||||
$ gcloud beta compute network-attachments update \
|
||||
NETWORK_ATTACHMENT_NAME --region=us-central1 \
|
||||
--subnets=MY_SUBNET2 \
|
||||
--description='default network attachment' \
|
||||
--producer-accept-list=PROJECT5,PROJECT6 \
|
||||
--producer-reject-list=PROJECT7,PROJECT8
|
||||
|
||||
To update a network attachment to change only the subnet to MY_SUBNET3,
|
||||
run:
|
||||
|
||||
$ gcloud beta compute network-attachments update \
|
||||
NETWORK_ATTACHMENT_NAME --region=us-central1 \
|
||||
--subnets=MY_SUBNET3
|
||||
|
||||
POSITIONAL ARGUMENTS
|
||||
NAME
|
||||
Name of the network attachment to update.
|
||||
|
||||
FLAGS
|
||||
--description=DESCRIPTION
|
||||
An optional, textual description for the network attachment.
|
||||
|
||||
--producer-accept-list=[ACCEPT_LIST,...]
|
||||
Projects that are allowed to connect to this network attachment.
|
||||
|
||||
--producer-reject-list=[REJECT_LIST,...]
|
||||
Projects that are not allowed to connect to this network attachment.
|
||||
|
||||
--region=REGION
|
||||
Region of the network attachment to update. If not specified, you might
|
||||
be prompted to select a region (interactive mode only).
|
||||
|
||||
To avoid prompting when this flag is omitted, you can set the
|
||||
compute/region property:
|
||||
|
||||
$ gcloud config set compute/region REGION
|
||||
|
||||
A list of regions can be fetched by running:
|
||||
|
||||
$ gcloud compute regions list
|
||||
|
||||
To unset the property, run:
|
||||
|
||||
$ gcloud config unset compute/region
|
||||
|
||||
Alternatively, the region can be stored in the environment variable
|
||||
CLOUDSDK_COMPUTE_REGION.
|
||||
|
||||
--subnets=SUBNETS,[SUBNETS,...]
|
||||
The subnetworks provided by the consumer for the producers
|
||||
|
||||
--subnets-region=SUBNETS_REGION
|
||||
Region of the subnetworks 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 network-attachments update
|
||||
|
||||
$ gcloud alpha compute network-attachments update
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue