1
0
Fork 0
mirror of https://github.com/imjasonh/gcloud-help synced 2026-07-17 22:36:52 +00:00

gcloud: Thu Jan 18 10:21:20 UTC 2024

This commit is contained in:
Automated 2024-01-18 10:21:20 +00:00
parent 5fec13c692
commit a47e1e835a
156 changed files with 4341 additions and 674 deletions

View file

@ -9,6 +9,7 @@ SYNOPSIS
[--description=DESCRIPTION] [--[no-]force-update-on-repair]
[--initial-delay=INITIAL_DELAY] [--instance-redistribution-type=TYPE]
[--list-managed-instances-results=MODE]
[--resource-manager-tags=[KEY=VALUE,...]]
[--standby-policy-initial-delay=STANDBY_POLICY_INITIAL_DELAY]
[--standby-policy-mode=STANDBY_POLICY_MODE]
[--stateful-disk=[auto-delete=AUTO-DELETE],[device-name=DEVICE-NAME]]
@ -143,6 +144,10 @@ OPTIONAL FLAGS
Pagination is enabled for the group's listManagedInstances API
method. maxResults and pageToken query parameters are respected.
--resource-manager-tags=[KEY=VALUE,...]
Specifies a list of resource manager tags to apply to the managed
instance group.
--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

View file

@ -76,7 +76,7 @@ COMMANDS
(ALPHA) Set managed instance group size.
resume-instances
(ALPHA) Resume instances owned by a managed instance group.
(ALPHA) Resume the suspended instances in a managed instance group.
set-autohealing
(ALPHA) (DEPRECATED) Set autohealing policy for managed instance group.
@ -97,7 +97,7 @@ COMMANDS
(ALPHA) Set target pools of managed instance group.
start-instances
(ALPHA) Start instances owned by a managed instance group.
(ALPHA) Start the stopped instances in a managed instance group.
stop-autoscaling
(ALPHA) Stop autoscaling a managed instance group.

View file

@ -1,6 +1,6 @@
NAME
gcloud alpha compute instance-groups managed resume-instances - resume
instances owned by a managed instance group
gcloud alpha compute instance-groups managed resume-instances - resume the
suspended instances in a managed instance group
SYNOPSIS
gcloud alpha compute instance-groups managed resume-instances NAME
@ -18,6 +18,14 @@ DESCRIPTION
regional groups when the gcloud command-line tool wasn't able to resolve
the zone from the instance name.
EXAMPLES
To resume an instance from a managed instance group in the us-central1-a
zone, run:
$ gcloud alpha compute instance-groups managed resume-instances \
example-managed-instance-group --zone=us-central1-a \
--instances=example-instance
POSITIONAL ARGUMENTS
NAME
Name of the managed instance group to operate on.
@ -63,5 +71,7 @@ NOTES
This command is currently in alpha and might change without notice. If this
command fails with API permission errors despite specifying the correct
project, you might be trying to access an API with an invitation-only early
access allowlist.
access allowlist. This variant is also available:
$ gcloud beta compute instance-groups managed resume-instances

View file

@ -1,6 +1,6 @@
NAME
gcloud alpha compute instance-groups managed start-instances - start
instances owned by a managed instance group
gcloud alpha compute instance-groups managed start-instances - start the
stopped instances in a managed instance group
SYNOPSIS
gcloud alpha compute instance-groups managed start-instances NAME
@ -17,6 +17,14 @@ DESCRIPTION
regional groups when the gcloud command-line tool wasn't able to resolve
the zone from the instance name.
EXAMPLES
To start an instance from a managed instance group in the us-central1-a
zone, run:
$ gcloud alpha compute instance-groups managed start-instances \
example-managed-instance-group --zone=us-central1-a \
--instances=example-instance
POSITIONAL ARGUMENTS
NAME
Name of the managed instance group to operate on.
@ -62,5 +70,7 @@ NOTES
This command is currently in alpha and might change without notice. If this
command fails with API permission errors despite specifying the correct
project, you might be trying to access an API with an invitation-only early
access allowlist.
access allowlist. This variant is also available:
$ gcloud beta compute instance-groups managed start-instances

View file

@ -11,6 +11,14 @@ DESCRIPTION
(ALPHA) gcloud alpha compute instance-groups managed stop-instances stops
one or more instances from a managed instance group
EXAMPLES
To stop an instance from a managed instance group in the us-central1-a
zone, run:
$ gcloud alpha compute instance-groups managed stop-instances \
example-managed-instance-group --zone=us-central1-a \
--instances=example-instance
POSITIONAL ARGUMENTS
NAME
Name of the managed instance group to operate on.
@ -60,5 +68,7 @@ NOTES
This command is currently in alpha and might change without notice. If this
command fails with API permission errors despite specifying the correct
project, you might be trying to access an API with an invitation-only early
access allowlist.
access allowlist. This variant is also available:
$ gcloud beta compute instance-groups managed stop-instances

View file

@ -18,6 +18,14 @@ DESCRIPTION
regional groups when the gcloud command-line tool wasn't able to resolve
the zone from the instance name.
EXAMPLES
To suspend an instance from a managed instance group in the us-central1-a
zone, run:
$ gcloud alpha compute instance-groups managed suspend-instances \
example-managed-instance-group --zone=us-central1-a \
--instances=example-instance
POSITIONAL ARGUMENTS
NAME
Name of the managed instance group to operate on.
@ -67,5 +75,7 @@ NOTES
This command is currently in alpha and might change without notice. If this
command fails with API permission errors despite specifying the correct
project, you might be trying to access an API with an invitation-only early
access allowlist.
access allowlist. This variant is also available:
$ gcloud beta compute instance-groups managed suspend-instances