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
Retrieve all filesystems in the specified region. Results are ordered by creation date in ascending order by default.
131
-
Use the order_by parameter to modify the sorting behavior.
130
+
Retrieve all filesystems in the specified region. By default, the filesystems listed are ordered by creation date in ascending order. This can be modified using the `order_by` field.
132
131
:param region: Region to target. If none is passed will use default region from the config.
133
132
:param order_by: Criteria to use when ordering the list.
134
133
:param project_id: Filter by project ID.
135
134
:param page: Page number (starting at 1).
136
135
:param page_size: Number of entries per page (default: 20, max: 100).
137
-
:param name: Filter the return filesystems by their names.
136
+
:param name: Filter the returned filesystems by their names.
138
137
:param tags: Filter by tags. Only filesystems with one or more matching tags will be returned.
Retrieve all filesystems in the specified region. Results are ordered by creation date in ascending order by default.
181
-
Use the order_by parameter to modify the sorting behavior.
179
+
Retrieve all filesystems in the specified region. By default, the filesystems listed are ordered by creation date in ascending order. This can be modified using the `order_by` field.
182
180
:param region: Region to target. If none is passed will use default region from the config.
183
181
:param order_by: Criteria to use when ordering the list.
184
182
:param project_id: Filter by project ID.
185
183
:param page: Page number (starting at 1).
186
184
:param page_size: Number of entries per page (default: 20, max: 100).
187
-
:param name: Filter the return filesystems by their names.
185
+
:param name: Filter the returned filesystems by their names.
188
186
:param tags: Filter by tags. Only filesystems with one or more matching tags will be returned.
Copy file name to clipboardExpand all lines: scaleway/scaleway/file/v1alpha1/api.py
+7-11Lines changed: 7 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -125,14 +125,13 @@ def list_file_systems(
125
125
) ->ListFileSystemsResponse:
126
126
"""
127
127
List all filesystems.
128
-
Retrieve all filesystems in the specified region. Results are ordered by creation date in ascending order by default.
129
-
Use the order_by parameter to modify the sorting behavior.
128
+
Retrieve all filesystems in the specified region. By default, the filesystems listed are ordered by creation date in ascending order. This can be modified using the `order_by` field.
130
129
:param region: Region to target. If none is passed will use default region from the config.
131
130
:param order_by: Criteria to use when ordering the list.
132
131
:param project_id: Filter by project ID.
133
132
:param page: Page number (starting at 1).
134
133
:param page_size: Number of entries per page (default: 20, max: 100).
135
-
:param name: Filter the return filesystems by their names.
134
+
:param name: Filter the returned filesystems by their names.
136
135
:param tags: Filter by tags. Only filesystems with one or more matching tags will be returned.
Retrieve all filesystems in the specified region. Results are ordered by creation date in ascending order by default.
179
-
Use the order_by parameter to modify the sorting behavior.
177
+
Retrieve all filesystems in the specified region. By default, the filesystems listed are ordered by creation date in ascending order. This can be modified using the `order_by` field.
180
178
:param region: Region to target. If none is passed will use default region from the config.
181
179
:param order_by: Criteria to use when ordering the list.
182
180
:param project_id: Filter by project ID.
183
181
:param page: Page number (starting at 1).
184
182
:param page_size: Number of entries per page (default: 20, max: 100).
185
-
:param name: Filter the return filesystems by their names.
183
+
:param name: Filter the returned filesystems by their names.
186
184
:param tags: Filter by tags. Only filesystems with one or more matching tags will be returned.
0 commit comments