1
0
Fork 0
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:
Automated 2022-03-23 08:27:29 +00:00
parent 971306823a
commit cd34e797ae
109 changed files with 1563 additions and 627 deletions

View file

@ -107,7 +107,12 @@ FLAGS
The database engine type and versions. If left unspecified, no changes
occur. See the list of database versions at
https://cloud.google.com/sql/docs/mysql/admin-api/rest/v1beta4/SqlDatabaseVersion.
DATABASE_VERSION must be one of: MYSQL_8_0_18, MYSQL_8_0_26.
DATABASE_VERSION must be one of: MYSQL_5_6, MYSQL_5_7, MYSQL_8_0,
POSTGRES_9_6, POSTGRES_10, POSTGRES_11, POSTGRES_12, POSTGRES_13,
POSTGRES_14, SQLSERVER_2017_EXPRESS, SQLSERVER_2017_WEB,
SQLSERVER_2017_STANDARD, SQLSERVER_2017_ENTERPRISE,
SQLSERVER_2019_EXPRESS, SQLSERVER_2019_WEB, SQLSERVER_2019_STANDARD,
SQLSERVER_2019_ENTERPRISE, MYSQL_8_0_18, MYSQL_8_0_26.
--deny-maintenance-period-end-date=DENY_MAINTENANCE_PERIOD_END_DATE
Date when the deny maintenance period ends, that is 2021-01-10.

View file

@ -10,6 +10,22 @@ SYNOPSIS
DESCRIPTION
(BETA) Lists all instance operations for the given Cloud SQL instance.
EXAMPLES
To list operations for instances with ID "prod-instance" , run:
$ gcloud beta sql operations list --instance=prod-instance
To list operations for instances with ID "prod-instance" that have 10
results, run:
$ gcloud beta sql operations list --instance=prod-instance --limit=10
To list operations for instances with ID "prod-instance" that have 10
results in a page, run:
$ gcloud beta sql operations list --instance=prod-instance \
--page-size=10
REQUIRED FLAGS
--instance=INSTANCE, -i INSTANCE
Cloud SQL instance ID.