flywheel-sdk 21.2.0rc0__py3-none-any.whl → 21.3.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- flywheel/__init__.py +1 -0
- flywheel/api/acquisitions_api.py +4 -4
- flywheel/api/analyses_api.py +2 -2
- flywheel/api/audit_trail_api.py +2 -2
- flywheel/api/collections_api.py +8 -8
- flywheel/api/containers_api.py +4 -4
- flywheel/api/custom_filters_api.py +2 -2
- flywheel/api/data_view_executions_api.py +2 -2
- flywheel/api/dataexplorer_api.py +2 -2
- flywheel/api/devices_api.py +5 -5
- flywheel/api/files_api.py +2 -2
- flywheel/api/form_responses_api.py +2 -2
- flywheel/api/gears_api.py +2 -2
- flywheel/api/groups_api.py +4 -4
- flywheel/api/jobs_api.py +2 -2
- flywheel/api/modalities_api.py +2 -2
- flywheel/api/projects_api.py +14 -14
- flywheel/api/protocols_api.py +2 -2
- flywheel/api/reports_api.py +2 -2
- flywheel/api/roles_api.py +2 -2
- flywheel/api/sessions_api.py +8 -8
- flywheel/api/site_api.py +2 -2
- flywheel/api/staffing_pools_api.py +2 -2
- flywheel/api/subjects_api.py +6 -6
- flywheel/api/tasks_api.py +6 -10
- flywheel/api/tree_api.py +2 -2
- flywheel/api/users_api.py +14 -14
- flywheel/api_client.py +1 -1
- flywheel/configuration.py +2 -2
- flywheel/flywheel.py +53 -53
- flywheel/models/__init__.py +1 -0
- flywheel/models/container_type.py +2 -0
- flywheel/models/core_workflows_form_responses_models_form_parents.py +139 -4
- flywheel/models/custom_field.py +4 -4
- flywheel/models/features.py +124 -97
- flywheel/models/project_container_output.py +1 -0
- flywheel/models/project_group_info.py +190 -0
- flywheel/models/project_list_output.py +31 -1
- flywheel/models/project_node.py +1 -0
- flywheel/models/project_output.py +31 -1
- flywheel/models/protocol.py +32 -4
- flywheel/models/search_parent_project.py +1 -0
- {flywheel_sdk-21.2.0rc0.dist-info → flywheel_sdk-21.3.0.dist-info}/METADATA +3 -2
- {flywheel_sdk-21.2.0rc0.dist-info → flywheel_sdk-21.3.0.dist-info}/RECORD +46 -45
- {flywheel_sdk-21.2.0rc0.dist-info → flywheel_sdk-21.3.0.dist-info}/WHEEL +1 -1
- {flywheel_sdk-21.2.0rc0.dist-info → flywheel_sdk-21.3.0.dist-info}/licenses/LICENSE.txt +0 -0
flywheel/__init__.py
CHANGED
|
@@ -532,6 +532,7 @@ from flywheel.models.project_container_output import ProjectContainerOutput
|
|
|
532
532
|
from flywheel.models.project_copy_input import ProjectCopyInput
|
|
533
533
|
from flywheel.models.project_copy_output import ProjectCopyOutput
|
|
534
534
|
from flywheel.models.project_counters import ProjectCounters
|
|
535
|
+
from flywheel.models.project_group_info import ProjectGroupInfo
|
|
535
536
|
from flywheel.models.project_hierarchy_input import ProjectHierarchyInput
|
|
536
537
|
from flywheel.models.project_hierarchy_output import ProjectHierarchyOutput
|
|
537
538
|
from flywheel.models.project_hierarchy_upsert_input import ProjectHierarchyUpsertInput
|
flywheel/api/acquisitions_api.py
CHANGED
|
@@ -3057,7 +3057,7 @@ class AcquisitionsApi(object):
|
|
|
3057
3057
|
:param bool join_avatars:
|
|
3058
3058
|
:param JoinType join:
|
|
3059
3059
|
:param bool include_all_info: Include all info in returned objects
|
|
3060
|
-
:param str filter:
|
|
3060
|
+
:param str filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
|
|
3061
3061
|
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
3062
3062
|
:param int limit: The maximum number of entries to return.
|
|
3063
3063
|
:param int skip: The number of entries to skip.
|
|
@@ -3094,7 +3094,7 @@ class AcquisitionsApi(object):
|
|
|
3094
3094
|
:param bool join_avatars:
|
|
3095
3095
|
:param JoinType join:
|
|
3096
3096
|
:param bool include_all_info: Include all info in returned objects
|
|
3097
|
-
:param str filter:
|
|
3097
|
+
:param str filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
|
|
3098
3098
|
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
3099
3099
|
:param int limit: The maximum number of entries to return.
|
|
3100
3100
|
:param int skip: The number of entries to skip.
|
|
@@ -3631,7 +3631,7 @@ class AcquisitionsApi(object):
|
|
|
3631
3631
|
:param bool join_avatars: add name and avatar to notes
|
|
3632
3632
|
:param str collection_id:
|
|
3633
3633
|
:param bool include_all_info: Include all info in returned objects
|
|
3634
|
-
:param str filter:
|
|
3634
|
+
:param str filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
|
|
3635
3635
|
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
3636
3636
|
:param int limit: The maximum number of entries to return.
|
|
3637
3637
|
:param int skip: The number of entries to skip.
|
|
@@ -3668,7 +3668,7 @@ class AcquisitionsApi(object):
|
|
|
3668
3668
|
:param bool join_avatars: add name and avatar to notes
|
|
3669
3669
|
:param str collection_id:
|
|
3670
3670
|
:param bool include_all_info: Include all info in returned objects
|
|
3671
|
-
:param str filter:
|
|
3671
|
+
:param str filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
|
|
3672
3672
|
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
3673
3673
|
:param int limit: The maximum number of entries to return.
|
|
3674
3674
|
:param int skip: The number of entries to skip.
|
flywheel/api/analyses_api.py
CHANGED
|
@@ -1982,7 +1982,7 @@ class AnalysesApi(object):
|
|
|
1982
1982
|
|
|
1983
1983
|
:param bool inflate_job: Return job as an object instead of an id
|
|
1984
1984
|
:param bool include_all_info: Include all info in returned objects
|
|
1985
|
-
:param str filter:
|
|
1985
|
+
:param str filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
|
|
1986
1986
|
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
1987
1987
|
:param int limit: The maximum number of entries to return.
|
|
1988
1988
|
:param int skip: The number of entries to skip.
|
|
@@ -2016,7 +2016,7 @@ class AnalysesApi(object):
|
|
|
2016
2016
|
|
|
2017
2017
|
:param bool inflate_job: Return job as an object instead of an id
|
|
2018
2018
|
:param bool include_all_info: Include all info in returned objects
|
|
2019
|
-
:param str filter:
|
|
2019
|
+
:param str filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
|
|
2020
2020
|
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
2021
2021
|
:param int limit: The maximum number of entries to return.
|
|
2022
2022
|
:param int skip: The number of entries to skip.
|
flywheel/api/audit_trail_api.py
CHANGED
|
@@ -339,7 +339,7 @@ class AuditTrailApi(object):
|
|
|
339
339
|
List Audit Trail Reports.
|
|
340
340
|
This method makes a synchronous HTTP request by default.
|
|
341
341
|
|
|
342
|
-
:param str filter:
|
|
342
|
+
:param str filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
|
|
343
343
|
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
344
344
|
:param int limit: The maximum number of entries to return.
|
|
345
345
|
:param int skip: The number of entries to skip.
|
|
@@ -371,7 +371,7 @@ class AuditTrailApi(object):
|
|
|
371
371
|
List Audit Trail Reports.
|
|
372
372
|
This method makes a synchronous HTTP request by default.
|
|
373
373
|
|
|
374
|
-
:param str filter:
|
|
374
|
+
:param str filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
|
|
375
375
|
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
376
376
|
:param int limit: The maximum number of entries to return.
|
|
377
377
|
:param int skip: The number of entries to skip.
|
flywheel/api/collections_api.py
CHANGED
|
@@ -1758,7 +1758,7 @@ class CollectionsApi(object):
|
|
|
1758
1758
|
:param bool stats:
|
|
1759
1759
|
:param bool include_all_info: Include all info in returned objects
|
|
1760
1760
|
:param str user_id:
|
|
1761
|
-
:param str filter:
|
|
1761
|
+
:param str filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
|
|
1762
1762
|
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
1763
1763
|
:param int limit: The maximum number of entries to return.
|
|
1764
1764
|
:param int skip: The number of entries to skip.
|
|
@@ -1797,7 +1797,7 @@ class CollectionsApi(object):
|
|
|
1797
1797
|
:param bool stats:
|
|
1798
1798
|
:param bool include_all_info: Include all info in returned objects
|
|
1799
1799
|
:param str user_id:
|
|
1800
|
-
:param str filter:
|
|
1800
|
+
:param str filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
|
|
1801
1801
|
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
1802
1802
|
:param int limit: The maximum number of entries to return.
|
|
1803
1803
|
:param int skip: The number of entries to skip.
|
|
@@ -1897,7 +1897,7 @@ class CollectionsApi(object):
|
|
|
1897
1897
|
List all curators of collections
|
|
1898
1898
|
This method makes a synchronous HTTP request by default.
|
|
1899
1899
|
|
|
1900
|
-
:param str filter:
|
|
1900
|
+
:param str filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
|
|
1901
1901
|
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
1902
1902
|
:param int limit: The maximum number of entries to return.
|
|
1903
1903
|
:param int skip: The number of entries to skip.
|
|
@@ -1928,7 +1928,7 @@ class CollectionsApi(object):
|
|
|
1928
1928
|
List all curators of collections
|
|
1929
1929
|
This method makes a synchronous HTTP request by default.
|
|
1930
1930
|
|
|
1931
|
-
:param str filter:
|
|
1931
|
+
:param str filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
|
|
1932
1932
|
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
1933
1933
|
:param int limit: The maximum number of entries to return.
|
|
1934
1934
|
:param int skip: The number of entries to skip.
|
|
@@ -2122,7 +2122,7 @@ class CollectionsApi(object):
|
|
|
2122
2122
|
|
|
2123
2123
|
:param str collection_id: (required)
|
|
2124
2124
|
:param str session: The id of a session, to which the acquisitions returned will be restricted
|
|
2125
|
-
:param str filter:
|
|
2125
|
+
:param str filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
|
|
2126
2126
|
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
2127
2127
|
:param int limit: The maximum number of entries to return.
|
|
2128
2128
|
:param int skip: The number of entries to skip.
|
|
@@ -2156,7 +2156,7 @@ class CollectionsApi(object):
|
|
|
2156
2156
|
|
|
2157
2157
|
:param str collection_id: (required)
|
|
2158
2158
|
:param str session: The id of a session, to which the acquisitions returned will be restricted
|
|
2159
|
-
:param str filter:
|
|
2159
|
+
:param str filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
|
|
2160
2160
|
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
2161
2161
|
:param int limit: The maximum number of entries to return.
|
|
2162
2162
|
:param int skip: The number of entries to skip.
|
|
@@ -2462,7 +2462,7 @@ class CollectionsApi(object):
|
|
|
2462
2462
|
|
|
2463
2463
|
:param str collection_id: (required)
|
|
2464
2464
|
:param bool include_all_info: Include all info in returned objects
|
|
2465
|
-
:param str filter:
|
|
2465
|
+
:param str filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
|
|
2466
2466
|
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
2467
2467
|
:param int limit: The maximum number of entries to return.
|
|
2468
2468
|
:param int skip: The number of entries to skip.
|
|
@@ -2496,7 +2496,7 @@ class CollectionsApi(object):
|
|
|
2496
2496
|
|
|
2497
2497
|
:param str collection_id: (required)
|
|
2498
2498
|
:param bool include_all_info: Include all info in returned objects
|
|
2499
|
-
:param str filter:
|
|
2499
|
+
:param str filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
|
|
2500
2500
|
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
2501
2501
|
:param int limit: The maximum number of entries to return.
|
|
2502
2502
|
:param int skip: The number of entries to skip.
|
flywheel/api/containers_api.py
CHANGED
|
@@ -2839,7 +2839,7 @@ class ContainersApi(object):
|
|
|
2839
2839
|
:param bool join_avatars:
|
|
2840
2840
|
:param JoinType join:
|
|
2841
2841
|
:param bool include_all_info: Include all info in returned objects
|
|
2842
|
-
:param str filter:
|
|
2842
|
+
:param str filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
|
|
2843
2843
|
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
2844
2844
|
:param int limit: The maximum number of entries to return.
|
|
2845
2845
|
:param int skip: The number of entries to skip.
|
|
@@ -2876,7 +2876,7 @@ class ContainersApi(object):
|
|
|
2876
2876
|
:param bool join_avatars:
|
|
2877
2877
|
:param JoinType join:
|
|
2878
2878
|
:param bool include_all_info: Include all info in returned objects
|
|
2879
|
-
:param str filter:
|
|
2879
|
+
:param str filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
|
|
2880
2880
|
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
2881
2881
|
:param int limit: The maximum number of entries to return.
|
|
2882
2882
|
:param int skip: The number of entries to skip.
|
|
@@ -3409,7 +3409,7 @@ class ContainersApi(object):
|
|
|
3409
3409
|
This method makes a synchronous HTTP request by default.
|
|
3410
3410
|
|
|
3411
3411
|
:param str container_id: The ID of the container, one of user, group or project. Use \"site\" as containerId to save or get a site data view. (required)
|
|
3412
|
-
:param str filter:
|
|
3412
|
+
:param str filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
|
|
3413
3413
|
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
3414
3414
|
:param int limit: The maximum number of entries to return.
|
|
3415
3415
|
:param int skip: The number of entries to skip.
|
|
@@ -3442,7 +3442,7 @@ class ContainersApi(object):
|
|
|
3442
3442
|
This method makes a synchronous HTTP request by default.
|
|
3443
3443
|
|
|
3444
3444
|
:param str container_id: The ID of the container, one of user, group or project. Use \"site\" as containerId to save or get a site data view. (required)
|
|
3445
|
-
:param str filter:
|
|
3445
|
+
:param str filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
|
|
3446
3446
|
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
3447
3447
|
:param int limit: The maximum number of entries to return.
|
|
3448
3448
|
:param int skip: The number of entries to skip.
|
|
@@ -242,7 +242,7 @@ class CustomFiltersApi(object):
|
|
|
242
242
|
Retrieves all custom filters for the authenticated user's origin Args: pagination: Pagination parameters for the query auth_session: The user auth session for permission checks Returns: Page[Filter]: A paginated list of custom filters matching the user's origin Raises: BusinessLogicError: when auth session does not have user privilege
|
|
243
243
|
This method makes a synchronous HTTP request by default.
|
|
244
244
|
|
|
245
|
-
:param str filter:
|
|
245
|
+
:param str filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
|
|
246
246
|
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
247
247
|
:param int limit: The maximum number of entries to return.
|
|
248
248
|
:param int skip: The number of entries to skip.
|
|
@@ -273,7 +273,7 @@ class CustomFiltersApi(object):
|
|
|
273
273
|
Retrieves all custom filters for the authenticated user's origin Args: pagination: Pagination parameters for the query auth_session: The user auth session for permission checks Returns: Page[Filter]: A paginated list of custom filters matching the user's origin Raises: BusinessLogicError: when auth session does not have user privilege
|
|
274
274
|
This method makes a synchronous HTTP request by default.
|
|
275
275
|
|
|
276
|
-
:param str filter:
|
|
276
|
+
:param str filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
|
|
277
277
|
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
278
278
|
:param int limit: The maximum number of entries to return.
|
|
279
279
|
:param int skip: The number of entries to skip.
|
|
@@ -132,7 +132,7 @@ class DataViewExecutionsApi(object):
|
|
|
132
132
|
This method makes a synchronous HTTP request by default.
|
|
133
133
|
|
|
134
134
|
:param bool exhaustive: Set to return a complete list regardless of permissions
|
|
135
|
-
:param str filter:
|
|
135
|
+
:param str filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
|
|
136
136
|
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
137
137
|
:param int limit: The maximum number of entries to return.
|
|
138
138
|
:param int skip: The number of entries to skip.
|
|
@@ -164,7 +164,7 @@ class DataViewExecutionsApi(object):
|
|
|
164
164
|
This method makes a synchronous HTTP request by default.
|
|
165
165
|
|
|
166
166
|
:param bool exhaustive: Set to return a complete list regardless of permissions
|
|
167
|
-
:param str filter:
|
|
167
|
+
:param str filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
|
|
168
168
|
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
169
169
|
:param int limit: The maximum number of entries to return.
|
|
170
170
|
:param int skip: The number of entries to skip.
|
flywheel/api/dataexplorer_api.py
CHANGED
|
@@ -242,7 +242,7 @@ class DataexplorerApi(object):
|
|
|
242
242
|
This method makes a synchronous HTTP request by default.
|
|
243
243
|
|
|
244
244
|
:param bool exhaustive: Return all queries, Admin only
|
|
245
|
-
:param str filter:
|
|
245
|
+
:param str filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
|
|
246
246
|
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
247
247
|
:param int limit: The maximum number of entries to return.
|
|
248
248
|
:param int skip: The number of entries to skip.
|
|
@@ -274,7 +274,7 @@ class DataexplorerApi(object):
|
|
|
274
274
|
This method makes a synchronous HTTP request by default.
|
|
275
275
|
|
|
276
276
|
:param bool exhaustive: Return all queries, Admin only
|
|
277
|
-
:param str filter:
|
|
277
|
+
:param str filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
|
|
278
278
|
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
279
279
|
:param int limit: The maximum number of entries to return.
|
|
280
280
|
:param int skip: The number of entries to skip.
|
flywheel/api/devices_api.py
CHANGED
|
@@ -348,7 +348,7 @@ class DevicesApi(object):
|
|
|
348
348
|
:param str device_id: (required)
|
|
349
349
|
:param ApiKeyInputWithOptionalLabel body:
|
|
350
350
|
:param bool async_: Perform the request asynchronously
|
|
351
|
-
:return:
|
|
351
|
+
:return: ApiKeyOutput
|
|
352
352
|
"""
|
|
353
353
|
ignore_simplified_return_value = kwargs.pop('_ignore_simplified_return_value', False)
|
|
354
354
|
kwargs['_return_http_data_only'] = True
|
|
@@ -375,7 +375,7 @@ class DevicesApi(object):
|
|
|
375
375
|
:param str device_id: (required)
|
|
376
376
|
:param ApiKeyInputWithOptionalLabel body:
|
|
377
377
|
:param bool async_: Perform the request asynchronously
|
|
378
|
-
:return:
|
|
378
|
+
:return: ApiKeyOutput
|
|
379
379
|
"""
|
|
380
380
|
|
|
381
381
|
all_params = ['device_id','body',] # noqa: E501
|
|
@@ -442,7 +442,7 @@ class DevicesApi(object):
|
|
|
442
442
|
body=body_params,
|
|
443
443
|
post_params=form_params,
|
|
444
444
|
files=local_var_files,
|
|
445
|
-
response_type='
|
|
445
|
+
response_type='ApiKeyOutput', # noqa: E501
|
|
446
446
|
auth_settings=auth_settings,
|
|
447
447
|
async_=params.get('async_'),
|
|
448
448
|
_return_http_data_only=params.get('_return_http_data_only'),
|
|
@@ -458,7 +458,7 @@ class DevicesApi(object):
|
|
|
458
458
|
This method makes a synchronous HTTP request by default.
|
|
459
459
|
|
|
460
460
|
:param bool join_keys: Return device key. Admins only
|
|
461
|
-
:param str filter:
|
|
461
|
+
:param str filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
|
|
462
462
|
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
463
463
|
:param int limit: The maximum number of entries to return.
|
|
464
464
|
:param int skip: The number of entries to skip.
|
|
@@ -491,7 +491,7 @@ class DevicesApi(object):
|
|
|
491
491
|
This method makes a synchronous HTTP request by default.
|
|
492
492
|
|
|
493
493
|
:param bool join_keys: Return device key. Admins only
|
|
494
|
-
:param str filter:
|
|
494
|
+
:param str filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
|
|
495
495
|
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
496
496
|
:param int limit: The maximum number of entries to return.
|
|
497
497
|
:param int skip: The number of entries to skip.
|
flywheel/api/files_api.py
CHANGED
|
@@ -465,7 +465,7 @@ class FilesApi(object):
|
|
|
465
465
|
Get metadata of all current user files
|
|
466
466
|
This method makes a synchronous HTTP request by default.
|
|
467
467
|
|
|
468
|
-
:param str filter:
|
|
468
|
+
:param str filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
|
|
469
469
|
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
470
470
|
:param int limit: The maximum number of entries to return.
|
|
471
471
|
:param int skip: The number of entries to skip.
|
|
@@ -496,7 +496,7 @@ class FilesApi(object):
|
|
|
496
496
|
Get metadata of all current user files
|
|
497
497
|
This method makes a synchronous HTTP request by default.
|
|
498
498
|
|
|
499
|
-
:param str filter:
|
|
499
|
+
:param str filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
|
|
500
500
|
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
501
501
|
:param int limit: The maximum number of entries to return.
|
|
502
502
|
:param int skip: The number of entries to skip.
|
|
@@ -251,7 +251,7 @@ class FormResponsesApi(object):
|
|
|
251
251
|
This method makes a synchronous HTTP request by default.
|
|
252
252
|
|
|
253
253
|
:param str task_id: (required)
|
|
254
|
-
:param str filter:
|
|
254
|
+
:param str filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
|
|
255
255
|
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
256
256
|
:param int limit: The maximum number of entries to return.
|
|
257
257
|
:param int skip: The number of entries to skip.
|
|
@@ -283,7 +283,7 @@ class FormResponsesApi(object):
|
|
|
283
283
|
This method makes a synchronous HTTP request by default.
|
|
284
284
|
|
|
285
285
|
:param str task_id: (required)
|
|
286
|
-
:param str filter:
|
|
286
|
+
:param str filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
|
|
287
287
|
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
288
288
|
:param int limit: The maximum number of entries to return.
|
|
289
289
|
:param int skip: The number of entries to skip.
|
flywheel/api/gears_api.py
CHANGED
|
@@ -579,7 +579,7 @@ class GearsApi(object):
|
|
|
579
579
|
:param str project_id:
|
|
580
580
|
:param bool all_versions: return all versions of each gear
|
|
581
581
|
:param bool include_invalid: return gears with the 'invalid' flag set
|
|
582
|
-
:param str filter:
|
|
582
|
+
:param str filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
|
|
583
583
|
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
584
584
|
:param int limit: The maximum number of entries to return.
|
|
585
585
|
:param int skip: The number of entries to skip.
|
|
@@ -615,7 +615,7 @@ class GearsApi(object):
|
|
|
615
615
|
:param str project_id:
|
|
616
616
|
:param bool all_versions: return all versions of each gear
|
|
617
617
|
:param bool include_invalid: return gears with the 'invalid' flag set
|
|
618
|
-
:param str filter:
|
|
618
|
+
:param str filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
|
|
619
619
|
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
620
620
|
:param int limit: The maximum number of entries to return.
|
|
621
621
|
:param int skip: The number of entries to skip.
|
flywheel/api/groups_api.py
CHANGED
|
@@ -1460,7 +1460,7 @@ class GroupsApi(object):
|
|
|
1460
1460
|
This method makes a synchronous HTTP request by default.
|
|
1461
1461
|
|
|
1462
1462
|
:param bool exhaustive: Set to return a complete list regardless of permissions
|
|
1463
|
-
:param str filter:
|
|
1463
|
+
:param str filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
|
|
1464
1464
|
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
1465
1465
|
:param int limit: The maximum number of entries to return.
|
|
1466
1466
|
:param int skip: The number of entries to skip.
|
|
@@ -1493,7 +1493,7 @@ class GroupsApi(object):
|
|
|
1493
1493
|
This method makes a synchronous HTTP request by default.
|
|
1494
1494
|
|
|
1495
1495
|
:param bool exhaustive: Set to return a complete list regardless of permissions
|
|
1496
|
-
:param str filter:
|
|
1496
|
+
:param str filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
|
|
1497
1497
|
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
1498
1498
|
:param int limit: The maximum number of entries to return.
|
|
1499
1499
|
:param int skip: The number of entries to skip.
|
|
@@ -1681,7 +1681,7 @@ class GroupsApi(object):
|
|
|
1681
1681
|
:param str group_id: (required)
|
|
1682
1682
|
:param bool exhaustive:
|
|
1683
1683
|
:param bool include_all_info: Include all info in returned objects
|
|
1684
|
-
:param str filter:
|
|
1684
|
+
:param str filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
|
|
1685
1685
|
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
1686
1686
|
:param int limit: The maximum number of entries to return.
|
|
1687
1687
|
:param int skip: The number of entries to skip.
|
|
@@ -1716,7 +1716,7 @@ class GroupsApi(object):
|
|
|
1716
1716
|
:param str group_id: (required)
|
|
1717
1717
|
:param bool exhaustive:
|
|
1718
1718
|
:param bool include_all_info: Include all info in returned objects
|
|
1719
|
-
:param str filter:
|
|
1719
|
+
:param str filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
|
|
1720
1720
|
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
1721
1721
|
:param int limit: The maximum number of entries to return.
|
|
1722
1722
|
:param int skip: The number of entries to skip.
|
flywheel/api/jobs_api.py
CHANGED
|
@@ -914,7 +914,7 @@ class JobsApi(object):
|
|
|
914
914
|
|
|
915
915
|
:param bool include_parent_info: Include the parent info for the jobs
|
|
916
916
|
:param bool include_all_info: Include all info in returned objects
|
|
917
|
-
:param str filter:
|
|
917
|
+
:param str filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
|
|
918
918
|
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
919
919
|
:param int limit: The maximum number of entries to return.
|
|
920
920
|
:param int skip: The number of entries to skip.
|
|
@@ -947,7 +947,7 @@ class JobsApi(object):
|
|
|
947
947
|
|
|
948
948
|
:param bool include_parent_info: Include the parent info for the jobs
|
|
949
949
|
:param bool include_all_info: Include all info in returned objects
|
|
950
|
-
:param str filter:
|
|
950
|
+
:param str filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
|
|
951
951
|
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
952
952
|
:param int limit: The maximum number of entries to return.
|
|
953
953
|
:param int skip: The number of entries to skip.
|
flywheel/api/modalities_api.py
CHANGED
|
@@ -240,7 +240,7 @@ class ModalitiesApi(object):
|
|
|
240
240
|
Requires login.
|
|
241
241
|
This method makes a synchronous HTTP request by default.
|
|
242
242
|
|
|
243
|
-
:param str filter:
|
|
243
|
+
:param str filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
|
|
244
244
|
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
245
245
|
:param int limit: The maximum number of entries to return.
|
|
246
246
|
:param int skip: The number of entries to skip.
|
|
@@ -272,7 +272,7 @@ class ModalitiesApi(object):
|
|
|
272
272
|
Requires login.
|
|
273
273
|
This method makes a synchronous HTTP request by default.
|
|
274
274
|
|
|
275
|
-
:param str filter:
|
|
275
|
+
:param str filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
|
|
276
276
|
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
277
277
|
:param int limit: The maximum number of entries to return.
|
|
278
278
|
:param int skip: The number of entries to skip.
|
flywheel/api/projects_api.py
CHANGED
|
@@ -973,7 +973,7 @@ class ProjectsApi(object):
|
|
|
973
973
|
This method makes a synchronous HTTP request by default.
|
|
974
974
|
|
|
975
975
|
:param str search_string: Include only results containing the search string
|
|
976
|
-
:param str filter:
|
|
976
|
+
:param str filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
|
|
977
977
|
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
978
978
|
:param int limit: The maximum number of entries to return.
|
|
979
979
|
:param int skip: The number of entries to skip.
|
|
@@ -1005,7 +1005,7 @@ class ProjectsApi(object):
|
|
|
1005
1005
|
This method makes a synchronous HTTP request by default.
|
|
1006
1006
|
|
|
1007
1007
|
:param str search_string: Include only results containing the search string
|
|
1008
|
-
:param str filter:
|
|
1008
|
+
:param str filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
|
|
1009
1009
|
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
1010
1010
|
:param int limit: The maximum number of entries to return.
|
|
1011
1011
|
:param int skip: The number of entries to skip.
|
|
@@ -3415,7 +3415,7 @@ class ProjectsApi(object):
|
|
|
3415
3415
|
:param JoinType join:
|
|
3416
3416
|
:param bool exhaustive: Set to return a complete list regardless of permissions
|
|
3417
3417
|
:param bool include_all_info: Include all info in returned objects
|
|
3418
|
-
:param str filter:
|
|
3418
|
+
:param str filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
|
|
3419
3419
|
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
3420
3420
|
:param int limit: The maximum number of entries to return.
|
|
3421
3421
|
:param int skip: The number of entries to skip.
|
|
@@ -3452,7 +3452,7 @@ class ProjectsApi(object):
|
|
|
3452
3452
|
:param JoinType join:
|
|
3453
3453
|
:param bool exhaustive: Set to return a complete list regardless of permissions
|
|
3454
3454
|
:param bool include_all_info: Include all info in returned objects
|
|
3455
|
-
:param str filter:
|
|
3455
|
+
:param str filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
|
|
3456
3456
|
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
3457
3457
|
:param int limit: The maximum number of entries to return.
|
|
3458
3458
|
:param int skip: The number of entries to skip.
|
|
@@ -3550,7 +3550,7 @@ class ProjectsApi(object):
|
|
|
3550
3550
|
This method makes a synchronous HTTP request by default.
|
|
3551
3551
|
|
|
3552
3552
|
:param bool exhaustive: returns exhaustive list if correct permissions
|
|
3553
|
-
:param str filter:
|
|
3553
|
+
:param str filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
|
|
3554
3554
|
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
3555
3555
|
:param int limit: The maximum number of entries to return.
|
|
3556
3556
|
:param int skip: The number of entries to skip.
|
|
@@ -3582,7 +3582,7 @@ class ProjectsApi(object):
|
|
|
3582
3582
|
This method makes a synchronous HTTP request by default.
|
|
3583
3583
|
|
|
3584
3584
|
:param bool exhaustive: returns exhaustive list if correct permissions
|
|
3585
|
-
:param str filter:
|
|
3585
|
+
:param str filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
|
|
3586
3586
|
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
3587
3587
|
:param int limit: The maximum number of entries to return.
|
|
3588
3588
|
:param int skip: The number of entries to skip.
|
|
@@ -3869,7 +3869,7 @@ class ProjectsApi(object):
|
|
|
3869
3869
|
:param bool exhaustive:
|
|
3870
3870
|
:param JoinType join:
|
|
3871
3871
|
:param bool include_all_info: Include all info in returned objects
|
|
3872
|
-
:param str filter:
|
|
3872
|
+
:param str filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
|
|
3873
3873
|
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
3874
3874
|
:param int limit: The maximum number of entries to return.
|
|
3875
3875
|
:param int skip: The number of entries to skip.
|
|
@@ -3905,7 +3905,7 @@ class ProjectsApi(object):
|
|
|
3905
3905
|
:param bool exhaustive:
|
|
3906
3906
|
:param JoinType join:
|
|
3907
3907
|
:param bool include_all_info: Include all info in returned objects
|
|
3908
|
-
:param str filter:
|
|
3908
|
+
:param str filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
|
|
3909
3909
|
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
3910
3910
|
:param int limit: The maximum number of entries to return.
|
|
3911
3911
|
:param int skip: The number of entries to skip.
|
|
@@ -4010,7 +4010,7 @@ class ProjectsApi(object):
|
|
|
4010
4010
|
:param bool join_avatars:
|
|
4011
4011
|
:param JoinType join:
|
|
4012
4012
|
:param bool include_all_info: Include all info in returned objects
|
|
4013
|
-
:param str filter:
|
|
4013
|
+
:param str filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
|
|
4014
4014
|
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
4015
4015
|
:param int limit: The maximum number of entries to return.
|
|
4016
4016
|
:param int skip: The number of entries to skip.
|
|
@@ -4047,7 +4047,7 @@ class ProjectsApi(object):
|
|
|
4047
4047
|
:param bool join_avatars:
|
|
4048
4048
|
:param JoinType join:
|
|
4049
4049
|
:param bool include_all_info: Include all info in returned objects
|
|
4050
|
-
:param str filter:
|
|
4050
|
+
:param str filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
|
|
4051
4051
|
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
4052
4052
|
:param int limit: The maximum number of entries to return.
|
|
4053
4053
|
:param int skip: The number of entries to skip.
|
|
@@ -4677,7 +4677,7 @@ class ProjectsApi(object):
|
|
|
4677
4677
|
:param str project_id: 24-char hex subject id (required)
|
|
4678
4678
|
:param JoinType join: join file origins
|
|
4679
4679
|
:param bool include_all_info: Include all info in returned objects
|
|
4680
|
-
:param str filter:
|
|
4680
|
+
:param str filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
|
|
4681
4681
|
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
4682
4682
|
:param int limit: The maximum number of entries to return.
|
|
4683
4683
|
:param int skip: The number of entries to skip.
|
|
@@ -4712,7 +4712,7 @@ class ProjectsApi(object):
|
|
|
4712
4712
|
:param str project_id: 24-char hex subject id (required)
|
|
4713
4713
|
:param JoinType join: join file origins
|
|
4714
4714
|
:param bool include_all_info: Include all info in returned objects
|
|
4715
|
-
:param str filter:
|
|
4715
|
+
:param str filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
|
|
4716
4716
|
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
4717
4717
|
:param int limit: The maximum number of entries to return.
|
|
4718
4718
|
:param int skip: The number of entries to skip.
|
|
@@ -4908,7 +4908,7 @@ class ProjectsApi(object):
|
|
|
4908
4908
|
:param str project_id: (required)
|
|
4909
4909
|
:param JoinType join:
|
|
4910
4910
|
:param bool include_all_info: Include all info in returned objects
|
|
4911
|
-
:param str filter:
|
|
4911
|
+
:param str filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
|
|
4912
4912
|
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
4913
4913
|
:param int limit: The maximum number of entries to return.
|
|
4914
4914
|
:param int skip: The number of entries to skip.
|
|
@@ -4943,7 +4943,7 @@ class ProjectsApi(object):
|
|
|
4943
4943
|
:param str project_id: (required)
|
|
4944
4944
|
:param JoinType join:
|
|
4945
4945
|
:param bool include_all_info: Include all info in returned objects
|
|
4946
|
-
:param str filter:
|
|
4946
|
+
:param str filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
|
|
4947
4947
|
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
4948
4948
|
:param int limit: The maximum number of entries to return.
|
|
4949
4949
|
:param int skip: The number of entries to skip.
|
flywheel/api/protocols_api.py
CHANGED
|
@@ -339,7 +339,7 @@ class ProtocolsApi(object):
|
|
|
339
339
|
Get a paginated list of protocols.
|
|
340
340
|
This method makes a synchronous HTTP request by default.
|
|
341
341
|
|
|
342
|
-
:param str filter:
|
|
342
|
+
:param str filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
|
|
343
343
|
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
344
344
|
:param int limit: The maximum number of entries to return.
|
|
345
345
|
:param int skip: The number of entries to skip.
|
|
@@ -370,7 +370,7 @@ class ProtocolsApi(object):
|
|
|
370
370
|
Get a paginated list of protocols.
|
|
371
371
|
This method makes a synchronous HTTP request by default.
|
|
372
372
|
|
|
373
|
-
:param str filter:
|
|
373
|
+
:param str filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
|
|
374
374
|
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
375
375
|
:param int limit: The maximum number of entries to return.
|
|
376
376
|
:param int skip: The number of entries to skip.
|
flywheel/api/reports_api.py
CHANGED
|
@@ -138,7 +138,7 @@ class ReportsApi(object):
|
|
|
138
138
|
This method makes a synchronous HTTP request by default.
|
|
139
139
|
|
|
140
140
|
:param bool csv: Set to download a csv file instead of json
|
|
141
|
-
:param str filter:
|
|
141
|
+
:param str filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
|
|
142
142
|
:param str sort: The sort fields and order.(e.g. label:asc,created:desc)
|
|
143
143
|
:param int limit: The maximum number of entries to return
|
|
144
144
|
:param int skip: The number of entries to skip
|
|
@@ -176,7 +176,7 @@ class ReportsApi(object):
|
|
|
176
176
|
This method makes a synchronous HTTP request by default.
|
|
177
177
|
|
|
178
178
|
:param bool csv: Set to download a csv file instead of json
|
|
179
|
-
:param str filter:
|
|
179
|
+
:param str filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
|
|
180
180
|
:param str sort: The sort fields and order.(e.g. label:asc,created:desc)
|
|
181
181
|
:param int limit: The maximum number of entries to return
|
|
182
182
|
:param int skip: The number of entries to skip
|
flywheel/api/roles_api.py
CHANGED
|
@@ -237,7 +237,7 @@ class RolesApi(object):
|
|
|
237
237
|
|
|
238
238
|
This method makes a synchronous HTTP request by default.
|
|
239
239
|
|
|
240
|
-
:param str filter:
|
|
240
|
+
:param str filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
|
|
241
241
|
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
242
242
|
:param int limit: The maximum number of entries to return.
|
|
243
243
|
:param int skip: The number of entries to skip.
|
|
@@ -268,7 +268,7 @@ class RolesApi(object):
|
|
|
268
268
|
|
|
269
269
|
This method makes a synchronous HTTP request by default.
|
|
270
270
|
|
|
271
|
-
:param str filter:
|
|
271
|
+
:param str filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
|
|
272
272
|
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
273
273
|
:param int limit: The maximum number of entries to return.
|
|
274
274
|
:param int skip: The number of entries to skip.
|