You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<td>Deletes the specified account. If you enable the `ifExists` parameter, the operation succeeds even if the account does not exist. Otherwise, a 404 failure is returned if the account does not exist. if the drop is unsuccessful.</td>
<td>Deletes the specified account. If you enable the <code>ifExists</code> parameter, the operation succeeds even if the account does not exist. Otherwise, a 404 failure is returned if the account does not exist. if the drop is unsuccessful.</td>
<td>Restores a dropped account that has not yet been permanently deleted (a dropped account that is within its grace period).</td>
290
290
</tr>
291
291
</tbody>
292
-
</table>## Parameters
292
+
</table>
293
+
294
+
## Parameters
293
295
294
296
Parameters can be passed in the `WHERE` clause of a query. Check the [Methods](#methods) section to see which parameters are required or optional for each operation.
295
297
@@ -315,7 +317,7 @@ Parameters can be passed in the `WHERE` clause of a query. Check the [Methods](#
315
317
<trid="parameter-name">
316
318
<td><CopyableCode code="name" /></td>
317
319
<td><code>string</code></td>
318
-
<td>Identifier (i.e. name) for the resource. (pattern: ^"([^"]|"")+"|[a-zA-Z_][a-zA-Z0-9_$]*$, example: TEST_NAME)</td>
320
+
<td>Identifier (i.e. name) for the resource.</td>
319
321
</tr>
320
322
<trid="parameter-history">
321
323
<td><CopyableCode code="history" /></td>
@@ -325,17 +327,17 @@ Parameters can be passed in the `WHERE` clause of a query. Check the [Methods](#
325
327
<trid="parameter-ifExists">
326
328
<td><CopyableCode code="ifExists" /></td>
327
329
<td><code>boolean</code></td>
328
-
<td>Query parameter that specifies how to handle the request for a resource that does not exist: - `true`: The endpoint does not throw an error if the resource does not exist. It returns a 200 success response, but does not take any action on the resource. - `false`: The endpoint throws an error if the resource doesn't exist. (example: true, default: false)</td>
330
+
<td>Query parameter that specifies how to handle the request for a resource that does not exist: - <code>true</code>: The endpoint does not throw an error if the resource does not exist. It returns a 200 success response, but does not take any action on the resource. - <code>false</code>: The endpoint throws an error if the resource doesn't exist.</td>
329
331
</tr>
330
332
<trid="parameter-like">
331
333
<td><CopyableCode code="like" /></td>
332
334
<td><code>string</code></td>
333
-
<td>Query parameter to filter the command output by resource name. Uses case-insensitive pattern matching, with support for SQL wildcard characters. (example: test_%)</td>
335
+
<td>Query parameter to filter the command output by resource name. Uses case-insensitive pattern matching, with support for SQL wildcard characters.</td>
334
336
</tr>
335
337
<trid="parameter-showLimit">
336
338
<td><CopyableCode code="showLimit" /></td>
337
339
<td><code>integer</code></td>
338
-
<td>Query parameter to limit the maximum number of rows returned by a command. (example: 10, minimum: 1, maximum: 10000)</td>
340
+
<td>Query parameter to limit the maximum number of rows returned by a command.</td>
Parameters can be passed in the `WHERE` clause of a query. Check the [Methods](#methods) section to see which parameters are required or optional for each operation.
256
258
@@ -266,7 +268,7 @@ Parameters can be passed in the `WHERE` clause of a query. Check the [Methods](#
266
268
<trid="parameter-database_name">
267
269
<td><CopyableCode code="database_name" /></td>
268
270
<td><code>string</code></td>
269
-
<td>Identifier (i.e. name) for the database to which the resource belongs. You can use the `/api/v2/databases` GET request to get a list of available databases. (pattern: ^"([^"]|"")+"|[a-zA-Z_][a-zA-Z0-9_$]*$, example: TEST_NAME)</td>
271
+
<td>Identifier (i.e. name) for the database to which the resource belongs. You can use the <code>/api/v2/databases</code> GET request to get a list of available databases.</td>
270
272
</tr>
271
273
<trid="parameter-endpoint">
272
274
<td><CopyableCode code="endpoint" /></td>
@@ -276,12 +278,12 @@ Parameters can be passed in the `WHERE` clause of a query. Check the [Methods](#
276
278
<trid="parameter-name">
277
279
<td><CopyableCode code="name" /></td>
278
280
<td><code>string</code></td>
279
-
<td>Identifier (i.e. name) for the resource. (pattern: ^"([^"]|"")+"|[a-zA-Z_][a-zA-Z0-9_$]*$, example: TEST_NAME)</td>
281
+
<td>Identifier (i.e. name) for the resource.</td>
280
282
</tr>
281
283
<trid="parameter-schema_name">
282
284
<td><CopyableCode code="schema_name" /></td>
283
285
<td><code>string</code></td>
284
-
<td>Identifier (i.e. name) for the schema to which the resource belongs. You can use the `/api/v2/databases/{database}/schemas` GET request to get a list of available schemas for the specified database. (pattern: ^"([^"]|"")+"|[a-zA-Z_][a-zA-Z0-9_$]*$, example: TEST_NAME)</td>
286
+
<td>Identifier (i.e. name) for the schema to which the resource belongs. You can use the <code>/api/v2/databases/{database}/schemas</code> GET request to get a list of available schemas for the specified database.</td>
285
287
</tr>
286
288
<trid="parameter-targetDatabase">
287
289
<td><CopyableCode code="targetDatabase" /></td>
@@ -296,32 +298,32 @@ Parameters can be passed in the `WHERE` clause of a query. Check the [Methods](#
296
298
<trid="parameter-createMode">
297
299
<td><CopyableCode code="createMode" /></td>
298
300
<td><code>string</code></td>
299
-
<td>Query parameter allowing support for different modes of resource creation. Possible values include: - `errorIfExists`: Throws an error if you try to create a resource that already exists. - `orReplace`: Automatically replaces the existing resource with the current one. - `ifNotExists`: Creates a new resource when an alter is requested for a non-existent resource. (enum: [errorIfExists, orReplace, ifNotExists], example: ifNotExists, default: errorIfExists)</td>
301
+
<td>Query parameter allowing support for different modes of resource creation. Possible values include: - <code>errorIfExists</code>: Throws an error if you try to create a resource that already exists. - <code>orReplace</code>: Automatically replaces the existing resource with the current one. - <code>ifNotExists</code>: Creates a new resource when an alter is requested for a non-existent resource.</td>
300
302
</tr>
301
303
<trid="parameter-fromName">
302
304
<td><CopyableCode code="fromName" /></td>
303
305
<td><code>string</code></td>
304
-
<td>Query parameter to enable fetching rows only following the first row whose object name matches the specified string. Case-sensitive and does not have to be the full name. (example: from_test)</td>
306
+
<td>Query parameter to enable fetching rows only following the first row whose object name matches the specified string. Case-sensitive and does not have to be the full name.</td>
305
307
</tr>
306
308
<trid="parameter-ifExists">
307
309
<td><CopyableCode code="ifExists" /></td>
308
310
<td><code>boolean</code></td>
309
-
<td>Query parameter that specifies how to handle the request for a resource that does not exist: - `true`: The endpoint does not throw an error if the resource does not exist. It returns a 200 success response, but does not take any action on the resource. - `false`: The endpoint throws an error if the resource doesn't exist. (example: true, default: false)</td>
311
+
<td>Query parameter that specifies how to handle the request for a resource that does not exist: - <code>true</code>: The endpoint does not throw an error if the resource does not exist. It returns a 200 success response, but does not take any action on the resource. - <code>false</code>: The endpoint throws an error if the resource doesn't exist.</td>
310
312
</tr>
311
313
<trid="parameter-like">
312
314
<td><CopyableCode code="like" /></td>
313
315
<td><code>string</code></td>
314
-
<td>Query parameter to filter the command output by resource name. Uses case-insensitive pattern matching, with support for SQL wildcard characters. (example: test_%)</td>
316
+
<td>Query parameter to filter the command output by resource name. Uses case-insensitive pattern matching, with support for SQL wildcard characters.</td>
315
317
</tr>
316
318
<trid="parameter-showLimit">
317
319
<td><CopyableCode code="showLimit" /></td>
318
320
<td><code>integer</code></td>
319
-
<td>Query parameter to limit the maximum number of rows returned by a command. (example: 10, minimum: 1, maximum: 10000)</td>
321
+
<td>Query parameter to limit the maximum number of rows returned by a command.</td>
320
322
</tr>
321
323
<trid="parameter-startsWith">
322
324
<td><CopyableCode code="startsWith" /></td>
323
325
<td><code>string</code></td>
324
-
<td>Query parameter to filter the command output based on the string of characters that appear at the beginning of the object name. Uses case-sensitive pattern matching. (example: test)</td>
326
+
<td>Query parameter to filter the command output based on the string of characters that appear at the beginning of the object name. Uses case-sensitive pattern matching.</td>
325
327
</tr>
326
328
</tbody>
327
329
</table>
@@ -475,7 +477,7 @@ SELECT
475
477
476
478
- name: createMode
477
479
value: string
478
-
description: Query parameter allowing support for different modes of resource creation. Possible values include: - `errorIfExists`: Throws an error if you try to create a resource that already exists. - `orReplace`: Automatically replaces the existing resource with the current one. - `ifNotExists`: Creates a new resource when an alter is requested for a non-existent resource. (enum: [errorIfExists, orReplace, ifNotExists], example: ifNotExists, default: errorIfExists)
480
+
description: Query parameter allowing support for different modes of resource creation. Possible values include: - `errorIfExists`: Throws an error if you try to create a resource that already exists. - `orReplace`: Automatically replaces the existing resource with the current one. - `ifNotExists`: Creates a new resource when an alter is requested for a non-existent resource.
0 commit comments