mirror of
https://github.com/imjasonh/gcloud-help
synced 2026-07-08 10:35:03 +00:00
gcloud: Wed Mar 23 08:27:29 UTC 2022
This commit is contained in:
parent
971306823a
commit
cd34e797ae
109 changed files with 1563 additions and 627 deletions
|
|
@ -7,6 +7,9 @@ SYNOPSIS
|
|||
--node-count=NODE_COUNT --node-cpu=NODE_CPU --node-memory=NODE_MEMORY
|
||||
[--async] [--authorized-network=AUTHORIZED_NETWORK]
|
||||
[--display-name=DISPLAY_NAME] [--labels=KEY=VALUE]
|
||||
[--maintenance-window-day=MAINTENANCE_WINDOW_DAY]
|
||||
[--maintenance-window-duration=MAINTENANCE_WINDOW_DURATION]
|
||||
[--maintenance-window-start-time=MAINTENANCE_WINDOW_START_TIME]
|
||||
[--memcached-version=MEMCACHED_VERSION] [--parameters=KEY=VALUE]
|
||||
[--zones=[ZONES,...]] [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
|
|
@ -87,6 +90,18 @@ OPTIONAL FLAGS
|
|||
--labels=KEY=VALUE
|
||||
List of label KEY=VALUE pairs to add.
|
||||
|
||||
--maintenance-window-day=MAINTENANCE_WINDOW_DAY
|
||||
The day of week when the window starts, e.g. sunday.
|
||||
MAINTENANCE_WINDOW_DAY must be one of: friday, monday, saturday,
|
||||
sunday, thursday, tuesday, wednesday.
|
||||
|
||||
--maintenance-window-duration=MAINTENANCE_WINDOW_DURATION
|
||||
Duration of the maintenance window in integer hours, e.g 4.
|
||||
|
||||
--maintenance-window-start-time=MAINTENANCE_WINDOW_START_TIME
|
||||
Hour of day (0 to 23) for the start of maintenance window, in UTC time
|
||||
zone.
|
||||
|
||||
--memcached-version=MEMCACHED_VERSION
|
||||
Optional major version of Memcached software to use with the instance.
|
||||
If not provided, default of "1.5" will be used. MEMCACHED_VERSION must
|
||||
|
|
|
|||
|
|
@ -86,5 +86,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 memcache instances reschedule-maintenance
|
||||
|
||||
|
|
|
|||
|
|
@ -5,8 +5,11 @@ NAME
|
|||
SYNOPSIS
|
||||
gcloud alpha memcache instances update (INSTANCE : --region=REGION)
|
||||
(--parameters=KEY=VALUE | --display-name=DISPLAY_NAME
|
||||
--labels=KEY=VALUE --node-count=NODE_COUNT) [--async]
|
||||
[GCLOUD_WIDE_FLAG ...]
|
||||
--labels=KEY=VALUE --node-count=NODE_COUNT --maintenance-window-any
|
||||
| --maintenance-window-day=MAINTENANCE_WINDOW_DAY
|
||||
--maintenance-window-duration=MAINTENANCE_WINDOW_DURATION
|
||||
--maintenance-window-start-time=MAINTENANCE_WINDOW_START_TIME)
|
||||
[--async] [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(ALPHA) Update a Memcached instance with one or more of the following
|
||||
|
|
@ -144,6 +147,23 @@ REQUIRED FLAGS
|
|||
Number of memcache nodes in this instance. Valid values range from 1
|
||||
to 20.
|
||||
|
||||
At most one of these can be specified:
|
||||
|
||||
--maintenance-window-any
|
||||
Removes the user-specified maintenance window.
|
||||
|
||||
--maintenance-window-day=MAINTENANCE_WINDOW_DAY
|
||||
The day of week when the window starts, e.g. 'sunday'.
|
||||
MAINTENANCE_WINDOW_DAY must be one of: friday, monday, saturday,
|
||||
sunday, thursday, tuesday, wednesday.
|
||||
|
||||
--maintenance-window-duration=MAINTENANCE_WINDOW_DURATION
|
||||
Duration of the maintenance window in integer hours, e.g '4'.
|
||||
|
||||
--maintenance-window-start-time=MAINTENANCE_WINDOW_START_TIME
|
||||
Hour of day (0 to 23) for the start of maintenance window, in UTC
|
||||
time zone.
|
||||
|
||||
OPTIONAL FLAGS
|
||||
--async
|
||||
Return immediately, without waiting for the operation in progress to
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue