data-repo-client 2.238.0__py3-none-any.whl → 2.360.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 +2 -2
- data_repo_client/api/datasets_api.py +271 -30
- data_repo_client/api/profiles_api.py +6 -6
- data_repo_client/api/repository_api.py +408 -40
- data_repo_client/api/resources_api.py +6 -6
- data_repo_client/api/snapshots_api.py +133 -6
- data_repo_client/api/upgrade_api.py +2 -2
- data_repo_client/api_client.py +1 -1
- data_repo_client/configuration.py +1 -1
- data_repo_client/models/iam_resource_type_enum.py +2 -1
- data_repo_client/models/sam_policy_model.py +27 -1
- {data_repo_client-2.238.0.dist-info → data_repo_client-2.360.0.dist-info}/METADATA +1 -1
- {data_repo_client-2.238.0.dist-info → data_repo_client-2.360.0.dist-info}/RECORD +16 -16
- {data_repo_client-2.238.0.dist-info → data_repo_client-2.360.0.dist-info}/WHEEL +0 -0
- {data_repo_client-2.238.0.dist-info → data_repo_client-2.360.0.dist-info}/top_level.txt +0 -0
|
@@ -175,7 +175,7 @@ class ResourcesApi(object):
|
|
|
175
175
|
def create_profile(self, **kwargs): # noqa: E501
|
|
176
176
|
"""create_profile # noqa: E501
|
|
177
177
|
|
|
178
|
-
Creates a new profile associated with a billing account. This is asynchronous. The final return is of type definitions/BillingProfileModel. # noqa: E501
|
|
178
|
+
Creates a new profile associated with a billing account. This is asynchronous. The final return is of type definitions/BillingProfileModel. Use the returned job id to check the retrieveJob endpoint for the job status or retrieveJobResult endpoint to get the final result. # noqa: E501
|
|
179
179
|
This method makes a synchronous HTTP request by default. To make an
|
|
180
180
|
asynchronous HTTP request, please pass async_req=True
|
|
181
181
|
>>> thread = api.create_profile(async_req=True)
|
|
@@ -200,7 +200,7 @@ class ResourcesApi(object):
|
|
|
200
200
|
def create_profile_with_http_info(self, **kwargs): # noqa: E501
|
|
201
201
|
"""create_profile # noqa: E501
|
|
202
202
|
|
|
203
|
-
Creates a new profile associated with a billing account. This is asynchronous. The final return is of type definitions/BillingProfileModel. # noqa: E501
|
|
203
|
+
Creates a new profile associated with a billing account. This is asynchronous. The final return is of type definitions/BillingProfileModel. Use the returned job id to check the retrieveJob endpoint for the job status or retrieveJobResult endpoint to get the final result. # noqa: E501
|
|
204
204
|
This method makes a synchronous HTTP request by default. To make an
|
|
205
205
|
asynchronous HTTP request, please pass async_req=True
|
|
206
206
|
>>> thread = api.create_profile_with_http_info(async_req=True)
|
|
@@ -289,7 +289,7 @@ class ResourcesApi(object):
|
|
|
289
289
|
def delete_profile(self, id, **kwargs): # noqa: E501
|
|
290
290
|
"""delete_profile # noqa: E501
|
|
291
291
|
|
|
292
|
-
Delete a billing profile by id. This is asynchronous. The final return is of type definitions/DeleteResponseModel. # noqa: E501
|
|
292
|
+
Delete a billing profile by id. This is asynchronous. The final return is of type definitions/DeleteResponseModel. Use the returned job id to check the retrieveJob endpoint for the job status or retrieveJobResult endpoint to get the final result. # noqa: E501
|
|
293
293
|
This method makes a synchronous HTTP request by default. To make an
|
|
294
294
|
asynchronous HTTP request, please pass async_req=True
|
|
295
295
|
>>> thread = api.delete_profile(id, async_req=True)
|
|
@@ -315,7 +315,7 @@ class ResourcesApi(object):
|
|
|
315
315
|
def delete_profile_with_http_info(self, id, **kwargs): # noqa: E501
|
|
316
316
|
"""delete_profile # noqa: E501
|
|
317
317
|
|
|
318
|
-
Delete a billing profile by id. This is asynchronous. The final return is of type definitions/DeleteResponseModel. # noqa: E501
|
|
318
|
+
Delete a billing profile by id. This is asynchronous. The final return is of type definitions/DeleteResponseModel. Use the returned job id to check the retrieveJob endpoint for the job status or retrieveJobResult endpoint to get the final result. # noqa: E501
|
|
319
319
|
This method makes a synchronous HTTP request by default. To make an
|
|
320
320
|
asynchronous HTTP request, please pass async_req=True
|
|
321
321
|
>>> thread = api.delete_profile_with_http_info(id, async_req=True)
|
|
@@ -997,7 +997,7 @@ class ResourcesApi(object):
|
|
|
997
997
|
def update_profile(self, billing_profile_update_model, **kwargs): # noqa: E501
|
|
998
998
|
"""update_profile # noqa: E501
|
|
999
999
|
|
|
1000
|
-
Update a billing profile by id. This is asynchronous. The final return is of type definitions/BillingProfileModel. # noqa: E501
|
|
1000
|
+
Update a billing profile by id. This is asynchronous. The final return is of type definitions/BillingProfileModel. Use the returned job id to check the retrieveJob endpoint for the job status or retrieveJobResult endpoint to get the final result. # noqa: E501
|
|
1001
1001
|
This method makes a synchronous HTTP request by default. To make an
|
|
1002
1002
|
asynchronous HTTP request, please pass async_req=True
|
|
1003
1003
|
>>> thread = api.update_profile(billing_profile_update_model, async_req=True)
|
|
@@ -1022,7 +1022,7 @@ class ResourcesApi(object):
|
|
|
1022
1022
|
def update_profile_with_http_info(self, billing_profile_update_model, **kwargs): # noqa: E501
|
|
1023
1023
|
"""update_profile # noqa: E501
|
|
1024
1024
|
|
|
1025
|
-
Update a billing profile by id. This is asynchronous. The final return is of type definitions/BillingProfileModel. # noqa: E501
|
|
1025
|
+
Update a billing profile by id. This is asynchronous. The final return is of type definitions/BillingProfileModel. Use the returned job id to check the retrieveJob endpoint for the job status or retrieveJobResult endpoint to get the final result. # noqa: E501
|
|
1026
1026
|
This method makes a synchronous HTTP request by default. To make an
|
|
1027
1027
|
asynchronous HTTP request, please pass async_req=True
|
|
1028
1028
|
>>> thread = api.update_profile_with_http_info(billing_profile_update_model, async_req=True)
|
|
@@ -294,7 +294,7 @@ class SnapshotsApi(object):
|
|
|
294
294
|
def create_snapshot(self, **kwargs): # noqa: E501
|
|
295
295
|
"""create_snapshot # noqa: E501
|
|
296
296
|
|
|
297
|
-
Create a new snapshot # noqa: E501
|
|
297
|
+
Create a new snapshot. This is asynchronous. Use the returned job id to check the retrieveJob endpoint for the job status or retrieveJobResult endpoint to get the final result. # noqa: E501
|
|
298
298
|
This method makes a synchronous HTTP request by default. To make an
|
|
299
299
|
asynchronous HTTP request, please pass async_req=True
|
|
300
300
|
>>> thread = api.create_snapshot(async_req=True)
|
|
@@ -319,7 +319,7 @@ class SnapshotsApi(object):
|
|
|
319
319
|
def create_snapshot_with_http_info(self, **kwargs): # noqa: E501
|
|
320
320
|
"""create_snapshot # noqa: E501
|
|
321
321
|
|
|
322
|
-
Create a new snapshot # noqa: E501
|
|
322
|
+
Create a new snapshot. This is asynchronous. Use the returned job id to check the retrieveJob endpoint for the job status or retrieveJobResult endpoint to get the final result. # noqa: E501
|
|
323
323
|
This method makes a synchronous HTTP request by default. To make an
|
|
324
324
|
asynchronous HTTP request, please pass async_req=True
|
|
325
325
|
>>> thread = api.create_snapshot_with_http_info(async_req=True)
|
|
@@ -408,7 +408,7 @@ class SnapshotsApi(object):
|
|
|
408
408
|
def delete_snapshot(self, id, **kwargs): # noqa: E501
|
|
409
409
|
"""delete_snapshot # noqa: E501
|
|
410
410
|
|
|
411
|
-
Delete a snapshot by id # noqa: E501
|
|
411
|
+
Delete a snapshot by id. If this operation fails, we do not attempt to undo any failed steps. Therefore, a failed snapshot delete call leaves the snapshot in a partially deleted state. This is asynchronous. Use the returned job id to check the retrieveJob endpoint for the job status or retrieveJobResult endpoint to get the final result. # noqa: E501
|
|
412
412
|
This method makes a synchronous HTTP request by default. To make an
|
|
413
413
|
asynchronous HTTP request, please pass async_req=True
|
|
414
414
|
>>> thread = api.delete_snapshot(id, async_req=True)
|
|
@@ -433,7 +433,7 @@ class SnapshotsApi(object):
|
|
|
433
433
|
def delete_snapshot_with_http_info(self, id, **kwargs): # noqa: E501
|
|
434
434
|
"""delete_snapshot # noqa: E501
|
|
435
435
|
|
|
436
|
-
Delete a snapshot by id # noqa: E501
|
|
436
|
+
Delete a snapshot by id. If this operation fails, we do not attempt to undo any failed steps. Therefore, a failed snapshot delete call leaves the snapshot in a partially deleted state. This is asynchronous. Use the returned job id to check the retrieveJob endpoint for the job status or retrieveJobResult endpoint to get the final result. # noqa: E501
|
|
437
437
|
This method makes a synchronous HTTP request by default. To make an
|
|
438
438
|
asynchronous HTTP request, please pass async_req=True
|
|
439
439
|
>>> thread = api.delete_snapshot_with_http_info(id, async_req=True)
|
|
@@ -1049,7 +1049,7 @@ class SnapshotsApi(object):
|
|
|
1049
1049
|
def export_snapshot(self, id, **kwargs): # noqa: E501
|
|
1050
1050
|
"""export_snapshot # noqa: E501
|
|
1051
1051
|
|
|
1052
|
-
Export a snapshot by id # noqa: E501
|
|
1052
|
+
Export a snapshot by id. This is asynchronous. Use the returned job id to check the retrieveJob endpoint for the job status or retrieveJobResult endpoint to get the final result. # noqa: E501
|
|
1053
1053
|
This method makes a synchronous HTTP request by default. To make an
|
|
1054
1054
|
asynchronous HTTP request, please pass async_req=True
|
|
1055
1055
|
>>> thread = api.export_snapshot(id, async_req=True)
|
|
@@ -1077,7 +1077,7 @@ class SnapshotsApi(object):
|
|
|
1077
1077
|
def export_snapshot_with_http_info(self, id, **kwargs): # noqa: E501
|
|
1078
1078
|
"""export_snapshot # noqa: E501
|
|
1079
1079
|
|
|
1080
|
-
Export a snapshot by id # noqa: E501
|
|
1080
|
+
Export a snapshot by id. This is asynchronous. Use the returned job id to check the retrieveJob endpoint for the job status or retrieveJobResult endpoint to get the final result. # noqa: E501
|
|
1081
1081
|
This method makes a synchronous HTTP request by default. To make an
|
|
1082
1082
|
asynchronous HTTP request, please pass async_req=True
|
|
1083
1083
|
>>> thread = api.export_snapshot_with_http_info(id, async_req=True)
|
|
@@ -3370,6 +3370,133 @@ class SnapshotsApi(object):
|
|
|
3370
3370
|
_request_timeout=local_var_params.get('_request_timeout'),
|
|
3371
3371
|
collection_formats=collection_formats)
|
|
3372
3372
|
|
|
3373
|
+
def set_snapshot_public(self, id, body, **kwargs): # noqa: E501
|
|
3374
|
+
"""set_snapshot_public # noqa: E501
|
|
3375
|
+
|
|
3376
|
+
Sets the reader policy on the snapshot public for the specified snapshot if request body is true. Makes the reader policy on the snapshot private if the request body is false. This is asynchronous. Use the returned job id to check the retrieveJob endpoint for the job status or retrieveJobResult endpoint to get the final result. # noqa: E501
|
|
3377
|
+
This method makes a synchronous HTTP request by default. To make an
|
|
3378
|
+
asynchronous HTTP request, please pass async_req=True
|
|
3379
|
+
>>> thread = api.set_snapshot_public(id, body, async_req=True)
|
|
3380
|
+
>>> result = thread.get()
|
|
3381
|
+
|
|
3382
|
+
:param async_req bool: execute request asynchronously
|
|
3383
|
+
:param str id: A UUID to used to identify an object in the repository (required)
|
|
3384
|
+
:param bool body: A boolean value indicating whether the reader policy on the snapshot is being set public. (required)
|
|
3385
|
+
:param _preload_content: if False, the urllib3.HTTPResponse object will
|
|
3386
|
+
be returned without reading/decoding response
|
|
3387
|
+
data. Default is True.
|
|
3388
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
3389
|
+
number provided, it will be total request
|
|
3390
|
+
timeout. It can also be a pair (tuple) of
|
|
3391
|
+
(connection, read) timeouts.
|
|
3392
|
+
:return: JobModel
|
|
3393
|
+
If the method is called asynchronously,
|
|
3394
|
+
returns the request thread.
|
|
3395
|
+
"""
|
|
3396
|
+
kwargs['_return_http_data_only'] = True
|
|
3397
|
+
return self.set_snapshot_public_with_http_info(id, body, **kwargs) # noqa: E501
|
|
3398
|
+
|
|
3399
|
+
def set_snapshot_public_with_http_info(self, id, body, **kwargs): # noqa: E501
|
|
3400
|
+
"""set_snapshot_public # noqa: E501
|
|
3401
|
+
|
|
3402
|
+
Sets the reader policy on the snapshot public for the specified snapshot if request body is true. Makes the reader policy on the snapshot private if the request body is false. This is asynchronous. Use the returned job id to check the retrieveJob endpoint for the job status or retrieveJobResult endpoint to get the final result. # noqa: E501
|
|
3403
|
+
This method makes a synchronous HTTP request by default. To make an
|
|
3404
|
+
asynchronous HTTP request, please pass async_req=True
|
|
3405
|
+
>>> thread = api.set_snapshot_public_with_http_info(id, body, async_req=True)
|
|
3406
|
+
>>> result = thread.get()
|
|
3407
|
+
|
|
3408
|
+
:param async_req bool: execute request asynchronously
|
|
3409
|
+
:param str id: A UUID to used to identify an object in the repository (required)
|
|
3410
|
+
:param bool body: A boolean value indicating whether the reader policy on the snapshot is being set public. (required)
|
|
3411
|
+
:param _return_http_data_only: response data without head status code
|
|
3412
|
+
and headers
|
|
3413
|
+
:param _preload_content: if False, the urllib3.HTTPResponse object will
|
|
3414
|
+
be returned without reading/decoding response
|
|
3415
|
+
data. Default is True.
|
|
3416
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
3417
|
+
number provided, it will be total request
|
|
3418
|
+
timeout. It can also be a pair (tuple) of
|
|
3419
|
+
(connection, read) timeouts.
|
|
3420
|
+
:return: tuple(JobModel, status_code(int), headers(HTTPHeaderDict))
|
|
3421
|
+
If the method is called asynchronously,
|
|
3422
|
+
returns the request thread.
|
|
3423
|
+
"""
|
|
3424
|
+
|
|
3425
|
+
local_var_params = locals()
|
|
3426
|
+
|
|
3427
|
+
all_params = [
|
|
3428
|
+
'id',
|
|
3429
|
+
'body'
|
|
3430
|
+
]
|
|
3431
|
+
all_params.extend(
|
|
3432
|
+
[
|
|
3433
|
+
'async_req',
|
|
3434
|
+
'_return_http_data_only',
|
|
3435
|
+
'_preload_content',
|
|
3436
|
+
'_request_timeout'
|
|
3437
|
+
]
|
|
3438
|
+
)
|
|
3439
|
+
|
|
3440
|
+
for key, val in six.iteritems(local_var_params['kwargs']):
|
|
3441
|
+
if key not in all_params:
|
|
3442
|
+
raise ApiTypeError(
|
|
3443
|
+
"Got an unexpected keyword argument '%s'"
|
|
3444
|
+
" to method set_snapshot_public" % key
|
|
3445
|
+
)
|
|
3446
|
+
local_var_params[key] = val
|
|
3447
|
+
del local_var_params['kwargs']
|
|
3448
|
+
# verify the required parameter 'id' is set
|
|
3449
|
+
if self.api_client.client_side_validation and ('id' not in local_var_params or # noqa: E501
|
|
3450
|
+
local_var_params['id'] is None): # noqa: E501
|
|
3451
|
+
raise ApiValueError("Missing the required parameter `id` when calling `set_snapshot_public`") # noqa: E501
|
|
3452
|
+
# verify the required parameter 'body' is set
|
|
3453
|
+
if self.api_client.client_side_validation and ('body' not in local_var_params or # noqa: E501
|
|
3454
|
+
local_var_params['body'] is None): # noqa: E501
|
|
3455
|
+
raise ApiValueError("Missing the required parameter `body` when calling `set_snapshot_public`") # noqa: E501
|
|
3456
|
+
|
|
3457
|
+
collection_formats = {}
|
|
3458
|
+
|
|
3459
|
+
path_params = {}
|
|
3460
|
+
if 'id' in local_var_params:
|
|
3461
|
+
path_params['id'] = local_var_params['id'] # noqa: E501
|
|
3462
|
+
|
|
3463
|
+
query_params = []
|
|
3464
|
+
|
|
3465
|
+
header_params = {}
|
|
3466
|
+
|
|
3467
|
+
form_params = []
|
|
3468
|
+
local_var_files = {}
|
|
3469
|
+
|
|
3470
|
+
body_params = None
|
|
3471
|
+
if 'body' in local_var_params:
|
|
3472
|
+
body_params = local_var_params['body']
|
|
3473
|
+
# HTTP header `Accept`
|
|
3474
|
+
header_params['Accept'] = self.api_client.select_header_accept(
|
|
3475
|
+
['application/json']) # noqa: E501
|
|
3476
|
+
|
|
3477
|
+
# HTTP header `Content-Type`
|
|
3478
|
+
header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501
|
|
3479
|
+
['application/json']) # noqa: E501
|
|
3480
|
+
|
|
3481
|
+
# Authentication setting
|
|
3482
|
+
auth_settings = ['oidc'] # noqa: E501
|
|
3483
|
+
|
|
3484
|
+
return self.api_client.call_api(
|
|
3485
|
+
'/api/repository/v1/snapshots/{id}/public', 'PUT',
|
|
3486
|
+
path_params,
|
|
3487
|
+
query_params,
|
|
3488
|
+
header_params,
|
|
3489
|
+
body=body_params,
|
|
3490
|
+
post_params=form_params,
|
|
3491
|
+
files=local_var_files,
|
|
3492
|
+
response_type='JobModel', # noqa: E501
|
|
3493
|
+
auth_settings=auth_settings,
|
|
3494
|
+
async_req=local_var_params.get('async_req'),
|
|
3495
|
+
_return_http_data_only=local_var_params.get('_return_http_data_only'), # noqa: E501
|
|
3496
|
+
_preload_content=local_var_params.get('_preload_content', True),
|
|
3497
|
+
_request_timeout=local_var_params.get('_request_timeout'),
|
|
3498
|
+
collection_formats=collection_formats)
|
|
3499
|
+
|
|
3373
3500
|
def unlink_duos_dataset_from_snapshot(self, id, **kwargs): # noqa: E501
|
|
3374
3501
|
"""unlink_duos_dataset_from_snapshot # noqa: E501
|
|
3375
3502
|
|
|
@@ -39,7 +39,7 @@ class UpgradeApi(object):
|
|
|
39
39
|
def upgrade(self, upgrade, **kwargs): # noqa: E501
|
|
40
40
|
"""upgrade # noqa: E501
|
|
41
41
|
|
|
42
|
-
Extensible endpoint for triggering upgrade tasks in the data repository. The asynchronous result is UpgradeResponseModel # noqa: E501
|
|
42
|
+
Extensible endpoint for triggering upgrade tasks in the data repository. The asynchronous result is UpgradeResponseModel. Use the returned job id to check the retrieveJob endpoint for the job status or retrieveJobResult endpoint to get the final result. # noqa: E501
|
|
43
43
|
This method makes a synchronous HTTP request by default. To make an
|
|
44
44
|
asynchronous HTTP request, please pass async_req=True
|
|
45
45
|
>>> thread = api.upgrade(upgrade, async_req=True)
|
|
@@ -64,7 +64,7 @@ class UpgradeApi(object):
|
|
|
64
64
|
def upgrade_with_http_info(self, upgrade, **kwargs): # noqa: E501
|
|
65
65
|
"""upgrade # noqa: E501
|
|
66
66
|
|
|
67
|
-
Extensible endpoint for triggering upgrade tasks in the data repository. The asynchronous result is UpgradeResponseModel # noqa: E501
|
|
67
|
+
Extensible endpoint for triggering upgrade tasks in the data repository. The asynchronous result is UpgradeResponseModel. Use the returned job id to check the retrieveJob endpoint for the job status or retrieveJobResult endpoint to get the final result. # noqa: E501
|
|
68
68
|
This method makes a synchronous HTTP request by default. To make an
|
|
69
69
|
asynchronous HTTP request, please pass async_req=True
|
|
70
70
|
>>> thread = api.upgrade_with_http_info(upgrade, async_req=True)
|
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.360.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.360.0".\
|
|
340
340
|
format(env=sys.platform, pyversion=sys.version)
|
|
341
341
|
|
|
342
342
|
def get_host_settings(self):
|
|
@@ -34,8 +34,9 @@ class IamResourceTypeEnum(object):
|
|
|
34
34
|
DATAREPO = "DATAREPO"
|
|
35
35
|
WORKSPACE = "WORKSPACE"
|
|
36
36
|
SNAPSHOT_BUILDER_REQUEST = "SNAPSHOT_BUILDER_REQUEST"
|
|
37
|
+
GOOGLE_PROJECT = "GOOGLE_PROJECT"
|
|
37
38
|
|
|
38
|
-
allowable_values = [DATASET, DATASNAPSHOT, SPEND_PROFILE, DATAREPO, WORKSPACE, SNAPSHOT_BUILDER_REQUEST] # noqa: E501
|
|
39
|
+
allowable_values = [DATASET, DATASNAPSHOT, SPEND_PROFILE, DATAREPO, WORKSPACE, SNAPSHOT_BUILDER_REQUEST, GOOGLE_PROJECT] # noqa: E501
|
|
39
40
|
|
|
40
41
|
"""
|
|
41
42
|
Attributes:
|
|
@@ -34,29 +34,34 @@ class SamPolicyModel(object):
|
|
|
34
34
|
"""
|
|
35
35
|
openapi_types = {
|
|
36
36
|
'name': 'str',
|
|
37
|
+
'email': 'str',
|
|
37
38
|
'members': 'list[str]',
|
|
38
39
|
'member_policies': 'list[ResourcePolicyModel]'
|
|
39
40
|
}
|
|
40
41
|
|
|
41
42
|
attribute_map = {
|
|
42
43
|
'name': 'name',
|
|
44
|
+
'email': 'email',
|
|
43
45
|
'members': 'members',
|
|
44
46
|
'member_policies': 'memberPolicies'
|
|
45
47
|
}
|
|
46
48
|
|
|
47
|
-
def __init__(self, name=None, members=None, member_policies=None, local_vars_configuration=None): # noqa: E501
|
|
49
|
+
def __init__(self, name=None, email=None, members=None, member_policies=None, local_vars_configuration=None): # noqa: E501
|
|
48
50
|
"""SamPolicyModel - a model defined in OpenAPI""" # noqa: E501
|
|
49
51
|
if local_vars_configuration is None:
|
|
50
52
|
local_vars_configuration = Configuration()
|
|
51
53
|
self.local_vars_configuration = local_vars_configuration
|
|
52
54
|
|
|
53
55
|
self._name = None
|
|
56
|
+
self._email = None
|
|
54
57
|
self._members = None
|
|
55
58
|
self._member_policies = None
|
|
56
59
|
self.discriminator = None
|
|
57
60
|
|
|
58
61
|
if name is not None:
|
|
59
62
|
self.name = name
|
|
63
|
+
if email is not None:
|
|
64
|
+
self.email = email
|
|
60
65
|
if members is not None:
|
|
61
66
|
self.members = members
|
|
62
67
|
if member_policies is not None:
|
|
@@ -83,6 +88,27 @@ class SamPolicyModel(object):
|
|
|
83
88
|
|
|
84
89
|
self._name = name
|
|
85
90
|
|
|
91
|
+
@property
|
|
92
|
+
def email(self):
|
|
93
|
+
"""Gets the email of this SamPolicyModel. # noqa: E501
|
|
94
|
+
|
|
95
|
+
|
|
96
|
+
:return: The email of this SamPolicyModel. # noqa: E501
|
|
97
|
+
:rtype: str
|
|
98
|
+
"""
|
|
99
|
+
return self._email
|
|
100
|
+
|
|
101
|
+
@email.setter
|
|
102
|
+
def email(self, email):
|
|
103
|
+
"""Sets the email of this SamPolicyModel.
|
|
104
|
+
|
|
105
|
+
|
|
106
|
+
:param email: The email of this SamPolicyModel. # noqa: E501
|
|
107
|
+
:type: str
|
|
108
|
+
"""
|
|
109
|
+
|
|
110
|
+
self._email = email
|
|
111
|
+
|
|
86
112
|
@property
|
|
87
113
|
def members(self):
|
|
88
114
|
"""Gets the members of this SamPolicyModel. # noqa: E501
|
|
@@ -1,25 +1,25 @@
|
|
|
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=3VD7ZQvu9FojxzLhIzm30vFixDgaBx5Ev6ZBMlMe6qY,18151
|
|
2
|
+
data_repo_client/api_client.py,sha256=vPhJDmG_FVj6T2N0YVGt4McK_dzSylA6NIyyT0Yav_E,27141
|
|
3
|
+
data_repo_client/configuration.py,sha256=jtxkjiXPZk9pzC4aehF9lVLJNctq_aXpCl6scKJroRw,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=jAxy_mTcf4ZmjVOPtIQjZNTJvW26YCJ9iMS48KNwLFk,17157
|
|
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=qlZHA0e1F_q_9NXxmFYc12o1ImdcPU-bGZ3WpupKsBA,236227
|
|
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
|
-
data_repo_client/api/profiles_api.py,sha256=
|
|
14
|
+
data_repo_client/api/profiles_api.py,sha256=O-cdBwFzbM077zWqEYVOHrdHDs1Ixo1iMgotL-WyTx4,53280
|
|
15
15
|
data_repo_client/api/register_api.py,sha256=Q3mDFgxaUxbiuStLqW2yapH45-PZTvPVbOeG3DBaTVI,5999
|
|
16
|
-
data_repo_client/api/repository_api.py,sha256=
|
|
17
|
-
data_repo_client/api/resources_api.py,sha256=
|
|
16
|
+
data_repo_client/api/repository_api.py,sha256=nFOZa0iujYi1K4Ab_P-lFtKDVeoUGDQ9M1EBWvOPE14,489773
|
|
17
|
+
data_repo_client/api/resources_api.py,sha256=sZ_WqAwlzIvooJUBm-jvMFSWIOm1HYh8pEUIpD9VyJE,53281
|
|
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
|
|
20
|
-
data_repo_client/api/snapshots_api.py,sha256=
|
|
20
|
+
data_repo_client/api/snapshots_api.py,sha256=opcrpZ86HIvmQqKeiLcQtm5E6H1E96UkWwqL83iWcbQ,195931
|
|
21
21
|
data_repo_client/api/unauthenticated_api.py,sha256=QWMMTMxinULtYn-1SDwuWUaZgShbrbwMtfhp3_Wrh6Q,14777
|
|
22
|
-
data_repo_client/api/upgrade_api.py,sha256=
|
|
22
|
+
data_repo_client/api/upgrade_api.py,sha256=iqQNsNe6HUPWsa6vOGTYLVsesU5h-zzVF9iqD8mjEy4,7236
|
|
23
23
|
data_repo_client/models/__init__.py,sha256=oujo2-zRZ0dODWXkAjCkCWB_Vs605GmBgERJLo7Xw1A,16725
|
|
24
24
|
data_repo_client/models/access_info_big_query_model.py,sha256=BGOtdHxRFnUYgnWPlFx1iRKScd7z1bmlnHxXL9u-4AI,8937
|
|
25
25
|
data_repo_client/models/access_info_big_query_model_table.py,sha256=C8Ki1HSV2K1G7MlIGJREdmMixIL_s4GWsyMkzQSpgM8,8507
|
|
@@ -99,7 +99,7 @@ data_repo_client/models/file_detail_model.py,sha256=_NVSNR0uXdxgkLsTSVrUOdUZYQ2M
|
|
|
99
99
|
data_repo_client/models/file_load_model.py,sha256=11IHOF9UaMun8-Z34z_L3j2OT0fM2acpUdCAa137fR4,10687
|
|
100
100
|
data_repo_client/models/file_model.py,sha256=Dqoj4qRpLHYNCVW3uUc41lOcOAX4XpIAe-TUNypA0QQ,11800
|
|
101
101
|
data_repo_client/models/file_model_type.py,sha256=x7PXUbjUN73OdI-A6g668ewaWMLYD2nWYd0VgSfwHzc,3717
|
|
102
|
-
data_repo_client/models/iam_resource_type_enum.py,sha256=
|
|
102
|
+
data_repo_client/models/iam_resource_type_enum.py,sha256=dFyYJhRvhlFYYqu52mjf2w0lJkevrouU57yvNDd2le8,4023
|
|
103
103
|
data_repo_client/models/inaccessible_workspace_policy_model.py,sha256=UYecaXHPnw1h--6Z2bQANH9DhiiQa1xiNxrqbYiPz1s,6284
|
|
104
104
|
data_repo_client/models/ingest_request_model.py,sha256=HCkLmZXOcaP1LqUm77xfD09YgShd9o3HVUZ9YO_to1Q,28298
|
|
105
105
|
data_repo_client/models/ingest_response_model.py,sha256=tLII9otmkYcvYAv7xWbRBXsyOMRBSXisohuWiCyzWKU,12863
|
|
@@ -120,7 +120,7 @@ data_repo_client/models/repository_status_model.py,sha256=vazFN_Djp9FjxKrH7fL1Sj
|
|
|
120
120
|
data_repo_client/models/repository_status_model_systems.py,sha256=K9DR6Dd9WWh10H4jxu8UKyhuuB7ybBbAGR4tw4bUWDU,5663
|
|
121
121
|
data_repo_client/models/resource_locks.py,sha256=nXYIcHUn85g8v_3YCeltPzrDAXLh_IHqzhlxVlxSUWc,5339
|
|
122
122
|
data_repo_client/models/resource_policy_model.py,sha256=wF2mEjF3rzXqrik1yHNGaVnAs_wTxoQ2apGXx8NVZyA,6875
|
|
123
|
-
data_repo_client/models/sam_policy_model.py,sha256=
|
|
123
|
+
data_repo_client/models/sam_policy_model.py,sha256=P3DpAWSV4HMGammM-xIvWK30A_IeCypB2ZtfE8S08pA,6301
|
|
124
124
|
data_repo_client/models/snapshot_access_request.py,sha256=1HpZ0BxH6_xTt9DGKn-p_SYZ7fKKodgjY8FxqB2mEHY,7229
|
|
125
125
|
data_repo_client/models/snapshot_access_request_details_response.py,sha256=K487rRnYwRvYQIOzFlWQX6qWwuy6qzklWLlBLH2rYCQ,4556
|
|
126
126
|
data_repo_client/models/snapshot_access_request_members_response.py,sha256=iXwoS4r678DjPDZ1kOpkxRWD2DcbgtNPdM7a9gGRkhg,4417
|
|
@@ -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.360.0.dist-info/METADATA,sha256=Z6uF1fvpho7eQMntATKaNtsiSXC4YCfIMVaalFpksZU,1420
|
|
201
|
+
data_repo_client-2.360.0.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
|
202
|
+
data_repo_client-2.360.0.dist-info/top_level.txt,sha256=rxRfDoBxOaUhmfMLoiE926w1prfERSr2Qg70w69QsgQ,17
|
|
203
|
+
data_repo_client-2.360.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|