blob: 14f6472ee337e95b32a23c87aaa100dafdb47ac7 [file] [log] [blame]
Craig Citroe633be12015-03-02 13:40:36 -08001<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
Bu Sun Kim715bd7f2019-06-14 16:50:42 -070075<h1><a href="sqladmin_v1beta4.html">Cloud SQL Admin API</a> . <a href="sqladmin_v1beta4.operations.html">operations</a></h1>
Craig Citroe633be12015-03-02 13:40:36 -080076<h2>Instance Methods</h2>
77<p class="toc_element">
Dan O'Mearadd494642020-05-01 07:42:23 -070078 <code><a href="#get">get(project, operation, x__xgafv=None)</a></code></p>
Craig Citroe633be12015-03-02 13:40:36 -080079<p class="firstline">Retrieves an instance operation that has been performed on an instance.</p>
80<p class="toc_element">
Dan O'Mearadd494642020-05-01 07:42:23 -070081 <code><a href="#list">list(project, maxResults=None, pageToken=None, instance=None, x__xgafv=None)</a></code></p>
82<p class="firstline">Lists all instance operations that have been performed on the given Cloud</p>
Craig Citroe633be12015-03-02 13:40:36 -080083<p class="toc_element">
84 <code><a href="#list_next">list_next(previous_request, previous_response)</a></code></p>
85<p class="firstline">Retrieves the next page of results.</p>
86<h3>Method Details</h3>
87<div class="method">
Dan O'Mearadd494642020-05-01 07:42:23 -070088 <code class="details" id="get">get(project, operation, x__xgafv=None)</code>
Craig Citroe633be12015-03-02 13:40:36 -080089 <pre>Retrieves an instance operation that has been performed on an instance.
90
91Args:
92 project: string, Project ID of the project that contains the instance. (required)
93 operation: string, Instance operation ID. (required)
Dan O'Mearadd494642020-05-01 07:42:23 -070094 x__xgafv: string, V1 error format.
95 Allowed values
96 1 - v1 error format
97 2 - v2 error format
Craig Citroe633be12015-03-02 13:40:36 -080098
99Returns:
100 An object of the form:
101
Dan O'Mearadd494642020-05-01 07:42:23 -0700102 { # An Operation resource.&amp;nbsp;For successful operations that return an
103 # Operation resource, only the fields relevant to the operation are populated
104 # in the resource.
105 "status": "A String", # The status of an operation. Valid values are &lt;code&gt;PENDING&lt;/code&gt;,
106 # &lt;code&gt;RUNNING&lt;/code&gt;, &lt;code&gt;DONE&lt;/code&gt;,
107 # &lt;code&gt;SQL_OPERATION_STATUS_UNSPECIFIED&lt;/code&gt;.
Craig Citroe633be12015-03-02 13:40:36 -0800108 "importContext": { # Database instance import context. # The context for import operation, if applicable.
Dan O'Mearadd494642020-05-01 07:42:23 -0700109 "bakImportOptions": { # Import parameters specific to SQL Server .BAK files
110 "encryptionOptions": {
111 "pvkPath": "A String", # Path to the Certificate Private Key (.pvk) in Cloud Storage, in the
112 # form &lt;code&gt;gs://bucketName/fileName&lt;/code&gt;. The instance must have
113 # write permissions to the bucket and read access to the file.
114 "certPath": "A String", # Path to the Certificate (.cer) in Cloud Storage, in the form
115 # &lt;code&gt;gs://bucketName/fileName&lt;/code&gt;. The instance must have
116 # write permissions to the bucket and read access to the file.
117 "pvkPassword": "A String", # Password that encrypts the private key
118 },
119 },
120 "kind": "A String", # This is always &lt;code&gt;sql#importContext&lt;/code&gt;.
121 "database": "A String", # The target database for the import. If &lt;code&gt;fileType&lt;/code&gt; is
122 # &lt;code&gt;SQL&lt;/code&gt;, this field is required only if the import file does not
123 # specify a database, and is overridden by any database specification in the
124 # import file. If &lt;code&gt;fileType&lt;/code&gt; is &lt;code&gt;CSV&lt;/code&gt;, one database
125 # must be specified.
126 "fileType": "A String", # The file type for the specified uri. &lt;br&gt;&lt;code&gt;SQL&lt;/code&gt;: The file
127 # contains SQL statements. &lt;br&gt;&lt;code&gt;CSV&lt;/code&gt;: The file contains CSV data.
128 "uri": "A String", # Path to the import file in Cloud Storage, in the form
129 # &lt;code&gt;gs:
130 # //bucketName/fileName&lt;/code&gt;. Compressed gzip files (.gz) are supported
131 # // when &lt;code&gt;fileType&lt;/code&gt; is &lt;code&gt;SQL&lt;/code&gt;. The instance must have
132 # // write permissions to the bucket and read access to the file.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700133 "importUser": "A String", # The PostgreSQL user for this import operation. PostgreSQL instances only.
Craig Citroe633be12015-03-02 13:40:36 -0800134 "csvImportOptions": { # Options for importing data as CSV.
135 "table": "A String", # The table to which CSV data is imported.
Dan O'Mearadd494642020-05-01 07:42:23 -0700136 "columns": [ # The columns to which CSV data is imported. If not specified, all columns
137 # of the database table are loaded with CSV data.
Craig Citroe633be12015-03-02 13:40:36 -0800138 "A String",
139 ],
140 },
141 },
Dan O'Mearadd494642020-05-01 07:42:23 -0700142 "kind": "A String", # This is always &lt;code&gt;sql#operation&lt;/code&gt;.
143 "targetProject": "A String", # The project ID of the target instance related to this operation.
144 "name": "A String", # An identifier that uniquely identifies the operation. You can use this
145 # identifier to retrieve the Operations resource that has information about
146 # the operation.
Craig Citroe633be12015-03-02 13:40:36 -0800147 "exportContext": { # Database instance export context. # The context for export operation, if applicable.
Dan O'Mearadd494642020-05-01 07:42:23 -0700148 "kind": "A String", # This is always &lt;code&gt;sql#exportContext&lt;/code&gt;.
149 "fileType": "A String", # The file type for the specified uri. &lt;br&gt;&lt;code&gt;SQL&lt;/code&gt;: The file
150 # contains SQL statements. &lt;br&gt;&lt;code&gt;CSV&lt;/code&gt;: The file contains CSV data.
151 "uri": "A String", # The path to the file in Google Cloud Storage where the export will be
152 # stored. The URI is in the form &lt;code&gt;gs:
153 # //bucketName/fileName&lt;/code&gt;. If the file already exists, the requests
154 # // succeeds, but the operation fails. If &lt;code&gt;fileType&lt;/code&gt; is
155 # // &lt;code&gt;SQL&lt;/code&gt; and the filename ends with .gz, the contents are
156 # // compressed.
Craig Citroe633be12015-03-02 13:40:36 -0800157 "csvExportOptions": { # Options for exporting data as CSV.
158 "selectQuery": "A String", # The select query used to extract the data.
159 },
Dan O'Mearadd494642020-05-01 07:42:23 -0700160 "databases": [ # Databases to be exported. &lt;br /&gt; &lt;b&gt;MySQL instances:&lt;/b&gt; If
161 # &lt;code&gt;fileType&lt;/code&gt; is &lt;code&gt;SQL&lt;/code&gt; and no database is specified, all
162 # databases are exported, except for the &lt;code&gt;mysql&lt;/code&gt; system database.
163 # If &lt;code&gt;fileType&lt;/code&gt; is &lt;code&gt;CSV&lt;/code&gt;, you can specify one database,
164 # either by using this property or by using the
165 # &lt;code&gt;csvExportOptions.selectQuery&lt;/code&gt; property, which takes precedence
166 # over this property. &lt;br /&gt; &lt;b&gt;PostgreSQL instances:&lt;/b&gt; You must specify
167 # one database to be exported. If &lt;code&gt;fileType&lt;/code&gt; is &lt;code&gt;CSV&lt;/code&gt;,
168 # this database must match the one specified in the
169 # &lt;code&gt;csvExportOptions.selectQuery&lt;/code&gt; property.
Craig Citroe633be12015-03-02 13:40:36 -0800170 "A String",
171 ],
172 "sqlExportOptions": { # Options for exporting data as SQL statements.
Dan O'Mearadd494642020-05-01 07:42:23 -0700173 "tables": [ # Tables to export, or that were exported, from the specified database. If
174 # you specify tables, specify one and only one database. For PostgreSQL
175 # instances, you can specify only one table.
Craig Citroe633be12015-03-02 13:40:36 -0800176 "A String",
177 ],
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700178 "mysqlExportOptions": { # Options for exporting from MySQL.
Dan O'Mearadd494642020-05-01 07:42:23 -0700179 "masterData": 42, # Option to include SQL statement required to set up replication.
180 # If set to &lt;code&gt;1&lt;/code&gt;, the dump file includes
181 # a CHANGE MASTER TO statement with the binary log coordinates.
182 # If set to &lt;code&gt;2&lt;/code&gt;, the CHANGE MASTER TO statement is written as
183 # a SQL comment, and has no effect.
184 # All other values are ignored.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700185 },
Jon Wayne Parrott36e41bc2016-02-19 16:02:29 -0800186 "schemaOnly": True or False, # Export only schemas.
Craig Citroe633be12015-03-02 13:40:36 -0800187 },
188 },
Dan O'Mearadd494642020-05-01 07:42:23 -0700189 "insertTime": "A String", # The time this operation was enqueued in UTC timezone in &lt;a
190 # href="https://tools.ietf.org/html/rfc3339"&gt;RFC 3339&lt;/a&gt; format, for example
191 # &lt;code&gt;2012-11-15T16:19:00.094Z&lt;/code&gt;.
Craig Citroe633be12015-03-02 13:40:36 -0800192 "targetId": "A String", # Name of the database instance related to this operation.
Dan O'Mearadd494642020-05-01 07:42:23 -0700193 "operationType": "A String", # The type of the operation. Valid values are &lt;code&gt;CREATE&lt;/code&gt;,
194 # &lt;code&gt;DELETE&lt;/code&gt;, &lt;code&gt;UPDATE&lt;/code&gt;, &lt;code&gt;RESTART&lt;/code&gt;,
195 # &lt;code&gt;IMPORT&lt;/code&gt;, &lt;code&gt;EXPORT&lt;/code&gt;, &lt;code&gt;BACKUP_VOLUME&lt;/code&gt;,
196 # &lt;code&gt;RESTORE_VOLUME&lt;/code&gt;, &lt;code&gt;CREATE_USER&lt;/code&gt;,
197 # &lt;code&gt;DELETE_USER&lt;/code&gt;, &lt;code&gt;CREATE_DATABASE&lt;/code&gt;,
198 # &lt;code&gt;DELETE_DATABASE&lt;/code&gt; .
199 "user": "A String", # The email address of the user who initiated this operation.
200 "startTime": "A String", # The time this operation actually started in UTC timezone in &lt;a
201 # href="https://tools.ietf.org/html/rfc3339"&gt;RFC 3339&lt;/a&gt; format, for example
202 # &lt;code&gt;2012-11-15T16:19:00.094Z&lt;/code&gt;.
203 "error": { # Database instance operation errors list wrapper. # If errors occurred during processing of this operation, this field will be
204 # populated.
205 "kind": "A String", # This is always &lt;code&gt;sql#operationErrors&lt;/code&gt;.
Craig Citroe633be12015-03-02 13:40:36 -0800206 "errors": [ # The list of errors encountered while processing this operation.
207 { # Database instance operation error.
Dan O'Mearadd494642020-05-01 07:42:23 -0700208 "kind": "A String", # This is always &lt;code&gt;sql#operationError&lt;/code&gt;.
Craig Citroe633be12015-03-02 13:40:36 -0800209 "code": "A String", # Identifies the specific error that occurred.
210 "message": "A String", # Additional information about the error encountered.
211 },
212 ],
213 },
Dan O'Mearadd494642020-05-01 07:42:23 -0700214 "endTime": "A String", # The time this operation finished in UTC timezone in &lt;a
215 # href="https://tools.ietf.org/html/rfc3339"&gt;RFC 3339&lt;/a&gt; format, for example
216 # &lt;code&gt;2012-11-15T16:19:00.094Z&lt;/code&gt;.
Craig Citroe633be12015-03-02 13:40:36 -0800217 "selfLink": "A String", # The URI of this resource.
Dan O'Mearadd494642020-05-01 07:42:23 -0700218 "targetLink": "A String",
Craig Citroe633be12015-03-02 13:40:36 -0800219 }</pre>
220</div>
221
222<div class="method">
Dan O'Mearadd494642020-05-01 07:42:23 -0700223 <code class="details" id="list">list(project, maxResults=None, pageToken=None, instance=None, x__xgafv=None)</code>
224 <pre>Lists all instance operations that have been performed on the given Cloud
225SQL instance in the reverse chronological order of the start time.
Craig Citroe633be12015-03-02 13:40:36 -0800226
227Args:
228 project: string, Project ID of the project that contains the instance. (required)
Craig Citroe633be12015-03-02 13:40:36 -0800229 maxResults: integer, Maximum number of operations per response.
Dan O'Mearadd494642020-05-01 07:42:23 -0700230 pageToken: string, A previously-returned page token representing part of the larger set of
231results to view.
232 instance: string, Cloud SQL instance ID. This does not include the project ID.
233 x__xgafv: string, V1 error format.
234 Allowed values
235 1 - v1 error format
236 2 - v2 error format
Craig Citroe633be12015-03-02 13:40:36 -0800237
238Returns:
239 An object of the form:
240
241 { # Database instance list operations response.
Dan O'Mearadd494642020-05-01 07:42:23 -0700242 "nextPageToken": "A String", # The continuation token, used to page through large result sets. Provide
243 # this value in a subsequent request to return the next page of results.
Craig Citroe633be12015-03-02 13:40:36 -0800244 "items": [ # List of operation resources.
Dan O'Mearadd494642020-05-01 07:42:23 -0700245 { # An Operation resource.&amp;nbsp;For successful operations that return an
246 # Operation resource, only the fields relevant to the operation are populated
247 # in the resource.
248 "status": "A String", # The status of an operation. Valid values are &lt;code&gt;PENDING&lt;/code&gt;,
249 # &lt;code&gt;RUNNING&lt;/code&gt;, &lt;code&gt;DONE&lt;/code&gt;,
250 # &lt;code&gt;SQL_OPERATION_STATUS_UNSPECIFIED&lt;/code&gt;.
Craig Citroe633be12015-03-02 13:40:36 -0800251 "importContext": { # Database instance import context. # The context for import operation, if applicable.
Dan O'Mearadd494642020-05-01 07:42:23 -0700252 "bakImportOptions": { # Import parameters specific to SQL Server .BAK files
253 "encryptionOptions": {
254 "pvkPath": "A String", # Path to the Certificate Private Key (.pvk) in Cloud Storage, in the
255 # form &lt;code&gt;gs://bucketName/fileName&lt;/code&gt;. The instance must have
256 # write permissions to the bucket and read access to the file.
257 "certPath": "A String", # Path to the Certificate (.cer) in Cloud Storage, in the form
258 # &lt;code&gt;gs://bucketName/fileName&lt;/code&gt;. The instance must have
259 # write permissions to the bucket and read access to the file.
260 "pvkPassword": "A String", # Password that encrypts the private key
261 },
262 },
263 "kind": "A String", # This is always &lt;code&gt;sql#importContext&lt;/code&gt;.
264 "database": "A String", # The target database for the import. If &lt;code&gt;fileType&lt;/code&gt; is
265 # &lt;code&gt;SQL&lt;/code&gt;, this field is required only if the import file does not
266 # specify a database, and is overridden by any database specification in the
267 # import file. If &lt;code&gt;fileType&lt;/code&gt; is &lt;code&gt;CSV&lt;/code&gt;, one database
268 # must be specified.
269 "fileType": "A String", # The file type for the specified uri. &lt;br&gt;&lt;code&gt;SQL&lt;/code&gt;: The file
270 # contains SQL statements. &lt;br&gt;&lt;code&gt;CSV&lt;/code&gt;: The file contains CSV data.
271 "uri": "A String", # Path to the import file in Cloud Storage, in the form
272 # &lt;code&gt;gs:
273 # //bucketName/fileName&lt;/code&gt;. Compressed gzip files (.gz) are supported
274 # // when &lt;code&gt;fileType&lt;/code&gt; is &lt;code&gt;SQL&lt;/code&gt;. The instance must have
275 # // write permissions to the bucket and read access to the file.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700276 "importUser": "A String", # The PostgreSQL user for this import operation. PostgreSQL instances only.
Craig Citroe633be12015-03-02 13:40:36 -0800277 "csvImportOptions": { # Options for importing data as CSV.
278 "table": "A String", # The table to which CSV data is imported.
Dan O'Mearadd494642020-05-01 07:42:23 -0700279 "columns": [ # The columns to which CSV data is imported. If not specified, all columns
280 # of the database table are loaded with CSV data.
Craig Citroe633be12015-03-02 13:40:36 -0800281 "A String",
282 ],
283 },
284 },
Dan O'Mearadd494642020-05-01 07:42:23 -0700285 "kind": "A String", # This is always &lt;code&gt;sql#operation&lt;/code&gt;.
286 "targetProject": "A String", # The project ID of the target instance related to this operation.
287 "name": "A String", # An identifier that uniquely identifies the operation. You can use this
288 # identifier to retrieve the Operations resource that has information about
289 # the operation.
Craig Citroe633be12015-03-02 13:40:36 -0800290 "exportContext": { # Database instance export context. # The context for export operation, if applicable.
Dan O'Mearadd494642020-05-01 07:42:23 -0700291 "kind": "A String", # This is always &lt;code&gt;sql#exportContext&lt;/code&gt;.
292 "fileType": "A String", # The file type for the specified uri. &lt;br&gt;&lt;code&gt;SQL&lt;/code&gt;: The file
293 # contains SQL statements. &lt;br&gt;&lt;code&gt;CSV&lt;/code&gt;: The file contains CSV data.
294 "uri": "A String", # The path to the file in Google Cloud Storage where the export will be
295 # stored. The URI is in the form &lt;code&gt;gs:
296 # //bucketName/fileName&lt;/code&gt;. If the file already exists, the requests
297 # // succeeds, but the operation fails. If &lt;code&gt;fileType&lt;/code&gt; is
298 # // &lt;code&gt;SQL&lt;/code&gt; and the filename ends with .gz, the contents are
299 # // compressed.
Craig Citroe633be12015-03-02 13:40:36 -0800300 "csvExportOptions": { # Options for exporting data as CSV.
301 "selectQuery": "A String", # The select query used to extract the data.
302 },
Dan O'Mearadd494642020-05-01 07:42:23 -0700303 "databases": [ # Databases to be exported. &lt;br /&gt; &lt;b&gt;MySQL instances:&lt;/b&gt; If
304 # &lt;code&gt;fileType&lt;/code&gt; is &lt;code&gt;SQL&lt;/code&gt; and no database is specified, all
305 # databases are exported, except for the &lt;code&gt;mysql&lt;/code&gt; system database.
306 # If &lt;code&gt;fileType&lt;/code&gt; is &lt;code&gt;CSV&lt;/code&gt;, you can specify one database,
307 # either by using this property or by using the
308 # &lt;code&gt;csvExportOptions.selectQuery&lt;/code&gt; property, which takes precedence
309 # over this property. &lt;br /&gt; &lt;b&gt;PostgreSQL instances:&lt;/b&gt; You must specify
310 # one database to be exported. If &lt;code&gt;fileType&lt;/code&gt; is &lt;code&gt;CSV&lt;/code&gt;,
311 # this database must match the one specified in the
312 # &lt;code&gt;csvExportOptions.selectQuery&lt;/code&gt; property.
Craig Citroe633be12015-03-02 13:40:36 -0800313 "A String",
314 ],
315 "sqlExportOptions": { # Options for exporting data as SQL statements.
Dan O'Mearadd494642020-05-01 07:42:23 -0700316 "tables": [ # Tables to export, or that were exported, from the specified database. If
317 # you specify tables, specify one and only one database. For PostgreSQL
318 # instances, you can specify only one table.
Craig Citroe633be12015-03-02 13:40:36 -0800319 "A String",
320 ],
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700321 "mysqlExportOptions": { # Options for exporting from MySQL.
Dan O'Mearadd494642020-05-01 07:42:23 -0700322 "masterData": 42, # Option to include SQL statement required to set up replication.
323 # If set to &lt;code&gt;1&lt;/code&gt;, the dump file includes
324 # a CHANGE MASTER TO statement with the binary log coordinates.
325 # If set to &lt;code&gt;2&lt;/code&gt;, the CHANGE MASTER TO statement is written as
326 # a SQL comment, and has no effect.
327 # All other values are ignored.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700328 },
Jon Wayne Parrott36e41bc2016-02-19 16:02:29 -0800329 "schemaOnly": True or False, # Export only schemas.
Craig Citroe633be12015-03-02 13:40:36 -0800330 },
331 },
Dan O'Mearadd494642020-05-01 07:42:23 -0700332 "insertTime": "A String", # The time this operation was enqueued in UTC timezone in &lt;a
333 # href="https://tools.ietf.org/html/rfc3339"&gt;RFC 3339&lt;/a&gt; format, for example
334 # &lt;code&gt;2012-11-15T16:19:00.094Z&lt;/code&gt;.
Craig Citroe633be12015-03-02 13:40:36 -0800335 "targetId": "A String", # Name of the database instance related to this operation.
Dan O'Mearadd494642020-05-01 07:42:23 -0700336 "operationType": "A String", # The type of the operation. Valid values are &lt;code&gt;CREATE&lt;/code&gt;,
337 # &lt;code&gt;DELETE&lt;/code&gt;, &lt;code&gt;UPDATE&lt;/code&gt;, &lt;code&gt;RESTART&lt;/code&gt;,
338 # &lt;code&gt;IMPORT&lt;/code&gt;, &lt;code&gt;EXPORT&lt;/code&gt;, &lt;code&gt;BACKUP_VOLUME&lt;/code&gt;,
339 # &lt;code&gt;RESTORE_VOLUME&lt;/code&gt;, &lt;code&gt;CREATE_USER&lt;/code&gt;,
340 # &lt;code&gt;DELETE_USER&lt;/code&gt;, &lt;code&gt;CREATE_DATABASE&lt;/code&gt;,
341 # &lt;code&gt;DELETE_DATABASE&lt;/code&gt; .
342 "user": "A String", # The email address of the user who initiated this operation.
343 "startTime": "A String", # The time this operation actually started in UTC timezone in &lt;a
344 # href="https://tools.ietf.org/html/rfc3339"&gt;RFC 3339&lt;/a&gt; format, for example
345 # &lt;code&gt;2012-11-15T16:19:00.094Z&lt;/code&gt;.
346 "error": { # Database instance operation errors list wrapper. # If errors occurred during processing of this operation, this field will be
347 # populated.
348 "kind": "A String", # This is always &lt;code&gt;sql#operationErrors&lt;/code&gt;.
Craig Citroe633be12015-03-02 13:40:36 -0800349 "errors": [ # The list of errors encountered while processing this operation.
350 { # Database instance operation error.
Dan O'Mearadd494642020-05-01 07:42:23 -0700351 "kind": "A String", # This is always &lt;code&gt;sql#operationError&lt;/code&gt;.
Craig Citroe633be12015-03-02 13:40:36 -0800352 "code": "A String", # Identifies the specific error that occurred.
353 "message": "A String", # Additional information about the error encountered.
354 },
355 ],
356 },
Dan O'Mearadd494642020-05-01 07:42:23 -0700357 "endTime": "A String", # The time this operation finished in UTC timezone in &lt;a
358 # href="https://tools.ietf.org/html/rfc3339"&gt;RFC 3339&lt;/a&gt; format, for example
359 # &lt;code&gt;2012-11-15T16:19:00.094Z&lt;/code&gt;.
Craig Citroe633be12015-03-02 13:40:36 -0800360 "selfLink": "A String", # The URI of this resource.
Dan O'Mearadd494642020-05-01 07:42:23 -0700361 "targetLink": "A String",
Craig Citroe633be12015-03-02 13:40:36 -0800362 },
363 ],
Dan O'Mearadd494642020-05-01 07:42:23 -0700364 "kind": "A String", # This is always &lt;code&gt;sql#operationsList&lt;/code&gt;.
Craig Citroe633be12015-03-02 13:40:36 -0800365 }</pre>
366</div>
367
368<div class="method">
369 <code class="details" id="list_next">list_next(previous_request, previous_response)</code>
370 <pre>Retrieves the next page of results.
371
372Args:
373 previous_request: The request for the previous page. (required)
374 previous_response: The response from the request for the previous page. (required)
375
376Returns:
377 A request object that you can call 'execute()' on to request the next
378 page. Returns None if there are no more items in the collection.
379 </pre>
380</div>
381
382</body></html>