List all tables in a given project. If more than limit
tables exist, a cursor for pagination will be returned with the response.
List of tables paginated
The response for a bad request.
Validation Error
custom_table_list = client.postgres_gateway.tables.list("myUserName", limit=5) for table in client.postgres_gateway.tables: table # do something with the custom table for table_list in client.postgres_gateway.tables(chunk_size=25): table_list # do something with the custom tables
{- "items": [
- {
- "columns": {
- "property1": {
- "type": "TEXT"
}, - "property2": {
- "type": "TEXT"
}
}, - "options": {
- "space": "string",
- "externalId": "string",
- "version": "string"
}, - "type": "raw_rows",
- "tablename": "string"
}
], - "nextCursor": "string"
}