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
Copy file name to clipboardExpand all lines: scaleway-async/scaleway_async/serverless_sqldb/v1alpha1/api.py
+20Lines changed: 20 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -206,6 +206,7 @@ async def list_databases(
206
206
*,
207
207
page: int,
208
208
region: Optional[Region] =None,
209
+
organization_id: Optional[str] =None,
209
210
project_id: Optional[str] =None,
210
211
page_size: Optional[int] =None,
211
212
name: Optional[str] =None,
@@ -215,6 +216,7 @@ async def list_databases(
215
216
List your Serverless SQL Databases.
216
217
List all Serverless SQL Databases for a given Scaleway Organization or Scaleway Project. By default, the databases returned in the list are ordered by creation date in ascending order, though this can be modified via the order_by field. For the `name` parameter, the value you include will be checked against the whole name string to see if it includes the string you put in the parameter.
217
218
:param region: Region to target. If none is passed will use default region from the config.
219
+
:param organization_id: Filter by the UUID of the Scaleway organization.
List all Serverless SQL Databases for a given Scaleway Organization or Scaleway Project. By default, the databases returned in the list are ordered by creation date in ascending order, though this can be modified via the order_by field. For the `name` parameter, the value you include will be checked against the whole name string to see if it includes the string you put in the parameter.
263
268
:param region: Region to target. If none is passed will use default region from the config.
269
+
:param organization_id: Filter by the UUID of the Scaleway organization.
List all Serverless SQL Database backups for a given Scaleway Project or Database. By default, the backups returned in the list are ordered by creation date in ascending order, though this can be modified via the order_by field.
425
434
:param region: Region to target. If none is passed will use default region from the config.
435
+
:param organization_id: Filter by the UUID of the Scaleway organization.
436
+
:param project_id: Filter by the UUID of the Scaleway project.
426
437
:param database_id: Filter by the UUID of the Serverless SQL Database.
List all Serverless SQL Database backups for a given Scaleway Project or Database. By default, the backups returned in the list are ordered by creation date in ascending order, though this can be modified via the order_by field.
471
487
:param region: Region to target. If none is passed will use default region from the config.
488
+
:param organization_id: Filter by the UUID of the Scaleway organization.
489
+
:param project_id: Filter by the UUID of the Scaleway project.
472
490
:param database_id: Filter by the UUID of the Serverless SQL Database.
Copy file name to clipboardExpand all lines: scaleway/scaleway/serverless_sqldb/v1alpha1/api.py
+20Lines changed: 20 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -204,6 +204,7 @@ def list_databases(
204
204
*,
205
205
page: int,
206
206
region: Optional[Region] =None,
207
+
organization_id: Optional[str] =None,
207
208
project_id: Optional[str] =None,
208
209
page_size: Optional[int] =None,
209
210
name: Optional[str] =None,
@@ -213,6 +214,7 @@ def list_databases(
213
214
List your Serverless SQL Databases.
214
215
List all Serverless SQL Databases for a given Scaleway Organization or Scaleway Project. By default, the databases returned in the list are ordered by creation date in ascending order, though this can be modified via the order_by field. For the `name` parameter, the value you include will be checked against the whole name string to see if it includes the string you put in the parameter.
215
216
:param region: Region to target. If none is passed will use default region from the config.
217
+
:param organization_id: Filter by the UUID of the Scaleway organization.
List all Serverless SQL Databases for a given Scaleway Organization or Scaleway Project. By default, the databases returned in the list are ordered by creation date in ascending order, though this can be modified via the order_by field. For the `name` parameter, the value you include will be checked against the whole name string to see if it includes the string you put in the parameter.
261
266
:param region: Region to target. If none is passed will use default region from the config.
267
+
:param organization_id: Filter by the UUID of the Scaleway organization.
List all Serverless SQL Database backups for a given Scaleway Project or Database. By default, the backups returned in the list are ordered by creation date in ascending order, though this can be modified via the order_by field.
423
432
:param region: Region to target. If none is passed will use default region from the config.
433
+
:param organization_id: Filter by the UUID of the Scaleway organization.
434
+
:param project_id: Filter by the UUID of the Scaleway project.
424
435
:param database_id: Filter by the UUID of the Serverless SQL Database.
List all Serverless SQL Database backups for a given Scaleway Project or Database. By default, the backups returned in the list are ordered by creation date in ascending order, though this can be modified via the order_by field.
469
485
:param region: Region to target. If none is passed will use default region from the config.
486
+
:param organization_id: Filter by the UUID of the Scaleway organization.
487
+
:param project_id: Filter by the UUID of the Scaleway project.
470
488
:param database_id: Filter by the UUID of the Serverless SQL Database.
0 commit comments