1
0
Fork 0
mirror of https://github.com/imjasonh/gcloud-help synced 2026-07-16 20:36:39 +00:00

gcloud: Thu Nov 9 11:45:52 UTC 2023

This commit is contained in:
Automated 2023-11-09 11:45:52 +00:00
parent f2c5d1d45f
commit 03f0979970
300 changed files with 8569 additions and 1319 deletions

View file

@ -9,11 +9,14 @@ SYNOPSIS
[--description=DESCRIPTION] [--[no-]force-update-on-repair]
[--initial-delay=INITIAL_DELAY] [--instance-redistribution-type=TYPE]
[--list-managed-instances-results=MODE]
[--standby-policy-initial-delay=STANDBY_POLICY_INITIAL_DELAY]
[--standby-policy-mode=STANDBY_POLICY_MODE]
[--stateful-disk=[auto-delete=AUTO-DELETE],[device-name=DEVICE-NAME]]
[--stateful-external-ip=[enabled],
[auto-delete=AUTO-DELETE],[interface-name=INTERFACE-NAME]]
[--stateful-internal-ip=[enabled],
[auto-delete=AUTO-DELETE],[interface-name=INTERFACE-NAME]]
[--stopped-size=STOPPED_SIZE] [--suspended-size=SUSPENDED_SIZE]
[--target-distribution-shape=SHAPE] [--target-pool=[TARGET_POOL,...]]
[--zones=ZONE,[ZONE,...]]
[--health-check=HEALTH_CHECK | --http-health-check=HTTP_HEALTH_CHECK
@ -140,6 +143,23 @@ OPTIONAL FLAGS
Pagination is enabled for the group's listManagedInstances API
method. maxResults and pageToken query parameters are respected.
--standby-policy-initial-delay=STANDBY_POLICY_INITIAL_DELAY
Specifies the number of seconds that the MIG should wait before
suspending or stopping a VM. The initial delay gives the initialization
script the time to prepare your VM for a quick scale out.
--standby-policy-mode=STANDBY_POLICY_MODE
Defines how a MIG resumes or starts VMs from a standby pool when the
group scales out. The default mode is manual. STANDBY_POLICY_MODE must
be one of:
manual
MIG does not automatically resume or start VMs in the standby pool
when the group scales out.
scale-out-pool
MIG automatically resumes or starts VMs in the standby pool when
the group scales out, and replenishes the standby pool afterwards.
--stateful-disk=[auto-delete=AUTO-DELETE],[device-name=DEVICE-NAME]
Disks considered stateful by the instance group. Managed instance
groups preserve and reattach stateful disks on VM autohealing, update,
@ -230,6 +250,12 @@ OPTIONAL FLAGS
the instance is deleted manually or when the group size is
decreased.
--stopped-size=STOPPED_SIZE
Specifies the target size of stopped VMs in the group.
--suspended-size=SUSPENDED_SIZE
Specifies the target size of suspended VMs in the group.
--target-distribution-shape=SHAPE
Specifies how a regional managed instance group distributes its
instances across zones within the region. The default shape is even.

View file

@ -11,11 +11,14 @@ SYNOPSIS
[--remove-stateful-disks=DEVICE_NAME,[DEVICE_NAME,...]]
[--remove-stateful-external-ips=INTERFACE_NAME,[...]]
[--remove-stateful-internal-ips=INTERFACE_NAME,[...]]
[--standby-policy-initial-delay=STANDBY_POLICY_INITIAL_DELAY]
[--standby-policy-mode=STANDBY_POLICY_MODE]
[--stateful-disk=[auto-delete=AUTO-DELETE],[device-name=DEVICE-NAME]]
[--stateful-external-ip=[enabled],
[auto-delete=AUTO-DELETE],[interface-name=INTERFACE-NAME]]
[--stateful-internal-ip=[enabled],
[auto-delete=AUTO-DELETE],[interface-name=INTERFACE-NAME]]
[--stopped-size=STOPPED_SIZE] [--suspended-size=SUSPENDED_SIZE]
[--target-distribution-shape=SHAPE]
[--clear-autohealing
| --initial-delay=INITIAL_DELAY --health-check=HEALTH_CHECK
@ -130,6 +133,23 @@ FLAGS
Remove stateful configuration for the specified interfaces for internal
IPs.
--standby-policy-initial-delay=STANDBY_POLICY_INITIAL_DELAY
Specifies the number of seconds that the MIG should wait before
suspending or stopping a VM. The initial delay gives the initialization
script the time to prepare your VM for a quick scale out.
--standby-policy-mode=STANDBY_POLICY_MODE
Defines how a MIG resumes or starts VMs from a standby pool when the
group scales out. The default mode is manual. STANDBY_POLICY_MODE must
be one of:
manual
MIG does not automatically resume or start VMs in the standby pool
when the group scales out.
scale-out-pool
MIG automatically resumes or starts VMs in the standby pool when
the group scales out, and replenishes the standby pool afterwards.
--stateful-disk=[auto-delete=AUTO-DELETE],[device-name=DEVICE-NAME]
Disks considered stateful by the instance group. Managed instance
groups preserve and reattach stateful disks on VM autohealing, update,
@ -233,6 +253,12 @@ FLAGS
the instance is deleted manually or when the group size is
decreased.
--stopped-size=STOPPED_SIZE
Specifies the target size of stopped VMs in the group.
--suspended-size=SUSPENDED_SIZE
Specifies the target size of suspended VMs in the group.
--target-distribution-shape=SHAPE
Specifies how a regional managed instance group distributes its
instances across zones within the region. The default shape is even.

View file

@ -89,16 +89,22 @@ FLAGS
throughput.
--max-throughput=MAX_THROUGHPUT
Maximum throughput in Mbps. Value must be a multiple of 100 from
300 through 1000. Must be higher than the value specified by
--min-throughput; the set value, if applicable, or the default
minimum throughput value.
Maximum throughput of the connector in Mbps. Refers to the expected
throughput when using an e2-micro machine type. Value must be a
multiple of 100 from 300 through 1000. Must be higher than the
value specified by --min-throughput. If both max-throughput and
max-instances are provided, max-instances takes precedence over
max-throughput. The use of max-throughput is discouraged in favor
of max-instances.
--min-throughput=MIN_THROUGHPUT
Minimum throughput in Mbps. Value must be a multiple of 100 from
200 through 900. Must be lower than the value specified by
--max-throughput; the set value, if applicable, or the default
maximum throughput value.
Minimum throughput of the connector in Mbps. Refers to the expected
throughput when using an e2-micro machine type. Value must be a
multiple of 100 from 200 through 900. Must be lower than the value
specified by --max-throughput. If both min-throughput and
min-instances are provided, min-instances takes precedence over
min-throughput. The use of min-throughput is discouraged in favor
of min-instances.
At most one of these can be specified:

View file

@ -19,7 +19,7 @@ FLAGS
--managed-protection-tier=MANAGED_PROTECTION_TIER
The maanged protection tier to assign to the project.
MANAGED_PROTECTION_TIER must be one of: CA_STANDARD, CAMP_PLUS_MONTHLY.
MANAGED_PROTECTION_TIER must be one of: CA_STANDARD, CAMP_PLUS_PAYGO.
GCLOUD WIDE FLAGS
These flags are available to all commands: --access-token-file, --account,

View file

@ -56,8 +56,10 @@ GCLOUD WIDE FLAGS
Run $ gcloud help for details.
NOTES
This command is currently in beta and might change without notice. This
variant is also available:
This command is currently in beta and might change without notice. These
variants are also available:
$ gcloud compute security-policies add-user-defined-field
$ gcloud alpha compute security-policies add-user-defined-field

View file

@ -39,8 +39,10 @@ GCLOUD WIDE FLAGS
Run $ gcloud help for details.
NOTES
This command is currently in beta and might change without notice. This
variant is also available:
This command is currently in beta and might change without notice. These
variants are also available:
$ gcloud compute security-policies remove-user-defined-field
$ gcloud alpha compute security-policies remove-user-defined-field

View file

@ -25,8 +25,10 @@ API REFERENCE
can be found at: https://cloud.google.com/compute/
NOTES
This command is currently in beta and might change without notice. This
variant is also available:
This command is currently in beta and might change without notice. These
variants are also available:
$ gcloud compute snapshot-settings describe
$ gcloud alpha compute snapshot-settings describe

View file

@ -23,8 +23,10 @@ COMMANDS
(BETA) Update snapshot settings.
NOTES
This command is currently in beta and might change without notice. This
variant is also available:
This command is currently in beta and might change without notice. These
variants are also available:
$ gcloud compute snapshot-settings
$ gcloud alpha compute snapshot-settings

View file

@ -61,8 +61,10 @@ API REFERENCE
can be found at: https://cloud.google.com/compute/
NOTES
This command is currently in beta and might change without notice. This
variant is also available:
This command is currently in beta and might change without notice. These
variants are also available:
$ gcloud compute snapshot-settings update
$ gcloud alpha compute snapshot-settings update

View file

@ -62,8 +62,10 @@ GCLOUD WIDE FLAGS
Run $ gcloud help for details.
NOTES
This command is currently in beta and might change without notice. This
variant is also available:
This command is currently in beta and might change without notice. These
variants are also available:
$ gcloud compute target-instances update
$ gcloud alpha compute target-instances update

View file

@ -60,8 +60,10 @@ GCLOUD WIDE FLAGS
Run $ gcloud help for details.
NOTES
This command is currently in beta and might change without notice. This
variant is also available:
This command is currently in beta and might change without notice. These
variants are also available:
$ gcloud compute target-pools update
$ gcloud alpha compute target-pools update