data-repo-client 2.253.0__py3-none-any.whl → 2.255.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_client.py +1 -1
- data_repo_client/configuration.py +1 -1
- data_repo_client/models/sam_policy_model.py +27 -1
- {data_repo_client-2.253.0.dist-info → data_repo_client-2.255.0.dist-info}/METADATA +1 -1
- {data_repo_client-2.253.0.dist-info → data_repo_client-2.255.0.dist-info}/RECORD +8 -8
- {data_repo_client-2.253.0.dist-info → data_repo_client-2.255.0.dist-info}/WHEEL +0 -0
- {data_repo_client-2.253.0.dist-info → data_repo_client-2.255.0.dist-info}/top_level.txt +0 -0
data_repo_client/__init__.py
CHANGED
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.255.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.255.0".\
|
|
340
340
|
format(env=sys.platform, pyversion=sys.version)
|
|
341
341
|
|
|
342
342
|
def get_host_settings(self):
|
|
@@ -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,6 +1,6 @@
|
|
|
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=OGmrzgj7_MAaiHLPiYv0vQ6lP1KY5qDgJUAydvgvdWs,18151
|
|
2
|
+
data_repo_client/api_client.py,sha256=GmxWUPTtG_DbWMxJDcaRhizg1ZNXrOXAE74UMn6SJ10,27141
|
|
3
|
+
data_repo_client/configuration.py,sha256=p33DikcvFglm6nmryCDzPnwOn6VqGuAfhG9BL4T8Nxk,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
|
|
@@ -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.255.0.dist-info/METADATA,sha256=CxlyzHDJuRcLvEjDgNRglFZU-rHGcYZM-64OGj23Tjs,1420
|
|
201
|
+
data_repo_client-2.255.0.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
|
202
|
+
data_repo_client-2.255.0.dist-info/top_level.txt,sha256=rxRfDoBxOaUhmfMLoiE926w1prfERSr2Qg70w69QsgQ,17
|
|
203
|
+
data_repo_client-2.255.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|