data-repo-client 2.259.0__py3-none-any.whl → 2.260.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.
Potentially problematic release.
This version of data-repo-client might be problematic. Click here for more details.
- data_repo_client/__init__.py +1 -1
- data_repo_client/api/admin_api.py +0 -127
- data_repo_client/api/datasets_api.py +127 -0
- data_repo_client/api/repository_api.py +127 -0
- data_repo_client/api_client.py +1 -1
- data_repo_client/configuration.py +1 -1
- {data_repo_client-2.259.0.dist-info → data_repo_client-2.260.0.dist-info}/METADATA +1 -1
- {data_repo_client-2.259.0.dist-info → data_repo_client-2.260.0.dist-info}/RECORD +10 -10
- {data_repo_client-2.259.0.dist-info → data_repo_client-2.260.0.dist-info}/WHEEL +0 -0
- {data_repo_client-2.259.0.dist-info → data_repo_client-2.260.0.dist-info}/top_level.txt +0 -0
data_repo_client/__init__.py
CHANGED
|
@@ -36,133 +36,6 @@ class AdminApi(object):
|
|
|
36
36
|
api_client = ApiClient()
|
|
37
37
|
self.api_client = api_client
|
|
38
38
|
|
|
39
|
-
def admin_inherit_steward(self, id, body, **kwargs): # noqa: E501
|
|
40
|
-
"""admin_inherit_steward # noqa: E501
|
|
41
|
-
|
|
42
|
-
Administrative Support to allow the dataset custodians to inherit the steward role on all snapshots made from this dataset # noqa: E501
|
|
43
|
-
This method makes a synchronous HTTP request by default. To make an
|
|
44
|
-
asynchronous HTTP request, please pass async_req=True
|
|
45
|
-
>>> thread = api.admin_inherit_steward(id, body, async_req=True)
|
|
46
|
-
>>> result = thread.get()
|
|
47
|
-
|
|
48
|
-
:param async_req bool: execute request asynchronously
|
|
49
|
-
:param str id: A UUID to used to identify an object in the repository (required)
|
|
50
|
-
:param bool body: A boolean value indicating whether the dataset custodians should inherit the steward role on all snapshots made from this dataset. (required)
|
|
51
|
-
:param _preload_content: if False, the urllib3.HTTPResponse object will
|
|
52
|
-
be returned without reading/decoding response
|
|
53
|
-
data. Default is True.
|
|
54
|
-
:param _request_timeout: timeout setting for this request. If one
|
|
55
|
-
number provided, it will be total request
|
|
56
|
-
timeout. It can also be a pair (tuple) of
|
|
57
|
-
(connection, read) timeouts.
|
|
58
|
-
:return: JobModel
|
|
59
|
-
If the method is called asynchronously,
|
|
60
|
-
returns the request thread.
|
|
61
|
-
"""
|
|
62
|
-
kwargs['_return_http_data_only'] = True
|
|
63
|
-
return self.admin_inherit_steward_with_http_info(id, body, **kwargs) # noqa: E501
|
|
64
|
-
|
|
65
|
-
def admin_inherit_steward_with_http_info(self, id, body, **kwargs): # noqa: E501
|
|
66
|
-
"""admin_inherit_steward # noqa: E501
|
|
67
|
-
|
|
68
|
-
Administrative Support to allow the dataset custodians to inherit the steward role on all snapshots made from this dataset # noqa: E501
|
|
69
|
-
This method makes a synchronous HTTP request by default. To make an
|
|
70
|
-
asynchronous HTTP request, please pass async_req=True
|
|
71
|
-
>>> thread = api.admin_inherit_steward_with_http_info(id, body, async_req=True)
|
|
72
|
-
>>> result = thread.get()
|
|
73
|
-
|
|
74
|
-
:param async_req bool: execute request asynchronously
|
|
75
|
-
:param str id: A UUID to used to identify an object in the repository (required)
|
|
76
|
-
:param bool body: A boolean value indicating whether the dataset custodians should inherit the steward role on all snapshots made from this dataset. (required)
|
|
77
|
-
:param _return_http_data_only: response data without head status code
|
|
78
|
-
and headers
|
|
79
|
-
:param _preload_content: if False, the urllib3.HTTPResponse object will
|
|
80
|
-
be returned without reading/decoding response
|
|
81
|
-
data. Default is True.
|
|
82
|
-
:param _request_timeout: timeout setting for this request. If one
|
|
83
|
-
number provided, it will be total request
|
|
84
|
-
timeout. It can also be a pair (tuple) of
|
|
85
|
-
(connection, read) timeouts.
|
|
86
|
-
:return: tuple(JobModel, status_code(int), headers(HTTPHeaderDict))
|
|
87
|
-
If the method is called asynchronously,
|
|
88
|
-
returns the request thread.
|
|
89
|
-
"""
|
|
90
|
-
|
|
91
|
-
local_var_params = locals()
|
|
92
|
-
|
|
93
|
-
all_params = [
|
|
94
|
-
'id',
|
|
95
|
-
'body'
|
|
96
|
-
]
|
|
97
|
-
all_params.extend(
|
|
98
|
-
[
|
|
99
|
-
'async_req',
|
|
100
|
-
'_return_http_data_only',
|
|
101
|
-
'_preload_content',
|
|
102
|
-
'_request_timeout'
|
|
103
|
-
]
|
|
104
|
-
)
|
|
105
|
-
|
|
106
|
-
for key, val in six.iteritems(local_var_params['kwargs']):
|
|
107
|
-
if key not in all_params:
|
|
108
|
-
raise ApiTypeError(
|
|
109
|
-
"Got an unexpected keyword argument '%s'"
|
|
110
|
-
" to method admin_inherit_steward" % key
|
|
111
|
-
)
|
|
112
|
-
local_var_params[key] = val
|
|
113
|
-
del local_var_params['kwargs']
|
|
114
|
-
# verify the required parameter 'id' is set
|
|
115
|
-
if self.api_client.client_side_validation and ('id' not in local_var_params or # noqa: E501
|
|
116
|
-
local_var_params['id'] is None): # noqa: E501
|
|
117
|
-
raise ApiValueError("Missing the required parameter `id` when calling `admin_inherit_steward`") # noqa: E501
|
|
118
|
-
# verify the required parameter 'body' is set
|
|
119
|
-
if self.api_client.client_side_validation and ('body' not in local_var_params or # noqa: E501
|
|
120
|
-
local_var_params['body'] is None): # noqa: E501
|
|
121
|
-
raise ApiValueError("Missing the required parameter `body` when calling `admin_inherit_steward`") # noqa: E501
|
|
122
|
-
|
|
123
|
-
collection_formats = {}
|
|
124
|
-
|
|
125
|
-
path_params = {}
|
|
126
|
-
if 'id' in local_var_params:
|
|
127
|
-
path_params['id'] = local_var_params['id'] # noqa: E501
|
|
128
|
-
|
|
129
|
-
query_params = []
|
|
130
|
-
|
|
131
|
-
header_params = {}
|
|
132
|
-
|
|
133
|
-
form_params = []
|
|
134
|
-
local_var_files = {}
|
|
135
|
-
|
|
136
|
-
body_params = None
|
|
137
|
-
if 'body' in local_var_params:
|
|
138
|
-
body_params = local_var_params['body']
|
|
139
|
-
# HTTP header `Accept`
|
|
140
|
-
header_params['Accept'] = self.api_client.select_header_accept(
|
|
141
|
-
['application/json']) # noqa: E501
|
|
142
|
-
|
|
143
|
-
# HTTP header `Content-Type`
|
|
144
|
-
header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501
|
|
145
|
-
['application/json']) # noqa: E501
|
|
146
|
-
|
|
147
|
-
# Authentication setting
|
|
148
|
-
auth_settings = ['oidc'] # noqa: E501
|
|
149
|
-
|
|
150
|
-
return self.api_client.call_api(
|
|
151
|
-
'/api/admin/v1/datasets/{id}/inheritSteward', 'PUT',
|
|
152
|
-
path_params,
|
|
153
|
-
query_params,
|
|
154
|
-
header_params,
|
|
155
|
-
body=body_params,
|
|
156
|
-
post_params=form_params,
|
|
157
|
-
files=local_var_files,
|
|
158
|
-
response_type='JobModel', # noqa: E501
|
|
159
|
-
auth_settings=auth_settings,
|
|
160
|
-
async_req=local_var_params.get('async_req'),
|
|
161
|
-
_return_http_data_only=local_var_params.get('_return_http_data_only'), # noqa: E501
|
|
162
|
-
_preload_content=local_var_params.get('_preload_content', True),
|
|
163
|
-
_request_timeout=local_var_params.get('_request_timeout'),
|
|
164
|
-
collection_formats=collection_formats)
|
|
165
|
-
|
|
166
39
|
def admin_retrieve_dataset(self, id, **kwargs): # noqa: E501
|
|
167
40
|
"""admin_retrieve_dataset # noqa: E501
|
|
168
41
|
|
|
@@ -4178,6 +4178,133 @@ class DatasetsApi(object):
|
|
|
4178
4178
|
_request_timeout=local_var_params.get('_request_timeout'),
|
|
4179
4179
|
collection_formats=collection_formats)
|
|
4180
4180
|
|
|
4181
|
+
def set_inherit_steward(self, id, body, **kwargs): # noqa: E501
|
|
4182
|
+
"""set_inherit_steward # noqa: E501
|
|
4183
|
+
|
|
4184
|
+
ADMIN ONLY - Set flag that allows the dataset custodians to inherit the steward role on all snapshots made from this dataset # noqa: E501
|
|
4185
|
+
This method makes a synchronous HTTP request by default. To make an
|
|
4186
|
+
asynchronous HTTP request, please pass async_req=True
|
|
4187
|
+
>>> thread = api.set_inherit_steward(id, body, async_req=True)
|
|
4188
|
+
>>> result = thread.get()
|
|
4189
|
+
|
|
4190
|
+
:param async_req bool: execute request asynchronously
|
|
4191
|
+
:param str id: A UUID to used to identify an object in the repository (required)
|
|
4192
|
+
:param bool body: A boolean value indicating whether the dataset custodians should inherit the steward role on all snapshots made from this dataset. (required)
|
|
4193
|
+
:param _preload_content: if False, the urllib3.HTTPResponse object will
|
|
4194
|
+
be returned without reading/decoding response
|
|
4195
|
+
data. Default is True.
|
|
4196
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
4197
|
+
number provided, it will be total request
|
|
4198
|
+
timeout. It can also be a pair (tuple) of
|
|
4199
|
+
(connection, read) timeouts.
|
|
4200
|
+
:return: JobModel
|
|
4201
|
+
If the method is called asynchronously,
|
|
4202
|
+
returns the request thread.
|
|
4203
|
+
"""
|
|
4204
|
+
kwargs['_return_http_data_only'] = True
|
|
4205
|
+
return self.set_inherit_steward_with_http_info(id, body, **kwargs) # noqa: E501
|
|
4206
|
+
|
|
4207
|
+
def set_inherit_steward_with_http_info(self, id, body, **kwargs): # noqa: E501
|
|
4208
|
+
"""set_inherit_steward # noqa: E501
|
|
4209
|
+
|
|
4210
|
+
ADMIN ONLY - Set flag that allows the dataset custodians to inherit the steward role on all snapshots made from this dataset # noqa: E501
|
|
4211
|
+
This method makes a synchronous HTTP request by default. To make an
|
|
4212
|
+
asynchronous HTTP request, please pass async_req=True
|
|
4213
|
+
>>> thread = api.set_inherit_steward_with_http_info(id, body, async_req=True)
|
|
4214
|
+
>>> result = thread.get()
|
|
4215
|
+
|
|
4216
|
+
:param async_req bool: execute request asynchronously
|
|
4217
|
+
:param str id: A UUID to used to identify an object in the repository (required)
|
|
4218
|
+
:param bool body: A boolean value indicating whether the dataset custodians should inherit the steward role on all snapshots made from this dataset. (required)
|
|
4219
|
+
:param _return_http_data_only: response data without head status code
|
|
4220
|
+
and headers
|
|
4221
|
+
:param _preload_content: if False, the urllib3.HTTPResponse object will
|
|
4222
|
+
be returned without reading/decoding response
|
|
4223
|
+
data. Default is True.
|
|
4224
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
4225
|
+
number provided, it will be total request
|
|
4226
|
+
timeout. It can also be a pair (tuple) of
|
|
4227
|
+
(connection, read) timeouts.
|
|
4228
|
+
:return: tuple(JobModel, status_code(int), headers(HTTPHeaderDict))
|
|
4229
|
+
If the method is called asynchronously,
|
|
4230
|
+
returns the request thread.
|
|
4231
|
+
"""
|
|
4232
|
+
|
|
4233
|
+
local_var_params = locals()
|
|
4234
|
+
|
|
4235
|
+
all_params = [
|
|
4236
|
+
'id',
|
|
4237
|
+
'body'
|
|
4238
|
+
]
|
|
4239
|
+
all_params.extend(
|
|
4240
|
+
[
|
|
4241
|
+
'async_req',
|
|
4242
|
+
'_return_http_data_only',
|
|
4243
|
+
'_preload_content',
|
|
4244
|
+
'_request_timeout'
|
|
4245
|
+
]
|
|
4246
|
+
)
|
|
4247
|
+
|
|
4248
|
+
for key, val in six.iteritems(local_var_params['kwargs']):
|
|
4249
|
+
if key not in all_params:
|
|
4250
|
+
raise ApiTypeError(
|
|
4251
|
+
"Got an unexpected keyword argument '%s'"
|
|
4252
|
+
" to method set_inherit_steward" % key
|
|
4253
|
+
)
|
|
4254
|
+
local_var_params[key] = val
|
|
4255
|
+
del local_var_params['kwargs']
|
|
4256
|
+
# verify the required parameter 'id' is set
|
|
4257
|
+
if self.api_client.client_side_validation and ('id' not in local_var_params or # noqa: E501
|
|
4258
|
+
local_var_params['id'] is None): # noqa: E501
|
|
4259
|
+
raise ApiValueError("Missing the required parameter `id` when calling `set_inherit_steward`") # noqa: E501
|
|
4260
|
+
# verify the required parameter 'body' is set
|
|
4261
|
+
if self.api_client.client_side_validation and ('body' not in local_var_params or # noqa: E501
|
|
4262
|
+
local_var_params['body'] is None): # noqa: E501
|
|
4263
|
+
raise ApiValueError("Missing the required parameter `body` when calling `set_inherit_steward`") # noqa: E501
|
|
4264
|
+
|
|
4265
|
+
collection_formats = {}
|
|
4266
|
+
|
|
4267
|
+
path_params = {}
|
|
4268
|
+
if 'id' in local_var_params:
|
|
4269
|
+
path_params['id'] = local_var_params['id'] # noqa: E501
|
|
4270
|
+
|
|
4271
|
+
query_params = []
|
|
4272
|
+
|
|
4273
|
+
header_params = {}
|
|
4274
|
+
|
|
4275
|
+
form_params = []
|
|
4276
|
+
local_var_files = {}
|
|
4277
|
+
|
|
4278
|
+
body_params = None
|
|
4279
|
+
if 'body' in local_var_params:
|
|
4280
|
+
body_params = local_var_params['body']
|
|
4281
|
+
# HTTP header `Accept`
|
|
4282
|
+
header_params['Accept'] = self.api_client.select_header_accept(
|
|
4283
|
+
['application/json']) # noqa: E501
|
|
4284
|
+
|
|
4285
|
+
# HTTP header `Content-Type`
|
|
4286
|
+
header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501
|
|
4287
|
+
['application/json']) # noqa: E501
|
|
4288
|
+
|
|
4289
|
+
# Authentication setting
|
|
4290
|
+
auth_settings = ['oidc'] # noqa: E501
|
|
4291
|
+
|
|
4292
|
+
return self.api_client.call_api(
|
|
4293
|
+
'/api/repository/v1/datasets/{id}/inheritSteward', 'PUT',
|
|
4294
|
+
path_params,
|
|
4295
|
+
query_params,
|
|
4296
|
+
header_params,
|
|
4297
|
+
body=body_params,
|
|
4298
|
+
post_params=form_params,
|
|
4299
|
+
files=local_var_files,
|
|
4300
|
+
response_type='JobModel', # noqa: E501
|
|
4301
|
+
auth_settings=auth_settings,
|
|
4302
|
+
async_req=local_var_params.get('async_req'),
|
|
4303
|
+
_return_http_data_only=local_var_params.get('_return_http_data_only'), # noqa: E501
|
|
4304
|
+
_preload_content=local_var_params.get('_preload_content', True),
|
|
4305
|
+
_request_timeout=local_var_params.get('_request_timeout'),
|
|
4306
|
+
collection_formats=collection_formats)
|
|
4307
|
+
|
|
4181
4308
|
def unlock_dataset(self, id, **kwargs): # noqa: E501
|
|
4182
4309
|
"""unlock_dataset # noqa: E501
|
|
4183
4310
|
|
|
@@ -8477,6 +8477,133 @@ class RepositoryApi(object):
|
|
|
8477
8477
|
_request_timeout=local_var_params.get('_request_timeout'),
|
|
8478
8478
|
collection_formats=collection_formats)
|
|
8479
8479
|
|
|
8480
|
+
def set_inherit_steward(self, id, body, **kwargs): # noqa: E501
|
|
8481
|
+
"""set_inherit_steward # noqa: E501
|
|
8482
|
+
|
|
8483
|
+
ADMIN ONLY - Set flag that allows the dataset custodians to inherit the steward role on all snapshots made from this dataset # noqa: E501
|
|
8484
|
+
This method makes a synchronous HTTP request by default. To make an
|
|
8485
|
+
asynchronous HTTP request, please pass async_req=True
|
|
8486
|
+
>>> thread = api.set_inherit_steward(id, body, async_req=True)
|
|
8487
|
+
>>> result = thread.get()
|
|
8488
|
+
|
|
8489
|
+
:param async_req bool: execute request asynchronously
|
|
8490
|
+
:param str id: A UUID to used to identify an object in the repository (required)
|
|
8491
|
+
:param bool body: A boolean value indicating whether the dataset custodians should inherit the steward role on all snapshots made from this dataset. (required)
|
|
8492
|
+
:param _preload_content: if False, the urllib3.HTTPResponse object will
|
|
8493
|
+
be returned without reading/decoding response
|
|
8494
|
+
data. Default is True.
|
|
8495
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
8496
|
+
number provided, it will be total request
|
|
8497
|
+
timeout. It can also be a pair (tuple) of
|
|
8498
|
+
(connection, read) timeouts.
|
|
8499
|
+
:return: JobModel
|
|
8500
|
+
If the method is called asynchronously,
|
|
8501
|
+
returns the request thread.
|
|
8502
|
+
"""
|
|
8503
|
+
kwargs['_return_http_data_only'] = True
|
|
8504
|
+
return self.set_inherit_steward_with_http_info(id, body, **kwargs) # noqa: E501
|
|
8505
|
+
|
|
8506
|
+
def set_inherit_steward_with_http_info(self, id, body, **kwargs): # noqa: E501
|
|
8507
|
+
"""set_inherit_steward # noqa: E501
|
|
8508
|
+
|
|
8509
|
+
ADMIN ONLY - Set flag that allows the dataset custodians to inherit the steward role on all snapshots made from this dataset # noqa: E501
|
|
8510
|
+
This method makes a synchronous HTTP request by default. To make an
|
|
8511
|
+
asynchronous HTTP request, please pass async_req=True
|
|
8512
|
+
>>> thread = api.set_inherit_steward_with_http_info(id, body, async_req=True)
|
|
8513
|
+
>>> result = thread.get()
|
|
8514
|
+
|
|
8515
|
+
:param async_req bool: execute request asynchronously
|
|
8516
|
+
:param str id: A UUID to used to identify an object in the repository (required)
|
|
8517
|
+
:param bool body: A boolean value indicating whether the dataset custodians should inherit the steward role on all snapshots made from this dataset. (required)
|
|
8518
|
+
:param _return_http_data_only: response data without head status code
|
|
8519
|
+
and headers
|
|
8520
|
+
:param _preload_content: if False, the urllib3.HTTPResponse object will
|
|
8521
|
+
be returned without reading/decoding response
|
|
8522
|
+
data. Default is True.
|
|
8523
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
8524
|
+
number provided, it will be total request
|
|
8525
|
+
timeout. It can also be a pair (tuple) of
|
|
8526
|
+
(connection, read) timeouts.
|
|
8527
|
+
:return: tuple(JobModel, status_code(int), headers(HTTPHeaderDict))
|
|
8528
|
+
If the method is called asynchronously,
|
|
8529
|
+
returns the request thread.
|
|
8530
|
+
"""
|
|
8531
|
+
|
|
8532
|
+
local_var_params = locals()
|
|
8533
|
+
|
|
8534
|
+
all_params = [
|
|
8535
|
+
'id',
|
|
8536
|
+
'body'
|
|
8537
|
+
]
|
|
8538
|
+
all_params.extend(
|
|
8539
|
+
[
|
|
8540
|
+
'async_req',
|
|
8541
|
+
'_return_http_data_only',
|
|
8542
|
+
'_preload_content',
|
|
8543
|
+
'_request_timeout'
|
|
8544
|
+
]
|
|
8545
|
+
)
|
|
8546
|
+
|
|
8547
|
+
for key, val in six.iteritems(local_var_params['kwargs']):
|
|
8548
|
+
if key not in all_params:
|
|
8549
|
+
raise ApiTypeError(
|
|
8550
|
+
"Got an unexpected keyword argument '%s'"
|
|
8551
|
+
" to method set_inherit_steward" % key
|
|
8552
|
+
)
|
|
8553
|
+
local_var_params[key] = val
|
|
8554
|
+
del local_var_params['kwargs']
|
|
8555
|
+
# verify the required parameter 'id' is set
|
|
8556
|
+
if self.api_client.client_side_validation and ('id' not in local_var_params or # noqa: E501
|
|
8557
|
+
local_var_params['id'] is None): # noqa: E501
|
|
8558
|
+
raise ApiValueError("Missing the required parameter `id` when calling `set_inherit_steward`") # noqa: E501
|
|
8559
|
+
# verify the required parameter 'body' is set
|
|
8560
|
+
if self.api_client.client_side_validation and ('body' not in local_var_params or # noqa: E501
|
|
8561
|
+
local_var_params['body'] is None): # noqa: E501
|
|
8562
|
+
raise ApiValueError("Missing the required parameter `body` when calling `set_inherit_steward`") # noqa: E501
|
|
8563
|
+
|
|
8564
|
+
collection_formats = {}
|
|
8565
|
+
|
|
8566
|
+
path_params = {}
|
|
8567
|
+
if 'id' in local_var_params:
|
|
8568
|
+
path_params['id'] = local_var_params['id'] # noqa: E501
|
|
8569
|
+
|
|
8570
|
+
query_params = []
|
|
8571
|
+
|
|
8572
|
+
header_params = {}
|
|
8573
|
+
|
|
8574
|
+
form_params = []
|
|
8575
|
+
local_var_files = {}
|
|
8576
|
+
|
|
8577
|
+
body_params = None
|
|
8578
|
+
if 'body' in local_var_params:
|
|
8579
|
+
body_params = local_var_params['body']
|
|
8580
|
+
# HTTP header `Accept`
|
|
8581
|
+
header_params['Accept'] = self.api_client.select_header_accept(
|
|
8582
|
+
['application/json']) # noqa: E501
|
|
8583
|
+
|
|
8584
|
+
# HTTP header `Content-Type`
|
|
8585
|
+
header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501
|
|
8586
|
+
['application/json']) # noqa: E501
|
|
8587
|
+
|
|
8588
|
+
# Authentication setting
|
|
8589
|
+
auth_settings = ['oidc'] # noqa: E501
|
|
8590
|
+
|
|
8591
|
+
return self.api_client.call_api(
|
|
8592
|
+
'/api/repository/v1/datasets/{id}/inheritSteward', 'PUT',
|
|
8593
|
+
path_params,
|
|
8594
|
+
query_params,
|
|
8595
|
+
header_params,
|
|
8596
|
+
body=body_params,
|
|
8597
|
+
post_params=form_params,
|
|
8598
|
+
files=local_var_files,
|
|
8599
|
+
response_type='JobModel', # noqa: E501
|
|
8600
|
+
auth_settings=auth_settings,
|
|
8601
|
+
async_req=local_var_params.get('async_req'),
|
|
8602
|
+
_return_http_data_only=local_var_params.get('_return_http_data_only'), # noqa: E501
|
|
8603
|
+
_preload_content=local_var_params.get('_preload_content', True),
|
|
8604
|
+
_request_timeout=local_var_params.get('_request_timeout'),
|
|
8605
|
+
collection_formats=collection_formats)
|
|
8606
|
+
|
|
8480
8607
|
def sync_duos_dataset_authorized_users(self, duos_id, **kwargs): # noqa: E501
|
|
8481
8608
|
"""sync_duos_dataset_authorized_users # noqa: E501
|
|
8482
8609
|
|
data_repo_client/api_client.py
CHANGED
|
@@ -78,7 +78,7 @@ class ApiClient(object):
|
|
|
78
78
|
self.default_headers[header_name] = header_value
|
|
79
79
|
self.cookie = cookie
|
|
80
80
|
# Set default User-Agent.
|
|
81
|
-
self.user_agent = 'OpenAPI-Generator/2.
|
|
81
|
+
self.user_agent = 'OpenAPI-Generator/2.260.0/python'
|
|
82
82
|
self.client_side_validation = configuration.client_side_validation
|
|
83
83
|
|
|
84
84
|
def __enter__(self):
|
|
@@ -336,7 +336,7 @@ class Configuration(object):
|
|
|
336
336
|
"OS: {env}\n"\
|
|
337
337
|
"Python Version: {pyversion}\n"\
|
|
338
338
|
"Version of the API: 0.1.0\n"\
|
|
339
|
-
"SDK Package Version: 2.
|
|
339
|
+
"SDK Package Version: 2.260.0".\
|
|
340
340
|
format(env=sys.platform, pyversion=sys.version)
|
|
341
341
|
|
|
342
342
|
def get_host_settings(self):
|
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
data_repo_client/__init__.py,sha256=
|
|
2
|
-
data_repo_client/api_client.py,sha256=
|
|
3
|
-
data_repo_client/configuration.py,sha256=
|
|
1
|
+
data_repo_client/__init__.py,sha256=O1CBO4IxWaOe-wy3mYxA4fWCWClsFA8BU_hrX16dXJw,18151
|
|
2
|
+
data_repo_client/api_client.py,sha256=_GVSQThb0QGLkptVLDuBm1pxvB_lzutUw-ZKyuK2XMc,27141
|
|
3
|
+
data_repo_client/configuration.py,sha256=YDEGc2Ga9aAfbofoNyAPHWNe9mP0Nj6AhyiEfoHntfI,13682
|
|
4
4
|
data_repo_client/exceptions.py,sha256=Gx__KU4uPo9oWgPHmHS5Ond_mhm0PbJUcPXuZCYTECM,4674
|
|
5
5
|
data_repo_client/rest.py,sha256=NMuGDkxTl2dpbrQblMjDIACvVEcGeiToUabzcqzonlc,13208
|
|
6
6
|
data_repo_client/api/__init__.py,sha256=tHijhgS2OVIHakvFFMM0sQZj15jIUuaXNGVG9b40sj4,1061
|
|
7
|
-
data_repo_client/api/admin_api.py,sha256=
|
|
7
|
+
data_repo_client/api/admin_api.py,sha256=0ii20A56Iw7acgovjdTA3Q4iG_MdiM5NEl__GSn1WEE,16847
|
|
8
8
|
data_repo_client/api/configs_api.py,sha256=U1bXazrLJY46j9OE_fBqYbx6ceQRbWftJ2ha5F7IHOU,25124
|
|
9
9
|
data_repo_client/api/data_repository_service_api.py,sha256=fClyd422btjwvFKwAmFV8JVpZmh4bUX3BURgPw_AK9k,41290
|
|
10
|
-
data_repo_client/api/datasets_api.py,sha256=
|
|
10
|
+
data_repo_client/api/datasets_api.py,sha256=8DSDJ6aQgrret6O4R1DI8reZxMTfKuU7Bwh2I3LgvuI,225775
|
|
11
11
|
data_repo_client/api/duos_api.py,sha256=vEznaSms2Mpuxx7by-zhFJT4yrPbyd9v2iZ2otfvbgI,22542
|
|
12
12
|
data_repo_client/api/jobs_api.py,sha256=Ngx-pytG_1iKyKW5B-_Lo1vuPx0qJH9QqYkuPidB8nk,17614
|
|
13
13
|
data_repo_client/api/journal_api.py,sha256=30q0oVicCuIIUDFzm32JvDpQcmKR4InUBmSlybkK4Q4,8829
|
|
14
14
|
data_repo_client/api/profiles_api.py,sha256=O3M2Nm25kFVv1mJJR8MwNOhOoaI3kODocfWACz8HzeY,52484
|
|
15
15
|
data_repo_client/api/register_api.py,sha256=Q3mDFgxaUxbiuStLqW2yapH45-PZTvPVbOeG3DBaTVI,5999
|
|
16
|
-
data_repo_client/api/repository_api.py,sha256=
|
|
16
|
+
data_repo_client/api/repository_api.py,sha256=W5stSgX9UKqH0Lto0XqoSP1BF63YNUkDAoQtODMBphw,470900
|
|
17
17
|
data_repo_client/api/resources_api.py,sha256=ExmqB8WLlZbHps2sFkAQlGdnMGGjWw4NkBQ0kMyBZfI,52485
|
|
18
18
|
data_repo_client/api/search_api.py,sha256=AvbQ45-NKxirgMmsyx4xN-gkN8eHSyjDmrrP23cNBCo,31737
|
|
19
19
|
data_repo_client/api/snapshot_access_request_api.py,sha256=ngqUZ7LGyF7QsrTLcLo9BcIuwrSEoEsLPEpv-bLYQWg,55636
|
|
@@ -197,7 +197,7 @@ data_repo_client/models/upgrade_model.py,sha256=stze92OGQ-gxke0-bpj9QY9me2ICSzpq
|
|
|
197
197
|
data_repo_client/models/upgrade_response_model.py,sha256=yXIdF7WvxABO6u5iCAC4_5exfcbOw9TkXjRMsESuTuI,6106
|
|
198
198
|
data_repo_client/models/user_status_info.py,sha256=jHBZ8rhO6ZrE_rmRAQMTHrwNvhfaMy8kzYjFNSMFeQ0,6457
|
|
199
199
|
data_repo_client/models/workspace_policy_model.py,sha256=pgLpcUQUcN38IfdGBesOi9cfcF94no2xg6pgzcbTCLE,7966
|
|
200
|
-
data_repo_client-2.
|
|
201
|
-
data_repo_client-2.
|
|
202
|
-
data_repo_client-2.
|
|
203
|
-
data_repo_client-2.
|
|
200
|
+
data_repo_client-2.260.0.dist-info/METADATA,sha256=0K7dIIMVC_nHKjcixVcXz8N7B6Kvc6mjiJA6BpBNifQ,1420
|
|
201
|
+
data_repo_client-2.260.0.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
|
202
|
+
data_repo_client-2.260.0.dist-info/top_level.txt,sha256=rxRfDoBxOaUhmfMLoiE926w1prfERSr2Qg70w69QsgQ,17
|
|
203
|
+
data_repo_client-2.260.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|