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/rdb/v1/api.py
+8Lines changed: 8 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -2450,6 +2450,7 @@ async def list_databases(
2450
2450
self,
2451
2451
*,
2452
2452
instance_id: str,
2453
+
skip_size_retrieval: bool,
2453
2454
region: Optional[ScwRegion] =None,
2454
2455
name: Optional[str] =None,
2455
2456
managed: Optional[bool] =None,
@@ -2462,6 +2463,7 @@ async def list_databases(
2462
2463
List databases in a Database Instance.
2463
2464
List all databases of a given Database Instance. 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. You can define additional parameters for your query, such as `name`, `managed` and `owner`.
2464
2465
:param instance_id: UUID of the Database Instance to list the databases of.
2466
+
:param skip_size_retrieval: Whether to skip the retrieval of each database size. If true, the size of each returned database will be set to 0.
2465
2467
:param region: Region to target. If none is passed will use default region from the config.
2466
2468
:param name: Name of the database.
2467
2469
:param managed: Defines whether or not the database is managed.
List all databases of a given Database Instance. 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. You can define additional parameters for your query, such as `name`, `managed` and `owner`.
2518
2523
:param instance_id: UUID of the Database Instance to list the databases of.
2524
+
:param skip_size_retrieval: Whether to skip the retrieval of each database size. If true, the size of each returned database will be set to 0.
2519
2525
:param region: Region to target. If none is passed will use default region from the config.
2520
2526
:param name: Name of the database.
2521
2527
:param managed: Defines whether or not the database is managed.
Copy file name to clipboardExpand all lines: scaleway/scaleway/rdb/v1/api.py
+8Lines changed: 8 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -2442,6 +2442,7 @@ def list_databases(
2442
2442
self,
2443
2443
*,
2444
2444
instance_id: str,
2445
+
skip_size_retrieval: bool,
2445
2446
region: Optional[ScwRegion] =None,
2446
2447
name: Optional[str] =None,
2447
2448
managed: Optional[bool] =None,
@@ -2454,6 +2455,7 @@ def list_databases(
2454
2455
List databases in a Database Instance.
2455
2456
List all databases of a given Database Instance. 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. You can define additional parameters for your query, such as `name`, `managed` and `owner`.
2456
2457
:param instance_id: UUID of the Database Instance to list the databases of.
2458
+
:param skip_size_retrieval: Whether to skip the retrieval of each database size. If true, the size of each returned database will be set to 0.
2457
2459
:param region: Region to target. If none is passed will use default region from the config.
2458
2460
:param name: Name of the database.
2459
2461
:param managed: Defines whether or not the database is managed.
List all databases of a given Database Instance. 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. You can define additional parameters for your query, such as `name`, `managed` and `owner`.
2510
2515
:param instance_id: UUID of the Database Instance to list the databases of.
2516
+
:param skip_size_retrieval: Whether to skip the retrieval of each database size. If true, the size of each returned database will be set to 0.
2511
2517
:param region: Region to target. If none is passed will use default region from the config.
2512
2518
:param name: Name of the database.
2513
2519
:param managed: Defines whether or not the database is managed.
0 commit comments