1
0
Fork 0
mirror of https://github.com/imjasonh/gcloud-help synced 2026-07-13 00:18:35 +00:00

gcloud: Wed Mar 13 09:56:21 UTC 2024

This commit is contained in:
Automated 2024-03-13 09:56:22 +00:00
parent 7f632e0c5d
commit 75379bf68b
273 changed files with 9390 additions and 532 deletions

View file

@ -3,7 +3,7 @@ NAME
a given instance
SYNOPSIS
gcloud sql backups list --instance=INSTANCE, -i INSTANCE
gcloud sql backups list [--instance=INSTANCE, -i INSTANCE]
[--filter=EXPRESSION] [--limit=LIMIT] [--page-size=PAGE_SIZE]
[--sort-by=[FIELD,...]] [--uri] [GCLOUD_WIDE_FLAG ...]
@ -11,7 +11,7 @@ DESCRIPTION
Lists all backups associated with the project or a given Cloud SQL instance
and configuration in the reverse chronological order of the enqueued time.
REQUIRED FLAGS
FLAGS
--instance=INSTANCE, -i INSTANCE
Cloud SQL instance ID or "-" for all instances.

View file

@ -0,0 +1,48 @@
NAME
gcloud sql instances acquire-ssrs-lease - acquires a SQL Server Reporting
Services lease on a Cloud SQL instance
SYNOPSIS
gcloud sql instances acquire-ssrs-lease INSTANCE
--report-database=REPORT_DATABASE --service-login=SERVICE_LOGIN
--setup-login=SETUP_LOGIN [--duration=DURATION] [GCLOUD_WIDE_FLAG ...]
DESCRIPTION
Acquire a SQL Server Reporting Services lease on a Cloud SQL instance.
EXAMPLES
To acquire a SQL Server Reporting Services lease on an instance:
$ gcloud sql instances acquire-ssrs-lease instance-foo \
--setup-login=setuplogin --service-login=reportuser \
--report-database=ReportServer --duration=4h
POSITIONAL ARGUMENTS
INSTANCE
Cloud SQL instance ID.
REQUIRED FLAGS
--report-database=REPORT_DATABASE
Existing or new report database name in the Cloud SQL for SQL Server
instance that is used for SSRS setup.
--service-login=SERVICE_LOGIN
Existing login in the Cloud SQL for SQL Server instance that is used as
the service login for SSRS setup.
--setup-login=SETUP_LOGIN
Existing login in the Cloud SQL for SQL Server instance that is used as
the setup login for SSRS setup.
OPTIONAL FLAGS
--duration=DURATION
Time duration, in hours, that the lease will be active to allow SSRS
setup. Default lease duration is 5 hours if this flag is not specified.
GCLOUD WIDE FLAGS
These flags are available to all commands: --access-token-file, --account,
--billing-project, --configuration, --flags-file, --flatten, --format,
--help, --impersonate-service-account, --log-http, --project, --quiet,
--trace-token, --user-output-enabled, --verbosity.
Run $ gcloud help for details.

View file

@ -16,6 +16,9 @@ GCLOUD WIDE FLAGS
COMMANDS
COMMAND is one of the following:
acquire-ssrs-lease
Acquires a SQL Server Reporting Services lease on a Cloud SQL instance.
clone
Clones a Cloud SQL instance.
@ -54,6 +57,9 @@ COMMANDS
reencrypt
Reencrypts a Cloud SQL CMEK instance.
release-ssrs-lease
Releases a SQL Server Reporting Services lease on a Cloud SQL instance.
reset-ssl-config
Deletes all client certificates and generates a new server certificate.

View file

@ -0,0 +1,26 @@
NAME
gcloud sql instances release-ssrs-lease - releases a SQL Server Reporting
Services lease on a Cloud SQL instance
SYNOPSIS
gcloud sql instances release-ssrs-lease INSTANCE [GCLOUD_WIDE_FLAG ...]
DESCRIPTION
Release a SQL Server Reporting Services lease on a Cloud SQL instance.
EXAMPLES
To release a SQL Server Reporting Services lease on an instance:
$ gcloud sql instances release-ssrs-lease instance-foo
POSITIONAL ARGUMENTS
INSTANCE
Cloud SQL instance ID.
GCLOUD WIDE FLAGS
These flags are available to all commands: --access-token-file, --account,
--billing-project, --configuration, --flags-file, --flatten, --format,
--help, --impersonate-service-account, --log-http, --project, --quiet,
--trace-token, --user-output-enabled, --verbosity.
Run $ gcloud help for details.