1
0
Fork 0
mirror of https://github.com/imjasonh/gcloud-help synced 2026-07-08 02:25:19 +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

@ -34,29 +34,27 @@ EXAMPLES
region, run:
$ gcloud compute addresses create SUBNET-ADDRESS-1 \
--region=us-central1 \
--subnet=default
--region=us-central1 --subnet=default
To reserve an IP range '10.110.0.0/16' from the network 'default' for
'VPC_PEERING', run:
$ gcloud compute addresses create IP-RANGE-1 --global \
--addresses=10.110.0.0 --prefix-length=16 \
--purpose=VPC_PEERING --network=default
--purpose=VPC_PEERING --network=default
To reserve any IP range with prefix length '16' from the network 'default'
for 'VPC_PEERING', run:
$ gcloud compute addresses create IP-RANGE-1 --global \
--prefix-length=16 --purpose=VPC_PEERING \
--network=default
--prefix-length=16 --purpose=VPC_PEERING --network=default
To reserve an address from network 'default' for PRIVATE_SERVICE_CONNECT,
run:
$ gcloud compute addresses create PSC-ADDRESS-1 --global \
--addresses=10.110.0.10 \
--purpose=PRIVATE_SERVICE_CONNECT --network=default
--addresses=10.110.0.10 --purpose=PRIVATE_SERVICE_CONNECT \
--network=default
POSITIONAL ARGUMENTS
[NAME ...]