blob: 92322d15f63eb15acf414a15c775622ba612c1b0 [file] [log] [blame]
Bu Sun Kim65020912020-05-20 12:08:20 -07001<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="sql_v1beta4.html">Cloud SQL Admin API</a> . <a href="sql_v1beta4.operations.html">operations</a></h1>
76<h2>Instance Methods</h2>
77<p class="toc_element">
78 <code><a href="#get">get(project, operation, x__xgafv=None)</a></code></p>
79<p class="firstline">Retrieves an instance operation that has been performed on an instance.</p>
80<p class="toc_element">
81 <code><a href="#list">list(project, instance=None, pageToken=None, maxResults=None, x__xgafv=None)</a></code></p>
82<p class="firstline">Lists all instance operations that have been performed on the given Cloud</p>
83<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">
88 <code class="details" id="get">get(project, operation, x__xgafv=None)</code>
89 <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)
94 x__xgafv: string, V1 error format.
95 Allowed values
96 1 - v1 error format
97 2 - v2 error format
98
99Returns:
100 An object of the form:
101
102 { # 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.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700105 &quot;name&quot;: &quot;A String&quot;, # An identifier that uniquely identifies the operation. You can use this
106 # identifier to retrieve the Operations resource that has information about
107 # the operation.
108 &quot;exportContext&quot;: { # Database instance export context. # The context for export operation, if applicable.
109 &quot;kind&quot;: &quot;A String&quot;, # This is always &lt;code&gt;sql#exportContext&lt;/code&gt;.
110 &quot;databases&quot;: [ # Databases to be exported. &lt;br /&gt; &lt;b&gt;MySQL instances:&lt;/b&gt; If
111 # &lt;code&gt;fileType&lt;/code&gt; is &lt;code&gt;SQL&lt;/code&gt; and no database is specified, all
112 # databases are exported, except for the &lt;code&gt;mysql&lt;/code&gt; system database.
113 # If &lt;code&gt;fileType&lt;/code&gt; is &lt;code&gt;CSV&lt;/code&gt;, you can specify one database,
114 # either by using this property or by using the
115 # &lt;code&gt;csvExportOptions.selectQuery&lt;/code&gt; property, which takes precedence
116 # over this property. &lt;br /&gt; &lt;b&gt;PostgreSQL instances:&lt;/b&gt; You must specify
117 # one database to be exported. If &lt;code&gt;fileType&lt;/code&gt; is &lt;code&gt;CSV&lt;/code&gt;,
118 # this database must match the one specified in the
119 # &lt;code&gt;csvExportOptions.selectQuery&lt;/code&gt; property.
120 &quot;A String&quot;,
121 ],
122 &quot;sqlExportOptions&quot;: { # Options for exporting data as SQL statements.
123 &quot;schemaOnly&quot;: True or False, # Export only schemas.
124 &quot;mysqlExportOptions&quot;: { # Options for exporting from MySQL.
125 &quot;masterData&quot;: 42, # Option to include SQL statement required to set up replication.
126 # If set to &lt;code&gt;1&lt;/code&gt;, the dump file includes
127 # a CHANGE MASTER TO statement with the binary log coordinates.
128 # If set to &lt;code&gt;2&lt;/code&gt;, the CHANGE MASTER TO statement is written as
129 # a SQL comment, and has no effect.
130 # All other values are ignored.
131 },
132 &quot;tables&quot;: [ # Tables to export, or that were exported, from the specified database. If
133 # you specify tables, specify one and only one database. For PostgreSQL
134 # instances, you can specify only one table.
135 &quot;A String&quot;,
136 ],
137 },
138 &quot;fileType&quot;: &quot;A String&quot;, # The file type for the specified uri. &lt;br&gt;&lt;code&gt;SQL&lt;/code&gt;: The file
139 # contains SQL statements. &lt;br&gt;&lt;code&gt;CSV&lt;/code&gt;: The file contains CSV data.
140 &quot;uri&quot;: &quot;A String&quot;, # The path to the file in Google Cloud Storage where the export will be
141 # stored. The URI is in the form &lt;code&gt;gs:
142 # //bucketName/fileName&lt;/code&gt;. If the file already exists, the requests
143 # // succeeds, but the operation fails. If &lt;code&gt;fileType&lt;/code&gt; is
144 # // &lt;code&gt;SQL&lt;/code&gt; and the filename ends with .gz, the contents are
145 # // compressed.
146 &quot;csvExportOptions&quot;: { # Options for exporting data as CSV.
147 &quot;selectQuery&quot;: &quot;A String&quot;, # The select query used to extract the data.
148 },
149 },
150 &quot;targetId&quot;: &quot;A String&quot;, # Name of the database instance related to this operation.
151 &quot;endTime&quot;: &quot;A String&quot;, # The time this operation finished in UTC timezone in &lt;a
152 # href=&quot;https://tools.ietf.org/html/rfc3339&quot;&gt;RFC 3339&lt;/a&gt; format, for example
153 # &lt;code&gt;2012-11-15T16:19:00.094Z&lt;/code&gt;.
154 &quot;startTime&quot;: &quot;A String&quot;, # The time this operation actually started in UTC timezone in &lt;a
155 # href=&quot;https://tools.ietf.org/html/rfc3339&quot;&gt;RFC 3339&lt;/a&gt; format, for example
156 # &lt;code&gt;2012-11-15T16:19:00.094Z&lt;/code&gt;.
157 &quot;insertTime&quot;: &quot;A String&quot;, # The time this operation was enqueued in UTC timezone in &lt;a
158 # href=&quot;https://tools.ietf.org/html/rfc3339&quot;&gt;RFC 3339&lt;/a&gt; format, for example
159 # &lt;code&gt;2012-11-15T16:19:00.094Z&lt;/code&gt;.
Bu Sun Kim65020912020-05-20 12:08:20 -0700160 &quot;user&quot;: &quot;A String&quot;, # The email address of the user who initiated this operation.
161 &quot;targetProject&quot;: &quot;A String&quot;, # The project ID of the target instance related to this operation.
162 &quot;selfLink&quot;: &quot;A String&quot;, # The URI of this resource.
163 &quot;targetLink&quot;: &quot;A String&quot;,
164 &quot;operationType&quot;: &quot;A String&quot;, # The type of the operation. Valid values are &lt;code&gt;CREATE&lt;/code&gt;,
165 # &lt;code&gt;DELETE&lt;/code&gt;, &lt;code&gt;UPDATE&lt;/code&gt;, &lt;code&gt;RESTART&lt;/code&gt;,
166 # &lt;code&gt;IMPORT&lt;/code&gt;, &lt;code&gt;EXPORT&lt;/code&gt;, &lt;code&gt;BACKUP_VOLUME&lt;/code&gt;,
167 # &lt;code&gt;RESTORE_VOLUME&lt;/code&gt;, &lt;code&gt;CREATE_USER&lt;/code&gt;,
168 # &lt;code&gt;DELETE_USER&lt;/code&gt;, &lt;code&gt;CREATE_DATABASE&lt;/code&gt;,
169 # &lt;code&gt;DELETE_DATABASE&lt;/code&gt; .
170 &quot;error&quot;: { # Database instance operation errors list wrapper. # If errors occurred during processing of this operation, this field will be
171 # populated.
172 &quot;errors&quot;: [ # The list of errors encountered while processing this operation.
173 { # Database instance operation error.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700174 &quot;kind&quot;: &quot;A String&quot;, # This is always &lt;code&gt;sql#operationError&lt;/code&gt;.
Bu Sun Kim65020912020-05-20 12:08:20 -0700175 &quot;code&quot;: &quot;A String&quot;, # Identifies the specific error that occurred.
176 &quot;message&quot;: &quot;A String&quot;, # Additional information about the error encountered.
Bu Sun Kim65020912020-05-20 12:08:20 -0700177 },
178 ],
179 &quot;kind&quot;: &quot;A String&quot;, # This is always &lt;code&gt;sql#operationErrors&lt;/code&gt;.
180 },
181 &quot;kind&quot;: &quot;A String&quot;, # This is always &lt;code&gt;sql#operation&lt;/code&gt;.
182 &quot;importContext&quot;: { # Database instance import context. # The context for import operation, if applicable.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700183 &quot;kind&quot;: &quot;A String&quot;, # This is always &lt;code&gt;sql#importContext&lt;/code&gt;.
Bu Sun Kim65020912020-05-20 12:08:20 -0700184 &quot;csvImportOptions&quot;: { # Options for importing data as CSV.
185 &quot;columns&quot;: [ # The columns to which CSV data is imported. If not specified, all columns
186 # of the database table are loaded with CSV data.
187 &quot;A String&quot;,
188 ],
189 &quot;table&quot;: &quot;A String&quot;, # The table to which CSV data is imported.
190 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700191 &quot;database&quot;: &quot;A String&quot;, # The target database for the import. If &lt;code&gt;fileType&lt;/code&gt; is
192 # &lt;code&gt;SQL&lt;/code&gt;, this field is required only if the import file does not
193 # specify a database, and is overridden by any database specification in the
194 # import file. If &lt;code&gt;fileType&lt;/code&gt; is &lt;code&gt;CSV&lt;/code&gt;, one database
195 # must be specified.
196 &quot;importUser&quot;: &quot;A String&quot;, # The PostgreSQL user for this import operation. PostgreSQL instances only.
197 &quot;bakImportOptions&quot;: { # Import parameters specific to SQL Server .BAK files
198 &quot;encryptionOptions&quot;: {
199 &quot;pvkPassword&quot;: &quot;A String&quot;, # Password that encrypts the private key
200 &quot;certPath&quot;: &quot;A String&quot;, # Path to the Certificate (.cer) in Cloud Storage, in the form
201 # &lt;code&gt;gs://bucketName/fileName&lt;/code&gt;. The instance must have
202 # write permissions to the bucket and read access to the file.
203 &quot;pvkPath&quot;: &quot;A String&quot;, # Path to the Certificate Private Key (.pvk) in Cloud Storage, in the
204 # form &lt;code&gt;gs://bucketName/fileName&lt;/code&gt;. The instance must have
205 # write permissions to the bucket and read access to the file.
206 },
207 },
208 &quot;uri&quot;: &quot;A String&quot;, # Path to the import file in Cloud Storage, in the form
209 # &lt;code&gt;gs:
210 # //bucketName/fileName&lt;/code&gt;. Compressed gzip files (.gz) are supported
211 # // when &lt;code&gt;fileType&lt;/code&gt; is &lt;code&gt;SQL&lt;/code&gt;. The instance must have
212 # // write permissions to the bucket and read access to the file.
213 &quot;fileType&quot;: &quot;A String&quot;, # The file type for the specified uri. &lt;br&gt;&lt;code&gt;SQL&lt;/code&gt;: The file
214 # contains SQL statements. &lt;br&gt;&lt;code&gt;CSV&lt;/code&gt;: The file contains CSV data.
215 },
216 &quot;status&quot;: &quot;A String&quot;, # The status of an operation. Valid values are &lt;code&gt;PENDING&lt;/code&gt;,
217 # &lt;code&gt;RUNNING&lt;/code&gt;, &lt;code&gt;DONE&lt;/code&gt;,
218 # &lt;code&gt;SQL_OPERATION_STATUS_UNSPECIFIED&lt;/code&gt;.
Bu Sun Kim65020912020-05-20 12:08:20 -0700219 }</pre>
220</div>
221
222<div class="method">
223 <code class="details" id="list">list(project, instance=None, pageToken=None, maxResults=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.
226
227Args:
228 project: string, Project ID of the project that contains the instance. (required)
229 instance: string, Cloud SQL instance ID. This does not include the project ID.
230 pageToken: string, A previously-returned page token representing part of the larger set of
231results to view.
232 maxResults: integer, Maximum number of operations per response.
233 x__xgafv: string, V1 error format.
234 Allowed values
235 1 - v1 error format
236 2 - v2 error format
237
238Returns:
239 An object of the form:
240
241 { # Database instance list operations response.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700242 &quot;nextPageToken&quot;: &quot;A String&quot;, # 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.
244 &quot;kind&quot;: &quot;A String&quot;, # This is always &lt;code&gt;sql#operationsList&lt;/code&gt;.
Bu Sun Kim65020912020-05-20 12:08:20 -0700245 &quot;items&quot;: [ # List of operation resources.
246 { # An Operation resource.&amp;nbsp;For successful operations that return an
247 # Operation resource, only the fields relevant to the operation are populated
248 # in the resource.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700249 &quot;name&quot;: &quot;A String&quot;, # An identifier that uniquely identifies the operation. You can use this
250 # identifier to retrieve the Operations resource that has information about
251 # the operation.
252 &quot;exportContext&quot;: { # Database instance export context. # The context for export operation, if applicable.
253 &quot;kind&quot;: &quot;A String&quot;, # This is always &lt;code&gt;sql#exportContext&lt;/code&gt;.
254 &quot;databases&quot;: [ # Databases to be exported. &lt;br /&gt; &lt;b&gt;MySQL instances:&lt;/b&gt; If
255 # &lt;code&gt;fileType&lt;/code&gt; is &lt;code&gt;SQL&lt;/code&gt; and no database is specified, all
256 # databases are exported, except for the &lt;code&gt;mysql&lt;/code&gt; system database.
257 # If &lt;code&gt;fileType&lt;/code&gt; is &lt;code&gt;CSV&lt;/code&gt;, you can specify one database,
258 # either by using this property or by using the
259 # &lt;code&gt;csvExportOptions.selectQuery&lt;/code&gt; property, which takes precedence
260 # over this property. &lt;br /&gt; &lt;b&gt;PostgreSQL instances:&lt;/b&gt; You must specify
261 # one database to be exported. If &lt;code&gt;fileType&lt;/code&gt; is &lt;code&gt;CSV&lt;/code&gt;,
262 # this database must match the one specified in the
263 # &lt;code&gt;csvExportOptions.selectQuery&lt;/code&gt; property.
264 &quot;A String&quot;,
265 ],
266 &quot;sqlExportOptions&quot;: { # Options for exporting data as SQL statements.
267 &quot;schemaOnly&quot;: True or False, # Export only schemas.
268 &quot;mysqlExportOptions&quot;: { # Options for exporting from MySQL.
269 &quot;masterData&quot;: 42, # Option to include SQL statement required to set up replication.
270 # If set to &lt;code&gt;1&lt;/code&gt;, the dump file includes
271 # a CHANGE MASTER TO statement with the binary log coordinates.
272 # If set to &lt;code&gt;2&lt;/code&gt;, the CHANGE MASTER TO statement is written as
273 # a SQL comment, and has no effect.
274 # All other values are ignored.
275 },
276 &quot;tables&quot;: [ # Tables to export, or that were exported, from the specified database. If
277 # you specify tables, specify one and only one database. For PostgreSQL
278 # instances, you can specify only one table.
279 &quot;A String&quot;,
280 ],
281 },
282 &quot;fileType&quot;: &quot;A String&quot;, # The file type for the specified uri. &lt;br&gt;&lt;code&gt;SQL&lt;/code&gt;: The file
283 # contains SQL statements. &lt;br&gt;&lt;code&gt;CSV&lt;/code&gt;: The file contains CSV data.
284 &quot;uri&quot;: &quot;A String&quot;, # The path to the file in Google Cloud Storage where the export will be
285 # stored. The URI is in the form &lt;code&gt;gs:
286 # //bucketName/fileName&lt;/code&gt;. If the file already exists, the requests
287 # // succeeds, but the operation fails. If &lt;code&gt;fileType&lt;/code&gt; is
288 # // &lt;code&gt;SQL&lt;/code&gt; and the filename ends with .gz, the contents are
289 # // compressed.
290 &quot;csvExportOptions&quot;: { # Options for exporting data as CSV.
291 &quot;selectQuery&quot;: &quot;A String&quot;, # The select query used to extract the data.
292 },
293 },
294 &quot;targetId&quot;: &quot;A String&quot;, # Name of the database instance related to this operation.
295 &quot;endTime&quot;: &quot;A String&quot;, # The time this operation finished in UTC timezone in &lt;a
296 # href=&quot;https://tools.ietf.org/html/rfc3339&quot;&gt;RFC 3339&lt;/a&gt; format, for example
297 # &lt;code&gt;2012-11-15T16:19:00.094Z&lt;/code&gt;.
298 &quot;startTime&quot;: &quot;A String&quot;, # The time this operation actually started in UTC timezone in &lt;a
299 # href=&quot;https://tools.ietf.org/html/rfc3339&quot;&gt;RFC 3339&lt;/a&gt; format, for example
300 # &lt;code&gt;2012-11-15T16:19:00.094Z&lt;/code&gt;.
301 &quot;insertTime&quot;: &quot;A String&quot;, # The time this operation was enqueued in UTC timezone in &lt;a
302 # href=&quot;https://tools.ietf.org/html/rfc3339&quot;&gt;RFC 3339&lt;/a&gt; format, for example
303 # &lt;code&gt;2012-11-15T16:19:00.094Z&lt;/code&gt;.
Bu Sun Kim65020912020-05-20 12:08:20 -0700304 &quot;user&quot;: &quot;A String&quot;, # The email address of the user who initiated this operation.
305 &quot;targetProject&quot;: &quot;A String&quot;, # The project ID of the target instance related to this operation.
306 &quot;selfLink&quot;: &quot;A String&quot;, # The URI of this resource.
307 &quot;targetLink&quot;: &quot;A String&quot;,
308 &quot;operationType&quot;: &quot;A String&quot;, # The type of the operation. Valid values are &lt;code&gt;CREATE&lt;/code&gt;,
309 # &lt;code&gt;DELETE&lt;/code&gt;, &lt;code&gt;UPDATE&lt;/code&gt;, &lt;code&gt;RESTART&lt;/code&gt;,
310 # &lt;code&gt;IMPORT&lt;/code&gt;, &lt;code&gt;EXPORT&lt;/code&gt;, &lt;code&gt;BACKUP_VOLUME&lt;/code&gt;,
311 # &lt;code&gt;RESTORE_VOLUME&lt;/code&gt;, &lt;code&gt;CREATE_USER&lt;/code&gt;,
312 # &lt;code&gt;DELETE_USER&lt;/code&gt;, &lt;code&gt;CREATE_DATABASE&lt;/code&gt;,
313 # &lt;code&gt;DELETE_DATABASE&lt;/code&gt; .
314 &quot;error&quot;: { # Database instance operation errors list wrapper. # If errors occurred during processing of this operation, this field will be
315 # populated.
316 &quot;errors&quot;: [ # The list of errors encountered while processing this operation.
317 { # Database instance operation error.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700318 &quot;kind&quot;: &quot;A String&quot;, # This is always &lt;code&gt;sql#operationError&lt;/code&gt;.
Bu Sun Kim65020912020-05-20 12:08:20 -0700319 &quot;code&quot;: &quot;A String&quot;, # Identifies the specific error that occurred.
320 &quot;message&quot;: &quot;A String&quot;, # Additional information about the error encountered.
Bu Sun Kim65020912020-05-20 12:08:20 -0700321 },
322 ],
323 &quot;kind&quot;: &quot;A String&quot;, # This is always &lt;code&gt;sql#operationErrors&lt;/code&gt;.
324 },
325 &quot;kind&quot;: &quot;A String&quot;, # This is always &lt;code&gt;sql#operation&lt;/code&gt;.
326 &quot;importContext&quot;: { # Database instance import context. # The context for import operation, if applicable.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700327 &quot;kind&quot;: &quot;A String&quot;, # This is always &lt;code&gt;sql#importContext&lt;/code&gt;.
Bu Sun Kim65020912020-05-20 12:08:20 -0700328 &quot;csvImportOptions&quot;: { # Options for importing data as CSV.
329 &quot;columns&quot;: [ # The columns to which CSV data is imported. If not specified, all columns
330 # of the database table are loaded with CSV data.
331 &quot;A String&quot;,
332 ],
333 &quot;table&quot;: &quot;A String&quot;, # The table to which CSV data is imported.
334 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700335 &quot;database&quot;: &quot;A String&quot;, # The target database for the import. If &lt;code&gt;fileType&lt;/code&gt; is
336 # &lt;code&gt;SQL&lt;/code&gt;, this field is required only if the import file does not
337 # specify a database, and is overridden by any database specification in the
338 # import file. If &lt;code&gt;fileType&lt;/code&gt; is &lt;code&gt;CSV&lt;/code&gt;, one database
339 # must be specified.
340 &quot;importUser&quot;: &quot;A String&quot;, # The PostgreSQL user for this import operation. PostgreSQL instances only.
341 &quot;bakImportOptions&quot;: { # Import parameters specific to SQL Server .BAK files
342 &quot;encryptionOptions&quot;: {
343 &quot;pvkPassword&quot;: &quot;A String&quot;, # Password that encrypts the private key
344 &quot;certPath&quot;: &quot;A String&quot;, # Path to the Certificate (.cer) in Cloud Storage, in the form
345 # &lt;code&gt;gs://bucketName/fileName&lt;/code&gt;. The instance must have
346 # write permissions to the bucket and read access to the file.
347 &quot;pvkPath&quot;: &quot;A String&quot;, # Path to the Certificate Private Key (.pvk) in Cloud Storage, in the
348 # form &lt;code&gt;gs://bucketName/fileName&lt;/code&gt;. The instance must have
349 # write permissions to the bucket and read access to the file.
350 },
351 },
352 &quot;uri&quot;: &quot;A String&quot;, # Path to the import file in Cloud Storage, in the form
353 # &lt;code&gt;gs:
354 # //bucketName/fileName&lt;/code&gt;. Compressed gzip files (.gz) are supported
355 # // when &lt;code&gt;fileType&lt;/code&gt; is &lt;code&gt;SQL&lt;/code&gt;. The instance must have
356 # // write permissions to the bucket and read access to the file.
357 &quot;fileType&quot;: &quot;A String&quot;, # The file type for the specified uri. &lt;br&gt;&lt;code&gt;SQL&lt;/code&gt;: The file
358 # contains SQL statements. &lt;br&gt;&lt;code&gt;CSV&lt;/code&gt;: The file contains CSV data.
359 },
360 &quot;status&quot;: &quot;A String&quot;, # The status of an operation. Valid values are &lt;code&gt;PENDING&lt;/code&gt;,
361 # &lt;code&gt;RUNNING&lt;/code&gt;, &lt;code&gt;DONE&lt;/code&gt;,
362 # &lt;code&gt;SQL_OPERATION_STATUS_UNSPECIFIED&lt;/code&gt;.
Bu Sun Kim65020912020-05-20 12:08:20 -0700363 },
364 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700365 }</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 &#x27;execute()&#x27; 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>