1<html><body> 2<style> 3 4body, h1, h2, h3, div, span, p, pre, a { 5 margin: 0; 6 padding: 0; 7 border: 0; 8 font-weight: inherit; 9 font-style: inherit; 10 font-size: 100%; 11 font-family: inherit; 12 vertical-align: baseline; 13} 14 15body { 16 font-size: 13px; 17 padding: 1em; 18} 19 20h1 { 21 font-size: 26px; 22 margin-bottom: 1em; 23} 24 25h2 { 26 font-size: 24px; 27 margin-bottom: 1em; 28} 29 30h3 { 31 font-size: 20px; 32 margin-bottom: 1em; 33 margin-top: 1em; 34} 35 36pre, code { 37 line-height: 1.5; 38 font-family: Monaco, 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Lucida Console', monospace; 39} 40 41pre { 42 margin-top: 0.5em; 43} 44 45h1, h2, h3, p { 46 font-family: Arial, sans serif; 47} 48 49h1, h2, h3 { 50 border-bottom: solid #CCC 1px; 51} 52 53.toc_element { 54 margin-top: 0.5em; 55} 56 57.firstline { 58 margin-left: 2 em; 59} 60 61.method { 62 margin-top: 1em; 63 border: solid 1px #CCC; 64 padding: 1em; 65 background: #EEE; 66} 67 68.details { 69 font-weight: bold; 70 font-size: 14px; 71} 72 73</style> 74 75<h1><a href="sqladmin_v1.html">Cloud SQL Admin API</a> . <a href="sqladmin_v1.backupRuns.html">backupRuns</a></h1> 76<h2>Instance Methods</h2> 77<p class="toc_element"> 78 <code><a href="#close">close()</a></code></p> 79<p class="firstline">Close httplib2 connections.</p> 80<p class="toc_element"> 81 <code><a href="#delete">delete(project, instance, id, x__xgafv=None)</a></code></p> 82<p class="firstline">Deletes the backup taken by a backup run.</p> 83<p class="toc_element"> 84 <code><a href="#get">get(project, instance, id, x__xgafv=None)</a></code></p> 85<p class="firstline">Retrieves a resource containing information about a backup run.</p> 86<p class="toc_element"> 87 <code><a href="#insert">insert(project, instance, body=None, x__xgafv=None)</a></code></p> 88<p class="firstline">Creates a new backup run on demand.</p> 89<p class="toc_element"> 90 <code><a href="#list">list(project, instance, maxResults=None, pageToken=None, x__xgafv=None)</a></code></p> 91<p class="firstline">Lists all backup runs associated with the project or a given instance and configuration in the reverse chronological order of the backup initiation time.</p> 92<p class="toc_element"> 93 <code><a href="#list_next">list_next(previous_request, previous_response)</a></code></p> 94<p class="firstline">Retrieves the next page of results.</p> 95<h3>Method Details</h3> 96<div class="method"> 97 <code class="details" id="close">close()</code> 98 <pre>Close httplib2 connections.</pre> 99</div> 100 101<div class="method"> 102 <code class="details" id="delete">delete(project, instance, id, x__xgafv=None)</code> 103 <pre>Deletes the backup taken by a backup run. 104 105Args: 106 project: string, Project ID of the project that contains the instance. (required) 107 instance: string, Cloud SQL instance ID. This does not include the project ID. (required) 108 id: string, The ID of the backup run to delete. To find a backup run ID, use the [list](https://cloud.google.com/sql/docs/mysql/admin-api/rest/v1/backupRuns/list) method. (required) 109 x__xgafv: string, V1 error format. 110 Allowed values 111 1 - v1 error format 112 2 - v2 error format 113 114Returns: 115 An object of the form: 116 117 { # An Operation resource. For successful operations that return an Operation resource, only the fields relevant to the operation are populated in the resource. 118 "backupContext": { # Backup context. # The context for backup operation, if applicable. 119 "backupId": "A String", # The identifier of the backup. 120 "kind": "A String", # This is always **sql#backupContext**. 121 }, 122 "endTime": "A String", # The time this operation finished in UTC timezone in [RFC 3339](https://tools.ietf.org/html/rfc3339) format, for example **2012-11-15T16:19:00.094Z**. 123 "error": { # Database instance operation errors list wrapper. # If errors occurred during processing of this operation, this field will be populated. 124 "errors": [ # The list of errors encountered while processing this operation. 125 { # Database instance operation error. 126 "code": "A String", # Identifies the specific error that occurred. 127 "kind": "A String", # This is always **sql#operationError**. 128 "message": "A String", # Additional information about the error encountered. 129 }, 130 ], 131 "kind": "A String", # This is always **sql#operationErrors**. 132 }, 133 "exportContext": { # Database instance export context. # The context for export operation, if applicable. 134 "csvExportOptions": { # Options for exporting data as CSV. **MySQL** and **PostgreSQL** instances only. 135 "escapeCharacter": "A String", # Specifies the character that should appear before a data character that needs to be escaped. 136 "fieldsTerminatedBy": "A String", # Specifies the character that separates columns within each row (line) of the file. 137 "linesTerminatedBy": "A String", # This is used to separate lines. If a line does not contain all fields, the rest of the columns are set to their default values. 138 "quoteCharacter": "A String", # Specifies the quoting character to be used when a data value is quoted. 139 "selectQuery": "A String", # The select query used to extract the data. 140 }, 141 "databases": [ # Databases to be exported. **MySQL instances:** If **fileType** is **SQL** and no database is specified, all databases are exported, except for the **mysql** system database. If **fileType** is **CSV**, you can specify one database, either by using this property or by using the **csvExportOptions.selectQuery** property, which takes precedence over this property. **PostgreSQL instances:** You must specify one database to be exported. If **fileType** is **CSV**, this database must match the one specified in the **csvExportOptions.selectQuery** property. **SQL Server instances:** You must specify one database to be exported, and the **fileType** must be **BAK**. 142 "A String", 143 ], 144 "fileType": "A String", # The file type for the specified uri. 145 "kind": "A String", # This is always **sql#exportContext**. 146 "offload": True or False, # Option for export offload. 147 "sqlExportOptions": { # Options for exporting data as SQL statements. 148 "mysqlExportOptions": { # Options for exporting from MySQL. 149 "masterData": 42, # Option to include SQL statement required to set up replication. If set to **1**, the dump file includes a CHANGE MASTER TO statement with the binary log coordinates, and --set-gtid-purged is set to ON. If set to **2**, the CHANGE MASTER TO statement is written as a SQL comment and has no effect. If set to any value other than **1**, --set-gtid-purged is set to OFF. 150 }, 151 "schemaOnly": True or False, # Export only schemas. 152 "tables": [ # Tables to export, or that were exported, from the specified database. If you specify tables, specify one and only one database. For PostgreSQL instances, you can specify only one table. 153 "A String", 154 ], 155 }, 156 "uri": "A String", # The path to the file in Google Cloud Storage where the export will be stored. The URI is in the form **gs://bucketName/fileName**. If the file already exists, the request succeeds, but the operation fails. If **fileType** is **SQL** and the filename ends with .gz, the contents are compressed. 157 }, 158 "importContext": { # Database instance import context. # The context for import operation, if applicable. 159 "bakImportOptions": { # Import parameters specific to SQL Server .BAK files 160 "encryptionOptions": { 161 "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. 162 "pvkPassword": "A String", # Password that encrypts the private key 163 "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. 164 }, 165 }, 166 "csvImportOptions": { # Options for importing data as CSV. 167 "columns": [ # The columns to which CSV data is imported. If not specified, all columns of the database table are loaded with CSV data. 168 "A String", 169 ], 170 "escapeCharacter": "A String", # Specifies the character that should appear before a data character that needs to be escaped. 171 "fieldsTerminatedBy": "A String", # Specifies the character that separates columns within each row (line) of the file. 172 "linesTerminatedBy": "A String", # This is used to separate lines. If a line does not contain all fields, the rest of the columns are set to their default values. 173 "quoteCharacter": "A String", # Specifies the quoting character to be used when a data value is quoted. 174 "table": "A String", # The table to which CSV data is imported. 175 }, 176 "database": "A String", # The target database for the import. If **fileType** is **SQL**, this field is required only if the import file does not specify a database, and is overridden by any database specification in the import file. If **fileType** is **CSV**, one database must be specified. 177 "fileType": "A String", # The file type for the specified uri. **SQL**: The file contains SQL statements. **CSV**: The file contains CSV data. 178 "importUser": "A String", # The PostgreSQL user for this import operation. PostgreSQL instances only. 179 "kind": "A String", # This is always **sql#importContext**. 180 "uri": "A String", # Path to the import file in Cloud Storage, in the form **gs://bucketName/fileName**. Compressed gzip files (.gz) are supported when **fileType** is **SQL**. The instance must have write permissions to the bucket and read access to the file. 181 }, 182 "insertTime": "A String", # The time this operation was enqueued in UTC timezone in [RFC 3339](https://tools.ietf.org/html/rfc3339) format, for example **2012-11-15T16:19:00.094Z**. 183 "kind": "A String", # This is always **sql#operation**. 184 "name": "A String", # An identifier that uniquely identifies the operation. You can use this identifier to retrieve the Operations resource that has information about the operation. 185 "operationType": "A String", # The type of the operation. Valid values are: * **CREATE** * **DELETE** * **UPDATE** * **RESTART** * **IMPORT** * **EXPORT** * **BACKUP_VOLUME** * **RESTORE_VOLUME** * **CREATE_USER** * **DELETE_USER** * **CREATE_DATABASE** * **DELETE_DATABASE** 186 "selfLink": "A String", # The URI of this resource. 187 "startTime": "A String", # The time this operation actually started in UTC timezone in [RFC 3339](https://tools.ietf.org/html/rfc3339) format, for example **2012-11-15T16:19:00.094Z**. 188 "status": "A String", # The status of an operation. 189 "targetId": "A String", # Name of the database instance related to this operation. 190 "targetLink": "A String", 191 "targetProject": "A String", # The project ID of the target instance related to this operation. 192 "user": "A String", # The email address of the user who initiated this operation. 193}</pre> 194</div> 195 196<div class="method"> 197 <code class="details" id="get">get(project, instance, id, x__xgafv=None)</code> 198 <pre>Retrieves a resource containing information about a backup run. 199 200Args: 201 project: string, Project ID of the project that contains the instance. (required) 202 instance: string, Cloud SQL instance ID. This does not include the project ID. (required) 203 id: string, The ID of this backup run. (required) 204 x__xgafv: string, V1 error format. 205 Allowed values 206 1 - v1 error format 207 2 - v2 error format 208 209Returns: 210 An object of the form: 211 212 { # A BackupRun resource. 213 "backupKind": "A String", # Specifies the kind of backup, PHYSICAL or DEFAULT_SNAPSHOT. 214 "description": "A String", # The description of this run, only applicable to on-demand backups. 215 "diskEncryptionConfiguration": { # Disk encryption configuration for an instance. # Encryption configuration specific to a backup. 216 "kind": "A String", # This is always **sql#diskEncryptionConfiguration**. 217 "kmsKeyName": "A String", # Resource name of KMS key for disk encryption 218 }, 219 "diskEncryptionStatus": { # Disk encryption status for an instance. # Encryption status specific to a backup. 220 "kind": "A String", # This is always **sql#diskEncryptionStatus**. 221 "kmsKeyVersionName": "A String", # KMS key version used to encrypt the Cloud SQL instance resource 222 }, 223 "endTime": "A String", # The time the backup operation completed in UTC timezone in [RFC 3339](https://tools.ietf.org/html/rfc3339) format, for example **2012-11-15T16:19:00.094Z**. 224 "enqueuedTime": "A String", # The time the run was enqueued in UTC timezone in [RFC 3339](https://tools.ietf.org/html/rfc3339) format, for example **2012-11-15T16:19:00.094Z**. 225 "error": { # Database instance operation error. # Information about why the backup operation failed. This is only present if the run has the FAILED status. 226 "code": "A String", # Identifies the specific error that occurred. 227 "kind": "A String", # This is always **sql#operationError**. 228 "message": "A String", # Additional information about the error encountered. 229 }, 230 "id": "A String", # The identifier for this backup run. Unique only for a specific Cloud SQL instance. 231 "instance": "A String", # Name of the database instance. 232 "kind": "A String", # This is always **sql#backupRun**. 233 "location": "A String", # Location of the backups. 234 "selfLink": "A String", # The URI of this resource. 235 "startTime": "A String", # The time the backup operation actually started in UTC timezone in [RFC 3339](https://tools.ietf.org/html/rfc3339) format, for example **2012-11-15T16:19:00.094Z**. 236 "status": "A String", # The status of this run. 237 "type": "A String", # The type of this run; can be either "AUTOMATED" or "ON_DEMAND". This field defaults to "ON_DEMAND" and is ignored, when specified for insert requests. 238 "windowStartTime": "A String", # The start time of the backup window during which this the backup was attempted in [RFC 3339](https://tools.ietf.org/html/rfc3339) format, for example **2012-11-15T16:19:00.094Z**. 239}</pre> 240</div> 241 242<div class="method"> 243 <code class="details" id="insert">insert(project, instance, body=None, x__xgafv=None)</code> 244 <pre>Creates a new backup run on demand. 245 246Args: 247 project: string, Project ID of the project that contains the instance. (required) 248 instance: string, Cloud SQL instance ID. This does not include the project ID. (required) 249 body: object, The request body. 250 The object takes the form of: 251 252{ # A BackupRun resource. 253 "backupKind": "A String", # Specifies the kind of backup, PHYSICAL or DEFAULT_SNAPSHOT. 254 "description": "A String", # The description of this run, only applicable to on-demand backups. 255 "diskEncryptionConfiguration": { # Disk encryption configuration for an instance. # Encryption configuration specific to a backup. 256 "kind": "A String", # This is always **sql#diskEncryptionConfiguration**. 257 "kmsKeyName": "A String", # Resource name of KMS key for disk encryption 258 }, 259 "diskEncryptionStatus": { # Disk encryption status for an instance. # Encryption status specific to a backup. 260 "kind": "A String", # This is always **sql#diskEncryptionStatus**. 261 "kmsKeyVersionName": "A String", # KMS key version used to encrypt the Cloud SQL instance resource 262 }, 263 "endTime": "A String", # The time the backup operation completed in UTC timezone in [RFC 3339](https://tools.ietf.org/html/rfc3339) format, for example **2012-11-15T16:19:00.094Z**. 264 "enqueuedTime": "A String", # The time the run was enqueued in UTC timezone in [RFC 3339](https://tools.ietf.org/html/rfc3339) format, for example **2012-11-15T16:19:00.094Z**. 265 "error": { # Database instance operation error. # Information about why the backup operation failed. This is only present if the run has the FAILED status. 266 "code": "A String", # Identifies the specific error that occurred. 267 "kind": "A String", # This is always **sql#operationError**. 268 "message": "A String", # Additional information about the error encountered. 269 }, 270 "id": "A String", # The identifier for this backup run. Unique only for a specific Cloud SQL instance. 271 "instance": "A String", # Name of the database instance. 272 "kind": "A String", # This is always **sql#backupRun**. 273 "location": "A String", # Location of the backups. 274 "selfLink": "A String", # The URI of this resource. 275 "startTime": "A String", # The time the backup operation actually started in UTC timezone in [RFC 3339](https://tools.ietf.org/html/rfc3339) format, for example **2012-11-15T16:19:00.094Z**. 276 "status": "A String", # The status of this run. 277 "type": "A String", # The type of this run; can be either "AUTOMATED" or "ON_DEMAND". This field defaults to "ON_DEMAND" and is ignored, when specified for insert requests. 278 "windowStartTime": "A String", # The start time of the backup window during which this the backup was attempted in [RFC 3339](https://tools.ietf.org/html/rfc3339) format, for example **2012-11-15T16:19:00.094Z**. 279} 280 281 x__xgafv: string, V1 error format. 282 Allowed values 283 1 - v1 error format 284 2 - v2 error format 285 286Returns: 287 An object of the form: 288 289 { # An Operation resource. For successful operations that return an Operation resource, only the fields relevant to the operation are populated in the resource. 290 "backupContext": { # Backup context. # The context for backup operation, if applicable. 291 "backupId": "A String", # The identifier of the backup. 292 "kind": "A String", # This is always **sql#backupContext**. 293 }, 294 "endTime": "A String", # The time this operation finished in UTC timezone in [RFC 3339](https://tools.ietf.org/html/rfc3339) format, for example **2012-11-15T16:19:00.094Z**. 295 "error": { # Database instance operation errors list wrapper. # If errors occurred during processing of this operation, this field will be populated. 296 "errors": [ # The list of errors encountered while processing this operation. 297 { # Database instance operation error. 298 "code": "A String", # Identifies the specific error that occurred. 299 "kind": "A String", # This is always **sql#operationError**. 300 "message": "A String", # Additional information about the error encountered. 301 }, 302 ], 303 "kind": "A String", # This is always **sql#operationErrors**. 304 }, 305 "exportContext": { # Database instance export context. # The context for export operation, if applicable. 306 "csvExportOptions": { # Options for exporting data as CSV. **MySQL** and **PostgreSQL** instances only. 307 "escapeCharacter": "A String", # Specifies the character that should appear before a data character that needs to be escaped. 308 "fieldsTerminatedBy": "A String", # Specifies the character that separates columns within each row (line) of the file. 309 "linesTerminatedBy": "A String", # This is used to separate lines. If a line does not contain all fields, the rest of the columns are set to their default values. 310 "quoteCharacter": "A String", # Specifies the quoting character to be used when a data value is quoted. 311 "selectQuery": "A String", # The select query used to extract the data. 312 }, 313 "databases": [ # Databases to be exported. **MySQL instances:** If **fileType** is **SQL** and no database is specified, all databases are exported, except for the **mysql** system database. If **fileType** is **CSV**, you can specify one database, either by using this property or by using the **csvExportOptions.selectQuery** property, which takes precedence over this property. **PostgreSQL instances:** You must specify one database to be exported. If **fileType** is **CSV**, this database must match the one specified in the **csvExportOptions.selectQuery** property. **SQL Server instances:** You must specify one database to be exported, and the **fileType** must be **BAK**. 314 "A String", 315 ], 316 "fileType": "A String", # The file type for the specified uri. 317 "kind": "A String", # This is always **sql#exportContext**. 318 "offload": True or False, # Option for export offload. 319 "sqlExportOptions": { # Options for exporting data as SQL statements. 320 "mysqlExportOptions": { # Options for exporting from MySQL. 321 "masterData": 42, # Option to include SQL statement required to set up replication. If set to **1**, the dump file includes a CHANGE MASTER TO statement with the binary log coordinates, and --set-gtid-purged is set to ON. If set to **2**, the CHANGE MASTER TO statement is written as a SQL comment and has no effect. If set to any value other than **1**, --set-gtid-purged is set to OFF. 322 }, 323 "schemaOnly": True or False, # Export only schemas. 324 "tables": [ # Tables to export, or that were exported, from the specified database. If you specify tables, specify one and only one database. For PostgreSQL instances, you can specify only one table. 325 "A String", 326 ], 327 }, 328 "uri": "A String", # The path to the file in Google Cloud Storage where the export will be stored. The URI is in the form **gs://bucketName/fileName**. If the file already exists, the request succeeds, but the operation fails. If **fileType** is **SQL** and the filename ends with .gz, the contents are compressed. 329 }, 330 "importContext": { # Database instance import context. # The context for import operation, if applicable. 331 "bakImportOptions": { # Import parameters specific to SQL Server .BAK files 332 "encryptionOptions": { 333 "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. 334 "pvkPassword": "A String", # Password that encrypts the private key 335 "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. 336 }, 337 }, 338 "csvImportOptions": { # Options for importing data as CSV. 339 "columns": [ # The columns to which CSV data is imported. If not specified, all columns of the database table are loaded with CSV data. 340 "A String", 341 ], 342 "escapeCharacter": "A String", # Specifies the character that should appear before a data character that needs to be escaped. 343 "fieldsTerminatedBy": "A String", # Specifies the character that separates columns within each row (line) of the file. 344 "linesTerminatedBy": "A String", # This is used to separate lines. If a line does not contain all fields, the rest of the columns are set to their default values. 345 "quoteCharacter": "A String", # Specifies the quoting character to be used when a data value is quoted. 346 "table": "A String", # The table to which CSV data is imported. 347 }, 348 "database": "A String", # The target database for the import. If **fileType** is **SQL**, this field is required only if the import file does not specify a database, and is overridden by any database specification in the import file. If **fileType** is **CSV**, one database must be specified. 349 "fileType": "A String", # The file type for the specified uri. **SQL**: The file contains SQL statements. **CSV**: The file contains CSV data. 350 "importUser": "A String", # The PostgreSQL user for this import operation. PostgreSQL instances only. 351 "kind": "A String", # This is always **sql#importContext**. 352 "uri": "A String", # Path to the import file in Cloud Storage, in the form **gs://bucketName/fileName**. Compressed gzip files (.gz) are supported when **fileType** is **SQL**. The instance must have write permissions to the bucket and read access to the file. 353 }, 354 "insertTime": "A String", # The time this operation was enqueued in UTC timezone in [RFC 3339](https://tools.ietf.org/html/rfc3339) format, for example **2012-11-15T16:19:00.094Z**. 355 "kind": "A String", # This is always **sql#operation**. 356 "name": "A String", # An identifier that uniquely identifies the operation. You can use this identifier to retrieve the Operations resource that has information about the operation. 357 "operationType": "A String", # The type of the operation. Valid values are: * **CREATE** * **DELETE** * **UPDATE** * **RESTART** * **IMPORT** * **EXPORT** * **BACKUP_VOLUME** * **RESTORE_VOLUME** * **CREATE_USER** * **DELETE_USER** * **CREATE_DATABASE** * **DELETE_DATABASE** 358 "selfLink": "A String", # The URI of this resource. 359 "startTime": "A String", # The time this operation actually started in UTC timezone in [RFC 3339](https://tools.ietf.org/html/rfc3339) format, for example **2012-11-15T16:19:00.094Z**. 360 "status": "A String", # The status of an operation. 361 "targetId": "A String", # Name of the database instance related to this operation. 362 "targetLink": "A String", 363 "targetProject": "A String", # The project ID of the target instance related to this operation. 364 "user": "A String", # The email address of the user who initiated this operation. 365}</pre> 366</div> 367 368<div class="method"> 369 <code class="details" id="list">list(project, instance, maxResults=None, pageToken=None, x__xgafv=None)</code> 370 <pre>Lists all backup runs associated with the project or a given instance and configuration in the reverse chronological order of the backup initiation time. 371 372Args: 373 project: string, Project ID of the project that contains the instance. (required) 374 instance: string, Cloud SQL instance ID, or "-" for all instances. This does not include the project ID. (required) 375 maxResults: integer, Maximum number of backup runs per response. 376 pageToken: string, A previously-returned page token representing part of the larger set of results to view. 377 x__xgafv: string, V1 error format. 378 Allowed values 379 1 - v1 error format 380 2 - v2 error format 381 382Returns: 383 An object of the form: 384 385 { # Backup run list results. 386 "items": [ # A list of backup runs in reverse chronological order of the enqueued time. 387 { # A BackupRun resource. 388 "backupKind": "A String", # Specifies the kind of backup, PHYSICAL or DEFAULT_SNAPSHOT. 389 "description": "A String", # The description of this run, only applicable to on-demand backups. 390 "diskEncryptionConfiguration": { # Disk encryption configuration for an instance. # Encryption configuration specific to a backup. 391 "kind": "A String", # This is always **sql#diskEncryptionConfiguration**. 392 "kmsKeyName": "A String", # Resource name of KMS key for disk encryption 393 }, 394 "diskEncryptionStatus": { # Disk encryption status for an instance. # Encryption status specific to a backup. 395 "kind": "A String", # This is always **sql#diskEncryptionStatus**. 396 "kmsKeyVersionName": "A String", # KMS key version used to encrypt the Cloud SQL instance resource 397 }, 398 "endTime": "A String", # The time the backup operation completed in UTC timezone in [RFC 3339](https://tools.ietf.org/html/rfc3339) format, for example **2012-11-15T16:19:00.094Z**. 399 "enqueuedTime": "A String", # The time the run was enqueued in UTC timezone in [RFC 3339](https://tools.ietf.org/html/rfc3339) format, for example **2012-11-15T16:19:00.094Z**. 400 "error": { # Database instance operation error. # Information about why the backup operation failed. This is only present if the run has the FAILED status. 401 "code": "A String", # Identifies the specific error that occurred. 402 "kind": "A String", # This is always **sql#operationError**. 403 "message": "A String", # Additional information about the error encountered. 404 }, 405 "id": "A String", # The identifier for this backup run. Unique only for a specific Cloud SQL instance. 406 "instance": "A String", # Name of the database instance. 407 "kind": "A String", # This is always **sql#backupRun**. 408 "location": "A String", # Location of the backups. 409 "selfLink": "A String", # The URI of this resource. 410 "startTime": "A String", # The time the backup operation actually started in UTC timezone in [RFC 3339](https://tools.ietf.org/html/rfc3339) format, for example **2012-11-15T16:19:00.094Z**. 411 "status": "A String", # The status of this run. 412 "type": "A String", # The type of this run; can be either "AUTOMATED" or "ON_DEMAND". This field defaults to "ON_DEMAND" and is ignored, when specified for insert requests. 413 "windowStartTime": "A String", # The start time of the backup window during which this the backup was attempted in [RFC 3339](https://tools.ietf.org/html/rfc3339) format, for example **2012-11-15T16:19:00.094Z**. 414 }, 415 ], 416 "kind": "A String", # This is always **sql#backupRunsList**. 417 "nextPageToken": "A String", # The continuation token, used to page through large result sets. Provide this value in a subsequent request to return the next page of results. 418}</pre> 419</div> 420 421<div class="method"> 422 <code class="details" id="list_next">list_next(previous_request, previous_response)</code> 423 <pre>Retrieves the next page of results. 424 425Args: 426 previous_request: The request for the previous page. (required) 427 previous_response: The response from the request for the previous page. (required) 428 429Returns: 430 A request object that you can call 'execute()' on to request the next 431 page. Returns None if there are no more items in the collection. 432 </pre> 433</div> 434 435</body></html>