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

gcloud: Fri Jun 2 10:25:45 UTC 2023

This commit is contained in:
Automated 2023-06-02 10:25:45 +00:00
parent d0919dce4f
commit daa9cea776
199 changed files with 7828 additions and 401 deletions

View file

@ -5,8 +5,8 @@ NAME
SYNOPSIS
gcloud alpha sql export bak INSTANCE URI
--database=DATABASE,[DATABASE,...], -d DATABASE,[DATABASE,...]
[--async] [--stripe_count=STRIPE_COUNT] [--[no-]striped]
[GCLOUD_WIDE_FLAG ...]
[--async] [--bak-type=BAK_TYPE; default="FULL"] [--differential-base]
[--stripe_count=STRIPE_COUNT] [--[no-]striped] [GCLOUD_WIDE_FLAG ...]
DESCRIPTION
(ALPHA) Export data from a Cloud SQL instance to a Google Cloud Storage
@ -39,6 +39,14 @@ OPTIONAL FLAGS
Return immediately, without waiting for the operation in progress to
complete.
--bak-type=BAK_TYPE; default="FULL"
Type of bak file that will be exported, FULL or DIFF. SQL Server only.
BAK_TYPE must be one of: FULL, DIFF.
--differential-base
Whether the bak file export can be used as differential base for future
differential backup. SQL Server only
--stripe_count=STRIPE_COUNT
Specifies the number of stripes to use for SQL Server exports.

View file

@ -3,8 +3,9 @@ NAME
BAK file
SYNOPSIS
gcloud alpha sql import bak INSTANCE URI --database=DATABASE, -d DATABASE
[--async] [--[no-]striped]
gcloud alpha sql import bak INSTANCE [URI] --database=DATABASE, -d DATABASE
[--async] [--bak-type=BAK_TYPE; default="FULL"] [--no-recovery]
[--recovery-only] [--[no-]striped]
[--cert-path=CERT_PATH --pvk-path=PVK_PATH (--prompt-for-pvk-password
| --pvk-password=PVK_PASSWORD)] [GCLOUD_WIDE_FLAG ...]
@ -37,7 +38,7 @@ POSITIONAL ARGUMENTS
INSTANCE
Cloud SQL instance ID.
URI
[URI]
Path to the BAK file file in Google Cloud Storage from which the import
is made. The URI is in the form gs://bucketName/fileName.
@ -50,6 +51,18 @@ OPTIONAL FLAGS
Return immediately, without waiting for the operation in progress to
complete.
--bak-type=BAK_TYPE; default="FULL"
Type of bak file that will be imported, FULL or DIFF. SQL Server only.
BAK_TYPE must be one of: FULL, DIFF.
--no-recovery
Whether or not the SQL Server import is execueted with NORECOVERY
keyword.
--recovery-only
Whether or not the SQL Server import skip download and bring database
online.
--[no-]striped
Whether SQL Server import should be striped. Use --striped to enable
and --no-striped to disable.