mirror of
https://github.com/imjasonh/gcloud-help
synced 2026-07-17 14:26:34 +00:00
gcloud: Wed Apr 3 09:23:31 UTC 2024
This commit is contained in:
parent
4ade1b44cc
commit
7e2535c53d
212 changed files with 8070 additions and 151 deletions
|
|
@ -5,7 +5,8 @@ NAME
|
|||
SYNOPSIS
|
||||
gcloud alloydb instances create INSTANCE --cluster=CLUSTER
|
||||
--cpu-count=CPU_COUNT --instance-type=INSTANCE_TYPE --region=REGION
|
||||
[--async] [--availability-type=AVAILABILITY_TYPE]
|
||||
[--assign-inbound-public-ip=ASSIGN_INBOUND_PUBLIC_IP] [--async]
|
||||
[--availability-type=AVAILABILITY_TYPE]
|
||||
[--database-flags=FLAG=VALUE,[FLAG=VALUE,...]]
|
||||
[--insights-config-query-plans-per-minute=INSIGHTS_CONFIG_QUERY_PLANS_PER_MINUTE]
|
||||
[--insights-config-query-string-length=INSIGHTS_CONFIG_QUERY_STRING_LENGTH]
|
||||
|
|
@ -61,6 +62,16 @@ REQUIRED FLAGS
|
|||
regions at https://cloud.google.com/sql/docs/instance-locations.
|
||||
|
||||
OPTIONAL FLAGS
|
||||
--assign-inbound-public-ip=ASSIGN_INBOUND_PUBLIC_IP
|
||||
Specify to enable or disable public IP on an instance. On instance
|
||||
creation only disabling public IP is allowed. If you want to enable
|
||||
public IP, an instance must be created with public IP disabled first,
|
||||
then update the instance to enable public IP. ASSIGN_INBOUND_PUBLIC_IP
|
||||
must be (only one value is supported):
|
||||
|
||||
NO_PUBLIC_IP
|
||||
This disables public IP on the instance.
|
||||
|
||||
--async
|
||||
Return immediately, without waiting for the operation in progress to
|
||||
complete.
|
||||
|
|
|
|||
|
|
@ -4,8 +4,10 @@ NAME
|
|||
|
||||
SYNOPSIS
|
||||
gcloud alloydb instances update INSTANCE --cluster=CLUSTER --region=REGION
|
||||
[--async] [--availability-type=AVAILABILITY_TYPE]
|
||||
[--cpu-count=CPU_COUNT] [--database-flags=FLAG=VALUE,[FLAG=VALUE,...]]
|
||||
[--assign-inbound-public-ip=ASSIGN_INBOUND_PUBLIC_IP] [--async]
|
||||
[--authorized-external-networks=[AUTHORIZED_NETWORK,...]]
|
||||
[--availability-type=AVAILABILITY_TYPE] [--cpu-count=CPU_COUNT]
|
||||
[--database-flags=FLAG=VALUE,[FLAG=VALUE,...]]
|
||||
[--insights-config-query-plans-per-minute=INSIGHTS_CONFIG_QUERY_PLANS_PER_MINUTE]
|
||||
[--insights-config-query-string-length=INSIGHTS_CONFIG_QUERY_STRING_LENGTH]
|
||||
[--[no-]insights-config-record-application-tags]
|
||||
|
|
@ -37,11 +39,27 @@ REQUIRED FLAGS
|
|||
regions at https://cloud.google.com/sql/docs/instance-locations.
|
||||
|
||||
OPTIONAL FLAGS
|
||||
--assign-inbound-public-ip=ASSIGN_INBOUND_PUBLIC_IP
|
||||
Specify to enable or disable public IP on an instance.
|
||||
ASSIGN_INBOUND_PUBLIC_IP must be one of:
|
||||
◆ NO_PUBLIC_IP
|
||||
▸ This disables public IP on the instance. Updating an instance to
|
||||
disable public IP will clear the list of authorized networks.
|
||||
◆ ASSIGN_IPV4
|
||||
▸ Assign an inbound public IPv4 address for the instance. public IP
|
||||
is enabled.
|
||||
|
||||
--async
|
||||
Return immediately, without waiting for the operation in progress to
|
||||
complete. The default is True. Enabled by default, use --no-async to
|
||||
disable.
|
||||
|
||||
--authorized-external-networks=[AUTHORIZED_NETWORK,...]
|
||||
Comma-separated list of authorized external networks to set on the
|
||||
instance. Authorized networks should use CIDR notation (e.g.
|
||||
1.2.3.4/30). This flag is only allowed to be set for instances with
|
||||
public IP enabled.
|
||||
|
||||
--availability-type=AVAILABILITY_TYPE
|
||||
Specifies level of availability. AVAILABILITY_TYPE must be one of:
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue