blob: b816bcd764b6012dc8ef0b0e4c71151dbbbe7660 [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.projects.html">projects</a> . <a href="sql_v1beta4.projects.instances.html">instances</a></h1>
76<h2>Instance Methods</h2>
77<p class="toc_element">
78 <code><a href="#rescheduleMaintenance">rescheduleMaintenance(project, instance, body=None, x__xgafv=None)</a></code></p>
79<p class="firstline">Reschedules the maintenance on the given instance.</p>
80<p class="toc_element">
81 <code><a href="#startExternalSync">startExternalSync(project, instance, syncMode=None, x__xgafv=None)</a></code></p>
82<p class="firstline">Start External master migration.</p>
83<p class="toc_element">
84 <code><a href="#verifyExternalSyncSettings">verifyExternalSyncSettings(project, instance, verifyConnectionOnly=None, syncMode=None, x__xgafv=None)</a></code></p>
85<p class="firstline">Verify External master external sync settings.</p>
86<h3>Method Details</h3>
87<div class="method">
88 <code class="details" id="rescheduleMaintenance">rescheduleMaintenance(project, instance, body=None, x__xgafv=None)</code>
89 <pre>Reschedules the maintenance on the given instance.
90
91Args:
92 project: string, ID of the project that contains the instance. (required)
93 instance: string, Cloud SQL instance ID. This does not include the project ID. (required)
94 body: object, The request body.
95 The object takes the form of:
96
97{ # Reschedule options for maintenance windows.
98 &quot;reschedule&quot;: { # Required. The type of the reschedule the user wants.
99 &quot;rescheduleType&quot;: &quot;A String&quot;, # Required. The type of the reschedule.
100 &quot;scheduleTime&quot;: &quot;A String&quot;, # Optional. Timestamp when the maintenance shall be rescheduled to if
101 # reschedule_type=SPECIFIC_TIME, in &lt;a
102 # href=&quot;https://tools.ietf.org/html/rfc3339&quot;&gt;RFC 3339&lt;/a&gt; format, for
103 # example &lt;code&gt;2012-11-15T16:19:00.094Z&lt;/code&gt;.
104 },
105 }
106
107 x__xgafv: string, V1 error format.
108 Allowed values
109 1 - v1 error format
110 2 - v2 error format
111
112Returns:
113 An object of the form:
114
115 { # An Operation resource.&amp;nbsp;For successful operations that return an
116 # Operation resource, only the fields relevant to the operation are populated
117 # in the resource.
118 &quot;user&quot;: &quot;A String&quot;, # The email address of the user who initiated this operation.
119 &quot;targetProject&quot;: &quot;A String&quot;, # The project ID of the target instance related to this operation.
120 &quot;selfLink&quot;: &quot;A String&quot;, # The URI of this resource.
121 &quot;targetLink&quot;: &quot;A String&quot;,
122 &quot;operationType&quot;: &quot;A String&quot;, # The type of the operation. Valid values are &lt;code&gt;CREATE&lt;/code&gt;,
123 # &lt;code&gt;DELETE&lt;/code&gt;, &lt;code&gt;UPDATE&lt;/code&gt;, &lt;code&gt;RESTART&lt;/code&gt;,
124 # &lt;code&gt;IMPORT&lt;/code&gt;, &lt;code&gt;EXPORT&lt;/code&gt;, &lt;code&gt;BACKUP_VOLUME&lt;/code&gt;,
125 # &lt;code&gt;RESTORE_VOLUME&lt;/code&gt;, &lt;code&gt;CREATE_USER&lt;/code&gt;,
126 # &lt;code&gt;DELETE_USER&lt;/code&gt;, &lt;code&gt;CREATE_DATABASE&lt;/code&gt;,
127 # &lt;code&gt;DELETE_DATABASE&lt;/code&gt; .
128 &quot;error&quot;: { # Database instance operation errors list wrapper. # If errors occurred during processing of this operation, this field will be
129 # populated.
130 &quot;errors&quot;: [ # The list of errors encountered while processing this operation.
131 { # Database instance operation error.
132 &quot;code&quot;: &quot;A String&quot;, # Identifies the specific error that occurred.
133 &quot;message&quot;: &quot;A String&quot;, # Additional information about the error encountered.
134 &quot;kind&quot;: &quot;A String&quot;, # This is always &lt;code&gt;sql#operationError&lt;/code&gt;.
135 },
136 ],
137 &quot;kind&quot;: &quot;A String&quot;, # This is always &lt;code&gt;sql#operationErrors&lt;/code&gt;.
138 },
139 &quot;kind&quot;: &quot;A String&quot;, # This is always &lt;code&gt;sql#operation&lt;/code&gt;.
140 &quot;importContext&quot;: { # Database instance import context. # The context for import operation, if applicable.
141 &quot;csvImportOptions&quot;: { # Options for importing data as CSV.
142 &quot;columns&quot;: [ # The columns to which CSV data is imported. If not specified, all columns
143 # of the database table are loaded with CSV data.
144 &quot;A String&quot;,
145 ],
146 &quot;table&quot;: &quot;A String&quot;, # The table to which CSV data is imported.
147 },
148 &quot;kind&quot;: &quot;A String&quot;, # This is always &lt;code&gt;sql#importContext&lt;/code&gt;.
149 &quot;database&quot;: &quot;A String&quot;, # The target database for the import. If &lt;code&gt;fileType&lt;/code&gt; is
150 # &lt;code&gt;SQL&lt;/code&gt;, this field is required only if the import file does not
151 # specify a database, and is overridden by any database specification in the
152 # import file. If &lt;code&gt;fileType&lt;/code&gt; is &lt;code&gt;CSV&lt;/code&gt;, one database
153 # must be specified.
154 &quot;importUser&quot;: &quot;A String&quot;, # The PostgreSQL user for this import operation. PostgreSQL instances only.
155 &quot;bakImportOptions&quot;: { # Import parameters specific to SQL Server .BAK files
156 &quot;encryptionOptions&quot;: {
157 &quot;pvkPassword&quot;: &quot;A String&quot;, # Password that encrypts the private key
158 &quot;certPath&quot;: &quot;A String&quot;, # Path to the Certificate (.cer) in Cloud Storage, in the form
159 # &lt;code&gt;gs://bucketName/fileName&lt;/code&gt;. The instance must have
160 # write permissions to the bucket and read access to the file.
161 &quot;pvkPath&quot;: &quot;A String&quot;, # Path to the Certificate Private Key (.pvk) in Cloud Storage, in the
162 # form &lt;code&gt;gs://bucketName/fileName&lt;/code&gt;. The instance must have
163 # write permissions to the bucket and read access to the file.
164 },
165 },
166 &quot;uri&quot;: &quot;A String&quot;, # Path to the import file in Cloud Storage, in the form
167 # &lt;code&gt;gs:
168 # //bucketName/fileName&lt;/code&gt;. Compressed gzip files (.gz) are supported
169 # // when &lt;code&gt;fileType&lt;/code&gt; is &lt;code&gt;SQL&lt;/code&gt;. The instance must have
170 # // write permissions to the bucket and read access to the file.
171 &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
172 # contains SQL statements. &lt;br&gt;&lt;code&gt;CSV&lt;/code&gt;: The file contains CSV data.
173 },
174 &quot;status&quot;: &quot;A String&quot;, # The status of an operation. Valid values are &lt;code&gt;PENDING&lt;/code&gt;,
175 # &lt;code&gt;RUNNING&lt;/code&gt;, &lt;code&gt;DONE&lt;/code&gt;,
176 # &lt;code&gt;SQL_OPERATION_STATUS_UNSPECIFIED&lt;/code&gt;.
177 &quot;name&quot;: &quot;A String&quot;, # An identifier that uniquely identifies the operation. You can use this
178 # identifier to retrieve the Operations resource that has information about
179 # the operation.
180 &quot;exportContext&quot;: { # Database instance export context. # The context for export operation, if applicable.
181 &quot;databases&quot;: [ # Databases to be exported. &lt;br /&gt; &lt;b&gt;MySQL instances:&lt;/b&gt; If
182 # &lt;code&gt;fileType&lt;/code&gt; is &lt;code&gt;SQL&lt;/code&gt; and no database is specified, all
183 # databases are exported, except for the &lt;code&gt;mysql&lt;/code&gt; system database.
184 # If &lt;code&gt;fileType&lt;/code&gt; is &lt;code&gt;CSV&lt;/code&gt;, you can specify one database,
185 # either by using this property or by using the
186 # &lt;code&gt;csvExportOptions.selectQuery&lt;/code&gt; property, which takes precedence
187 # over this property. &lt;br /&gt; &lt;b&gt;PostgreSQL instances:&lt;/b&gt; You must specify
188 # one database to be exported. If &lt;code&gt;fileType&lt;/code&gt; is &lt;code&gt;CSV&lt;/code&gt;,
189 # this database must match the one specified in the
190 # &lt;code&gt;csvExportOptions.selectQuery&lt;/code&gt; property.
191 &quot;A String&quot;,
192 ],
193 &quot;sqlExportOptions&quot;: { # Options for exporting data as SQL statements.
194 &quot;tables&quot;: [ # Tables to export, or that were exported, from the specified database. If
195 # you specify tables, specify one and only one database. For PostgreSQL
196 # instances, you can specify only one table.
197 &quot;A String&quot;,
198 ],
199 &quot;schemaOnly&quot;: True or False, # Export only schemas.
200 &quot;mysqlExportOptions&quot;: { # Options for exporting from MySQL.
201 &quot;masterData&quot;: 42, # Option to include SQL statement required to set up replication.
202 # If set to &lt;code&gt;1&lt;/code&gt;, the dump file includes
203 # a CHANGE MASTER TO statement with the binary log coordinates.
204 # If set to &lt;code&gt;2&lt;/code&gt;, the CHANGE MASTER TO statement is written as
205 # a SQL comment, and has no effect.
206 # All other values are ignored.
207 },
208 },
209 &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
210 # contains SQL statements. &lt;br&gt;&lt;code&gt;CSV&lt;/code&gt;: The file contains CSV data.
211 &quot;uri&quot;: &quot;A String&quot;, # The path to the file in Google Cloud Storage where the export will be
212 # stored. The URI is in the form &lt;code&gt;gs:
213 # //bucketName/fileName&lt;/code&gt;. If the file already exists, the requests
214 # // succeeds, but the operation fails. If &lt;code&gt;fileType&lt;/code&gt; is
215 # // &lt;code&gt;SQL&lt;/code&gt; and the filename ends with .gz, the contents are
216 # // compressed.
217 &quot;csvExportOptions&quot;: { # Options for exporting data as CSV.
218 &quot;selectQuery&quot;: &quot;A String&quot;, # The select query used to extract the data.
219 },
220 &quot;kind&quot;: &quot;A String&quot;, # This is always &lt;code&gt;sql#exportContext&lt;/code&gt;.
221 },
222 &quot;targetId&quot;: &quot;A String&quot;, # Name of the database instance related to this operation.
223 &quot;endTime&quot;: &quot;A String&quot;, # The time this operation finished in UTC timezone in &lt;a
224 # href=&quot;https://tools.ietf.org/html/rfc3339&quot;&gt;RFC 3339&lt;/a&gt; format, for example
225 # &lt;code&gt;2012-11-15T16:19:00.094Z&lt;/code&gt;.
226 &quot;startTime&quot;: &quot;A String&quot;, # The time this operation actually started in UTC timezone in &lt;a
227 # href=&quot;https://tools.ietf.org/html/rfc3339&quot;&gt;RFC 3339&lt;/a&gt; format, for example
228 # &lt;code&gt;2012-11-15T16:19:00.094Z&lt;/code&gt;.
229 &quot;insertTime&quot;: &quot;A String&quot;, # The time this operation was enqueued in UTC timezone in &lt;a
230 # href=&quot;https://tools.ietf.org/html/rfc3339&quot;&gt;RFC 3339&lt;/a&gt; format, for example
231 # &lt;code&gt;2012-11-15T16:19:00.094Z&lt;/code&gt;.
232 }</pre>
233</div>
234
235<div class="method">
236 <code class="details" id="startExternalSync">startExternalSync(project, instance, syncMode=None, x__xgafv=None)</code>
237 <pre>Start External master migration.
238
239Args:
240 project: string, ID of the project that contains the first generation instance. (required)
241 instance: string, Cloud SQL instance ID. This does not include the project ID. (required)
242 syncMode: string, External sync mode
243 x__xgafv: string, V1 error format.
244 Allowed values
245 1 - v1 error format
246 2 - v2 error format
247
248Returns:
249 An object of the form:
250
251 { # An Operation resource.&amp;nbsp;For successful operations that return an
252 # Operation resource, only the fields relevant to the operation are populated
253 # in the resource.
254 &quot;user&quot;: &quot;A String&quot;, # The email address of the user who initiated this operation.
255 &quot;targetProject&quot;: &quot;A String&quot;, # The project ID of the target instance related to this operation.
256 &quot;selfLink&quot;: &quot;A String&quot;, # The URI of this resource.
257 &quot;targetLink&quot;: &quot;A String&quot;,
258 &quot;operationType&quot;: &quot;A String&quot;, # The type of the operation. Valid values are &lt;code&gt;CREATE&lt;/code&gt;,
259 # &lt;code&gt;DELETE&lt;/code&gt;, &lt;code&gt;UPDATE&lt;/code&gt;, &lt;code&gt;RESTART&lt;/code&gt;,
260 # &lt;code&gt;IMPORT&lt;/code&gt;, &lt;code&gt;EXPORT&lt;/code&gt;, &lt;code&gt;BACKUP_VOLUME&lt;/code&gt;,
261 # &lt;code&gt;RESTORE_VOLUME&lt;/code&gt;, &lt;code&gt;CREATE_USER&lt;/code&gt;,
262 # &lt;code&gt;DELETE_USER&lt;/code&gt;, &lt;code&gt;CREATE_DATABASE&lt;/code&gt;,
263 # &lt;code&gt;DELETE_DATABASE&lt;/code&gt; .
264 &quot;error&quot;: { # Database instance operation errors list wrapper. # If errors occurred during processing of this operation, this field will be
265 # populated.
266 &quot;errors&quot;: [ # The list of errors encountered while processing this operation.
267 { # Database instance operation error.
268 &quot;code&quot;: &quot;A String&quot;, # Identifies the specific error that occurred.
269 &quot;message&quot;: &quot;A String&quot;, # Additional information about the error encountered.
270 &quot;kind&quot;: &quot;A String&quot;, # This is always &lt;code&gt;sql#operationError&lt;/code&gt;.
271 },
272 ],
273 &quot;kind&quot;: &quot;A String&quot;, # This is always &lt;code&gt;sql#operationErrors&lt;/code&gt;.
274 },
275 &quot;kind&quot;: &quot;A String&quot;, # This is always &lt;code&gt;sql#operation&lt;/code&gt;.
276 &quot;importContext&quot;: { # Database instance import context. # The context for import operation, if applicable.
277 &quot;csvImportOptions&quot;: { # Options for importing data as CSV.
278 &quot;columns&quot;: [ # The columns to which CSV data is imported. If not specified, all columns
279 # of the database table are loaded with CSV data.
280 &quot;A String&quot;,
281 ],
282 &quot;table&quot;: &quot;A String&quot;, # The table to which CSV data is imported.
283 },
284 &quot;kind&quot;: &quot;A String&quot;, # This is always &lt;code&gt;sql#importContext&lt;/code&gt;.
285 &quot;database&quot;: &quot;A String&quot;, # The target database for the import. If &lt;code&gt;fileType&lt;/code&gt; is
286 # &lt;code&gt;SQL&lt;/code&gt;, this field is required only if the import file does not
287 # specify a database, and is overridden by any database specification in the
288 # import file. If &lt;code&gt;fileType&lt;/code&gt; is &lt;code&gt;CSV&lt;/code&gt;, one database
289 # must be specified.
290 &quot;importUser&quot;: &quot;A String&quot;, # The PostgreSQL user for this import operation. PostgreSQL instances only.
291 &quot;bakImportOptions&quot;: { # Import parameters specific to SQL Server .BAK files
292 &quot;encryptionOptions&quot;: {
293 &quot;pvkPassword&quot;: &quot;A String&quot;, # Password that encrypts the private key
294 &quot;certPath&quot;: &quot;A String&quot;, # Path to the Certificate (.cer) in Cloud Storage, in the form
295 # &lt;code&gt;gs://bucketName/fileName&lt;/code&gt;. The instance must have
296 # write permissions to the bucket and read access to the file.
297 &quot;pvkPath&quot;: &quot;A String&quot;, # Path to the Certificate Private Key (.pvk) in Cloud Storage, in the
298 # form &lt;code&gt;gs://bucketName/fileName&lt;/code&gt;. The instance must have
299 # write permissions to the bucket and read access to the file.
300 },
301 },
302 &quot;uri&quot;: &quot;A String&quot;, # Path to the import file in Cloud Storage, in the form
303 # &lt;code&gt;gs:
304 # //bucketName/fileName&lt;/code&gt;. Compressed gzip files (.gz) are supported
305 # // when &lt;code&gt;fileType&lt;/code&gt; is &lt;code&gt;SQL&lt;/code&gt;. The instance must have
306 # // write permissions to the bucket and read access to the file.
307 &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
308 # contains SQL statements. &lt;br&gt;&lt;code&gt;CSV&lt;/code&gt;: The file contains CSV data.
309 },
310 &quot;status&quot;: &quot;A String&quot;, # The status of an operation. Valid values are &lt;code&gt;PENDING&lt;/code&gt;,
311 # &lt;code&gt;RUNNING&lt;/code&gt;, &lt;code&gt;DONE&lt;/code&gt;,
312 # &lt;code&gt;SQL_OPERATION_STATUS_UNSPECIFIED&lt;/code&gt;.
313 &quot;name&quot;: &quot;A String&quot;, # An identifier that uniquely identifies the operation. You can use this
314 # identifier to retrieve the Operations resource that has information about
315 # the operation.
316 &quot;exportContext&quot;: { # Database instance export context. # The context for export operation, if applicable.
317 &quot;databases&quot;: [ # Databases to be exported. &lt;br /&gt; &lt;b&gt;MySQL instances:&lt;/b&gt; If
318 # &lt;code&gt;fileType&lt;/code&gt; is &lt;code&gt;SQL&lt;/code&gt; and no database is specified, all
319 # databases are exported, except for the &lt;code&gt;mysql&lt;/code&gt; system database.
320 # If &lt;code&gt;fileType&lt;/code&gt; is &lt;code&gt;CSV&lt;/code&gt;, you can specify one database,
321 # either by using this property or by using the
322 # &lt;code&gt;csvExportOptions.selectQuery&lt;/code&gt; property, which takes precedence
323 # over this property. &lt;br /&gt; &lt;b&gt;PostgreSQL instances:&lt;/b&gt; You must specify
324 # one database to be exported. If &lt;code&gt;fileType&lt;/code&gt; is &lt;code&gt;CSV&lt;/code&gt;,
325 # this database must match the one specified in the
326 # &lt;code&gt;csvExportOptions.selectQuery&lt;/code&gt; property.
327 &quot;A String&quot;,
328 ],
329 &quot;sqlExportOptions&quot;: { # Options for exporting data as SQL statements.
330 &quot;tables&quot;: [ # Tables to export, or that were exported, from the specified database. If
331 # you specify tables, specify one and only one database. For PostgreSQL
332 # instances, you can specify only one table.
333 &quot;A String&quot;,
334 ],
335 &quot;schemaOnly&quot;: True or False, # Export only schemas.
336 &quot;mysqlExportOptions&quot;: { # Options for exporting from MySQL.
337 &quot;masterData&quot;: 42, # Option to include SQL statement required to set up replication.
338 # If set to &lt;code&gt;1&lt;/code&gt;, the dump file includes
339 # a CHANGE MASTER TO statement with the binary log coordinates.
340 # If set to &lt;code&gt;2&lt;/code&gt;, the CHANGE MASTER TO statement is written as
341 # a SQL comment, and has no effect.
342 # All other values are ignored.
343 },
344 },
345 &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
346 # contains SQL statements. &lt;br&gt;&lt;code&gt;CSV&lt;/code&gt;: The file contains CSV data.
347 &quot;uri&quot;: &quot;A String&quot;, # The path to the file in Google Cloud Storage where the export will be
348 # stored. The URI is in the form &lt;code&gt;gs:
349 # //bucketName/fileName&lt;/code&gt;. If the file already exists, the requests
350 # // succeeds, but the operation fails. If &lt;code&gt;fileType&lt;/code&gt; is
351 # // &lt;code&gt;SQL&lt;/code&gt; and the filename ends with .gz, the contents are
352 # // compressed.
353 &quot;csvExportOptions&quot;: { # Options for exporting data as CSV.
354 &quot;selectQuery&quot;: &quot;A String&quot;, # The select query used to extract the data.
355 },
356 &quot;kind&quot;: &quot;A String&quot;, # This is always &lt;code&gt;sql#exportContext&lt;/code&gt;.
357 },
358 &quot;targetId&quot;: &quot;A String&quot;, # Name of the database instance related to this operation.
359 &quot;endTime&quot;: &quot;A String&quot;, # The time this operation finished in UTC timezone in &lt;a
360 # href=&quot;https://tools.ietf.org/html/rfc3339&quot;&gt;RFC 3339&lt;/a&gt; format, for example
361 # &lt;code&gt;2012-11-15T16:19:00.094Z&lt;/code&gt;.
362 &quot;startTime&quot;: &quot;A String&quot;, # The time this operation actually started in UTC timezone in &lt;a
363 # href=&quot;https://tools.ietf.org/html/rfc3339&quot;&gt;RFC 3339&lt;/a&gt; format, for example
364 # &lt;code&gt;2012-11-15T16:19:00.094Z&lt;/code&gt;.
365 &quot;insertTime&quot;: &quot;A String&quot;, # The time this operation was enqueued in UTC timezone in &lt;a
366 # href=&quot;https://tools.ietf.org/html/rfc3339&quot;&gt;RFC 3339&lt;/a&gt; format, for example
367 # &lt;code&gt;2012-11-15T16:19:00.094Z&lt;/code&gt;.
368 }</pre>
369</div>
370
371<div class="method">
372 <code class="details" id="verifyExternalSyncSettings">verifyExternalSyncSettings(project, instance, verifyConnectionOnly=None, syncMode=None, x__xgafv=None)</code>
373 <pre>Verify External master external sync settings.
374
375Args:
376 project: string, Project ID of the project that contains the instance. (required)
377 instance: string, Cloud SQL instance ID. This does not include the project ID. (required)
378 verifyConnectionOnly: boolean, Flag to enable verifying connection only
379 syncMode: string, External sync mode
380 x__xgafv: string, V1 error format.
381 Allowed values
382 1 - v1 error format
383 2 - v2 error format
384
385Returns:
386 An object of the form:
387
388 { # Instance verify external sync settings response.
389 &quot;errors&quot;: [ # List of migration violations.
390 { # External master migration setting error.
391 &quot;kind&quot;: &quot;A String&quot;, # This is always &lt;code&gt;sql#migrationSettingError&lt;/code&gt;.
392 &quot;type&quot;: &quot;A String&quot;, # Identifies the specific error that occurred.
393 &quot;detail&quot;: &quot;A String&quot;, # Additional information about the error encountered.
394 },
395 ],
396 &quot;kind&quot;: &quot;A String&quot;, # This is always &lt;code&gt;sql#migrationSettingErrorList&lt;/code&gt;.
397 }</pre>
398</div>
399
400</body></html>