From 20e157dae77f1014d24ed76609a88a1307b5e42a Mon Sep 17 00:00:00 2001 From: Yoshi Automation Date: Wed, 24 May 2023 18:27:15 +0000 Subject: [PATCH] feat(sqladmin): update the api #### sqladmin:v1 The following keys were added: - schemas.CloneContext.properties.preferredZone.type (Total Keys: 1) - schemas.ExportContext.properties.bakExportOptions.properties.bakType.type (Total Keys: 1) - schemas.ExportContext.properties.bakExportOptions.properties.copyOnly.type (Total Keys: 1) - schemas.ExportContext.properties.bakExportOptions.properties.differentialBase.type (Total Keys: 1) - schemas.ImportContext.properties.bakImportOptions.properties.bakType.type (Total Keys: 1) - schemas.ImportContext.properties.bakImportOptions.properties.noRecovery.type (Total Keys: 1) - schemas.ImportContext.properties.bakImportOptions.properties.recoveryOnly.type (Total Keys: 1) - schemas.SqlInstancesGetDiskShrinkConfigResponse.properties.message.type (Total Keys: 1) #### sqladmin:v1beta4 The following keys were added: - schemas.CloneContext.properties.preferredZone.type (Total Keys: 1) - schemas.ExportContext.properties.bakExportOptions.properties.bakType.type (Total Keys: 1) - schemas.ExportContext.properties.bakExportOptions.properties.copyOnly.type (Total Keys: 1) - schemas.ExportContext.properties.bakExportOptions.properties.differentialBase.type (Total Keys: 1) - schemas.ImportContext.properties.bakImportOptions.properties.bakType.type (Total Keys: 1) - schemas.ImportContext.properties.bakImportOptions.properties.noRecovery.type (Total Keys: 1) - schemas.ImportContext.properties.bakImportOptions.properties.recoveryOnly.type (Total Keys: 1) - schemas.SqlInstancesGetDiskShrinkConfigResponse.properties.message.type (Total Keys: 1) --- docs/dyn/sqladmin_v1.backupRuns.html | 12 ++ docs/dyn/sqladmin_v1.databases.html | 28 ++++- docs/dyn/sqladmin_v1.instances.html | 115 ++++++++++++++++++ docs/dyn/sqladmin_v1.operations.html | 12 ++ docs/dyn/sqladmin_v1.projects.instances.html | 25 ++++ docs/dyn/sqladmin_v1.sslCerts.html | 12 ++ docs/dyn/sqladmin_v1.users.html | 18 +++ docs/dyn/sqladmin_v1beta4.backupRuns.html | 12 ++ docs/dyn/sqladmin_v1beta4.databases.html | 28 ++++- docs/dyn/sqladmin_v1beta4.instances.html | 115 ++++++++++++++++++ docs/dyn/sqladmin_v1beta4.operations.html | 12 ++ .../sqladmin_v1beta4.projects.instances.html | 25 ++++ docs/dyn/sqladmin_v1beta4.sslCerts.html | 12 ++ docs/dyn/sqladmin_v1beta4.users.html | 18 +++ .../documents/sqladmin.v1.json | 76 ++++++++++-- .../documents/sqladmin.v1beta4.json | 72 ++++++++++- 16 files changed, 574 insertions(+), 18 deletions(-) diff --git a/docs/dyn/sqladmin_v1.backupRuns.html b/docs/dyn/sqladmin_v1.backupRuns.html index 580c9c6f088..14a3a619642 100644 --- a/docs/dyn/sqladmin_v1.backupRuns.html +++ b/docs/dyn/sqladmin_v1.backupRuns.html @@ -132,6 +132,9 @@

Method Details

}, "exportContext": { # Database instance export context. # The context for export operation, if applicable. "bakExportOptions": { # Options for exporting BAK files (SQL Server-only) + "bakType": "A String", # Type of this bak file will be export, FULL or DIFF, SQL Server only + "copyOnly": True or False, # Whether or not the export will be exeucted with COPY_ONLY, SQL Server only deprecated as the behavior should default to copy_only = true use differential_base instead + "differentialBase": True or False, # Whether or not the backup can be use as differential base only non copy only backup can be served as differential base "stripeCount": 42, # Option for specifying how many stripes to use for the export. If blank, and the value of the striped field is true, the number of stripes is automatically chosen. "striped": True or False, # Whether or not the export should be striped. }, @@ -161,11 +164,14 @@

Method Details

}, "importContext": { # Database instance import context. # The context for import operation, if applicable. "bakImportOptions": { # Import parameters specific to SQL Server .BAK files + "bakType": "A String", # Type of the bak content, FULL or DIFF "encryptionOptions": { "certPath": "A String", # Path to the Certificate (.cer) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. "pvkPassword": "A String", # Password that encrypts the private key "pvkPath": "A String", # Path to the Certificate Private Key (.pvk) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. }, + "noRecovery": True or False, # Whether or not the backup importing will restore database with NORECOVERY option Applies only to Cloud SQL for SQL Server. + "recoveryOnly": True or False, # Whether or not the backup importing request will just bring database online without downloading Bak content only one of "no_recovery" and "recovery_only" can be true otherwise error will return. Applies only to Cloud SQL for SQL Server. "striped": True or False, # Whether or not the backup set being restored is striped. Applies only to Cloud SQL for SQL Server. }, "csvImportOptions": { # Options for importing data as CSV. @@ -311,6 +317,9 @@

Method Details

}, "exportContext": { # Database instance export context. # The context for export operation, if applicable. "bakExportOptions": { # Options for exporting BAK files (SQL Server-only) + "bakType": "A String", # Type of this bak file will be export, FULL or DIFF, SQL Server only + "copyOnly": True or False, # Whether or not the export will be exeucted with COPY_ONLY, SQL Server only deprecated as the behavior should default to copy_only = true use differential_base instead + "differentialBase": True or False, # Whether or not the backup can be use as differential base only non copy only backup can be served as differential base "stripeCount": 42, # Option for specifying how many stripes to use for the export. If blank, and the value of the striped field is true, the number of stripes is automatically chosen. "striped": True or False, # Whether or not the export should be striped. }, @@ -340,11 +349,14 @@

Method Details

}, "importContext": { # Database instance import context. # The context for import operation, if applicable. "bakImportOptions": { # Import parameters specific to SQL Server .BAK files + "bakType": "A String", # Type of the bak content, FULL or DIFF "encryptionOptions": { "certPath": "A String", # Path to the Certificate (.cer) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. "pvkPassword": "A String", # Password that encrypts the private key "pvkPath": "A String", # Path to the Certificate Private Key (.pvk) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. }, + "noRecovery": True or False, # Whether or not the backup importing will restore database with NORECOVERY option Applies only to Cloud SQL for SQL Server. + "recoveryOnly": True or False, # Whether or not the backup importing request will just bring database online without downloading Bak content only one of "no_recovery" and "recovery_only" can be true otherwise error will return. Applies only to Cloud SQL for SQL Server. "striped": True or False, # Whether or not the backup set being restored is striped. Applies only to Cloud SQL for SQL Server. }, "csvImportOptions": { # Options for importing data as CSV. diff --git a/docs/dyn/sqladmin_v1.databases.html b/docs/dyn/sqladmin_v1.databases.html index 89187a4bce9..5688c8b2fc0 100644 --- a/docs/dyn/sqladmin_v1.databases.html +++ b/docs/dyn/sqladmin_v1.databases.html @@ -85,7 +85,7 @@

Instance Methods

Retrieves a resource containing information about a database inside a Cloud SQL instance.

insert(project, instance, body=None, x__xgafv=None)

-

Inserts a resource containing information about a database inside a Cloud SQL instance.

+

Inserts a resource containing information about a database inside a Cloud SQL instance. **Note:** You can't modify the default character set and collation.

list(project, instance, x__xgafv=None)

Lists databases in the specified Cloud SQL instance.

@@ -135,6 +135,9 @@

Method Details

}, "exportContext": { # Database instance export context. # The context for export operation, if applicable. "bakExportOptions": { # Options for exporting BAK files (SQL Server-only) + "bakType": "A String", # Type of this bak file will be export, FULL or DIFF, SQL Server only + "copyOnly": True or False, # Whether or not the export will be exeucted with COPY_ONLY, SQL Server only deprecated as the behavior should default to copy_only = true use differential_base instead + "differentialBase": True or False, # Whether or not the backup can be use as differential base only non copy only backup can be served as differential base "stripeCount": 42, # Option for specifying how many stripes to use for the export. If blank, and the value of the striped field is true, the number of stripes is automatically chosen. "striped": True or False, # Whether or not the export should be striped. }, @@ -164,11 +167,14 @@

Method Details

}, "importContext": { # Database instance import context. # The context for import operation, if applicable. "bakImportOptions": { # Import parameters specific to SQL Server .BAK files + "bakType": "A String", # Type of the bak content, FULL or DIFF "encryptionOptions": { "certPath": "A String", # Path to the Certificate (.cer) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. "pvkPassword": "A String", # Password that encrypts the private key "pvkPath": "A String", # Path to the Certificate Private Key (.pvk) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. }, + "noRecovery": True or False, # Whether or not the backup importing will restore database with NORECOVERY option Applies only to Cloud SQL for SQL Server. + "recoveryOnly": True or False, # Whether or not the backup importing request will just bring database online without downloading Bak content only one of "no_recovery" and "recovery_only" can be true otherwise error will return. Applies only to Cloud SQL for SQL Server. "striped": True or False, # Whether or not the backup set being restored is striped. Applies only to Cloud SQL for SQL Server. }, "csvImportOptions": { # Options for importing data as CSV. @@ -235,7 +241,7 @@

Method Details

insert(project, instance, body=None, x__xgafv=None) -
Inserts a resource containing information about a database inside a Cloud SQL instance.
+  
Inserts a resource containing information about a database inside a Cloud SQL instance. **Note:** You can't modify the default character set and collation.
 
 Args:
   project: string, Project ID of the project that contains the instance. (required)
@@ -284,6 +290,9 @@ 

Method Details

}, "exportContext": { # Database instance export context. # The context for export operation, if applicable. "bakExportOptions": { # Options for exporting BAK files (SQL Server-only) + "bakType": "A String", # Type of this bak file will be export, FULL or DIFF, SQL Server only + "copyOnly": True or False, # Whether or not the export will be exeucted with COPY_ONLY, SQL Server only deprecated as the behavior should default to copy_only = true use differential_base instead + "differentialBase": True or False, # Whether or not the backup can be use as differential base only non copy only backup can be served as differential base "stripeCount": 42, # Option for specifying how many stripes to use for the export. If blank, and the value of the striped field is true, the number of stripes is automatically chosen. "striped": True or False, # Whether or not the export should be striped. }, @@ -313,11 +322,14 @@

Method Details

}, "importContext": { # Database instance import context. # The context for import operation, if applicable. "bakImportOptions": { # Import parameters specific to SQL Server .BAK files + "bakType": "A String", # Type of the bak content, FULL or DIFF "encryptionOptions": { "certPath": "A String", # Path to the Certificate (.cer) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. "pvkPassword": "A String", # Password that encrypts the private key "pvkPath": "A String", # Path to the Certificate Private Key (.pvk) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. }, + "noRecovery": True or False, # Whether or not the backup importing will restore database with NORECOVERY option Applies only to Cloud SQL for SQL Server. + "recoveryOnly": True or False, # Whether or not the backup importing request will just bring database online without downloading Bak content only one of "no_recovery" and "recovery_only" can be true otherwise error will return. Applies only to Cloud SQL for SQL Server. "striped": True or False, # Whether or not the backup set being restored is striped. Applies only to Cloud SQL for SQL Server. }, "csvImportOptions": { # Options for importing data as CSV. @@ -438,6 +450,9 @@

Method Details

}, "exportContext": { # Database instance export context. # The context for export operation, if applicable. "bakExportOptions": { # Options for exporting BAK files (SQL Server-only) + "bakType": "A String", # Type of this bak file will be export, FULL or DIFF, SQL Server only + "copyOnly": True or False, # Whether or not the export will be exeucted with COPY_ONLY, SQL Server only deprecated as the behavior should default to copy_only = true use differential_base instead + "differentialBase": True or False, # Whether or not the backup can be use as differential base only non copy only backup can be served as differential base "stripeCount": 42, # Option for specifying how many stripes to use for the export. If blank, and the value of the striped field is true, the number of stripes is automatically chosen. "striped": True or False, # Whether or not the export should be striped. }, @@ -467,11 +482,14 @@

Method Details

}, "importContext": { # Database instance import context. # The context for import operation, if applicable. "bakImportOptions": { # Import parameters specific to SQL Server .BAK files + "bakType": "A String", # Type of the bak content, FULL or DIFF "encryptionOptions": { "certPath": "A String", # Path to the Certificate (.cer) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. "pvkPassword": "A String", # Password that encrypts the private key "pvkPath": "A String", # Path to the Certificate Private Key (.pvk) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. }, + "noRecovery": True or False, # Whether or not the backup importing will restore database with NORECOVERY option Applies only to Cloud SQL for SQL Server. + "recoveryOnly": True or False, # Whether or not the backup importing request will just bring database online without downloading Bak content only one of "no_recovery" and "recovery_only" can be true otherwise error will return. Applies only to Cloud SQL for SQL Server. "striped": True or False, # Whether or not the backup set being restored is striped. Applies only to Cloud SQL for SQL Server. }, "csvImportOptions": { # Options for importing data as CSV. @@ -556,6 +574,9 @@

Method Details

}, "exportContext": { # Database instance export context. # The context for export operation, if applicable. "bakExportOptions": { # Options for exporting BAK files (SQL Server-only) + "bakType": "A String", # Type of this bak file will be export, FULL or DIFF, SQL Server only + "copyOnly": True or False, # Whether or not the export will be exeucted with COPY_ONLY, SQL Server only deprecated as the behavior should default to copy_only = true use differential_base instead + "differentialBase": True or False, # Whether or not the backup can be use as differential base only non copy only backup can be served as differential base "stripeCount": 42, # Option for specifying how many stripes to use for the export. If blank, and the value of the striped field is true, the number of stripes is automatically chosen. "striped": True or False, # Whether or not the export should be striped. }, @@ -585,11 +606,14 @@

Method Details

}, "importContext": { # Database instance import context. # The context for import operation, if applicable. "bakImportOptions": { # Import parameters specific to SQL Server .BAK files + "bakType": "A String", # Type of the bak content, FULL or DIFF "encryptionOptions": { "certPath": "A String", # Path to the Certificate (.cer) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. "pvkPassword": "A String", # Password that encrypts the private key "pvkPath": "A String", # Path to the Certificate Private Key (.pvk) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. }, + "noRecovery": True or False, # Whether or not the backup importing will restore database with NORECOVERY option Applies only to Cloud SQL for SQL Server. + "recoveryOnly": True or False, # Whether or not the backup importing request will just bring database online without downloading Bak content only one of "no_recovery" and "recovery_only" can be true otherwise error will return. Applies only to Cloud SQL for SQL Server. "striped": True or False, # Whether or not the backup set being restored is striped. Applies only to Cloud SQL for SQL Server. }, "csvImportOptions": { # Options for importing data as CSV. diff --git a/docs/dyn/sqladmin_v1.instances.html b/docs/dyn/sqladmin_v1.instances.html index 31835dd3ee6..960b40eacd2 100644 --- a/docs/dyn/sqladmin_v1.instances.html +++ b/docs/dyn/sqladmin_v1.instances.html @@ -177,6 +177,9 @@

Method Details

}, "exportContext": { # Database instance export context. # The context for export operation, if applicable. "bakExportOptions": { # Options for exporting BAK files (SQL Server-only) + "bakType": "A String", # Type of this bak file will be export, FULL or DIFF, SQL Server only + "copyOnly": True or False, # Whether or not the export will be exeucted with COPY_ONLY, SQL Server only deprecated as the behavior should default to copy_only = true use differential_base instead + "differentialBase": True or False, # Whether or not the backup can be use as differential base only non copy only backup can be served as differential base "stripeCount": 42, # Option for specifying how many stripes to use for the export. If blank, and the value of the striped field is true, the number of stripes is automatically chosen. "striped": True or False, # Whether or not the export should be striped. }, @@ -206,11 +209,14 @@

Method Details

}, "importContext": { # Database instance import context. # The context for import operation, if applicable. "bakImportOptions": { # Import parameters specific to SQL Server .BAK files + "bakType": "A String", # Type of the bak content, FULL or DIFF "encryptionOptions": { "certPath": "A String", # Path to the Certificate (.cer) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. "pvkPassword": "A String", # Password that encrypts the private key "pvkPath": "A String", # Path to the Certificate Private Key (.pvk) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. }, + "noRecovery": True or False, # Whether or not the backup importing will restore database with NORECOVERY option Applies only to Cloud SQL for SQL Server. + "recoveryOnly": True or False, # Whether or not the backup importing request will just bring database online without downloading Bak content only one of "no_recovery" and "recovery_only" can be true otherwise error will return. Applies only to Cloud SQL for SQL Server. "striped": True or False, # Whether or not the backup set being restored is striped. Applies only to Cloud SQL for SQL Server. }, "csvImportOptions": { # Options for importing data as CSV. @@ -268,6 +274,7 @@

Method Details

"kind": "A String", # This is always `sql#cloneContext`. "pitrTimestampMs": "A String", # Reserved for future use. "pointInTime": "A String", # Timestamp, if specified, identifies the time to which the source instance is cloned. + "preferredZone": "A String", # (Point-in-time recovery for PostgreSQL only) Clone to an instance in the specified zone. If no zone is specified, clone to the same zone as the source instance. }, } @@ -297,6 +304,9 @@

Method Details

}, "exportContext": { # Database instance export context. # The context for export operation, if applicable. "bakExportOptions": { # Options for exporting BAK files (SQL Server-only) + "bakType": "A String", # Type of this bak file will be export, FULL or DIFF, SQL Server only + "copyOnly": True or False, # Whether or not the export will be exeucted with COPY_ONLY, SQL Server only deprecated as the behavior should default to copy_only = true use differential_base instead + "differentialBase": True or False, # Whether or not the backup can be use as differential base only non copy only backup can be served as differential base "stripeCount": 42, # Option for specifying how many stripes to use for the export. If blank, and the value of the striped field is true, the number of stripes is automatically chosen. "striped": True or False, # Whether or not the export should be striped. }, @@ -326,11 +336,14 @@

Method Details

}, "importContext": { # Database instance import context. # The context for import operation, if applicable. "bakImportOptions": { # Import parameters specific to SQL Server .BAK files + "bakType": "A String", # Type of the bak content, FULL or DIFF "encryptionOptions": { "certPath": "A String", # Path to the Certificate (.cer) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. "pvkPassword": "A String", # Password that encrypts the private key "pvkPath": "A String", # Path to the Certificate Private Key (.pvk) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. }, + "noRecovery": True or False, # Whether or not the backup importing will restore database with NORECOVERY option Applies only to Cloud SQL for SQL Server. + "recoveryOnly": True or False, # Whether or not the backup importing request will just bring database online without downloading Bak content only one of "no_recovery" and "recovery_only" can be true otherwise error will return. Applies only to Cloud SQL for SQL Server. "striped": True or False, # Whether or not the backup set being restored is striped. Applies only to Cloud SQL for SQL Server. }, "csvImportOptions": { # Options for importing data as CSV. @@ -401,6 +414,9 @@

Method Details

}, "exportContext": { # Database instance export context. # The context for export operation, if applicable. "bakExportOptions": { # Options for exporting BAK files (SQL Server-only) + "bakType": "A String", # Type of this bak file will be export, FULL or DIFF, SQL Server only + "copyOnly": True or False, # Whether or not the export will be exeucted with COPY_ONLY, SQL Server only deprecated as the behavior should default to copy_only = true use differential_base instead + "differentialBase": True or False, # Whether or not the backup can be use as differential base only non copy only backup can be served as differential base "stripeCount": 42, # Option for specifying how many stripes to use for the export. If blank, and the value of the striped field is true, the number of stripes is automatically chosen. "striped": True or False, # Whether or not the export should be striped. }, @@ -430,11 +446,14 @@

Method Details

}, "importContext": { # Database instance import context. # The context for import operation, if applicable. "bakImportOptions": { # Import parameters specific to SQL Server .BAK files + "bakType": "A String", # Type of the bak content, FULL or DIFF "encryptionOptions": { "certPath": "A String", # Path to the Certificate (.cer) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. "pvkPassword": "A String", # Password that encrypts the private key "pvkPath": "A String", # Path to the Certificate Private Key (.pvk) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. }, + "noRecovery": True or False, # Whether or not the backup importing will restore database with NORECOVERY option Applies only to Cloud SQL for SQL Server. + "recoveryOnly": True or False, # Whether or not the backup importing request will just bring database online without downloading Bak content only one of "no_recovery" and "recovery_only" can be true otherwise error will return. Applies only to Cloud SQL for SQL Server. "striped": True or False, # Whether or not the backup set being restored is striped. Applies only to Cloud SQL for SQL Server. }, "csvImportOptions": { # Options for importing data as CSV. @@ -523,6 +542,9 @@

Method Details

}, "exportContext": { # Database instance export context. # The context for export operation, if applicable. "bakExportOptions": { # Options for exporting BAK files (SQL Server-only) + "bakType": "A String", # Type of this bak file will be export, FULL or DIFF, SQL Server only + "copyOnly": True or False, # Whether or not the export will be exeucted with COPY_ONLY, SQL Server only deprecated as the behavior should default to copy_only = true use differential_base instead + "differentialBase": True or False, # Whether or not the backup can be use as differential base only non copy only backup can be served as differential base "stripeCount": 42, # Option for specifying how many stripes to use for the export. If blank, and the value of the striped field is true, the number of stripes is automatically chosen. "striped": True or False, # Whether or not the export should be striped. }, @@ -552,11 +574,14 @@

Method Details

}, "importContext": { # Database instance import context. # The context for import operation, if applicable. "bakImportOptions": { # Import parameters specific to SQL Server .BAK files + "bakType": "A String", # Type of the bak content, FULL or DIFF "encryptionOptions": { "certPath": "A String", # Path to the Certificate (.cer) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. "pvkPassword": "A String", # Password that encrypts the private key "pvkPath": "A String", # Path to the Certificate Private Key (.pvk) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. }, + "noRecovery": True or False, # Whether or not the backup importing will restore database with NORECOVERY option Applies only to Cloud SQL for SQL Server. + "recoveryOnly": True or False, # Whether or not the backup importing request will just bring database online without downloading Bak content only one of "no_recovery" and "recovery_only" can be true otherwise error will return. Applies only to Cloud SQL for SQL Server. "striped": True or False, # Whether or not the backup set being restored is striped. Applies only to Cloud SQL for SQL Server. }, "csvImportOptions": { # Options for importing data as CSV. @@ -602,6 +627,9 @@

Method Details

{ # Database instance export request. "exportContext": { # Database instance export context. # Contains details about the export operation. "bakExportOptions": { # Options for exporting BAK files (SQL Server-only) + "bakType": "A String", # Type of this bak file will be export, FULL or DIFF, SQL Server only + "copyOnly": True or False, # Whether or not the export will be exeucted with COPY_ONLY, SQL Server only deprecated as the behavior should default to copy_only = true use differential_base instead + "differentialBase": True or False, # Whether or not the backup can be use as differential base only non copy only backup can be served as differential base "stripeCount": 42, # Option for specifying how many stripes to use for the export. If blank, and the value of the striped field is true, the number of stripes is automatically chosen. "striped": True or False, # Whether or not the export should be striped. }, @@ -657,6 +685,9 @@

Method Details

}, "exportContext": { # Database instance export context. # The context for export operation, if applicable. "bakExportOptions": { # Options for exporting BAK files (SQL Server-only) + "bakType": "A String", # Type of this bak file will be export, FULL or DIFF, SQL Server only + "copyOnly": True or False, # Whether or not the export will be exeucted with COPY_ONLY, SQL Server only deprecated as the behavior should default to copy_only = true use differential_base instead + "differentialBase": True or False, # Whether or not the backup can be use as differential base only non copy only backup can be served as differential base "stripeCount": 42, # Option for specifying how many stripes to use for the export. If blank, and the value of the striped field is true, the number of stripes is automatically chosen. "striped": True or False, # Whether or not the export should be striped. }, @@ -686,11 +717,14 @@

Method Details

}, "importContext": { # Database instance import context. # The context for import operation, if applicable. "bakImportOptions": { # Import parameters specific to SQL Server .BAK files + "bakType": "A String", # Type of the bak content, FULL or DIFF "encryptionOptions": { "certPath": "A String", # Path to the Certificate (.cer) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. "pvkPassword": "A String", # Password that encrypts the private key "pvkPath": "A String", # Path to the Certificate Private Key (.pvk) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. }, + "noRecovery": True or False, # Whether or not the backup importing will restore database with NORECOVERY option Applies only to Cloud SQL for SQL Server. + "recoveryOnly": True or False, # Whether or not the backup importing request will just bring database online without downloading Bak content only one of "no_recovery" and "recovery_only" can be true otherwise error will return. Applies only to Cloud SQL for SQL Server. "striped": True or False, # Whether or not the backup set being restored is striped. Applies only to Cloud SQL for SQL Server. }, "csvImportOptions": { # Options for importing data as CSV. @@ -766,6 +800,9 @@

Method Details

}, "exportContext": { # Database instance export context. # The context for export operation, if applicable. "bakExportOptions": { # Options for exporting BAK files (SQL Server-only) + "bakType": "A String", # Type of this bak file will be export, FULL or DIFF, SQL Server only + "copyOnly": True or False, # Whether or not the export will be exeucted with COPY_ONLY, SQL Server only deprecated as the behavior should default to copy_only = true use differential_base instead + "differentialBase": True or False, # Whether or not the backup can be use as differential base only non copy only backup can be served as differential base "stripeCount": 42, # Option for specifying how many stripes to use for the export. If blank, and the value of the striped field is true, the number of stripes is automatically chosen. "striped": True or False, # Whether or not the export should be striped. }, @@ -795,11 +832,14 @@

Method Details

}, "importContext": { # Database instance import context. # The context for import operation, if applicable. "bakImportOptions": { # Import parameters specific to SQL Server .BAK files + "bakType": "A String", # Type of the bak content, FULL or DIFF "encryptionOptions": { "certPath": "A String", # Path to the Certificate (.cer) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. "pvkPassword": "A String", # Password that encrypts the private key "pvkPath": "A String", # Path to the Certificate Private Key (.pvk) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. }, + "noRecovery": True or False, # Whether or not the backup importing will restore database with NORECOVERY option Applies only to Cloud SQL for SQL Server. + "recoveryOnly": True or False, # Whether or not the backup importing request will just bring database online without downloading Bak content only one of "no_recovery" and "recovery_only" can be true otherwise error will return. Applies only to Cloud SQL for SQL Server. "striped": True or False, # Whether or not the backup set being restored is striped. Applies only to Cloud SQL for SQL Server. }, "csvImportOptions": { # Options for importing data as CSV. @@ -1075,11 +1115,14 @@

Method Details

{ # Database instance import request. "importContext": { # Database instance import context. # Contains details about the import operation. "bakImportOptions": { # Import parameters specific to SQL Server .BAK files + "bakType": "A String", # Type of the bak content, FULL or DIFF "encryptionOptions": { "certPath": "A String", # Path to the Certificate (.cer) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. "pvkPassword": "A String", # Password that encrypts the private key "pvkPath": "A String", # Path to the Certificate Private Key (.pvk) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. }, + "noRecovery": True or False, # Whether or not the backup importing will restore database with NORECOVERY option Applies only to Cloud SQL for SQL Server. + "recoveryOnly": True or False, # Whether or not the backup importing request will just bring database online without downloading Bak content only one of "no_recovery" and "recovery_only" can be true otherwise error will return. Applies only to Cloud SQL for SQL Server. "striped": True or False, # Whether or not the backup set being restored is striped. Applies only to Cloud SQL for SQL Server. }, "csvImportOptions": { # Options for importing data as CSV. @@ -1126,6 +1169,9 @@

Method Details

}, "exportContext": { # Database instance export context. # The context for export operation, if applicable. "bakExportOptions": { # Options for exporting BAK files (SQL Server-only) + "bakType": "A String", # Type of this bak file will be export, FULL or DIFF, SQL Server only + "copyOnly": True or False, # Whether or not the export will be exeucted with COPY_ONLY, SQL Server only deprecated as the behavior should default to copy_only = true use differential_base instead + "differentialBase": True or False, # Whether or not the backup can be use as differential base only non copy only backup can be served as differential base "stripeCount": 42, # Option for specifying how many stripes to use for the export. If blank, and the value of the striped field is true, the number of stripes is automatically chosen. "striped": True or False, # Whether or not the export should be striped. }, @@ -1155,11 +1201,14 @@

Method Details

}, "importContext": { # Database instance import context. # The context for import operation, if applicable. "bakImportOptions": { # Import parameters specific to SQL Server .BAK files + "bakType": "A String", # Type of the bak content, FULL or DIFF "encryptionOptions": { "certPath": "A String", # Path to the Certificate (.cer) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. "pvkPassword": "A String", # Password that encrypts the private key "pvkPath": "A String", # Path to the Certificate Private Key (.pvk) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. }, + "noRecovery": True or False, # Whether or not the backup importing will restore database with NORECOVERY option Applies only to Cloud SQL for SQL Server. + "recoveryOnly": True or False, # Whether or not the backup importing request will just bring database online without downloading Bak content only one of "no_recovery" and "recovery_only" can be true otherwise error will return. Applies only to Cloud SQL for SQL Server. "striped": True or False, # Whether or not the backup set being restored is striped. Applies only to Cloud SQL for SQL Server. }, "csvImportOptions": { # Options for importing data as CSV. @@ -1441,6 +1490,9 @@

Method Details

}, "exportContext": { # Database instance export context. # The context for export operation, if applicable. "bakExportOptions": { # Options for exporting BAK files (SQL Server-only) + "bakType": "A String", # Type of this bak file will be export, FULL or DIFF, SQL Server only + "copyOnly": True or False, # Whether or not the export will be exeucted with COPY_ONLY, SQL Server only deprecated as the behavior should default to copy_only = true use differential_base instead + "differentialBase": True or False, # Whether or not the backup can be use as differential base only non copy only backup can be served as differential base "stripeCount": 42, # Option for specifying how many stripes to use for the export. If blank, and the value of the striped field is true, the number of stripes is automatically chosen. "striped": True or False, # Whether or not the export should be striped. }, @@ -1470,11 +1522,14 @@

Method Details

}, "importContext": { # Database instance import context. # The context for import operation, if applicable. "bakImportOptions": { # Import parameters specific to SQL Server .BAK files + "bakType": "A String", # Type of the bak content, FULL or DIFF "encryptionOptions": { "certPath": "A String", # Path to the Certificate (.cer) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. "pvkPassword": "A String", # Password that encrypts the private key "pvkPath": "A String", # Path to the Certificate Private Key (.pvk) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. }, + "noRecovery": True or False, # Whether or not the backup importing will restore database with NORECOVERY option Applies only to Cloud SQL for SQL Server. + "recoveryOnly": True or False, # Whether or not the backup importing request will just bring database online without downloading Bak content only one of "no_recovery" and "recovery_only" can be true otherwise error will return. Applies only to Cloud SQL for SQL Server. "striped": True or False, # Whether or not the backup set being restored is striped. Applies only to Cloud SQL for SQL Server. }, "csvImportOptions": { # Options for importing data as CSV. @@ -2050,6 +2105,9 @@

Method Details

}, "exportContext": { # Database instance export context. # The context for export operation, if applicable. "bakExportOptions": { # Options for exporting BAK files (SQL Server-only) + "bakType": "A String", # Type of this bak file will be export, FULL or DIFF, SQL Server only + "copyOnly": True or False, # Whether or not the export will be exeucted with COPY_ONLY, SQL Server only deprecated as the behavior should default to copy_only = true use differential_base instead + "differentialBase": True or False, # Whether or not the backup can be use as differential base only non copy only backup can be served as differential base "stripeCount": 42, # Option for specifying how many stripes to use for the export. If blank, and the value of the striped field is true, the number of stripes is automatically chosen. "striped": True or False, # Whether or not the export should be striped. }, @@ -2079,11 +2137,14 @@

Method Details

}, "importContext": { # Database instance import context. # The context for import operation, if applicable. "bakImportOptions": { # Import parameters specific to SQL Server .BAK files + "bakType": "A String", # Type of the bak content, FULL or DIFF "encryptionOptions": { "certPath": "A String", # Path to the Certificate (.cer) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. "pvkPassword": "A String", # Password that encrypts the private key "pvkPath": "A String", # Path to the Certificate Private Key (.pvk) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. }, + "noRecovery": True or False, # Whether or not the backup importing will restore database with NORECOVERY option Applies only to Cloud SQL for SQL Server. + "recoveryOnly": True or False, # Whether or not the backup importing request will just bring database online without downloading Bak content only one of "no_recovery" and "recovery_only" can be true otherwise error will return. Applies only to Cloud SQL for SQL Server. "striped": True or False, # Whether or not the backup set being restored is striped. Applies only to Cloud SQL for SQL Server. }, "csvImportOptions": { # Options for importing data as CSV. @@ -2149,6 +2210,9 @@

Method Details

}, "exportContext": { # Database instance export context. # The context for export operation, if applicable. "bakExportOptions": { # Options for exporting BAK files (SQL Server-only) + "bakType": "A String", # Type of this bak file will be export, FULL or DIFF, SQL Server only + "copyOnly": True or False, # Whether or not the export will be exeucted with COPY_ONLY, SQL Server only deprecated as the behavior should default to copy_only = true use differential_base instead + "differentialBase": True or False, # Whether or not the backup can be use as differential base only non copy only backup can be served as differential base "stripeCount": 42, # Option for specifying how many stripes to use for the export. If blank, and the value of the striped field is true, the number of stripes is automatically chosen. "striped": True or False, # Whether or not the export should be striped. }, @@ -2178,11 +2242,14 @@

Method Details

}, "importContext": { # Database instance import context. # The context for import operation, if applicable. "bakImportOptions": { # Import parameters specific to SQL Server .BAK files + "bakType": "A String", # Type of the bak content, FULL or DIFF "encryptionOptions": { "certPath": "A String", # Path to the Certificate (.cer) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. "pvkPassword": "A String", # Password that encrypts the private key "pvkPath": "A String", # Path to the Certificate Private Key (.pvk) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. }, + "noRecovery": True or False, # Whether or not the backup importing will restore database with NORECOVERY option Applies only to Cloud SQL for SQL Server. + "recoveryOnly": True or False, # Whether or not the backup importing request will just bring database online without downloading Bak content only one of "no_recovery" and "recovery_only" can be true otherwise error will return. Applies only to Cloud SQL for SQL Server. "striped": True or False, # Whether or not the backup set being restored is striped. Applies only to Cloud SQL for SQL Server. }, "csvImportOptions": { # Options for importing data as CSV. @@ -2248,6 +2315,9 @@

Method Details

}, "exportContext": { # Database instance export context. # The context for export operation, if applicable. "bakExportOptions": { # Options for exporting BAK files (SQL Server-only) + "bakType": "A String", # Type of this bak file will be export, FULL or DIFF, SQL Server only + "copyOnly": True or False, # Whether or not the export will be exeucted with COPY_ONLY, SQL Server only deprecated as the behavior should default to copy_only = true use differential_base instead + "differentialBase": True or False, # Whether or not the backup can be use as differential base only non copy only backup can be served as differential base "stripeCount": 42, # Option for specifying how many stripes to use for the export. If blank, and the value of the striped field is true, the number of stripes is automatically chosen. "striped": True or False, # Whether or not the export should be striped. }, @@ -2277,11 +2347,14 @@

Method Details

}, "importContext": { # Database instance import context. # The context for import operation, if applicable. "bakImportOptions": { # Import parameters specific to SQL Server .BAK files + "bakType": "A String", # Type of the bak content, FULL or DIFF "encryptionOptions": { "certPath": "A String", # Path to the Certificate (.cer) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. "pvkPassword": "A String", # Password that encrypts the private key "pvkPath": "A String", # Path to the Certificate Private Key (.pvk) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. }, + "noRecovery": True or False, # Whether or not the backup importing will restore database with NORECOVERY option Applies only to Cloud SQL for SQL Server. + "recoveryOnly": True or False, # Whether or not the backup importing request will just bring database online without downloading Bak content only one of "no_recovery" and "recovery_only" can be true otherwise error will return. Applies only to Cloud SQL for SQL Server. "striped": True or False, # Whether or not the backup set being restored is striped. Applies only to Cloud SQL for SQL Server. }, "csvImportOptions": { # Options for importing data as CSV. @@ -2347,6 +2420,9 @@

Method Details

}, "exportContext": { # Database instance export context. # The context for export operation, if applicable. "bakExportOptions": { # Options for exporting BAK files (SQL Server-only) + "bakType": "A String", # Type of this bak file will be export, FULL or DIFF, SQL Server only + "copyOnly": True or False, # Whether or not the export will be exeucted with COPY_ONLY, SQL Server only deprecated as the behavior should default to copy_only = true use differential_base instead + "differentialBase": True or False, # Whether or not the backup can be use as differential base only non copy only backup can be served as differential base "stripeCount": 42, # Option for specifying how many stripes to use for the export. If blank, and the value of the striped field is true, the number of stripes is automatically chosen. "striped": True or False, # Whether or not the export should be striped. }, @@ -2376,11 +2452,14 @@

Method Details

}, "importContext": { # Database instance import context. # The context for import operation, if applicable. "bakImportOptions": { # Import parameters specific to SQL Server .BAK files + "bakType": "A String", # Type of the bak content, FULL or DIFF "encryptionOptions": { "certPath": "A String", # Path to the Certificate (.cer) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. "pvkPassword": "A String", # Password that encrypts the private key "pvkPath": "A String", # Path to the Certificate Private Key (.pvk) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. }, + "noRecovery": True or False, # Whether or not the backup importing will restore database with NORECOVERY option Applies only to Cloud SQL for SQL Server. + "recoveryOnly": True or False, # Whether or not the backup importing request will just bring database online without downloading Bak content only one of "no_recovery" and "recovery_only" can be true otherwise error will return. Applies only to Cloud SQL for SQL Server. "striped": True or False, # Whether or not the backup set being restored is striped. Applies only to Cloud SQL for SQL Server. }, "csvImportOptions": { # Options for importing data as CSV. @@ -2458,6 +2537,9 @@

Method Details

}, "exportContext": { # Database instance export context. # The context for export operation, if applicable. "bakExportOptions": { # Options for exporting BAK files (SQL Server-only) + "bakType": "A String", # Type of this bak file will be export, FULL or DIFF, SQL Server only + "copyOnly": True or False, # Whether or not the export will be exeucted with COPY_ONLY, SQL Server only deprecated as the behavior should default to copy_only = true use differential_base instead + "differentialBase": True or False, # Whether or not the backup can be use as differential base only non copy only backup can be served as differential base "stripeCount": 42, # Option for specifying how many stripes to use for the export. If blank, and the value of the striped field is true, the number of stripes is automatically chosen. "striped": True or False, # Whether or not the export should be striped. }, @@ -2487,11 +2569,14 @@

Method Details

}, "importContext": { # Database instance import context. # The context for import operation, if applicable. "bakImportOptions": { # Import parameters specific to SQL Server .BAK files + "bakType": "A String", # Type of the bak content, FULL or DIFF "encryptionOptions": { "certPath": "A String", # Path to the Certificate (.cer) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. "pvkPassword": "A String", # Password that encrypts the private key "pvkPath": "A String", # Path to the Certificate Private Key (.pvk) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. }, + "noRecovery": True or False, # Whether or not the backup importing will restore database with NORECOVERY option Applies only to Cloud SQL for SQL Server. + "recoveryOnly": True or False, # Whether or not the backup importing request will just bring database online without downloading Bak content only one of "no_recovery" and "recovery_only" can be true otherwise error will return. Applies only to Cloud SQL for SQL Server. "striped": True or False, # Whether or not the backup set being restored is striped. Applies only to Cloud SQL for SQL Server. }, "csvImportOptions": { # Options for importing data as CSV. @@ -2567,6 +2652,9 @@

Method Details

}, "exportContext": { # Database instance export context. # The context for export operation, if applicable. "bakExportOptions": { # Options for exporting BAK files (SQL Server-only) + "bakType": "A String", # Type of this bak file will be export, FULL or DIFF, SQL Server only + "copyOnly": True or False, # Whether or not the export will be exeucted with COPY_ONLY, SQL Server only deprecated as the behavior should default to copy_only = true use differential_base instead + "differentialBase": True or False, # Whether or not the backup can be use as differential base only non copy only backup can be served as differential base "stripeCount": 42, # Option for specifying how many stripes to use for the export. If blank, and the value of the striped field is true, the number of stripes is automatically chosen. "striped": True or False, # Whether or not the export should be striped. }, @@ -2596,11 +2684,14 @@

Method Details

}, "importContext": { # Database instance import context. # The context for import operation, if applicable. "bakImportOptions": { # Import parameters specific to SQL Server .BAK files + "bakType": "A String", # Type of the bak content, FULL or DIFF "encryptionOptions": { "certPath": "A String", # Path to the Certificate (.cer) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. "pvkPassword": "A String", # Password that encrypts the private key "pvkPath": "A String", # Path to the Certificate Private Key (.pvk) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. }, + "noRecovery": True or False, # Whether or not the backup importing will restore database with NORECOVERY option Applies only to Cloud SQL for SQL Server. + "recoveryOnly": True or False, # Whether or not the backup importing request will just bring database online without downloading Bak content only one of "no_recovery" and "recovery_only" can be true otherwise error will return. Applies only to Cloud SQL for SQL Server. "striped": True or False, # Whether or not the backup set being restored is striped. Applies only to Cloud SQL for SQL Server. }, "csvImportOptions": { # Options for importing data as CSV. @@ -2666,6 +2757,9 @@

Method Details

}, "exportContext": { # Database instance export context. # The context for export operation, if applicable. "bakExportOptions": { # Options for exporting BAK files (SQL Server-only) + "bakType": "A String", # Type of this bak file will be export, FULL or DIFF, SQL Server only + "copyOnly": True or False, # Whether or not the export will be exeucted with COPY_ONLY, SQL Server only deprecated as the behavior should default to copy_only = true use differential_base instead + "differentialBase": True or False, # Whether or not the backup can be use as differential base only non copy only backup can be served as differential base "stripeCount": 42, # Option for specifying how many stripes to use for the export. If blank, and the value of the striped field is true, the number of stripes is automatically chosen. "striped": True or False, # Whether or not the export should be striped. }, @@ -2695,11 +2789,14 @@

Method Details

}, "importContext": { # Database instance import context. # The context for import operation, if applicable. "bakImportOptions": { # Import parameters specific to SQL Server .BAK files + "bakType": "A String", # Type of the bak content, FULL or DIFF "encryptionOptions": { "certPath": "A String", # Path to the Certificate (.cer) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. "pvkPassword": "A String", # Password that encrypts the private key "pvkPath": "A String", # Path to the Certificate Private Key (.pvk) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. }, + "noRecovery": True or False, # Whether or not the backup importing will restore database with NORECOVERY option Applies only to Cloud SQL for SQL Server. + "recoveryOnly": True or False, # Whether or not the backup importing request will just bring database online without downloading Bak content only one of "no_recovery" and "recovery_only" can be true otherwise error will return. Applies only to Cloud SQL for SQL Server. "striped": True or False, # Whether or not the backup set being restored is striped. Applies only to Cloud SQL for SQL Server. }, "csvImportOptions": { # Options for importing data as CSV. @@ -2765,6 +2862,9 @@

Method Details

}, "exportContext": { # Database instance export context. # The context for export operation, if applicable. "bakExportOptions": { # Options for exporting BAK files (SQL Server-only) + "bakType": "A String", # Type of this bak file will be export, FULL or DIFF, SQL Server only + "copyOnly": True or False, # Whether or not the export will be exeucted with COPY_ONLY, SQL Server only deprecated as the behavior should default to copy_only = true use differential_base instead + "differentialBase": True or False, # Whether or not the backup can be use as differential base only non copy only backup can be served as differential base "stripeCount": 42, # Option for specifying how many stripes to use for the export. If blank, and the value of the striped field is true, the number of stripes is automatically chosen. "striped": True or False, # Whether or not the export should be striped. }, @@ -2794,11 +2894,14 @@

Method Details

}, "importContext": { # Database instance import context. # The context for import operation, if applicable. "bakImportOptions": { # Import parameters specific to SQL Server .BAK files + "bakType": "A String", # Type of the bak content, FULL or DIFF "encryptionOptions": { "certPath": "A String", # Path to the Certificate (.cer) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. "pvkPassword": "A String", # Password that encrypts the private key "pvkPath": "A String", # Path to the Certificate Private Key (.pvk) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. }, + "noRecovery": True or False, # Whether or not the backup importing will restore database with NORECOVERY option Applies only to Cloud SQL for SQL Server. + "recoveryOnly": True or False, # Whether or not the backup importing request will just bring database online without downloading Bak content only one of "no_recovery" and "recovery_only" can be true otherwise error will return. Applies only to Cloud SQL for SQL Server. "striped": True or False, # Whether or not the backup set being restored is striped. Applies only to Cloud SQL for SQL Server. }, "csvImportOptions": { # Options for importing data as CSV. @@ -2874,6 +2977,9 @@

Method Details

}, "exportContext": { # Database instance export context. # The context for export operation, if applicable. "bakExportOptions": { # Options for exporting BAK files (SQL Server-only) + "bakType": "A String", # Type of this bak file will be export, FULL or DIFF, SQL Server only + "copyOnly": True or False, # Whether or not the export will be exeucted with COPY_ONLY, SQL Server only deprecated as the behavior should default to copy_only = true use differential_base instead + "differentialBase": True or False, # Whether or not the backup can be use as differential base only non copy only backup can be served as differential base "stripeCount": 42, # Option for specifying how many stripes to use for the export. If blank, and the value of the striped field is true, the number of stripes is automatically chosen. "striped": True or False, # Whether or not the export should be striped. }, @@ -2903,11 +3009,14 @@

Method Details

}, "importContext": { # Database instance import context. # The context for import operation, if applicable. "bakImportOptions": { # Import parameters specific to SQL Server .BAK files + "bakType": "A String", # Type of the bak content, FULL or DIFF "encryptionOptions": { "certPath": "A String", # Path to the Certificate (.cer) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. "pvkPassword": "A String", # Password that encrypts the private key "pvkPath": "A String", # Path to the Certificate Private Key (.pvk) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. }, + "noRecovery": True or False, # Whether or not the backup importing will restore database with NORECOVERY option Applies only to Cloud SQL for SQL Server. + "recoveryOnly": True or False, # Whether or not the backup importing request will just bring database online without downloading Bak content only one of "no_recovery" and "recovery_only" can be true otherwise error will return. Applies only to Cloud SQL for SQL Server. "striped": True or False, # Whether or not the backup set being restored is striped. Applies only to Cloud SQL for SQL Server. }, "csvImportOptions": { # Options for importing data as CSV. @@ -3190,6 +3299,9 @@

Method Details

}, "exportContext": { # Database instance export context. # The context for export operation, if applicable. "bakExportOptions": { # Options for exporting BAK files (SQL Server-only) + "bakType": "A String", # Type of this bak file will be export, FULL or DIFF, SQL Server only + "copyOnly": True or False, # Whether or not the export will be exeucted with COPY_ONLY, SQL Server only deprecated as the behavior should default to copy_only = true use differential_base instead + "differentialBase": True or False, # Whether or not the backup can be use as differential base only non copy only backup can be served as differential base "stripeCount": 42, # Option for specifying how many stripes to use for the export. If blank, and the value of the striped field is true, the number of stripes is automatically chosen. "striped": True or False, # Whether or not the export should be striped. }, @@ -3219,11 +3331,14 @@

Method Details

}, "importContext": { # Database instance import context. # The context for import operation, if applicable. "bakImportOptions": { # Import parameters specific to SQL Server .BAK files + "bakType": "A String", # Type of the bak content, FULL or DIFF "encryptionOptions": { "certPath": "A String", # Path to the Certificate (.cer) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. "pvkPassword": "A String", # Password that encrypts the private key "pvkPath": "A String", # Path to the Certificate Private Key (.pvk) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. }, + "noRecovery": True or False, # Whether or not the backup importing will restore database with NORECOVERY option Applies only to Cloud SQL for SQL Server. + "recoveryOnly": True or False, # Whether or not the backup importing request will just bring database online without downloading Bak content only one of "no_recovery" and "recovery_only" can be true otherwise error will return. Applies only to Cloud SQL for SQL Server. "striped": True or False, # Whether or not the backup set being restored is striped. Applies only to Cloud SQL for SQL Server. }, "csvImportOptions": { # Options for importing data as CSV. diff --git a/docs/dyn/sqladmin_v1.operations.html b/docs/dyn/sqladmin_v1.operations.html index f73ddc26b42..e866187b900 100644 --- a/docs/dyn/sqladmin_v1.operations.html +++ b/docs/dyn/sqladmin_v1.operations.html @@ -125,6 +125,9 @@

Method Details

}, "exportContext": { # Database instance export context. # The context for export operation, if applicable. "bakExportOptions": { # Options for exporting BAK files (SQL Server-only) + "bakType": "A String", # Type of this bak file will be export, FULL or DIFF, SQL Server only + "copyOnly": True or False, # Whether or not the export will be exeucted with COPY_ONLY, SQL Server only deprecated as the behavior should default to copy_only = true use differential_base instead + "differentialBase": True or False, # Whether or not the backup can be use as differential base only non copy only backup can be served as differential base "stripeCount": 42, # Option for specifying how many stripes to use for the export. If blank, and the value of the striped field is true, the number of stripes is automatically chosen. "striped": True or False, # Whether or not the export should be striped. }, @@ -154,11 +157,14 @@

Method Details

}, "importContext": { # Database instance import context. # The context for import operation, if applicable. "bakImportOptions": { # Import parameters specific to SQL Server .BAK files + "bakType": "A String", # Type of the bak content, FULL or DIFF "encryptionOptions": { "certPath": "A String", # Path to the Certificate (.cer) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. "pvkPassword": "A String", # Password that encrypts the private key "pvkPath": "A String", # Path to the Certificate Private Key (.pvk) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. }, + "noRecovery": True or False, # Whether or not the backup importing will restore database with NORECOVERY option Applies only to Cloud SQL for SQL Server. + "recoveryOnly": True or False, # Whether or not the backup importing request will just bring database online without downloading Bak content only one of "no_recovery" and "recovery_only" can be true otherwise error will return. Applies only to Cloud SQL for SQL Server. "striped": True or False, # Whether or not the backup set being restored is striped. Applies only to Cloud SQL for SQL Server. }, "csvImportOptions": { # Options for importing data as CSV. @@ -228,6 +234,9 @@

Method Details

}, "exportContext": { # Database instance export context. # The context for export operation, if applicable. "bakExportOptions": { # Options for exporting BAK files (SQL Server-only) + "bakType": "A String", # Type of this bak file will be export, FULL or DIFF, SQL Server only + "copyOnly": True or False, # Whether or not the export will be exeucted with COPY_ONLY, SQL Server only deprecated as the behavior should default to copy_only = true use differential_base instead + "differentialBase": True or False, # Whether or not the backup can be use as differential base only non copy only backup can be served as differential base "stripeCount": 42, # Option for specifying how many stripes to use for the export. If blank, and the value of the striped field is true, the number of stripes is automatically chosen. "striped": True or False, # Whether or not the export should be striped. }, @@ -257,11 +266,14 @@

Method Details

}, "importContext": { # Database instance import context. # The context for import operation, if applicable. "bakImportOptions": { # Import parameters specific to SQL Server .BAK files + "bakType": "A String", # Type of the bak content, FULL or DIFF "encryptionOptions": { "certPath": "A String", # Path to the Certificate (.cer) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. "pvkPassword": "A String", # Password that encrypts the private key "pvkPath": "A String", # Path to the Certificate Private Key (.pvk) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. }, + "noRecovery": True or False, # Whether or not the backup importing will restore database with NORECOVERY option Applies only to Cloud SQL for SQL Server. + "recoveryOnly": True or False, # Whether or not the backup importing request will just bring database online without downloading Bak content only one of "no_recovery" and "recovery_only" can be true otherwise error will return. Applies only to Cloud SQL for SQL Server. "striped": True or False, # Whether or not the backup set being restored is striped. Applies only to Cloud SQL for SQL Server. }, "csvImportOptions": { # Options for importing data as CSV. diff --git a/docs/dyn/sqladmin_v1.projects.instances.html b/docs/dyn/sqladmin_v1.projects.instances.html index 4c84aebedee..ed32bcf5f96 100644 --- a/docs/dyn/sqladmin_v1.projects.instances.html +++ b/docs/dyn/sqladmin_v1.projects.instances.html @@ -118,6 +118,7 @@

Method Details

{ # Instance get disk shrink config response. "kind": "A String", # This is always `sql#getDiskShrinkConfig`. + "message": "A String", # Additional message to customers. "minimalTargetSizeGb": "A String", # The minimum size to which a disk can be shrunk in GigaBytes. }
@@ -162,6 +163,9 @@

Method Details

}, "exportContext": { # Database instance export context. # The context for export operation, if applicable. "bakExportOptions": { # Options for exporting BAK files (SQL Server-only) + "bakType": "A String", # Type of this bak file will be export, FULL or DIFF, SQL Server only + "copyOnly": True or False, # Whether or not the export will be exeucted with COPY_ONLY, SQL Server only deprecated as the behavior should default to copy_only = true use differential_base instead + "differentialBase": True or False, # Whether or not the backup can be use as differential base only non copy only backup can be served as differential base "stripeCount": 42, # Option for specifying how many stripes to use for the export. If blank, and the value of the striped field is true, the number of stripes is automatically chosen. "striped": True or False, # Whether or not the export should be striped. }, @@ -191,11 +195,14 @@

Method Details

}, "importContext": { # Database instance import context. # The context for import operation, if applicable. "bakImportOptions": { # Import parameters specific to SQL Server .BAK files + "bakType": "A String", # Type of the bak content, FULL or DIFF "encryptionOptions": { "certPath": "A String", # Path to the Certificate (.cer) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. "pvkPassword": "A String", # Password that encrypts the private key "pvkPath": "A String", # Path to the Certificate Private Key (.pvk) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. }, + "noRecovery": True or False, # Whether or not the backup importing will restore database with NORECOVERY option Applies only to Cloud SQL for SQL Server. + "recoveryOnly": True or False, # Whether or not the backup importing request will just bring database online without downloading Bak content only one of "no_recovery" and "recovery_only" can be true otherwise error will return. Applies only to Cloud SQL for SQL Server. "striped": True or False, # Whether or not the backup set being restored is striped. Applies only to Cloud SQL for SQL Server. }, "csvImportOptions": { # Options for importing data as CSV. @@ -271,6 +278,9 @@

Method Details

}, "exportContext": { # Database instance export context. # The context for export operation, if applicable. "bakExportOptions": { # Options for exporting BAK files (SQL Server-only) + "bakType": "A String", # Type of this bak file will be export, FULL or DIFF, SQL Server only + "copyOnly": True or False, # Whether or not the export will be exeucted with COPY_ONLY, SQL Server only deprecated as the behavior should default to copy_only = true use differential_base instead + "differentialBase": True or False, # Whether or not the backup can be use as differential base only non copy only backup can be served as differential base "stripeCount": 42, # Option for specifying how many stripes to use for the export. If blank, and the value of the striped field is true, the number of stripes is automatically chosen. "striped": True or False, # Whether or not the export should be striped. }, @@ -300,11 +310,14 @@

Method Details

}, "importContext": { # Database instance import context. # The context for import operation, if applicable. "bakImportOptions": { # Import parameters specific to SQL Server .BAK files + "bakType": "A String", # Type of the bak content, FULL or DIFF "encryptionOptions": { "certPath": "A String", # Path to the Certificate (.cer) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. "pvkPassword": "A String", # Password that encrypts the private key "pvkPath": "A String", # Path to the Certificate Private Key (.pvk) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. }, + "noRecovery": True or False, # Whether or not the backup importing will restore database with NORECOVERY option Applies only to Cloud SQL for SQL Server. + "recoveryOnly": True or False, # Whether or not the backup importing request will just bring database online without downloading Bak content only one of "no_recovery" and "recovery_only" can be true otherwise error will return. Applies only to Cloud SQL for SQL Server. "striped": True or False, # Whether or not the backup set being restored is striped. Applies only to Cloud SQL for SQL Server. }, "csvImportOptions": { # Options for importing data as CSV. @@ -376,6 +389,9 @@

Method Details

}, "exportContext": { # Database instance export context. # The context for export operation, if applicable. "bakExportOptions": { # Options for exporting BAK files (SQL Server-only) + "bakType": "A String", # Type of this bak file will be export, FULL or DIFF, SQL Server only + "copyOnly": True or False, # Whether or not the export will be exeucted with COPY_ONLY, SQL Server only deprecated as the behavior should default to copy_only = true use differential_base instead + "differentialBase": True or False, # Whether or not the backup can be use as differential base only non copy only backup can be served as differential base "stripeCount": 42, # Option for specifying how many stripes to use for the export. If blank, and the value of the striped field is true, the number of stripes is automatically chosen. "striped": True or False, # Whether or not the export should be striped. }, @@ -405,11 +421,14 @@

Method Details

}, "importContext": { # Database instance import context. # The context for import operation, if applicable. "bakImportOptions": { # Import parameters specific to SQL Server .BAK files + "bakType": "A String", # Type of the bak content, FULL or DIFF "encryptionOptions": { "certPath": "A String", # Path to the Certificate (.cer) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. "pvkPassword": "A String", # Password that encrypts the private key "pvkPath": "A String", # Path to the Certificate Private Key (.pvk) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. }, + "noRecovery": True or False, # Whether or not the backup importing will restore database with NORECOVERY option Applies only to Cloud SQL for SQL Server. + "recoveryOnly": True or False, # Whether or not the backup importing request will just bring database online without downloading Bak content only one of "no_recovery" and "recovery_only" can be true otherwise error will return. Applies only to Cloud SQL for SQL Server. "striped": True or False, # Whether or not the backup set being restored is striped. Applies only to Cloud SQL for SQL Server. }, "csvImportOptions": { # Options for importing data as CSV. @@ -491,6 +510,9 @@

Method Details

}, "exportContext": { # Database instance export context. # The context for export operation, if applicable. "bakExportOptions": { # Options for exporting BAK files (SQL Server-only) + "bakType": "A String", # Type of this bak file will be export, FULL or DIFF, SQL Server only + "copyOnly": True or False, # Whether or not the export will be exeucted with COPY_ONLY, SQL Server only deprecated as the behavior should default to copy_only = true use differential_base instead + "differentialBase": True or False, # Whether or not the backup can be use as differential base only non copy only backup can be served as differential base "stripeCount": 42, # Option for specifying how many stripes to use for the export. If blank, and the value of the striped field is true, the number of stripes is automatically chosen. "striped": True or False, # Whether or not the export should be striped. }, @@ -520,11 +542,14 @@

Method Details

}, "importContext": { # Database instance import context. # The context for import operation, if applicable. "bakImportOptions": { # Import parameters specific to SQL Server .BAK files + "bakType": "A String", # Type of the bak content, FULL or DIFF "encryptionOptions": { "certPath": "A String", # Path to the Certificate (.cer) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. "pvkPassword": "A String", # Password that encrypts the private key "pvkPath": "A String", # Path to the Certificate Private Key (.pvk) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. }, + "noRecovery": True or False, # Whether or not the backup importing will restore database with NORECOVERY option Applies only to Cloud SQL for SQL Server. + "recoveryOnly": True or False, # Whether or not the backup importing request will just bring database online without downloading Bak content only one of "no_recovery" and "recovery_only" can be true otherwise error will return. Applies only to Cloud SQL for SQL Server. "striped": True or False, # Whether or not the backup set being restored is striped. Applies only to Cloud SQL for SQL Server. }, "csvImportOptions": { # Options for importing data as CSV. diff --git a/docs/dyn/sqladmin_v1.sslCerts.html b/docs/dyn/sqladmin_v1.sslCerts.html index 9571f30cf35..2dc785c0c90 100644 --- a/docs/dyn/sqladmin_v1.sslCerts.html +++ b/docs/dyn/sqladmin_v1.sslCerts.html @@ -168,6 +168,9 @@

Method Details

}, "exportContext": { # Database instance export context. # The context for export operation, if applicable. "bakExportOptions": { # Options for exporting BAK files (SQL Server-only) + "bakType": "A String", # Type of this bak file will be export, FULL or DIFF, SQL Server only + "copyOnly": True or False, # Whether or not the export will be exeucted with COPY_ONLY, SQL Server only deprecated as the behavior should default to copy_only = true use differential_base instead + "differentialBase": True or False, # Whether or not the backup can be use as differential base only non copy only backup can be served as differential base "stripeCount": 42, # Option for specifying how many stripes to use for the export. If blank, and the value of the striped field is true, the number of stripes is automatically chosen. "striped": True or False, # Whether or not the export should be striped. }, @@ -197,11 +200,14 @@

Method Details

}, "importContext": { # Database instance import context. # The context for import operation, if applicable. "bakImportOptions": { # Import parameters specific to SQL Server .BAK files + "bakType": "A String", # Type of the bak content, FULL or DIFF "encryptionOptions": { "certPath": "A String", # Path to the Certificate (.cer) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. "pvkPassword": "A String", # Password that encrypts the private key "pvkPath": "A String", # Path to the Certificate Private Key (.pvk) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. }, + "noRecovery": True or False, # Whether or not the backup importing will restore database with NORECOVERY option Applies only to Cloud SQL for SQL Server. + "recoveryOnly": True or False, # Whether or not the backup importing request will just bring database online without downloading Bak content only one of "no_recovery" and "recovery_only" can be true otherwise error will return. Applies only to Cloud SQL for SQL Server. "striped": True or False, # Whether or not the backup set being restored is striped. Applies only to Cloud SQL for SQL Server. }, "csvImportOptions": { # Options for importing data as CSV. @@ -319,6 +325,9 @@

Method Details

}, "exportContext": { # Database instance export context. # The context for export operation, if applicable. "bakExportOptions": { # Options for exporting BAK files (SQL Server-only) + "bakType": "A String", # Type of this bak file will be export, FULL or DIFF, SQL Server only + "copyOnly": True or False, # Whether or not the export will be exeucted with COPY_ONLY, SQL Server only deprecated as the behavior should default to copy_only = true use differential_base instead + "differentialBase": True or False, # Whether or not the backup can be use as differential base only non copy only backup can be served as differential base "stripeCount": 42, # Option for specifying how many stripes to use for the export. If blank, and the value of the striped field is true, the number of stripes is automatically chosen. "striped": True or False, # Whether or not the export should be striped. }, @@ -348,11 +357,14 @@

Method Details

}, "importContext": { # Database instance import context. # The context for import operation, if applicable. "bakImportOptions": { # Import parameters specific to SQL Server .BAK files + "bakType": "A String", # Type of the bak content, FULL or DIFF "encryptionOptions": { "certPath": "A String", # Path to the Certificate (.cer) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. "pvkPassword": "A String", # Password that encrypts the private key "pvkPath": "A String", # Path to the Certificate Private Key (.pvk) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. }, + "noRecovery": True or False, # Whether or not the backup importing will restore database with NORECOVERY option Applies only to Cloud SQL for SQL Server. + "recoveryOnly": True or False, # Whether or not the backup importing request will just bring database online without downloading Bak content only one of "no_recovery" and "recovery_only" can be true otherwise error will return. Applies only to Cloud SQL for SQL Server. "striped": True or False, # Whether or not the backup set being restored is striped. Applies only to Cloud SQL for SQL Server. }, "csvImportOptions": { # Options for importing data as CSV. diff --git a/docs/dyn/sqladmin_v1.users.html b/docs/dyn/sqladmin_v1.users.html index 6c1655ed273..da954e6357b 100644 --- a/docs/dyn/sqladmin_v1.users.html +++ b/docs/dyn/sqladmin_v1.users.html @@ -133,6 +133,9 @@

Method Details

}, "exportContext": { # Database instance export context. # The context for export operation, if applicable. "bakExportOptions": { # Options for exporting BAK files (SQL Server-only) + "bakType": "A String", # Type of this bak file will be export, FULL or DIFF, SQL Server only + "copyOnly": True or False, # Whether or not the export will be exeucted with COPY_ONLY, SQL Server only deprecated as the behavior should default to copy_only = true use differential_base instead + "differentialBase": True or False, # Whether or not the backup can be use as differential base only non copy only backup can be served as differential base "stripeCount": 42, # Option for specifying how many stripes to use for the export. If blank, and the value of the striped field is true, the number of stripes is automatically chosen. "striped": True or False, # Whether or not the export should be striped. }, @@ -162,11 +165,14 @@

Method Details

}, "importContext": { # Database instance import context. # The context for import operation, if applicable. "bakImportOptions": { # Import parameters specific to SQL Server .BAK files + "bakType": "A String", # Type of the bak content, FULL or DIFF "encryptionOptions": { "certPath": "A String", # Path to the Certificate (.cer) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. "pvkPassword": "A String", # Password that encrypts the private key "pvkPath": "A String", # Path to the Certificate Private Key (.pvk) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. }, + "noRecovery": True or False, # Whether or not the backup importing will restore database with NORECOVERY option Applies only to Cloud SQL for SQL Server. + "recoveryOnly": True or False, # Whether or not the backup importing request will just bring database online without downloading Bak content only one of "no_recovery" and "recovery_only" can be true otherwise error will return. Applies only to Cloud SQL for SQL Server. "striped": True or False, # Whether or not the backup set being restored is striped. Applies only to Cloud SQL for SQL Server. }, "csvImportOptions": { # Options for importing data as CSV. @@ -309,6 +315,9 @@

Method Details

}, "exportContext": { # Database instance export context. # The context for export operation, if applicable. "bakExportOptions": { # Options for exporting BAK files (SQL Server-only) + "bakType": "A String", # Type of this bak file will be export, FULL or DIFF, SQL Server only + "copyOnly": True or False, # Whether or not the export will be exeucted with COPY_ONLY, SQL Server only deprecated as the behavior should default to copy_only = true use differential_base instead + "differentialBase": True or False, # Whether or not the backup can be use as differential base only non copy only backup can be served as differential base "stripeCount": 42, # Option for specifying how many stripes to use for the export. If blank, and the value of the striped field is true, the number of stripes is automatically chosen. "striped": True or False, # Whether or not the export should be striped. }, @@ -338,11 +347,14 @@

Method Details

}, "importContext": { # Database instance import context. # The context for import operation, if applicable. "bakImportOptions": { # Import parameters specific to SQL Server .BAK files + "bakType": "A String", # Type of the bak content, FULL or DIFF "encryptionOptions": { "certPath": "A String", # Path to the Certificate (.cer) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. "pvkPassword": "A String", # Password that encrypts the private key "pvkPath": "A String", # Path to the Certificate Private Key (.pvk) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. }, + "noRecovery": True or False, # Whether or not the backup importing will restore database with NORECOVERY option Applies only to Cloud SQL for SQL Server. + "recoveryOnly": True or False, # Whether or not the backup importing request will just bring database online without downloading Bak content only one of "no_recovery" and "recovery_only" can be true otherwise error will return. Applies only to Cloud SQL for SQL Server. "striped": True or False, # Whether or not the backup set being restored is striped. Applies only to Cloud SQL for SQL Server. }, "csvImportOptions": { # Options for importing data as CSV. @@ -491,6 +503,9 @@

Method Details

}, "exportContext": { # Database instance export context. # The context for export operation, if applicable. "bakExportOptions": { # Options for exporting BAK files (SQL Server-only) + "bakType": "A String", # Type of this bak file will be export, FULL or DIFF, SQL Server only + "copyOnly": True or False, # Whether or not the export will be exeucted with COPY_ONLY, SQL Server only deprecated as the behavior should default to copy_only = true use differential_base instead + "differentialBase": True or False, # Whether or not the backup can be use as differential base only non copy only backup can be served as differential base "stripeCount": 42, # Option for specifying how many stripes to use for the export. If blank, and the value of the striped field is true, the number of stripes is automatically chosen. "striped": True or False, # Whether or not the export should be striped. }, @@ -520,11 +535,14 @@

Method Details

}, "importContext": { # Database instance import context. # The context for import operation, if applicable. "bakImportOptions": { # Import parameters specific to SQL Server .BAK files + "bakType": "A String", # Type of the bak content, FULL or DIFF "encryptionOptions": { "certPath": "A String", # Path to the Certificate (.cer) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. "pvkPassword": "A String", # Password that encrypts the private key "pvkPath": "A String", # Path to the Certificate Private Key (.pvk) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. }, + "noRecovery": True or False, # Whether or not the backup importing will restore database with NORECOVERY option Applies only to Cloud SQL for SQL Server. + "recoveryOnly": True or False, # Whether or not the backup importing request will just bring database online without downloading Bak content only one of "no_recovery" and "recovery_only" can be true otherwise error will return. Applies only to Cloud SQL for SQL Server. "striped": True or False, # Whether or not the backup set being restored is striped. Applies only to Cloud SQL for SQL Server. }, "csvImportOptions": { # Options for importing data as CSV. diff --git a/docs/dyn/sqladmin_v1beta4.backupRuns.html b/docs/dyn/sqladmin_v1beta4.backupRuns.html index a20d599ff68..2320e6b6ecd 100644 --- a/docs/dyn/sqladmin_v1beta4.backupRuns.html +++ b/docs/dyn/sqladmin_v1beta4.backupRuns.html @@ -132,6 +132,9 @@

Method Details

}, "exportContext": { # Database instance export context. # The context for export operation, if applicable. "bakExportOptions": { # Options for exporting BAK files (SQL Server-only) + "bakType": "A String", # Type of this bak file will be export, FULL or DIFF, SQL Server only + "copyOnly": True or False, # Whether or not the export will be exeucted with COPY_ONLY, SQL Server only deprecated as the behavior should default to copy_only = true use differential_base instead + "differentialBase": True or False, # Whether or not the backup can be use as differential base only non copy only backup can be served as differential base "stripeCount": 42, # Option for specifying how many stripes to use for the export. If blank, and the value of the striped field is true, the number of stripes is automatically chosen. "striped": True or False, # Whether or not the export should be striped. }, @@ -161,11 +164,14 @@

Method Details

}, "importContext": { # Database instance import context. # The context for import operation, if applicable. "bakImportOptions": { # Import parameters specific to SQL Server .BAK files + "bakType": "A String", # Type of the bak content, FULL or DIFF. "encryptionOptions": { "certPath": "A String", # Path to the Certificate (.cer) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. "pvkPassword": "A String", # Password that encrypts the private key "pvkPath": "A String", # Path to the Certificate Private Key (.pvk) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. }, + "noRecovery": True or False, # Whether or not the backup importing will restore database with NORECOVERY option Applies only to Cloud SQL for SQL Server. + "recoveryOnly": True or False, # Whether or not the backup importing request will just bring database online without downloading Bak content only one of "no_recovery" and "recovery_only" can be true otherwise error will return. Applies only to Cloud SQL for SQL Server. "striped": True or False, # Whether or not the backup set being restored is striped. Applies only to Cloud SQL for SQL Server. }, "csvImportOptions": { # Options for importing data as CSV. @@ -311,6 +317,9 @@

Method Details

}, "exportContext": { # Database instance export context. # The context for export operation, if applicable. "bakExportOptions": { # Options for exporting BAK files (SQL Server-only) + "bakType": "A String", # Type of this bak file will be export, FULL or DIFF, SQL Server only + "copyOnly": True or False, # Whether or not the export will be exeucted with COPY_ONLY, SQL Server only deprecated as the behavior should default to copy_only = true use differential_base instead + "differentialBase": True or False, # Whether or not the backup can be use as differential base only non copy only backup can be served as differential base "stripeCount": 42, # Option for specifying how many stripes to use for the export. If blank, and the value of the striped field is true, the number of stripes is automatically chosen. "striped": True or False, # Whether or not the export should be striped. }, @@ -340,11 +349,14 @@

Method Details

}, "importContext": { # Database instance import context. # The context for import operation, if applicable. "bakImportOptions": { # Import parameters specific to SQL Server .BAK files + "bakType": "A String", # Type of the bak content, FULL or DIFF. "encryptionOptions": { "certPath": "A String", # Path to the Certificate (.cer) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. "pvkPassword": "A String", # Password that encrypts the private key "pvkPath": "A String", # Path to the Certificate Private Key (.pvk) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. }, + "noRecovery": True or False, # Whether or not the backup importing will restore database with NORECOVERY option Applies only to Cloud SQL for SQL Server. + "recoveryOnly": True or False, # Whether or not the backup importing request will just bring database online without downloading Bak content only one of "no_recovery" and "recovery_only" can be true otherwise error will return. Applies only to Cloud SQL for SQL Server. "striped": True or False, # Whether or not the backup set being restored is striped. Applies only to Cloud SQL for SQL Server. }, "csvImportOptions": { # Options for importing data as CSV. diff --git a/docs/dyn/sqladmin_v1beta4.databases.html b/docs/dyn/sqladmin_v1beta4.databases.html index e297dbfaf8f..8471c38670d 100644 --- a/docs/dyn/sqladmin_v1beta4.databases.html +++ b/docs/dyn/sqladmin_v1beta4.databases.html @@ -85,7 +85,7 @@

Instance Methods

Retrieves a resource containing information about a database inside a Cloud SQL instance.

insert(project, instance, body=None, x__xgafv=None)

-

Inserts a resource containing information about a database inside a Cloud SQL instance.

+

Inserts a resource containing information about a database inside a Cloud SQL instance. **Note:** You can't modify the default character set and collation.

list(project, instance, x__xgafv=None)

Lists databases in the specified Cloud SQL instance.

@@ -135,6 +135,9 @@

Method Details

}, "exportContext": { # Database instance export context. # The context for export operation, if applicable. "bakExportOptions": { # Options for exporting BAK files (SQL Server-only) + "bakType": "A String", # Type of this bak file will be export, FULL or DIFF, SQL Server only + "copyOnly": True or False, # Whether or not the export will be exeucted with COPY_ONLY, SQL Server only deprecated as the behavior should default to copy_only = true use differential_base instead + "differentialBase": True or False, # Whether or not the backup can be use as differential base only non copy only backup can be served as differential base "stripeCount": 42, # Option for specifying how many stripes to use for the export. If blank, and the value of the striped field is true, the number of stripes is automatically chosen. "striped": True or False, # Whether or not the export should be striped. }, @@ -164,11 +167,14 @@

Method Details

}, "importContext": { # Database instance import context. # The context for import operation, if applicable. "bakImportOptions": { # Import parameters specific to SQL Server .BAK files + "bakType": "A String", # Type of the bak content, FULL or DIFF. "encryptionOptions": { "certPath": "A String", # Path to the Certificate (.cer) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. "pvkPassword": "A String", # Password that encrypts the private key "pvkPath": "A String", # Path to the Certificate Private Key (.pvk) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. }, + "noRecovery": True or False, # Whether or not the backup importing will restore database with NORECOVERY option Applies only to Cloud SQL for SQL Server. + "recoveryOnly": True or False, # Whether or not the backup importing request will just bring database online without downloading Bak content only one of "no_recovery" and "recovery_only" can be true otherwise error will return. Applies only to Cloud SQL for SQL Server. "striped": True or False, # Whether or not the backup set being restored is striped. Applies only to Cloud SQL for SQL Server. }, "csvImportOptions": { # Options for importing data as CSV. @@ -235,7 +241,7 @@

Method Details

insert(project, instance, body=None, x__xgafv=None) -
Inserts a resource containing information about a database inside a Cloud SQL instance.
+  
Inserts a resource containing information about a database inside a Cloud SQL instance. **Note:** You can't modify the default character set and collation.
 
 Args:
   project: string, Project ID of the project that contains the instance. (required)
@@ -284,6 +290,9 @@ 

Method Details

}, "exportContext": { # Database instance export context. # The context for export operation, if applicable. "bakExportOptions": { # Options for exporting BAK files (SQL Server-only) + "bakType": "A String", # Type of this bak file will be export, FULL or DIFF, SQL Server only + "copyOnly": True or False, # Whether or not the export will be exeucted with COPY_ONLY, SQL Server only deprecated as the behavior should default to copy_only = true use differential_base instead + "differentialBase": True or False, # Whether or not the backup can be use as differential base only non copy only backup can be served as differential base "stripeCount": 42, # Option for specifying how many stripes to use for the export. If blank, and the value of the striped field is true, the number of stripes is automatically chosen. "striped": True or False, # Whether or not the export should be striped. }, @@ -313,11 +322,14 @@

Method Details

}, "importContext": { # Database instance import context. # The context for import operation, if applicable. "bakImportOptions": { # Import parameters specific to SQL Server .BAK files + "bakType": "A String", # Type of the bak content, FULL or DIFF. "encryptionOptions": { "certPath": "A String", # Path to the Certificate (.cer) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. "pvkPassword": "A String", # Password that encrypts the private key "pvkPath": "A String", # Path to the Certificate Private Key (.pvk) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. }, + "noRecovery": True or False, # Whether or not the backup importing will restore database with NORECOVERY option Applies only to Cloud SQL for SQL Server. + "recoveryOnly": True or False, # Whether or not the backup importing request will just bring database online without downloading Bak content only one of "no_recovery" and "recovery_only" can be true otherwise error will return. Applies only to Cloud SQL for SQL Server. "striped": True or False, # Whether or not the backup set being restored is striped. Applies only to Cloud SQL for SQL Server. }, "csvImportOptions": { # Options for importing data as CSV. @@ -438,6 +450,9 @@

Method Details

}, "exportContext": { # Database instance export context. # The context for export operation, if applicable. "bakExportOptions": { # Options for exporting BAK files (SQL Server-only) + "bakType": "A String", # Type of this bak file will be export, FULL or DIFF, SQL Server only + "copyOnly": True or False, # Whether or not the export will be exeucted with COPY_ONLY, SQL Server only deprecated as the behavior should default to copy_only = true use differential_base instead + "differentialBase": True or False, # Whether or not the backup can be use as differential base only non copy only backup can be served as differential base "stripeCount": 42, # Option for specifying how many stripes to use for the export. If blank, and the value of the striped field is true, the number of stripes is automatically chosen. "striped": True or False, # Whether or not the export should be striped. }, @@ -467,11 +482,14 @@

Method Details

}, "importContext": { # Database instance import context. # The context for import operation, if applicable. "bakImportOptions": { # Import parameters specific to SQL Server .BAK files + "bakType": "A String", # Type of the bak content, FULL or DIFF. "encryptionOptions": { "certPath": "A String", # Path to the Certificate (.cer) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. "pvkPassword": "A String", # Password that encrypts the private key "pvkPath": "A String", # Path to the Certificate Private Key (.pvk) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. }, + "noRecovery": True or False, # Whether or not the backup importing will restore database with NORECOVERY option Applies only to Cloud SQL for SQL Server. + "recoveryOnly": True or False, # Whether or not the backup importing request will just bring database online without downloading Bak content only one of "no_recovery" and "recovery_only" can be true otherwise error will return. Applies only to Cloud SQL for SQL Server. "striped": True or False, # Whether or not the backup set being restored is striped. Applies only to Cloud SQL for SQL Server. }, "csvImportOptions": { # Options for importing data as CSV. @@ -556,6 +574,9 @@

Method Details

}, "exportContext": { # Database instance export context. # The context for export operation, if applicable. "bakExportOptions": { # Options for exporting BAK files (SQL Server-only) + "bakType": "A String", # Type of this bak file will be export, FULL or DIFF, SQL Server only + "copyOnly": True or False, # Whether or not the export will be exeucted with COPY_ONLY, SQL Server only deprecated as the behavior should default to copy_only = true use differential_base instead + "differentialBase": True or False, # Whether or not the backup can be use as differential base only non copy only backup can be served as differential base "stripeCount": 42, # Option for specifying how many stripes to use for the export. If blank, and the value of the striped field is true, the number of stripes is automatically chosen. "striped": True or False, # Whether or not the export should be striped. }, @@ -585,11 +606,14 @@

Method Details

}, "importContext": { # Database instance import context. # The context for import operation, if applicable. "bakImportOptions": { # Import parameters specific to SQL Server .BAK files + "bakType": "A String", # Type of the bak content, FULL or DIFF. "encryptionOptions": { "certPath": "A String", # Path to the Certificate (.cer) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. "pvkPassword": "A String", # Password that encrypts the private key "pvkPath": "A String", # Path to the Certificate Private Key (.pvk) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. }, + "noRecovery": True or False, # Whether or not the backup importing will restore database with NORECOVERY option Applies only to Cloud SQL for SQL Server. + "recoveryOnly": True or False, # Whether or not the backup importing request will just bring database online without downloading Bak content only one of "no_recovery" and "recovery_only" can be true otherwise error will return. Applies only to Cloud SQL for SQL Server. "striped": True or False, # Whether or not the backup set being restored is striped. Applies only to Cloud SQL for SQL Server. }, "csvImportOptions": { # Options for importing data as CSV. diff --git a/docs/dyn/sqladmin_v1beta4.instances.html b/docs/dyn/sqladmin_v1beta4.instances.html index 74c6fa2227f..90f62c3897c 100644 --- a/docs/dyn/sqladmin_v1beta4.instances.html +++ b/docs/dyn/sqladmin_v1beta4.instances.html @@ -177,6 +177,9 @@

Method Details

}, "exportContext": { # Database instance export context. # The context for export operation, if applicable. "bakExportOptions": { # Options for exporting BAK files (SQL Server-only) + "bakType": "A String", # Type of this bak file will be export, FULL or DIFF, SQL Server only + "copyOnly": True or False, # Whether or not the export will be exeucted with COPY_ONLY, SQL Server only deprecated as the behavior should default to copy_only = true use differential_base instead + "differentialBase": True or False, # Whether or not the backup can be use as differential base only non copy only backup can be served as differential base "stripeCount": 42, # Option for specifying how many stripes to use for the export. If blank, and the value of the striped field is true, the number of stripes is automatically chosen. "striped": True or False, # Whether or not the export should be striped. }, @@ -206,11 +209,14 @@

Method Details

}, "importContext": { # Database instance import context. # The context for import operation, if applicable. "bakImportOptions": { # Import parameters specific to SQL Server .BAK files + "bakType": "A String", # Type of the bak content, FULL or DIFF. "encryptionOptions": { "certPath": "A String", # Path to the Certificate (.cer) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. "pvkPassword": "A String", # Password that encrypts the private key "pvkPath": "A String", # Path to the Certificate Private Key (.pvk) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. }, + "noRecovery": True or False, # Whether or not the backup importing will restore database with NORECOVERY option Applies only to Cloud SQL for SQL Server. + "recoveryOnly": True or False, # Whether or not the backup importing request will just bring database online without downloading Bak content only one of "no_recovery" and "recovery_only" can be true otherwise error will return. Applies only to Cloud SQL for SQL Server. "striped": True or False, # Whether or not the backup set being restored is striped. Applies only to Cloud SQL for SQL Server. }, "csvImportOptions": { # Options for importing data as CSV. @@ -268,6 +274,7 @@

Method Details

"kind": "A String", # This is always `sql#cloneContext`. "pitrTimestampMs": "A String", # Reserved for future use. "pointInTime": "A String", # Timestamp, if specified, identifies the time to which the source instance is cloned. + "preferredZone": "A String", # (Point-in-time recovery for PostgreSQL only) Clone to an instance in the specified zone. If no zone is specified, clone to the same zone as the source instance. }, } @@ -297,6 +304,9 @@

Method Details

}, "exportContext": { # Database instance export context. # The context for export operation, if applicable. "bakExportOptions": { # Options for exporting BAK files (SQL Server-only) + "bakType": "A String", # Type of this bak file will be export, FULL or DIFF, SQL Server only + "copyOnly": True or False, # Whether or not the export will be exeucted with COPY_ONLY, SQL Server only deprecated as the behavior should default to copy_only = true use differential_base instead + "differentialBase": True or False, # Whether or not the backup can be use as differential base only non copy only backup can be served as differential base "stripeCount": 42, # Option for specifying how many stripes to use for the export. If blank, and the value of the striped field is true, the number of stripes is automatically chosen. "striped": True or False, # Whether or not the export should be striped. }, @@ -326,11 +336,14 @@

Method Details

}, "importContext": { # Database instance import context. # The context for import operation, if applicable. "bakImportOptions": { # Import parameters specific to SQL Server .BAK files + "bakType": "A String", # Type of the bak content, FULL or DIFF. "encryptionOptions": { "certPath": "A String", # Path to the Certificate (.cer) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. "pvkPassword": "A String", # Password that encrypts the private key "pvkPath": "A String", # Path to the Certificate Private Key (.pvk) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. }, + "noRecovery": True or False, # Whether or not the backup importing will restore database with NORECOVERY option Applies only to Cloud SQL for SQL Server. + "recoveryOnly": True or False, # Whether or not the backup importing request will just bring database online without downloading Bak content only one of "no_recovery" and "recovery_only" can be true otherwise error will return. Applies only to Cloud SQL for SQL Server. "striped": True or False, # Whether or not the backup set being restored is striped. Applies only to Cloud SQL for SQL Server. }, "csvImportOptions": { # Options for importing data as CSV. @@ -401,6 +414,9 @@

Method Details

}, "exportContext": { # Database instance export context. # The context for export operation, if applicable. "bakExportOptions": { # Options for exporting BAK files (SQL Server-only) + "bakType": "A String", # Type of this bak file will be export, FULL or DIFF, SQL Server only + "copyOnly": True or False, # Whether or not the export will be exeucted with COPY_ONLY, SQL Server only deprecated as the behavior should default to copy_only = true use differential_base instead + "differentialBase": True or False, # Whether or not the backup can be use as differential base only non copy only backup can be served as differential base "stripeCount": 42, # Option for specifying how many stripes to use for the export. If blank, and the value of the striped field is true, the number of stripes is automatically chosen. "striped": True or False, # Whether or not the export should be striped. }, @@ -430,11 +446,14 @@

Method Details

}, "importContext": { # Database instance import context. # The context for import operation, if applicable. "bakImportOptions": { # Import parameters specific to SQL Server .BAK files + "bakType": "A String", # Type of the bak content, FULL or DIFF. "encryptionOptions": { "certPath": "A String", # Path to the Certificate (.cer) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. "pvkPassword": "A String", # Password that encrypts the private key "pvkPath": "A String", # Path to the Certificate Private Key (.pvk) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. }, + "noRecovery": True or False, # Whether or not the backup importing will restore database with NORECOVERY option Applies only to Cloud SQL for SQL Server. + "recoveryOnly": True or False, # Whether or not the backup importing request will just bring database online without downloading Bak content only one of "no_recovery" and "recovery_only" can be true otherwise error will return. Applies only to Cloud SQL for SQL Server. "striped": True or False, # Whether or not the backup set being restored is striped. Applies only to Cloud SQL for SQL Server. }, "csvImportOptions": { # Options for importing data as CSV. @@ -523,6 +542,9 @@

Method Details

}, "exportContext": { # Database instance export context. # The context for export operation, if applicable. "bakExportOptions": { # Options for exporting BAK files (SQL Server-only) + "bakType": "A String", # Type of this bak file will be export, FULL or DIFF, SQL Server only + "copyOnly": True or False, # Whether or not the export will be exeucted with COPY_ONLY, SQL Server only deprecated as the behavior should default to copy_only = true use differential_base instead + "differentialBase": True or False, # Whether or not the backup can be use as differential base only non copy only backup can be served as differential base "stripeCount": 42, # Option for specifying how many stripes to use for the export. If blank, and the value of the striped field is true, the number of stripes is automatically chosen. "striped": True or False, # Whether or not the export should be striped. }, @@ -552,11 +574,14 @@

Method Details

}, "importContext": { # Database instance import context. # The context for import operation, if applicable. "bakImportOptions": { # Import parameters specific to SQL Server .BAK files + "bakType": "A String", # Type of the bak content, FULL or DIFF. "encryptionOptions": { "certPath": "A String", # Path to the Certificate (.cer) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. "pvkPassword": "A String", # Password that encrypts the private key "pvkPath": "A String", # Path to the Certificate Private Key (.pvk) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. }, + "noRecovery": True or False, # Whether or not the backup importing will restore database with NORECOVERY option Applies only to Cloud SQL for SQL Server. + "recoveryOnly": True or False, # Whether or not the backup importing request will just bring database online without downloading Bak content only one of "no_recovery" and "recovery_only" can be true otherwise error will return. Applies only to Cloud SQL for SQL Server. "striped": True or False, # Whether or not the backup set being restored is striped. Applies only to Cloud SQL for SQL Server. }, "csvImportOptions": { # Options for importing data as CSV. @@ -602,6 +627,9 @@

Method Details

{ # Database instance export request. "exportContext": { # Database instance export context. # Contains details about the export operation. "bakExportOptions": { # Options for exporting BAK files (SQL Server-only) + "bakType": "A String", # Type of this bak file will be export, FULL or DIFF, SQL Server only + "copyOnly": True or False, # Whether or not the export will be exeucted with COPY_ONLY, SQL Server only deprecated as the behavior should default to copy_only = true use differential_base instead + "differentialBase": True or False, # Whether or not the backup can be use as differential base only non copy only backup can be served as differential base "stripeCount": 42, # Option for specifying how many stripes to use for the export. If blank, and the value of the striped field is true, the number of stripes is automatically chosen. "striped": True or False, # Whether or not the export should be striped. }, @@ -657,6 +685,9 @@

Method Details

}, "exportContext": { # Database instance export context. # The context for export operation, if applicable. "bakExportOptions": { # Options for exporting BAK files (SQL Server-only) + "bakType": "A String", # Type of this bak file will be export, FULL or DIFF, SQL Server only + "copyOnly": True or False, # Whether or not the export will be exeucted with COPY_ONLY, SQL Server only deprecated as the behavior should default to copy_only = true use differential_base instead + "differentialBase": True or False, # Whether or not the backup can be use as differential base only non copy only backup can be served as differential base "stripeCount": 42, # Option for specifying how many stripes to use for the export. If blank, and the value of the striped field is true, the number of stripes is automatically chosen. "striped": True or False, # Whether or not the export should be striped. }, @@ -686,11 +717,14 @@

Method Details

}, "importContext": { # Database instance import context. # The context for import operation, if applicable. "bakImportOptions": { # Import parameters specific to SQL Server .BAK files + "bakType": "A String", # Type of the bak content, FULL or DIFF. "encryptionOptions": { "certPath": "A String", # Path to the Certificate (.cer) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. "pvkPassword": "A String", # Password that encrypts the private key "pvkPath": "A String", # Path to the Certificate Private Key (.pvk) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. }, + "noRecovery": True or False, # Whether or not the backup importing will restore database with NORECOVERY option Applies only to Cloud SQL for SQL Server. + "recoveryOnly": True or False, # Whether or not the backup importing request will just bring database online without downloading Bak content only one of "no_recovery" and "recovery_only" can be true otherwise error will return. Applies only to Cloud SQL for SQL Server. "striped": True or False, # Whether or not the backup set being restored is striped. Applies only to Cloud SQL for SQL Server. }, "csvImportOptions": { # Options for importing data as CSV. @@ -766,6 +800,9 @@

Method Details

}, "exportContext": { # Database instance export context. # The context for export operation, if applicable. "bakExportOptions": { # Options for exporting BAK files (SQL Server-only) + "bakType": "A String", # Type of this bak file will be export, FULL or DIFF, SQL Server only + "copyOnly": True or False, # Whether or not the export will be exeucted with COPY_ONLY, SQL Server only deprecated as the behavior should default to copy_only = true use differential_base instead + "differentialBase": True or False, # Whether or not the backup can be use as differential base only non copy only backup can be served as differential base "stripeCount": 42, # Option for specifying how many stripes to use for the export. If blank, and the value of the striped field is true, the number of stripes is automatically chosen. "striped": True or False, # Whether or not the export should be striped. }, @@ -795,11 +832,14 @@

Method Details

}, "importContext": { # Database instance import context. # The context for import operation, if applicable. "bakImportOptions": { # Import parameters specific to SQL Server .BAK files + "bakType": "A String", # Type of the bak content, FULL or DIFF. "encryptionOptions": { "certPath": "A String", # Path to the Certificate (.cer) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. "pvkPassword": "A String", # Password that encrypts the private key "pvkPath": "A String", # Path to the Certificate Private Key (.pvk) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. }, + "noRecovery": True or False, # Whether or not the backup importing will restore database with NORECOVERY option Applies only to Cloud SQL for SQL Server. + "recoveryOnly": True or False, # Whether or not the backup importing request will just bring database online without downloading Bak content only one of "no_recovery" and "recovery_only" can be true otherwise error will return. Applies only to Cloud SQL for SQL Server. "striped": True or False, # Whether or not the backup set being restored is striped. Applies only to Cloud SQL for SQL Server. }, "csvImportOptions": { # Options for importing data as CSV. @@ -1075,11 +1115,14 @@

Method Details

{ # Database instance import request. "importContext": { # Database instance import context. # Contains details about the import operation. "bakImportOptions": { # Import parameters specific to SQL Server .BAK files + "bakType": "A String", # Type of the bak content, FULL or DIFF. "encryptionOptions": { "certPath": "A String", # Path to the Certificate (.cer) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. "pvkPassword": "A String", # Password that encrypts the private key "pvkPath": "A String", # Path to the Certificate Private Key (.pvk) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. }, + "noRecovery": True or False, # Whether or not the backup importing will restore database with NORECOVERY option Applies only to Cloud SQL for SQL Server. + "recoveryOnly": True or False, # Whether or not the backup importing request will just bring database online without downloading Bak content only one of "no_recovery" and "recovery_only" can be true otherwise error will return. Applies only to Cloud SQL for SQL Server. "striped": True or False, # Whether or not the backup set being restored is striped. Applies only to Cloud SQL for SQL Server. }, "csvImportOptions": { # Options for importing data as CSV. @@ -1126,6 +1169,9 @@

Method Details

}, "exportContext": { # Database instance export context. # The context for export operation, if applicable. "bakExportOptions": { # Options for exporting BAK files (SQL Server-only) + "bakType": "A String", # Type of this bak file will be export, FULL or DIFF, SQL Server only + "copyOnly": True or False, # Whether or not the export will be exeucted with COPY_ONLY, SQL Server only deprecated as the behavior should default to copy_only = true use differential_base instead + "differentialBase": True or False, # Whether or not the backup can be use as differential base only non copy only backup can be served as differential base "stripeCount": 42, # Option for specifying how many stripes to use for the export. If blank, and the value of the striped field is true, the number of stripes is automatically chosen. "striped": True or False, # Whether or not the export should be striped. }, @@ -1155,11 +1201,14 @@

Method Details

}, "importContext": { # Database instance import context. # The context for import operation, if applicable. "bakImportOptions": { # Import parameters specific to SQL Server .BAK files + "bakType": "A String", # Type of the bak content, FULL or DIFF. "encryptionOptions": { "certPath": "A String", # Path to the Certificate (.cer) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. "pvkPassword": "A String", # Password that encrypts the private key "pvkPath": "A String", # Path to the Certificate Private Key (.pvk) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. }, + "noRecovery": True or False, # Whether or not the backup importing will restore database with NORECOVERY option Applies only to Cloud SQL for SQL Server. + "recoveryOnly": True or False, # Whether or not the backup importing request will just bring database online without downloading Bak content only one of "no_recovery" and "recovery_only" can be true otherwise error will return. Applies only to Cloud SQL for SQL Server. "striped": True or False, # Whether or not the backup set being restored is striped. Applies only to Cloud SQL for SQL Server. }, "csvImportOptions": { # Options for importing data as CSV. @@ -1441,6 +1490,9 @@

Method Details

}, "exportContext": { # Database instance export context. # The context for export operation, if applicable. "bakExportOptions": { # Options for exporting BAK files (SQL Server-only) + "bakType": "A String", # Type of this bak file will be export, FULL or DIFF, SQL Server only + "copyOnly": True or False, # Whether or not the export will be exeucted with COPY_ONLY, SQL Server only deprecated as the behavior should default to copy_only = true use differential_base instead + "differentialBase": True or False, # Whether or not the backup can be use as differential base only non copy only backup can be served as differential base "stripeCount": 42, # Option for specifying how many stripes to use for the export. If blank, and the value of the striped field is true, the number of stripes is automatically chosen. "striped": True or False, # Whether or not the export should be striped. }, @@ -1470,11 +1522,14 @@

Method Details

}, "importContext": { # Database instance import context. # The context for import operation, if applicable. "bakImportOptions": { # Import parameters specific to SQL Server .BAK files + "bakType": "A String", # Type of the bak content, FULL or DIFF. "encryptionOptions": { "certPath": "A String", # Path to the Certificate (.cer) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. "pvkPassword": "A String", # Password that encrypts the private key "pvkPath": "A String", # Path to the Certificate Private Key (.pvk) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. }, + "noRecovery": True or False, # Whether or not the backup importing will restore database with NORECOVERY option Applies only to Cloud SQL for SQL Server. + "recoveryOnly": True or False, # Whether or not the backup importing request will just bring database online without downloading Bak content only one of "no_recovery" and "recovery_only" can be true otherwise error will return. Applies only to Cloud SQL for SQL Server. "striped": True or False, # Whether or not the backup set being restored is striped. Applies only to Cloud SQL for SQL Server. }, "csvImportOptions": { # Options for importing data as CSV. @@ -2050,6 +2105,9 @@

Method Details

}, "exportContext": { # Database instance export context. # The context for export operation, if applicable. "bakExportOptions": { # Options for exporting BAK files (SQL Server-only) + "bakType": "A String", # Type of this bak file will be export, FULL or DIFF, SQL Server only + "copyOnly": True or False, # Whether or not the export will be exeucted with COPY_ONLY, SQL Server only deprecated as the behavior should default to copy_only = true use differential_base instead + "differentialBase": True or False, # Whether or not the backup can be use as differential base only non copy only backup can be served as differential base "stripeCount": 42, # Option for specifying how many stripes to use for the export. If blank, and the value of the striped field is true, the number of stripes is automatically chosen. "striped": True or False, # Whether or not the export should be striped. }, @@ -2079,11 +2137,14 @@

Method Details

}, "importContext": { # Database instance import context. # The context for import operation, if applicable. "bakImportOptions": { # Import parameters specific to SQL Server .BAK files + "bakType": "A String", # Type of the bak content, FULL or DIFF. "encryptionOptions": { "certPath": "A String", # Path to the Certificate (.cer) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. "pvkPassword": "A String", # Password that encrypts the private key "pvkPath": "A String", # Path to the Certificate Private Key (.pvk) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. }, + "noRecovery": True or False, # Whether or not the backup importing will restore database with NORECOVERY option Applies only to Cloud SQL for SQL Server. + "recoveryOnly": True or False, # Whether or not the backup importing request will just bring database online without downloading Bak content only one of "no_recovery" and "recovery_only" can be true otherwise error will return. Applies only to Cloud SQL for SQL Server. "striped": True or False, # Whether or not the backup set being restored is striped. Applies only to Cloud SQL for SQL Server. }, "csvImportOptions": { # Options for importing data as CSV. @@ -2149,6 +2210,9 @@

Method Details

}, "exportContext": { # Database instance export context. # The context for export operation, if applicable. "bakExportOptions": { # Options for exporting BAK files (SQL Server-only) + "bakType": "A String", # Type of this bak file will be export, FULL or DIFF, SQL Server only + "copyOnly": True or False, # Whether or not the export will be exeucted with COPY_ONLY, SQL Server only deprecated as the behavior should default to copy_only = true use differential_base instead + "differentialBase": True or False, # Whether or not the backup can be use as differential base only non copy only backup can be served as differential base "stripeCount": 42, # Option for specifying how many stripes to use for the export. If blank, and the value of the striped field is true, the number of stripes is automatically chosen. "striped": True or False, # Whether or not the export should be striped. }, @@ -2178,11 +2242,14 @@

Method Details

}, "importContext": { # Database instance import context. # The context for import operation, if applicable. "bakImportOptions": { # Import parameters specific to SQL Server .BAK files + "bakType": "A String", # Type of the bak content, FULL or DIFF. "encryptionOptions": { "certPath": "A String", # Path to the Certificate (.cer) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. "pvkPassword": "A String", # Password that encrypts the private key "pvkPath": "A String", # Path to the Certificate Private Key (.pvk) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. }, + "noRecovery": True or False, # Whether or not the backup importing will restore database with NORECOVERY option Applies only to Cloud SQL for SQL Server. + "recoveryOnly": True or False, # Whether or not the backup importing request will just bring database online without downloading Bak content only one of "no_recovery" and "recovery_only" can be true otherwise error will return. Applies only to Cloud SQL for SQL Server. "striped": True or False, # Whether or not the backup set being restored is striped. Applies only to Cloud SQL for SQL Server. }, "csvImportOptions": { # Options for importing data as CSV. @@ -2248,6 +2315,9 @@

Method Details

}, "exportContext": { # Database instance export context. # The context for export operation, if applicable. "bakExportOptions": { # Options for exporting BAK files (SQL Server-only) + "bakType": "A String", # Type of this bak file will be export, FULL or DIFF, SQL Server only + "copyOnly": True or False, # Whether or not the export will be exeucted with COPY_ONLY, SQL Server only deprecated as the behavior should default to copy_only = true use differential_base instead + "differentialBase": True or False, # Whether or not the backup can be use as differential base only non copy only backup can be served as differential base "stripeCount": 42, # Option for specifying how many stripes to use for the export. If blank, and the value of the striped field is true, the number of stripes is automatically chosen. "striped": True or False, # Whether or not the export should be striped. }, @@ -2277,11 +2347,14 @@

Method Details

}, "importContext": { # Database instance import context. # The context for import operation, if applicable. "bakImportOptions": { # Import parameters specific to SQL Server .BAK files + "bakType": "A String", # Type of the bak content, FULL or DIFF. "encryptionOptions": { "certPath": "A String", # Path to the Certificate (.cer) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. "pvkPassword": "A String", # Password that encrypts the private key "pvkPath": "A String", # Path to the Certificate Private Key (.pvk) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. }, + "noRecovery": True or False, # Whether or not the backup importing will restore database with NORECOVERY option Applies only to Cloud SQL for SQL Server. + "recoveryOnly": True or False, # Whether or not the backup importing request will just bring database online without downloading Bak content only one of "no_recovery" and "recovery_only" can be true otherwise error will return. Applies only to Cloud SQL for SQL Server. "striped": True or False, # Whether or not the backup set being restored is striped. Applies only to Cloud SQL for SQL Server. }, "csvImportOptions": { # Options for importing data as CSV. @@ -2347,6 +2420,9 @@

Method Details

}, "exportContext": { # Database instance export context. # The context for export operation, if applicable. "bakExportOptions": { # Options for exporting BAK files (SQL Server-only) + "bakType": "A String", # Type of this bak file will be export, FULL or DIFF, SQL Server only + "copyOnly": True or False, # Whether or not the export will be exeucted with COPY_ONLY, SQL Server only deprecated as the behavior should default to copy_only = true use differential_base instead + "differentialBase": True or False, # Whether or not the backup can be use as differential base only non copy only backup can be served as differential base "stripeCount": 42, # Option for specifying how many stripes to use for the export. If blank, and the value of the striped field is true, the number of stripes is automatically chosen. "striped": True or False, # Whether or not the export should be striped. }, @@ -2376,11 +2452,14 @@

Method Details

}, "importContext": { # Database instance import context. # The context for import operation, if applicable. "bakImportOptions": { # Import parameters specific to SQL Server .BAK files + "bakType": "A String", # Type of the bak content, FULL or DIFF. "encryptionOptions": { "certPath": "A String", # Path to the Certificate (.cer) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. "pvkPassword": "A String", # Password that encrypts the private key "pvkPath": "A String", # Path to the Certificate Private Key (.pvk) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. }, + "noRecovery": True or False, # Whether or not the backup importing will restore database with NORECOVERY option Applies only to Cloud SQL for SQL Server. + "recoveryOnly": True or False, # Whether or not the backup importing request will just bring database online without downloading Bak content only one of "no_recovery" and "recovery_only" can be true otherwise error will return. Applies only to Cloud SQL for SQL Server. "striped": True or False, # Whether or not the backup set being restored is striped. Applies only to Cloud SQL for SQL Server. }, "csvImportOptions": { # Options for importing data as CSV. @@ -2458,6 +2537,9 @@

Method Details

}, "exportContext": { # Database instance export context. # The context for export operation, if applicable. "bakExportOptions": { # Options for exporting BAK files (SQL Server-only) + "bakType": "A String", # Type of this bak file will be export, FULL or DIFF, SQL Server only + "copyOnly": True or False, # Whether or not the export will be exeucted with COPY_ONLY, SQL Server only deprecated as the behavior should default to copy_only = true use differential_base instead + "differentialBase": True or False, # Whether or not the backup can be use as differential base only non copy only backup can be served as differential base "stripeCount": 42, # Option for specifying how many stripes to use for the export. If blank, and the value of the striped field is true, the number of stripes is automatically chosen. "striped": True or False, # Whether or not the export should be striped. }, @@ -2487,11 +2569,14 @@

Method Details

}, "importContext": { # Database instance import context. # The context for import operation, if applicable. "bakImportOptions": { # Import parameters specific to SQL Server .BAK files + "bakType": "A String", # Type of the bak content, FULL or DIFF. "encryptionOptions": { "certPath": "A String", # Path to the Certificate (.cer) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. "pvkPassword": "A String", # Password that encrypts the private key "pvkPath": "A String", # Path to the Certificate Private Key (.pvk) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. }, + "noRecovery": True or False, # Whether or not the backup importing will restore database with NORECOVERY option Applies only to Cloud SQL for SQL Server. + "recoveryOnly": True or False, # Whether or not the backup importing request will just bring database online without downloading Bak content only one of "no_recovery" and "recovery_only" can be true otherwise error will return. Applies only to Cloud SQL for SQL Server. "striped": True or False, # Whether or not the backup set being restored is striped. Applies only to Cloud SQL for SQL Server. }, "csvImportOptions": { # Options for importing data as CSV. @@ -2567,6 +2652,9 @@

Method Details

}, "exportContext": { # Database instance export context. # The context for export operation, if applicable. "bakExportOptions": { # Options for exporting BAK files (SQL Server-only) + "bakType": "A String", # Type of this bak file will be export, FULL or DIFF, SQL Server only + "copyOnly": True or False, # Whether or not the export will be exeucted with COPY_ONLY, SQL Server only deprecated as the behavior should default to copy_only = true use differential_base instead + "differentialBase": True or False, # Whether or not the backup can be use as differential base only non copy only backup can be served as differential base "stripeCount": 42, # Option for specifying how many stripes to use for the export. If blank, and the value of the striped field is true, the number of stripes is automatically chosen. "striped": True or False, # Whether or not the export should be striped. }, @@ -2596,11 +2684,14 @@

Method Details

}, "importContext": { # Database instance import context. # The context for import operation, if applicable. "bakImportOptions": { # Import parameters specific to SQL Server .BAK files + "bakType": "A String", # Type of the bak content, FULL or DIFF. "encryptionOptions": { "certPath": "A String", # Path to the Certificate (.cer) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. "pvkPassword": "A String", # Password that encrypts the private key "pvkPath": "A String", # Path to the Certificate Private Key (.pvk) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. }, + "noRecovery": True or False, # Whether or not the backup importing will restore database with NORECOVERY option Applies only to Cloud SQL for SQL Server. + "recoveryOnly": True or False, # Whether or not the backup importing request will just bring database online without downloading Bak content only one of "no_recovery" and "recovery_only" can be true otherwise error will return. Applies only to Cloud SQL for SQL Server. "striped": True or False, # Whether or not the backup set being restored is striped. Applies only to Cloud SQL for SQL Server. }, "csvImportOptions": { # Options for importing data as CSV. @@ -2666,6 +2757,9 @@

Method Details

}, "exportContext": { # Database instance export context. # The context for export operation, if applicable. "bakExportOptions": { # Options for exporting BAK files (SQL Server-only) + "bakType": "A String", # Type of this bak file will be export, FULL or DIFF, SQL Server only + "copyOnly": True or False, # Whether or not the export will be exeucted with COPY_ONLY, SQL Server only deprecated as the behavior should default to copy_only = true use differential_base instead + "differentialBase": True or False, # Whether or not the backup can be use as differential base only non copy only backup can be served as differential base "stripeCount": 42, # Option for specifying how many stripes to use for the export. If blank, and the value of the striped field is true, the number of stripes is automatically chosen. "striped": True or False, # Whether or not the export should be striped. }, @@ -2695,11 +2789,14 @@

Method Details

}, "importContext": { # Database instance import context. # The context for import operation, if applicable. "bakImportOptions": { # Import parameters specific to SQL Server .BAK files + "bakType": "A String", # Type of the bak content, FULL or DIFF. "encryptionOptions": { "certPath": "A String", # Path to the Certificate (.cer) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. "pvkPassword": "A String", # Password that encrypts the private key "pvkPath": "A String", # Path to the Certificate Private Key (.pvk) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. }, + "noRecovery": True or False, # Whether or not the backup importing will restore database with NORECOVERY option Applies only to Cloud SQL for SQL Server. + "recoveryOnly": True or False, # Whether or not the backup importing request will just bring database online without downloading Bak content only one of "no_recovery" and "recovery_only" can be true otherwise error will return. Applies only to Cloud SQL for SQL Server. "striped": True or False, # Whether or not the backup set being restored is striped. Applies only to Cloud SQL for SQL Server. }, "csvImportOptions": { # Options for importing data as CSV. @@ -2765,6 +2862,9 @@

Method Details

}, "exportContext": { # Database instance export context. # The context for export operation, if applicable. "bakExportOptions": { # Options for exporting BAK files (SQL Server-only) + "bakType": "A String", # Type of this bak file will be export, FULL or DIFF, SQL Server only + "copyOnly": True or False, # Whether or not the export will be exeucted with COPY_ONLY, SQL Server only deprecated as the behavior should default to copy_only = true use differential_base instead + "differentialBase": True or False, # Whether or not the backup can be use as differential base only non copy only backup can be served as differential base "stripeCount": 42, # Option for specifying how many stripes to use for the export. If blank, and the value of the striped field is true, the number of stripes is automatically chosen. "striped": True or False, # Whether or not the export should be striped. }, @@ -2794,11 +2894,14 @@

Method Details

}, "importContext": { # Database instance import context. # The context for import operation, if applicable. "bakImportOptions": { # Import parameters specific to SQL Server .BAK files + "bakType": "A String", # Type of the bak content, FULL or DIFF. "encryptionOptions": { "certPath": "A String", # Path to the Certificate (.cer) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. "pvkPassword": "A String", # Password that encrypts the private key "pvkPath": "A String", # Path to the Certificate Private Key (.pvk) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. }, + "noRecovery": True or False, # Whether or not the backup importing will restore database with NORECOVERY option Applies only to Cloud SQL for SQL Server. + "recoveryOnly": True or False, # Whether or not the backup importing request will just bring database online without downloading Bak content only one of "no_recovery" and "recovery_only" can be true otherwise error will return. Applies only to Cloud SQL for SQL Server. "striped": True or False, # Whether or not the backup set being restored is striped. Applies only to Cloud SQL for SQL Server. }, "csvImportOptions": { # Options for importing data as CSV. @@ -2874,6 +2977,9 @@

Method Details

}, "exportContext": { # Database instance export context. # The context for export operation, if applicable. "bakExportOptions": { # Options for exporting BAK files (SQL Server-only) + "bakType": "A String", # Type of this bak file will be export, FULL or DIFF, SQL Server only + "copyOnly": True or False, # Whether or not the export will be exeucted with COPY_ONLY, SQL Server only deprecated as the behavior should default to copy_only = true use differential_base instead + "differentialBase": True or False, # Whether or not the backup can be use as differential base only non copy only backup can be served as differential base "stripeCount": 42, # Option for specifying how many stripes to use for the export. If blank, and the value of the striped field is true, the number of stripes is automatically chosen. "striped": True or False, # Whether or not the export should be striped. }, @@ -2903,11 +3009,14 @@

Method Details

}, "importContext": { # Database instance import context. # The context for import operation, if applicable. "bakImportOptions": { # Import parameters specific to SQL Server .BAK files + "bakType": "A String", # Type of the bak content, FULL or DIFF. "encryptionOptions": { "certPath": "A String", # Path to the Certificate (.cer) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. "pvkPassword": "A String", # Password that encrypts the private key "pvkPath": "A String", # Path to the Certificate Private Key (.pvk) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. }, + "noRecovery": True or False, # Whether or not the backup importing will restore database with NORECOVERY option Applies only to Cloud SQL for SQL Server. + "recoveryOnly": True or False, # Whether or not the backup importing request will just bring database online without downloading Bak content only one of "no_recovery" and "recovery_only" can be true otherwise error will return. Applies only to Cloud SQL for SQL Server. "striped": True or False, # Whether or not the backup set being restored is striped. Applies only to Cloud SQL for SQL Server. }, "csvImportOptions": { # Options for importing data as CSV. @@ -3190,6 +3299,9 @@

Method Details

}, "exportContext": { # Database instance export context. # The context for export operation, if applicable. "bakExportOptions": { # Options for exporting BAK files (SQL Server-only) + "bakType": "A String", # Type of this bak file will be export, FULL or DIFF, SQL Server only + "copyOnly": True or False, # Whether or not the export will be exeucted with COPY_ONLY, SQL Server only deprecated as the behavior should default to copy_only = true use differential_base instead + "differentialBase": True or False, # Whether or not the backup can be use as differential base only non copy only backup can be served as differential base "stripeCount": 42, # Option for specifying how many stripes to use for the export. If blank, and the value of the striped field is true, the number of stripes is automatically chosen. "striped": True or False, # Whether or not the export should be striped. }, @@ -3219,11 +3331,14 @@

Method Details

}, "importContext": { # Database instance import context. # The context for import operation, if applicable. "bakImportOptions": { # Import parameters specific to SQL Server .BAK files + "bakType": "A String", # Type of the bak content, FULL or DIFF. "encryptionOptions": { "certPath": "A String", # Path to the Certificate (.cer) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. "pvkPassword": "A String", # Password that encrypts the private key "pvkPath": "A String", # Path to the Certificate Private Key (.pvk) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. }, + "noRecovery": True or False, # Whether or not the backup importing will restore database with NORECOVERY option Applies only to Cloud SQL for SQL Server. + "recoveryOnly": True or False, # Whether or not the backup importing request will just bring database online without downloading Bak content only one of "no_recovery" and "recovery_only" can be true otherwise error will return. Applies only to Cloud SQL for SQL Server. "striped": True or False, # Whether or not the backup set being restored is striped. Applies only to Cloud SQL for SQL Server. }, "csvImportOptions": { # Options for importing data as CSV. diff --git a/docs/dyn/sqladmin_v1beta4.operations.html b/docs/dyn/sqladmin_v1beta4.operations.html index 018adfd3385..a4fa4281fe8 100644 --- a/docs/dyn/sqladmin_v1beta4.operations.html +++ b/docs/dyn/sqladmin_v1beta4.operations.html @@ -125,6 +125,9 @@

Method Details

}, "exportContext": { # Database instance export context. # The context for export operation, if applicable. "bakExportOptions": { # Options for exporting BAK files (SQL Server-only) + "bakType": "A String", # Type of this bak file will be export, FULL or DIFF, SQL Server only + "copyOnly": True or False, # Whether or not the export will be exeucted with COPY_ONLY, SQL Server only deprecated as the behavior should default to copy_only = true use differential_base instead + "differentialBase": True or False, # Whether or not the backup can be use as differential base only non copy only backup can be served as differential base "stripeCount": 42, # Option for specifying how many stripes to use for the export. If blank, and the value of the striped field is true, the number of stripes is automatically chosen. "striped": True or False, # Whether or not the export should be striped. }, @@ -154,11 +157,14 @@

Method Details

}, "importContext": { # Database instance import context. # The context for import operation, if applicable. "bakImportOptions": { # Import parameters specific to SQL Server .BAK files + "bakType": "A String", # Type of the bak content, FULL or DIFF. "encryptionOptions": { "certPath": "A String", # Path to the Certificate (.cer) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. "pvkPassword": "A String", # Password that encrypts the private key "pvkPath": "A String", # Path to the Certificate Private Key (.pvk) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. }, + "noRecovery": True or False, # Whether or not the backup importing will restore database with NORECOVERY option Applies only to Cloud SQL for SQL Server. + "recoveryOnly": True or False, # Whether or not the backup importing request will just bring database online without downloading Bak content only one of "no_recovery" and "recovery_only" can be true otherwise error will return. Applies only to Cloud SQL for SQL Server. "striped": True or False, # Whether or not the backup set being restored is striped. Applies only to Cloud SQL for SQL Server. }, "csvImportOptions": { # Options for importing data as CSV. @@ -228,6 +234,9 @@

Method Details

}, "exportContext": { # Database instance export context. # The context for export operation, if applicable. "bakExportOptions": { # Options for exporting BAK files (SQL Server-only) + "bakType": "A String", # Type of this bak file will be export, FULL or DIFF, SQL Server only + "copyOnly": True or False, # Whether or not the export will be exeucted with COPY_ONLY, SQL Server only deprecated as the behavior should default to copy_only = true use differential_base instead + "differentialBase": True or False, # Whether or not the backup can be use as differential base only non copy only backup can be served as differential base "stripeCount": 42, # Option for specifying how many stripes to use for the export. If blank, and the value of the striped field is true, the number of stripes is automatically chosen. "striped": True or False, # Whether or not the export should be striped. }, @@ -257,11 +266,14 @@

Method Details

}, "importContext": { # Database instance import context. # The context for import operation, if applicable. "bakImportOptions": { # Import parameters specific to SQL Server .BAK files + "bakType": "A String", # Type of the bak content, FULL or DIFF. "encryptionOptions": { "certPath": "A String", # Path to the Certificate (.cer) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. "pvkPassword": "A String", # Password that encrypts the private key "pvkPath": "A String", # Path to the Certificate Private Key (.pvk) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. }, + "noRecovery": True or False, # Whether or not the backup importing will restore database with NORECOVERY option Applies only to Cloud SQL for SQL Server. + "recoveryOnly": True or False, # Whether or not the backup importing request will just bring database online without downloading Bak content only one of "no_recovery" and "recovery_only" can be true otherwise error will return. Applies only to Cloud SQL for SQL Server. "striped": True or False, # Whether or not the backup set being restored is striped. Applies only to Cloud SQL for SQL Server. }, "csvImportOptions": { # Options for importing data as CSV. diff --git a/docs/dyn/sqladmin_v1beta4.projects.instances.html b/docs/dyn/sqladmin_v1beta4.projects.instances.html index 52715ca7ef1..fcdba75c50e 100644 --- a/docs/dyn/sqladmin_v1beta4.projects.instances.html +++ b/docs/dyn/sqladmin_v1beta4.projects.instances.html @@ -118,6 +118,7 @@

Method Details

{ # Instance get disk shrink config response. "kind": "A String", # This is always `sql#getDiskShrinkConfig`. + "message": "A String", # Additional message to customers. "minimalTargetSizeGb": "A String", # The minimum size to which a disk can be shrunk in GigaBytes. }
@@ -162,6 +163,9 @@

Method Details

}, "exportContext": { # Database instance export context. # The context for export operation, if applicable. "bakExportOptions": { # Options for exporting BAK files (SQL Server-only) + "bakType": "A String", # Type of this bak file will be export, FULL or DIFF, SQL Server only + "copyOnly": True or False, # Whether or not the export will be exeucted with COPY_ONLY, SQL Server only deprecated as the behavior should default to copy_only = true use differential_base instead + "differentialBase": True or False, # Whether or not the backup can be use as differential base only non copy only backup can be served as differential base "stripeCount": 42, # Option for specifying how many stripes to use for the export. If blank, and the value of the striped field is true, the number of stripes is automatically chosen. "striped": True or False, # Whether or not the export should be striped. }, @@ -191,11 +195,14 @@

Method Details

}, "importContext": { # Database instance import context. # The context for import operation, if applicable. "bakImportOptions": { # Import parameters specific to SQL Server .BAK files + "bakType": "A String", # Type of the bak content, FULL or DIFF. "encryptionOptions": { "certPath": "A String", # Path to the Certificate (.cer) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. "pvkPassword": "A String", # Password that encrypts the private key "pvkPath": "A String", # Path to the Certificate Private Key (.pvk) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. }, + "noRecovery": True or False, # Whether or not the backup importing will restore database with NORECOVERY option Applies only to Cloud SQL for SQL Server. + "recoveryOnly": True or False, # Whether or not the backup importing request will just bring database online without downloading Bak content only one of "no_recovery" and "recovery_only" can be true otherwise error will return. Applies only to Cloud SQL for SQL Server. "striped": True or False, # Whether or not the backup set being restored is striped. Applies only to Cloud SQL for SQL Server. }, "csvImportOptions": { # Options for importing data as CSV. @@ -271,6 +278,9 @@

Method Details

}, "exportContext": { # Database instance export context. # The context for export operation, if applicable. "bakExportOptions": { # Options for exporting BAK files (SQL Server-only) + "bakType": "A String", # Type of this bak file will be export, FULL or DIFF, SQL Server only + "copyOnly": True or False, # Whether or not the export will be exeucted with COPY_ONLY, SQL Server only deprecated as the behavior should default to copy_only = true use differential_base instead + "differentialBase": True or False, # Whether or not the backup can be use as differential base only non copy only backup can be served as differential base "stripeCount": 42, # Option for specifying how many stripes to use for the export. If blank, and the value of the striped field is true, the number of stripes is automatically chosen. "striped": True or False, # Whether or not the export should be striped. }, @@ -300,11 +310,14 @@

Method Details

}, "importContext": { # Database instance import context. # The context for import operation, if applicable. "bakImportOptions": { # Import parameters specific to SQL Server .BAK files + "bakType": "A String", # Type of the bak content, FULL or DIFF. "encryptionOptions": { "certPath": "A String", # Path to the Certificate (.cer) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. "pvkPassword": "A String", # Password that encrypts the private key "pvkPath": "A String", # Path to the Certificate Private Key (.pvk) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. }, + "noRecovery": True or False, # Whether or not the backup importing will restore database with NORECOVERY option Applies only to Cloud SQL for SQL Server. + "recoveryOnly": True or False, # Whether or not the backup importing request will just bring database online without downloading Bak content only one of "no_recovery" and "recovery_only" can be true otherwise error will return. Applies only to Cloud SQL for SQL Server. "striped": True or False, # Whether or not the backup set being restored is striped. Applies only to Cloud SQL for SQL Server. }, "csvImportOptions": { # Options for importing data as CSV. @@ -376,6 +389,9 @@

Method Details

}, "exportContext": { # Database instance export context. # The context for export operation, if applicable. "bakExportOptions": { # Options for exporting BAK files (SQL Server-only) + "bakType": "A String", # Type of this bak file will be export, FULL or DIFF, SQL Server only + "copyOnly": True or False, # Whether or not the export will be exeucted with COPY_ONLY, SQL Server only deprecated as the behavior should default to copy_only = true use differential_base instead + "differentialBase": True or False, # Whether or not the backup can be use as differential base only non copy only backup can be served as differential base "stripeCount": 42, # Option for specifying how many stripes to use for the export. If blank, and the value of the striped field is true, the number of stripes is automatically chosen. "striped": True or False, # Whether or not the export should be striped. }, @@ -405,11 +421,14 @@

Method Details

}, "importContext": { # Database instance import context. # The context for import operation, if applicable. "bakImportOptions": { # Import parameters specific to SQL Server .BAK files + "bakType": "A String", # Type of the bak content, FULL or DIFF. "encryptionOptions": { "certPath": "A String", # Path to the Certificate (.cer) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. "pvkPassword": "A String", # Password that encrypts the private key "pvkPath": "A String", # Path to the Certificate Private Key (.pvk) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. }, + "noRecovery": True or False, # Whether or not the backup importing will restore database with NORECOVERY option Applies only to Cloud SQL for SQL Server. + "recoveryOnly": True or False, # Whether or not the backup importing request will just bring database online without downloading Bak content only one of "no_recovery" and "recovery_only" can be true otherwise error will return. Applies only to Cloud SQL for SQL Server. "striped": True or False, # Whether or not the backup set being restored is striped. Applies only to Cloud SQL for SQL Server. }, "csvImportOptions": { # Options for importing data as CSV. @@ -491,6 +510,9 @@

Method Details

}, "exportContext": { # Database instance export context. # The context for export operation, if applicable. "bakExportOptions": { # Options for exporting BAK files (SQL Server-only) + "bakType": "A String", # Type of this bak file will be export, FULL or DIFF, SQL Server only + "copyOnly": True or False, # Whether or not the export will be exeucted with COPY_ONLY, SQL Server only deprecated as the behavior should default to copy_only = true use differential_base instead + "differentialBase": True or False, # Whether or not the backup can be use as differential base only non copy only backup can be served as differential base "stripeCount": 42, # Option for specifying how many stripes to use for the export. If blank, and the value of the striped field is true, the number of stripes is automatically chosen. "striped": True or False, # Whether or not the export should be striped. }, @@ -520,11 +542,14 @@

Method Details

}, "importContext": { # Database instance import context. # The context for import operation, if applicable. "bakImportOptions": { # Import parameters specific to SQL Server .BAK files + "bakType": "A String", # Type of the bak content, FULL or DIFF. "encryptionOptions": { "certPath": "A String", # Path to the Certificate (.cer) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. "pvkPassword": "A String", # Password that encrypts the private key "pvkPath": "A String", # Path to the Certificate Private Key (.pvk) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. }, + "noRecovery": True or False, # Whether or not the backup importing will restore database with NORECOVERY option Applies only to Cloud SQL for SQL Server. + "recoveryOnly": True or False, # Whether or not the backup importing request will just bring database online without downloading Bak content only one of "no_recovery" and "recovery_only" can be true otherwise error will return. Applies only to Cloud SQL for SQL Server. "striped": True or False, # Whether or not the backup set being restored is striped. Applies only to Cloud SQL for SQL Server. }, "csvImportOptions": { # Options for importing data as CSV. diff --git a/docs/dyn/sqladmin_v1beta4.sslCerts.html b/docs/dyn/sqladmin_v1beta4.sslCerts.html index 7bb1ddb5e6a..6120901ecbd 100644 --- a/docs/dyn/sqladmin_v1beta4.sslCerts.html +++ b/docs/dyn/sqladmin_v1beta4.sslCerts.html @@ -168,6 +168,9 @@

Method Details

}, "exportContext": { # Database instance export context. # The context for export operation, if applicable. "bakExportOptions": { # Options for exporting BAK files (SQL Server-only) + "bakType": "A String", # Type of this bak file will be export, FULL or DIFF, SQL Server only + "copyOnly": True or False, # Whether or not the export will be exeucted with COPY_ONLY, SQL Server only deprecated as the behavior should default to copy_only = true use differential_base instead + "differentialBase": True or False, # Whether or not the backup can be use as differential base only non copy only backup can be served as differential base "stripeCount": 42, # Option for specifying how many stripes to use for the export. If blank, and the value of the striped field is true, the number of stripes is automatically chosen. "striped": True or False, # Whether or not the export should be striped. }, @@ -197,11 +200,14 @@

Method Details

}, "importContext": { # Database instance import context. # The context for import operation, if applicable. "bakImportOptions": { # Import parameters specific to SQL Server .BAK files + "bakType": "A String", # Type of the bak content, FULL or DIFF. "encryptionOptions": { "certPath": "A String", # Path to the Certificate (.cer) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. "pvkPassword": "A String", # Password that encrypts the private key "pvkPath": "A String", # Path to the Certificate Private Key (.pvk) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. }, + "noRecovery": True or False, # Whether or not the backup importing will restore database with NORECOVERY option Applies only to Cloud SQL for SQL Server. + "recoveryOnly": True or False, # Whether or not the backup importing request will just bring database online without downloading Bak content only one of "no_recovery" and "recovery_only" can be true otherwise error will return. Applies only to Cloud SQL for SQL Server. "striped": True or False, # Whether or not the backup set being restored is striped. Applies only to Cloud SQL for SQL Server. }, "csvImportOptions": { # Options for importing data as CSV. @@ -319,6 +325,9 @@

Method Details

}, "exportContext": { # Database instance export context. # The context for export operation, if applicable. "bakExportOptions": { # Options for exporting BAK files (SQL Server-only) + "bakType": "A String", # Type of this bak file will be export, FULL or DIFF, SQL Server only + "copyOnly": True or False, # Whether or not the export will be exeucted with COPY_ONLY, SQL Server only deprecated as the behavior should default to copy_only = true use differential_base instead + "differentialBase": True or False, # Whether or not the backup can be use as differential base only non copy only backup can be served as differential base "stripeCount": 42, # Option for specifying how many stripes to use for the export. If blank, and the value of the striped field is true, the number of stripes is automatically chosen. "striped": True or False, # Whether or not the export should be striped. }, @@ -348,11 +357,14 @@

Method Details

}, "importContext": { # Database instance import context. # The context for import operation, if applicable. "bakImportOptions": { # Import parameters specific to SQL Server .BAK files + "bakType": "A String", # Type of the bak content, FULL or DIFF. "encryptionOptions": { "certPath": "A String", # Path to the Certificate (.cer) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. "pvkPassword": "A String", # Password that encrypts the private key "pvkPath": "A String", # Path to the Certificate Private Key (.pvk) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. }, + "noRecovery": True or False, # Whether or not the backup importing will restore database with NORECOVERY option Applies only to Cloud SQL for SQL Server. + "recoveryOnly": True or False, # Whether or not the backup importing request will just bring database online without downloading Bak content only one of "no_recovery" and "recovery_only" can be true otherwise error will return. Applies only to Cloud SQL for SQL Server. "striped": True or False, # Whether or not the backup set being restored is striped. Applies only to Cloud SQL for SQL Server. }, "csvImportOptions": { # Options for importing data as CSV. diff --git a/docs/dyn/sqladmin_v1beta4.users.html b/docs/dyn/sqladmin_v1beta4.users.html index 9a44c98c663..4415258f075 100644 --- a/docs/dyn/sqladmin_v1beta4.users.html +++ b/docs/dyn/sqladmin_v1beta4.users.html @@ -133,6 +133,9 @@

Method Details

}, "exportContext": { # Database instance export context. # The context for export operation, if applicable. "bakExportOptions": { # Options for exporting BAK files (SQL Server-only) + "bakType": "A String", # Type of this bak file will be export, FULL or DIFF, SQL Server only + "copyOnly": True or False, # Whether or not the export will be exeucted with COPY_ONLY, SQL Server only deprecated as the behavior should default to copy_only = true use differential_base instead + "differentialBase": True or False, # Whether or not the backup can be use as differential base only non copy only backup can be served as differential base "stripeCount": 42, # Option for specifying how many stripes to use for the export. If blank, and the value of the striped field is true, the number of stripes is automatically chosen. "striped": True or False, # Whether or not the export should be striped. }, @@ -162,11 +165,14 @@

Method Details

}, "importContext": { # Database instance import context. # The context for import operation, if applicable. "bakImportOptions": { # Import parameters specific to SQL Server .BAK files + "bakType": "A String", # Type of the bak content, FULL or DIFF. "encryptionOptions": { "certPath": "A String", # Path to the Certificate (.cer) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. "pvkPassword": "A String", # Password that encrypts the private key "pvkPath": "A String", # Path to the Certificate Private Key (.pvk) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. }, + "noRecovery": True or False, # Whether or not the backup importing will restore database with NORECOVERY option Applies only to Cloud SQL for SQL Server. + "recoveryOnly": True or False, # Whether or not the backup importing request will just bring database online without downloading Bak content only one of "no_recovery" and "recovery_only" can be true otherwise error will return. Applies only to Cloud SQL for SQL Server. "striped": True or False, # Whether or not the backup set being restored is striped. Applies only to Cloud SQL for SQL Server. }, "csvImportOptions": { # Options for importing data as CSV. @@ -309,6 +315,9 @@

Method Details

}, "exportContext": { # Database instance export context. # The context for export operation, if applicable. "bakExportOptions": { # Options for exporting BAK files (SQL Server-only) + "bakType": "A String", # Type of this bak file will be export, FULL or DIFF, SQL Server only + "copyOnly": True or False, # Whether or not the export will be exeucted with COPY_ONLY, SQL Server only deprecated as the behavior should default to copy_only = true use differential_base instead + "differentialBase": True or False, # Whether or not the backup can be use as differential base only non copy only backup can be served as differential base "stripeCount": 42, # Option for specifying how many stripes to use for the export. If blank, and the value of the striped field is true, the number of stripes is automatically chosen. "striped": True or False, # Whether or not the export should be striped. }, @@ -338,11 +347,14 @@

Method Details

}, "importContext": { # Database instance import context. # The context for import operation, if applicable. "bakImportOptions": { # Import parameters specific to SQL Server .BAK files + "bakType": "A String", # Type of the bak content, FULL or DIFF. "encryptionOptions": { "certPath": "A String", # Path to the Certificate (.cer) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. "pvkPassword": "A String", # Password that encrypts the private key "pvkPath": "A String", # Path to the Certificate Private Key (.pvk) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. }, + "noRecovery": True or False, # Whether or not the backup importing will restore database with NORECOVERY option Applies only to Cloud SQL for SQL Server. + "recoveryOnly": True or False, # Whether or not the backup importing request will just bring database online without downloading Bak content only one of "no_recovery" and "recovery_only" can be true otherwise error will return. Applies only to Cloud SQL for SQL Server. "striped": True or False, # Whether or not the backup set being restored is striped. Applies only to Cloud SQL for SQL Server. }, "csvImportOptions": { # Options for importing data as CSV. @@ -491,6 +503,9 @@

Method Details

}, "exportContext": { # Database instance export context. # The context for export operation, if applicable. "bakExportOptions": { # Options for exporting BAK files (SQL Server-only) + "bakType": "A String", # Type of this bak file will be export, FULL or DIFF, SQL Server only + "copyOnly": True or False, # Whether or not the export will be exeucted with COPY_ONLY, SQL Server only deprecated as the behavior should default to copy_only = true use differential_base instead + "differentialBase": True or False, # Whether or not the backup can be use as differential base only non copy only backup can be served as differential base "stripeCount": 42, # Option for specifying how many stripes to use for the export. If blank, and the value of the striped field is true, the number of stripes is automatically chosen. "striped": True or False, # Whether or not the export should be striped. }, @@ -520,11 +535,14 @@

Method Details

}, "importContext": { # Database instance import context. # The context for import operation, if applicable. "bakImportOptions": { # Import parameters specific to SQL Server .BAK files + "bakType": "A String", # Type of the bak content, FULL or DIFF. "encryptionOptions": { "certPath": "A String", # Path to the Certificate (.cer) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. "pvkPassword": "A String", # Password that encrypts the private key "pvkPath": "A String", # Path to the Certificate Private Key (.pvk) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. }, + "noRecovery": True or False, # Whether or not the backup importing will restore database with NORECOVERY option Applies only to Cloud SQL for SQL Server. + "recoveryOnly": True or False, # Whether or not the backup importing request will just bring database online without downloading Bak content only one of "no_recovery" and "recovery_only" can be true otherwise error will return. Applies only to Cloud SQL for SQL Server. "striped": True or False, # Whether or not the backup set being restored is striped. Applies only to Cloud SQL for SQL Server. }, "csvImportOptions": { # Options for importing data as CSV. diff --git a/googleapiclient/discovery_cache/documents/sqladmin.v1.json b/googleapiclient/discovery_cache/documents/sqladmin.v1.json index 9c5c788090f..142fc6954f8 100644 --- a/googleapiclient/discovery_cache/documents/sqladmin.v1.json +++ b/googleapiclient/discovery_cache/documents/sqladmin.v1.json @@ -428,7 +428,7 @@ ] }, "insert": { - "description": "Inserts a resource containing information about a database inside a Cloud SQL instance.", + "description": "Inserts a resource containing information about a database inside a Cloud SQL instance. **Note:** You can't modify the default character set and collation.", "flatPath": "v1/projects/{project}/instances/{instance}/databases", "httpMethod": "POST", "id": "sql.databases.insert", @@ -2023,7 +2023,7 @@ } } }, - "revision": "20230405", + "revision": "20230518", "rootUrl": "https://sqladmin.googleapis.com/", "schemas": { "AclEntry": { @@ -2377,6 +2377,10 @@ "description": "Timestamp, if specified, identifies the time to which the source instance is cloned.", "format": "google-datetime", "type": "string" + }, + "preferredZone": { + "description": "(Point-in-time recovery for PostgreSQL only) Clone to an instance in the specified zone. If no zone is specified, clone to the same zone as the source instance.", + "type": "string" } }, "type": "object" @@ -2419,6 +2423,7 @@ "POSTGRES_12", "POSTGRES_13", "POSTGRES_14", + "POSTGRES_15", "MYSQL_8_0", "MYSQL_8_0_18", "MYSQL_8_0_26", @@ -2453,6 +2458,7 @@ "The database version is PostgreSQL 12.", "The database version is PostgreSQL 13.", "The database version is PostgreSQL 14.", + "The database version is PostgreSQL 15.", "The database version is MySQL 8.", "The database major version is MySQL 8.0 and the minor version is 18.", "The database major version is MySQL 8.0 and the minor version is 26.", @@ -2618,6 +2624,7 @@ "POSTGRES_12", "POSTGRES_13", "POSTGRES_14", + "POSTGRES_15", "MYSQL_8_0", "MYSQL_8_0_18", "MYSQL_8_0_26", @@ -2652,6 +2659,7 @@ "The database version is PostgreSQL 12.", "The database version is PostgreSQL 13.", "The database version is PostgreSQL 14.", + "The database version is PostgreSQL 15.", "The database version is MySQL 8.", "The database major version is MySQL 8.0 and the minor version is 18.", "The database major version is MySQL 8.0 and the minor version is 26.", @@ -3004,6 +3012,28 @@ "bakExportOptions": { "description": "Options for exporting BAK files (SQL Server-only)", "properties": { + "bakType": { + "description": "Type of this bak file will be export, FULL or DIFF, SQL Server only", + "enum": [ + "BAK_TYPE_UNSPECIFIED", + "FULL", + "DIFF" + ], + "enumDescriptions": [ + "default type to meet enum requirement, will be set to FULL if not set", + "Full backup.", + "Differential backup." + ], + "type": "string" + }, + "copyOnly": { + "description": "Whether or not the export will be exeucted with COPY_ONLY, SQL Server only deprecated as the behavior should default to copy_only = true use differential_base instead", + "type": "boolean" + }, + "differentialBase": { + "description": "Whether or not the backup can be use as differential base only non copy only backup can be served as differential base", + "type": "boolean" + }, "stripeCount": { "description": "Option for specifying how many stripes to use for the export. If blank, and the value of the striped field is true, the number of stripes is automatically chosen.", "format": "int32", @@ -3162,6 +3192,7 @@ "POSTGRES_12", "POSTGRES_13", "POSTGRES_14", + "POSTGRES_15", "MYSQL_8_0", "MYSQL_8_0_18", "MYSQL_8_0_26", @@ -3196,6 +3227,7 @@ "The database version is PostgreSQL 12.", "The database version is PostgreSQL 13.", "The database version is PostgreSQL 14.", + "The database version is PostgreSQL 15.", "The database version is MySQL 8.", "The database major version is MySQL 8.0 and the minor version is 18.", "The database major version is MySQL 8.0 and the minor version is 26.", @@ -3332,6 +3364,20 @@ "bakImportOptions": { "description": "Import parameters specific to SQL Server .BAK files", "properties": { + "bakType": { + "description": "Type of the bak content, FULL or DIFF", + "enum": [ + "BAK_TYPE_UNSPECIFIED", + "FULL", + "DIFF" + ], + "enumDescriptions": [ + "default type to meet enum requirement, will be set to FULL if not set", + "Full backup.", + "Differential backup." + ], + "type": "string" + }, "encryptionOptions": { "properties": { "certPath": { @@ -3349,6 +3395,14 @@ }, "type": "object" }, + "noRecovery": { + "description": "Whether or not the backup importing will restore database with NORECOVERY option Applies only to Cloud SQL for SQL Server.", + "type": "boolean" + }, + "recoveryOnly": { + "description": "Whether or not the backup importing request will just bring database online without downloading Bak content only one of \"no_recovery\" and \"recovery_only\" can be true otherwise error will return. Applies only to Cloud SQL for SQL Server.", + "type": "boolean" + }, "striped": { "description": "Whether or not the backup set being restored is striped. Applies only to Cloud SQL for SQL Server.", "type": "boolean" @@ -4533,7 +4587,8 @@ "BINLOG_RETENTION_SETTING", "UNSUPPORTED_STORAGE_ENGINE", "LIMITED_SUPPORT_TABLES", - "EXISTING_DATA_IN_REPLICA" + "EXISTING_DATA_IN_REPLICA", + "MISSING_OPTIONAL_PRIVILEGES" ], "enumDescriptions": [ "", @@ -4541,7 +4596,7 @@ "", "", "", - "", + "The replication user is missing privileges that are required.", "Unsupported migration type.", "No pglogical extension installed on databases, applicable for postgres.", "pglogical node already exists on databases, applicable for postgres.", @@ -4550,7 +4605,7 @@ "The value of parameter max_replication_slots is not sufficient.", "The value of parameter max_wal_senders is not sufficient.", "The value of parameter max_worker_processes is not sufficient.", - "Extensions installed are either not supported or having unsupported versions", + "Extensions installed are either not supported or having unsupported versions.", "The value of parameter rds.logical_replication is not set to 1.", "The primary instance logging setup doesn't allow EM sync.", "The primary instance database parameter setup doesn't allow EM sync.", @@ -4558,13 +4613,14 @@ "SQL Server Agent is not running.", "The table definition is not support due to missing primary key or replica identity, applicable for postgres.", "The customer has a definer that will break EM setup.", - "SQL Server @@SERVERNAME does not match actual host name", + "SQL Server @@SERVERNAME does not match actual host name.", "The primary instance has been setup and will fail the setup.", "The primary instance has unsupported binary log format.", "The primary instance's binary log retention setting.", "The primary instance has tables with unsupported storage engine.", - "Source has tables with limited support eg: PostgreSQL tables without primary keys", - "The replica instance contains existing data." + "Source has tables with limited support eg: PostgreSQL tables without primary keys.", + "The replica instance contains existing data.", + "The replication user is missing privileges that are optional." ], "type": "string" } @@ -4579,6 +4635,10 @@ "description": "This is always `sql#getDiskShrinkConfig`.", "type": "string" }, + "message": { + "description": "Additional message to customers.", + "type": "string" + }, "minimalTargetSizeGb": { "description": "The minimum size to which a disk can be shrunk in GigaBytes.", "format": "int64", diff --git a/googleapiclient/discovery_cache/documents/sqladmin.v1beta4.json b/googleapiclient/discovery_cache/documents/sqladmin.v1beta4.json index a6399f5ec0d..902e15d97df 100644 --- a/googleapiclient/discovery_cache/documents/sqladmin.v1beta4.json +++ b/googleapiclient/discovery_cache/documents/sqladmin.v1beta4.json @@ -428,7 +428,7 @@ ] }, "insert": { - "description": "Inserts a resource containing information about a database inside a Cloud SQL instance.", + "description": "Inserts a resource containing information about a database inside a Cloud SQL instance. **Note:** You can't modify the default character set and collation.", "flatPath": "sql/v1beta4/projects/{project}/instances/{instance}/databases", "httpMethod": "POST", "id": "sql.databases.insert", @@ -2023,7 +2023,7 @@ } } }, - "revision": "20230405", + "revision": "20230518", "rootUrl": "https://sqladmin.googleapis.com/", "schemas": { "AclEntry": { @@ -2377,6 +2377,10 @@ "description": "Timestamp, if specified, identifies the time to which the source instance is cloned.", "format": "google-datetime", "type": "string" + }, + "preferredZone": { + "description": "(Point-in-time recovery for PostgreSQL only) Clone to an instance in the specified zone. If no zone is specified, clone to the same zone as the source instance.", + "type": "string" } }, "type": "object" @@ -2419,6 +2423,7 @@ "POSTGRES_12", "POSTGRES_13", "POSTGRES_14", + "POSTGRES_15", "MYSQL_8_0", "MYSQL_8_0_18", "MYSQL_8_0_26", @@ -2453,6 +2458,7 @@ "The database version is PostgreSQL 12.", "The database version is PostgreSQL 13.", "The database version is PostgreSQL 14.", + "The database version is PostgreSQL 15.", "The database version is MySQL 8.", "The database major version is MySQL 8.0 and the minor version is 18.", "The database major version is MySQL 8.0 and the minor version is 26.", @@ -2618,6 +2624,7 @@ "POSTGRES_12", "POSTGRES_13", "POSTGRES_14", + "POSTGRES_15", "MYSQL_8_0", "MYSQL_8_0_18", "MYSQL_8_0_26", @@ -2652,6 +2659,7 @@ "The database version is PostgreSQL 12.", "The database version is PostgreSQL 13.", "The database version is PostgreSQL 14.", + "The database version is PostgreSQL 15.", "The database version is MySQL 8.", "The database major version is MySQL 8.0 and the minor version is 18.", "The database major version is MySQL 8.0 and the minor version is 26.", @@ -3004,6 +3012,28 @@ "bakExportOptions": { "description": "Options for exporting BAK files (SQL Server-only)", "properties": { + "bakType": { + "description": "Type of this bak file will be export, FULL or DIFF, SQL Server only", + "enum": [ + "BAK_TYPE_UNSPECIFIED", + "FULL", + "DIFF" + ], + "enumDescriptions": [ + "default type to meet enum requirement, will be set to FULL if not set", + "Full backup.", + "Differential backup." + ], + "type": "string" + }, + "copyOnly": { + "description": "Whether or not the export will be exeucted with COPY_ONLY, SQL Server only deprecated as the behavior should default to copy_only = true use differential_base instead", + "type": "boolean" + }, + "differentialBase": { + "description": "Whether or not the backup can be use as differential base only non copy only backup can be served as differential base", + "type": "boolean" + }, "stripeCount": { "description": "Option for specifying how many stripes to use for the export. If blank, and the value of the striped field is true, the number of stripes is automatically chosen.", "format": "int32", @@ -3162,6 +3192,7 @@ "POSTGRES_12", "POSTGRES_13", "POSTGRES_14", + "POSTGRES_15", "MYSQL_8_0", "MYSQL_8_0_18", "MYSQL_8_0_26", @@ -3196,6 +3227,7 @@ "The database version is PostgreSQL 12.", "The database version is PostgreSQL 13.", "The database version is PostgreSQL 14.", + "The database version is PostgreSQL 15.", "The database version is MySQL 8.", "The database major version is MySQL 8.0 and the minor version is 18.", "The database major version is MySQL 8.0 and the minor version is 26.", @@ -3332,6 +3364,20 @@ "bakImportOptions": { "description": "Import parameters specific to SQL Server .BAK files", "properties": { + "bakType": { + "description": "Type of the bak content, FULL or DIFF.", + "enum": [ + "BAK_TYPE_UNSPECIFIED", + "FULL", + "DIFF" + ], + "enumDescriptions": [ + "default type to meet enum requirement, will be set to FULL if not set", + "Full backup.", + "Differential backup." + ], + "type": "string" + }, "encryptionOptions": { "properties": { "certPath": { @@ -3349,6 +3395,14 @@ }, "type": "object" }, + "noRecovery": { + "description": "Whether or not the backup importing will restore database with NORECOVERY option Applies only to Cloud SQL for SQL Server.", + "type": "boolean" + }, + "recoveryOnly": { + "description": "Whether or not the backup importing request will just bring database online without downloading Bak content only one of \"no_recovery\" and \"recovery_only\" can be true otherwise error will return. Applies only to Cloud SQL for SQL Server.", + "type": "boolean" + }, "striped": { "description": "Whether or not the backup set being restored is striped. Applies only to Cloud SQL for SQL Server.", "type": "boolean" @@ -4533,7 +4587,8 @@ "BINLOG_RETENTION_SETTING", "UNSUPPORTED_STORAGE_ENGINE", "LIMITED_SUPPORT_TABLES", - "EXISTING_DATA_IN_REPLICA" + "EXISTING_DATA_IN_REPLICA", + "MISSING_OPTIONAL_PRIVILEGES" ], "enumDescriptions": [ "", @@ -4541,7 +4596,7 @@ "", "", "", - "", + "The replication user is missing privileges that are required.", "Unsupported migration type.", "No pglogical extension installed on databases, applicable for postgres.", "pglogical node already exists on databases, applicable for postgres.", @@ -4558,13 +4613,14 @@ "SQL Server Agent is not running.", "The table definition is not support due to missing primary key or replica identity, applicable for postgres.", "The customer has a definer that will break EM setup.", - "SQL Server @@SERVERNAME does not match actual host name", + "SQL Server @@SERVERNAME does not match actual host name.", "The primary instance has been setup and will fail the setup.", "The primary instance has unsupported binary log format.", "The primary instance's binary log retention setting.", "The primary instance has tables with unsupported storage engine.", "Source has tables with limited support eg: PostgreSQL tables without primary keys.", - "The replica instance contains existing data." + "The replica instance contains existing data.", + "The replication user is missing privileges that are optional." ], "type": "string" } @@ -4579,6 +4635,10 @@ "description": "This is always `sql#getDiskShrinkConfig`.", "type": "string" }, + "message": { + "description": "Additional message to customers.", + "type": "string" + }, "minimalTargetSizeGb": { "description": "The minimum size to which a disk can be shrunk in GigaBytes.", "format": "int64",