flywheel-sdk 19.3.0rc2__py2.py3-none-any.whl → 19.4.0rc0__py2.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 +134 -28
- flywheel/api/analyses_api.py +125 -21
- flywheel/api/collections_api.py +122 -12
- flywheel/api/containers_api.py +25 -27
- flywheel/api/files_api.py +212 -4
- flywheel/api/groups_api.py +109 -1
- flywheel/api/jobs_api.py +5 -1
- flywheel/api/projects_api.py +149 -31
- flywheel/api/sessions_api.py +144 -30
- flywheel/api/subjects_api.py +139 -29
- flywheel/api/tree_api.py +5 -1
- flywheel/api/users_api.py +15 -3
- flywheel/api_client.py +1 -1
- flywheel/configuration.py +2 -2
- flywheel/flywheel.py +207 -187
- flywheel/models/__init__.py +2 -1
- flywheel/models/daily_report_usage.py +62 -4
- flywheel/models/features.py +16 -16
- flywheel/models/filter.py +217 -0
- flywheel/models/mixins.py +33 -2
- flywheel/models/report_usage.py +88 -1
- {flywheel_sdk-19.3.0rc2.dist-info → flywheel_sdk-19.4.0rc0.dist-info}/METADATA +1 -1
- {flywheel_sdk-19.3.0rc2.dist-info → flywheel_sdk-19.4.0rc0.dist-info}/RECORD +27 -26
- {flywheel_sdk-19.3.0rc2.dist-info → flywheel_sdk-19.4.0rc0.dist-info}/WHEEL +1 -1
- {flywheel_sdk-19.3.0rc2.dist-info → flywheel_sdk-19.4.0rc0.dist-info}/LICENSE.txt +0 -0
- {flywheel_sdk-19.3.0rc2.dist-info → flywheel_sdk-19.4.0rc0.dist-info}/top_level.txt +0 -0
flywheel/api/projects_api.py
CHANGED
|
@@ -2036,6 +2036,110 @@ class ProjectsApi(object):
|
|
|
2036
2036
|
_request_out=params.get('_request_out'),
|
|
2037
2037
|
collection_formats=collection_formats)
|
|
2038
2038
|
|
|
2039
|
+
def delete_projects_by_query(self, body, **kwargs): # noqa: E501
|
|
2040
|
+
"""Delete multiple projects by query
|
|
2041
|
+
|
|
2042
|
+
Delete multiple projects by query
|
|
2043
|
+
This method makes a synchronous HTTP request by default.
|
|
2044
|
+
|
|
2045
|
+
:param list[Filter] body: Query for containers to delete (required)
|
|
2046
|
+
:param ContainerDeleteReason delete_reason:
|
|
2047
|
+
:param bool async_: Perform the request asynchronously
|
|
2048
|
+
:return: DeletedResult
|
|
2049
|
+
"""
|
|
2050
|
+
ignore_simplified_return_value = kwargs.pop('_ignore_simplified_return_value', False)
|
|
2051
|
+
kwargs['_return_http_data_only'] = True
|
|
2052
|
+
|
|
2053
|
+
if kwargs.get('async_'):
|
|
2054
|
+
return self.delete_projects_by_query_with_http_info(body, **kwargs) # noqa: E501
|
|
2055
|
+
else:
|
|
2056
|
+
(data) = self.delete_projects_by_query_with_http_info(body, **kwargs) # noqa: E501
|
|
2057
|
+
if (
|
|
2058
|
+
data
|
|
2059
|
+
and hasattr(data, 'return_value')
|
|
2060
|
+
and not ignore_simplified_return_value
|
|
2061
|
+
):
|
|
2062
|
+
return data.return_value()
|
|
2063
|
+
return data
|
|
2064
|
+
|
|
2065
|
+
|
|
2066
|
+
def delete_projects_by_query_with_http_info(self, body, **kwargs): # noqa: E501
|
|
2067
|
+
"""Delete multiple projects by query
|
|
2068
|
+
|
|
2069
|
+
Delete multiple projects by query
|
|
2070
|
+
This method makes a synchronous HTTP request by default.
|
|
2071
|
+
|
|
2072
|
+
:param list[Filter] body: Query for containers to delete (required)
|
|
2073
|
+
:param ContainerDeleteReason delete_reason:
|
|
2074
|
+
:param bool async_: Perform the request asynchronously
|
|
2075
|
+
:return: DeletedResult
|
|
2076
|
+
"""
|
|
2077
|
+
|
|
2078
|
+
all_params = ['body','delete_reason',] # noqa: E501
|
|
2079
|
+
all_params.append('async_')
|
|
2080
|
+
all_params.append('_return_http_data_only')
|
|
2081
|
+
all_params.append('_preload_content')
|
|
2082
|
+
all_params.append('_request_timeout')
|
|
2083
|
+
all_params.append('_request_out')
|
|
2084
|
+
|
|
2085
|
+
params = locals()
|
|
2086
|
+
for key, val in six.iteritems(params['kwargs']):
|
|
2087
|
+
if key not in all_params:
|
|
2088
|
+
raise TypeError(
|
|
2089
|
+
"Got an unexpected keyword argument '%s'"
|
|
2090
|
+
" to method delete_projects_by_query" % key
|
|
2091
|
+
)
|
|
2092
|
+
params[key] = val
|
|
2093
|
+
del params['kwargs']
|
|
2094
|
+
# verify the required parameter 'body' is set
|
|
2095
|
+
if ('body' not in params or
|
|
2096
|
+
params['body'] is None):
|
|
2097
|
+
raise ValueError("Missing the required parameter `body` when calling `delete_projects_by_query`") # noqa: E501
|
|
2098
|
+
|
|
2099
|
+
collection_formats = {}
|
|
2100
|
+
|
|
2101
|
+
path_params = {}
|
|
2102
|
+
|
|
2103
|
+
query_params = []
|
|
2104
|
+
if 'delete_reason' in params:
|
|
2105
|
+
query_params.append(('delete_reason', params['delete_reason'])) # noqa: E501
|
|
2106
|
+
|
|
2107
|
+
header_params = {}
|
|
2108
|
+
|
|
2109
|
+
form_params = []
|
|
2110
|
+
local_var_files = {}
|
|
2111
|
+
|
|
2112
|
+
body_params = None
|
|
2113
|
+
if 'body' in params:
|
|
2114
|
+
body_params = params['body']
|
|
2115
|
+
# HTTP header `Accept`
|
|
2116
|
+
header_params['Accept'] = self.api_client.select_header_accept(
|
|
2117
|
+
['application/json']) # noqa: E501
|
|
2118
|
+
|
|
2119
|
+
# HTTP header `Content-Type`
|
|
2120
|
+
header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501
|
|
2121
|
+
['application/json']) # noqa: E501
|
|
2122
|
+
|
|
2123
|
+
# Authentication setting
|
|
2124
|
+
auth_settings = ['ApiKey'] # noqa: E501
|
|
2125
|
+
|
|
2126
|
+
return self.api_client.call_api(
|
|
2127
|
+
'/projects/delete_by_query', 'DELETE',
|
|
2128
|
+
path_params,
|
|
2129
|
+
query_params,
|
|
2130
|
+
header_params,
|
|
2131
|
+
body=body_params,
|
|
2132
|
+
post_params=form_params,
|
|
2133
|
+
files=local_var_files,
|
|
2134
|
+
response_type='DeletedResult', # noqa: E501
|
|
2135
|
+
auth_settings=auth_settings,
|
|
2136
|
+
async_=params.get('async_'),
|
|
2137
|
+
_return_http_data_only=params.get('_return_http_data_only'),
|
|
2138
|
+
_preload_content=params.get('_preload_content', True),
|
|
2139
|
+
_request_timeout=params.get('_request_timeout'),
|
|
2140
|
+
_request_out=params.get('_request_out'),
|
|
2141
|
+
collection_formats=collection_formats)
|
|
2142
|
+
|
|
2039
2143
|
def download_file_from_project(self, project_id, file_name, dest_file, **kwargs): # noqa: E501
|
|
2040
2144
|
"""Download a file.
|
|
2041
2145
|
|
|
@@ -2170,9 +2274,9 @@ class ProjectsApi(object):
|
|
|
2170
2274
|
collection_formats=collection_formats)
|
|
2171
2275
|
|
|
2172
2276
|
def get_project_file_zip_info(self, project_id, file_name, **kwargs): # noqa: E501
|
|
2173
|
-
"""
|
|
2277
|
+
"""Retrieve the zip info of a child file by name.
|
|
2174
2278
|
|
|
2175
|
-
|
|
2279
|
+
Does not work on files whose names contain a forward slash.
|
|
2176
2280
|
This method makes a synchronous HTTP request by default.
|
|
2177
2281
|
|
|
2178
2282
|
:param str project_id: 24-character hex ID (required)
|
|
@@ -2205,9 +2309,9 @@ class ProjectsApi(object):
|
|
|
2205
2309
|
|
|
2206
2310
|
|
|
2207
2311
|
def get_project_file_zip_info_with_http_info(self, project_id, file_name, **kwargs): # noqa: E501
|
|
2208
|
-
"""
|
|
2312
|
+
"""Retrieve the zip info of a child file by name.
|
|
2209
2313
|
|
|
2210
|
-
|
|
2314
|
+
Does not work on files whose names contain a forward slash.
|
|
2211
2315
|
This method makes a synchronous HTTP request by default.
|
|
2212
2316
|
|
|
2213
2317
|
:param str project_id: 24-character hex ID (required)
|
|
@@ -2309,9 +2413,8 @@ class ProjectsApi(object):
|
|
|
2309
2413
|
collection_formats=collection_formats)
|
|
2310
2414
|
|
|
2311
2415
|
def get_project_download_ticket(self, project_id, file_name, **kwargs): # noqa: E501
|
|
2312
|
-
"""
|
|
2416
|
+
"""Get a signed URL to download a named child file.
|
|
2313
2417
|
|
|
2314
|
-
Files can be downloaded directly from this endpoint with a valid \"Authorization\" header or via a ticket id. To generate a ticket: - Make a request with an empty \"ticket\" parameter and a valid \"Authorization\" header. The server will respond with a generated ticket id. - Make another request with the received ticket id in the \"ticket\" parameter. A valid \"Authorization\" header is no longer required. When \"view\" is true, [RFC7233](https://tools.ietf.org/html/rfc7233) range request headers are supported. When virus_scan feature is enabled the quarantined files only can be downloaded using signed urls otherwise it will return with a HTTP 400 response.
|
|
2315
2418
|
This method makes a synchronous HTTP request by default.
|
|
2316
2419
|
|
|
2317
2420
|
:param str project_id: 24-character hex ID (required)
|
|
@@ -2344,9 +2447,8 @@ class ProjectsApi(object):
|
|
|
2344
2447
|
|
|
2345
2448
|
|
|
2346
2449
|
def get_project_download_ticket_with_http_info(self, project_id, file_name, **kwargs): # noqa: E501
|
|
2347
|
-
"""
|
|
2450
|
+
"""Get a signed URL to download a named child file.
|
|
2348
2451
|
|
|
2349
|
-
Files can be downloaded directly from this endpoint with a valid \"Authorization\" header or via a ticket id. To generate a ticket: - Make a request with an empty \"ticket\" parameter and a valid \"Authorization\" header. The server will respond with a generated ticket id. - Make another request with the received ticket id in the \"ticket\" parameter. A valid \"Authorization\" header is no longer required. When \"view\" is true, [RFC7233](https://tools.ietf.org/html/rfc7233) range request headers are supported. When virus_scan feature is enabled the quarantined files only can be downloaded using signed urls otherwise it will return with a HTTP 400 response.
|
|
2350
2452
|
This method makes a synchronous HTTP request by default.
|
|
2351
2453
|
|
|
2352
2454
|
:param str project_id: 24-character hex ID (required)
|
|
@@ -2579,9 +2681,9 @@ class ProjectsApi(object):
|
|
|
2579
2681
|
collection_formats=collection_formats)
|
|
2580
2682
|
|
|
2581
2683
|
def get_project_analysis_input_zip_info(self, project_id, analysis_id, filename, **kwargs): # noqa: E501
|
|
2582
|
-
"""
|
|
2684
|
+
"""Retrieve the zip info of a child file by name.
|
|
2583
2685
|
|
|
2584
|
-
|
|
2686
|
+
Does not work on files whose names contain a forward slash.
|
|
2585
2687
|
This method makes a synchronous HTTP request by default.
|
|
2586
2688
|
|
|
2587
2689
|
:param str project_id: 24-character hex ID (required)
|
|
@@ -2613,9 +2715,9 @@ class ProjectsApi(object):
|
|
|
2613
2715
|
|
|
2614
2716
|
|
|
2615
2717
|
def get_project_analysis_input_zip_info_with_http_info(self, project_id, analysis_id, filename, **kwargs): # noqa: E501
|
|
2616
|
-
"""
|
|
2718
|
+
"""Retrieve the zip info of a child file by name.
|
|
2617
2719
|
|
|
2618
|
-
|
|
2720
|
+
Does not work on files whose names contain a forward slash.
|
|
2619
2721
|
This method makes a synchronous HTTP request by default.
|
|
2620
2722
|
|
|
2621
2723
|
:param str project_id: 24-character hex ID (required)
|
|
@@ -2718,9 +2820,8 @@ class ProjectsApi(object):
|
|
|
2718
2820
|
collection_formats=collection_formats)
|
|
2719
2821
|
|
|
2720
2822
|
def get_project_analysis_input_download_ticket(self, project_id, analysis_id, filename, **kwargs): # noqa: E501
|
|
2721
|
-
"""
|
|
2823
|
+
"""Get a signed URL to download a named child file.
|
|
2722
2824
|
|
|
2723
|
-
If \"ticket\" query param is included and not empty, download inputs. If \"ticket\" query param is included and empty, create a ticket for matching inputs in the analysis. If no \"ticket\" query param is included, inputs will be downloaded directly.
|
|
2724
2825
|
This method makes a synchronous HTTP request by default.
|
|
2725
2826
|
|
|
2726
2827
|
:param str project_id: 24-character hex ID (required)
|
|
@@ -2752,9 +2853,8 @@ class ProjectsApi(object):
|
|
|
2752
2853
|
|
|
2753
2854
|
|
|
2754
2855
|
def get_project_analysis_input_download_ticket_with_http_info(self, project_id, analysis_id, filename, **kwargs): # noqa: E501
|
|
2755
|
-
"""
|
|
2856
|
+
"""Get a signed URL to download a named child file.
|
|
2756
2857
|
|
|
2757
|
-
If \"ticket\" query param is included and not empty, download inputs. If \"ticket\" query param is included and empty, create a ticket for matching inputs in the analysis. If no \"ticket\" query param is included, inputs will be downloaded directly.
|
|
2758
2858
|
This method makes a synchronous HTTP request by default.
|
|
2759
2859
|
|
|
2760
2860
|
:param str project_id: 24-character hex ID (required)
|
|
@@ -2988,9 +3088,9 @@ class ProjectsApi(object):
|
|
|
2988
3088
|
collection_formats=collection_formats)
|
|
2989
3089
|
|
|
2990
3090
|
def get_project_analysis_output_zip_info(self, project_id, analysis_id, filename, **kwargs): # noqa: E501
|
|
2991
|
-
"""
|
|
3091
|
+
"""Retrieve the zip info of a child file by name.
|
|
2992
3092
|
|
|
2993
|
-
|
|
3093
|
+
Does not work on files whose names contain a forward slash.
|
|
2994
3094
|
This method makes a synchronous HTTP request by default.
|
|
2995
3095
|
|
|
2996
3096
|
:param str project_id: 24-character hex ID (required)
|
|
@@ -3022,9 +3122,9 @@ class ProjectsApi(object):
|
|
|
3022
3122
|
|
|
3023
3123
|
|
|
3024
3124
|
def get_project_analysis_output_zip_info_with_http_info(self, project_id, analysis_id, filename, **kwargs): # noqa: E501
|
|
3025
|
-
"""
|
|
3125
|
+
"""Retrieve the zip info of a child file by name.
|
|
3026
3126
|
|
|
3027
|
-
|
|
3127
|
+
Does not work on files whose names contain a forward slash.
|
|
3028
3128
|
This method makes a synchronous HTTP request by default.
|
|
3029
3129
|
|
|
3030
3130
|
:param str project_id: 24-character hex ID (required)
|
|
@@ -3127,9 +3227,8 @@ class ProjectsApi(object):
|
|
|
3127
3227
|
collection_formats=collection_formats)
|
|
3128
3228
|
|
|
3129
3229
|
def get_project_analysis_output_download_ticket(self, project_id, analysis_id, filename, **kwargs): # noqa: E501
|
|
3130
|
-
"""
|
|
3230
|
+
"""Get a signed URL to download a named child file.
|
|
3131
3231
|
|
|
3132
|
-
If \"ticket\" query param is included and not empty, download outputs. If \"ticket\" query param is included and empty, create a ticket for matching outputs in the analysis. If no \"ticket\" query param is included, outputs will be downloaded directly.
|
|
3133
3232
|
This method makes a synchronous HTTP request by default.
|
|
3134
3233
|
|
|
3135
3234
|
:param str project_id: 24-character hex ID (required)
|
|
@@ -3161,9 +3260,8 @@ class ProjectsApi(object):
|
|
|
3161
3260
|
|
|
3162
3261
|
|
|
3163
3262
|
def get_project_analysis_output_download_ticket_with_http_info(self, project_id, analysis_id, filename, **kwargs): # noqa: E501
|
|
3164
|
-
"""
|
|
3263
|
+
"""Get a signed URL to download a named child file.
|
|
3165
3264
|
|
|
3166
|
-
If \"ticket\" query param is included and not empty, download outputs. If \"ticket\" query param is included and empty, create a ticket for matching outputs in the analysis. If no \"ticket\" query param is included, outputs will be downloaded directly.
|
|
3167
3265
|
This method makes a synchronous HTTP request by default.
|
|
3168
3266
|
|
|
3169
3267
|
:param str project_id: 24-character hex ID (required)
|
|
@@ -3397,6 +3495,7 @@ class ProjectsApi(object):
|
|
|
3397
3495
|
:param bool join_avatars: Return the joined avatars of the permissions
|
|
3398
3496
|
:param JoinType join:
|
|
3399
3497
|
:param bool exhaustive: Set to return a complete list regardless of permissions
|
|
3498
|
+
:param bool include_all_info: Include all info in returned objects
|
|
3400
3499
|
:param list[union[HeaderFeature,str]] x_accept_feature:
|
|
3401
3500
|
:param bool async_: Perform the request asynchronously
|
|
3402
3501
|
:return: union[list[ProjectListOutput],Page]
|
|
@@ -3433,12 +3532,13 @@ class ProjectsApi(object):
|
|
|
3433
3532
|
:param bool join_avatars: Return the joined avatars of the permissions
|
|
3434
3533
|
:param JoinType join:
|
|
3435
3534
|
:param bool exhaustive: Set to return a complete list regardless of permissions
|
|
3535
|
+
:param bool include_all_info: Include all info in returned objects
|
|
3436
3536
|
:param list[union[HeaderFeature,str]] x_accept_feature:
|
|
3437
3537
|
:param bool async_: Perform the request asynchronously
|
|
3438
3538
|
:return: union[list[ProjectListOutput],Page]
|
|
3439
3539
|
"""
|
|
3440
3540
|
|
|
3441
|
-
all_params = ['filter','sort','limit','skip','page','after_id','counts','stats','join_avatars','join','exhaustive','x_accept_feature',] # noqa: E501
|
|
3541
|
+
all_params = ['filter','sort','limit','skip','page','after_id','counts','stats','join_avatars','join','exhaustive','include_all_info','x_accept_feature',] # noqa: E501
|
|
3442
3542
|
all_params.append('async_')
|
|
3443
3543
|
all_params.append('_return_http_data_only')
|
|
3444
3544
|
all_params.append('_preload_content')
|
|
@@ -3482,6 +3582,8 @@ class ProjectsApi(object):
|
|
|
3482
3582
|
query_params.append(('join', params['join'])) # noqa: E501
|
|
3483
3583
|
if 'exhaustive' in params:
|
|
3484
3584
|
query_params.append(('exhaustive', params['exhaustive'])) # noqa: E501
|
|
3585
|
+
if 'include_all_info' in params:
|
|
3586
|
+
query_params.append(('include_all_info', params['include_all_info'])) # noqa: E501
|
|
3485
3587
|
|
|
3486
3588
|
header_params = {}
|
|
3487
3589
|
if 'x_accept_feature' in params:
|
|
@@ -3843,6 +3945,7 @@ class ProjectsApi(object):
|
|
|
3843
3945
|
:param str collection_id:
|
|
3844
3946
|
:param bool exhaustive:
|
|
3845
3947
|
:param JoinType join:
|
|
3948
|
+
:param bool include_all_info: Include all info in returned objects
|
|
3846
3949
|
:param list[str] x_accept_feature:
|
|
3847
3950
|
:param bool async_: Perform the request asynchronously
|
|
3848
3951
|
:return: union[list[AcquisitionListOutput],Page]
|
|
@@ -3878,12 +3981,13 @@ class ProjectsApi(object):
|
|
|
3878
3981
|
:param str collection_id:
|
|
3879
3982
|
:param bool exhaustive:
|
|
3880
3983
|
:param JoinType join:
|
|
3984
|
+
:param bool include_all_info: Include all info in returned objects
|
|
3881
3985
|
:param list[str] x_accept_feature:
|
|
3882
3986
|
:param bool async_: Perform the request asynchronously
|
|
3883
3987
|
:return: union[list[AcquisitionListOutput],Page]
|
|
3884
3988
|
"""
|
|
3885
3989
|
|
|
3886
|
-
all_params = ['project_id','filter','sort','limit','skip','page','after_id','collection_id','exhaustive','join','x_accept_feature',] # noqa: E501
|
|
3990
|
+
all_params = ['project_id','filter','sort','limit','skip','page','after_id','collection_id','exhaustive','join','include_all_info','x_accept_feature',] # noqa: E501
|
|
3887
3991
|
all_params.append('async_')
|
|
3888
3992
|
all_params.append('_return_http_data_only')
|
|
3889
3993
|
all_params.append('_preload_content')
|
|
@@ -3929,6 +4033,8 @@ class ProjectsApi(object):
|
|
|
3929
4033
|
query_params.append(('exhaustive', params['exhaustive'])) # noqa: E501
|
|
3930
4034
|
if 'join' in params:
|
|
3931
4035
|
query_params.append(('join', params['join'])) # noqa: E501
|
|
4036
|
+
if 'include_all_info' in params:
|
|
4037
|
+
query_params.append(('include_all_info', params['include_all_info'])) # noqa: E501
|
|
3932
4038
|
|
|
3933
4039
|
header_params = {}
|
|
3934
4040
|
if 'x_accept_feature' in params:
|
|
@@ -3979,6 +4085,7 @@ class ProjectsApi(object):
|
|
|
3979
4085
|
:param bool inflate_job:
|
|
3980
4086
|
:param bool join_avatars:
|
|
3981
4087
|
:param JoinType join:
|
|
4088
|
+
:param bool include_all_info: Include all info in returned objects
|
|
3982
4089
|
:param list[str] x_accept_feature:
|
|
3983
4090
|
:param bool async_: Perform the request asynchronously
|
|
3984
4091
|
:return: union[Page,list[union[AnalysisListOutput,AnalysisListOutputInflatedJob]]]
|
|
@@ -4015,12 +4122,13 @@ class ProjectsApi(object):
|
|
|
4015
4122
|
:param bool inflate_job:
|
|
4016
4123
|
:param bool join_avatars:
|
|
4017
4124
|
:param JoinType join:
|
|
4125
|
+
:param bool include_all_info: Include all info in returned objects
|
|
4018
4126
|
:param list[str] x_accept_feature:
|
|
4019
4127
|
:param bool async_: Perform the request asynchronously
|
|
4020
4128
|
:return: union[Page,list[union[AnalysisListOutput,AnalysisListOutputInflatedJob]]]
|
|
4021
4129
|
"""
|
|
4022
4130
|
|
|
4023
|
-
all_params = ['cid','filter','sort','limit','skip','page','after_id','inflate_job','join_avatars','join','x_accept_feature',] # noqa: E501
|
|
4131
|
+
all_params = ['cid','filter','sort','limit','skip','page','after_id','inflate_job','join_avatars','join','include_all_info','x_accept_feature',] # noqa: E501
|
|
4024
4132
|
all_params.append('async_')
|
|
4025
4133
|
all_params.append('_return_http_data_only')
|
|
4026
4134
|
all_params.append('_preload_content')
|
|
@@ -4066,6 +4174,8 @@ class ProjectsApi(object):
|
|
|
4066
4174
|
query_params.append(('join_avatars', params['join_avatars'])) # noqa: E501
|
|
4067
4175
|
if 'join' in params:
|
|
4068
4176
|
query_params.append(('join', params['join'])) # noqa: E501
|
|
4177
|
+
if 'include_all_info' in params:
|
|
4178
|
+
query_params.append(('include_all_info', params['include_all_info'])) # noqa: E501
|
|
4069
4179
|
|
|
4070
4180
|
header_params = {}
|
|
4071
4181
|
if 'x_accept_feature' in params:
|
|
@@ -4630,6 +4740,7 @@ class ProjectsApi(object):
|
|
|
4630
4740
|
|
|
4631
4741
|
:param str project_id: 24-char hex subject id (required)
|
|
4632
4742
|
:param JoinType join: join file origins
|
|
4743
|
+
:param bool include_all_info: Include all info in returned objects
|
|
4633
4744
|
:param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
|
|
4634
4745
|
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
4635
4746
|
:param int limit: The maximum number of entries to return.
|
|
@@ -4664,6 +4775,7 @@ class ProjectsApi(object):
|
|
|
4664
4775
|
|
|
4665
4776
|
:param str project_id: 24-char hex subject id (required)
|
|
4666
4777
|
:param JoinType join: join file origins
|
|
4778
|
+
:param bool include_all_info: Include all info in returned objects
|
|
4667
4779
|
:param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
|
|
4668
4780
|
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
4669
4781
|
:param int limit: The maximum number of entries to return.
|
|
@@ -4675,7 +4787,7 @@ class ProjectsApi(object):
|
|
|
4675
4787
|
:return: union[Page,list[SessionListOutput]]
|
|
4676
4788
|
"""
|
|
4677
4789
|
|
|
4678
|
-
all_params = ['project_id','join','filter','sort','limit','skip','page','after_id','x_accept_feature',] # noqa: E501
|
|
4790
|
+
all_params = ['project_id','join','include_all_info','filter','sort','limit','skip','page','after_id','x_accept_feature',] # noqa: E501
|
|
4679
4791
|
all_params.append('async_')
|
|
4680
4792
|
all_params.append('_return_http_data_only')
|
|
4681
4793
|
all_params.append('_preload_content')
|
|
@@ -4705,6 +4817,8 @@ class ProjectsApi(object):
|
|
|
4705
4817
|
query_params = []
|
|
4706
4818
|
if 'join' in params:
|
|
4707
4819
|
query_params.append(('join', params['join'])) # noqa: E501
|
|
4820
|
+
if 'include_all_info' in params:
|
|
4821
|
+
query_params.append(('include_all_info', params['include_all_info'])) # noqa: E501
|
|
4708
4822
|
if 'filter' in params:
|
|
4709
4823
|
query_params.append(('filter', params['filter'])) # noqa: E501
|
|
4710
4824
|
if 'sort' in params:
|
|
@@ -4861,6 +4975,7 @@ class ProjectsApi(object):
|
|
|
4861
4975
|
:param int page: The page number (i.e. skip limit*page entries)
|
|
4862
4976
|
:param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
|
|
4863
4977
|
:param JoinType join:
|
|
4978
|
+
:param bool include_all_info: Include all info in returned objects
|
|
4864
4979
|
:param list[str] x_accept_feature:
|
|
4865
4980
|
:param bool async_: Perform the request asynchronously
|
|
4866
4981
|
:return: union[Page,list[SubjectOutputForList]]
|
|
@@ -4895,12 +5010,13 @@ class ProjectsApi(object):
|
|
|
4895
5010
|
:param int page: The page number (i.e. skip limit*page entries)
|
|
4896
5011
|
:param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
|
|
4897
5012
|
:param JoinType join:
|
|
5013
|
+
:param bool include_all_info: Include all info in returned objects
|
|
4898
5014
|
:param list[str] x_accept_feature:
|
|
4899
5015
|
:param bool async_: Perform the request asynchronously
|
|
4900
5016
|
:return: union[Page,list[SubjectOutputForList]]
|
|
4901
5017
|
"""
|
|
4902
5018
|
|
|
4903
|
-
all_params = ['project_id','filter','sort','limit','skip','page','after_id','join','x_accept_feature',] # noqa: E501
|
|
5019
|
+
all_params = ['project_id','filter','sort','limit','skip','page','after_id','join','include_all_info','x_accept_feature',] # noqa: E501
|
|
4904
5020
|
all_params.append('async_')
|
|
4905
5021
|
all_params.append('_return_http_data_only')
|
|
4906
5022
|
all_params.append('_preload_content')
|
|
@@ -4942,6 +5058,8 @@ class ProjectsApi(object):
|
|
|
4942
5058
|
query_params.append(('after_id', params['after_id'])) # noqa: E501
|
|
4943
5059
|
if 'join' in params:
|
|
4944
5060
|
query_params.append(('join', params['join'])) # noqa: E501
|
|
5061
|
+
if 'include_all_info' in params:
|
|
5062
|
+
query_params.append(('include_all_info', params['include_all_info'])) # noqa: E501
|
|
4945
5063
|
|
|
4946
5064
|
header_params = {}
|
|
4947
5065
|
if 'x_accept_feature' in params:
|
|
@@ -5797,7 +5915,7 @@ class ProjectsApi(object):
|
|
|
5797
5915
|
def modify_project_info(self, cid, body, **kwargs): # noqa: E501
|
|
5798
5916
|
"""Update or replace info for a(n) project.
|
|
5799
5917
|
|
|
5800
|
-
Update or replace info for a(n) project.
|
|
5918
|
+
Update or replace info for a(n) project. Keys that contain '$' or '.' will be sanitized in the process of being updated on the container.
|
|
5801
5919
|
This method makes a synchronous HTTP request by default.
|
|
5802
5920
|
|
|
5803
5921
|
:param str cid: (required)
|
|
@@ -5824,7 +5942,7 @@ class ProjectsApi(object):
|
|
|
5824
5942
|
def modify_project_info_with_http_info(self, cid, body, **kwargs): # noqa: E501
|
|
5825
5943
|
"""Update or replace info for a(n) project.
|
|
5826
5944
|
|
|
5827
|
-
Update or replace info for a(n) project.
|
|
5945
|
+
Update or replace info for a(n) project. Keys that contain '$' or '.' will be sanitized in the process of being updated on the container.
|
|
5828
5946
|
This method makes a synchronous HTTP request by default.
|
|
5829
5947
|
|
|
5830
5948
|
:param str cid: (required)
|