data-repo-client 2.197.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.

@@ -0,0 +1,120 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ Data Repository API
5
+
6
+ <details><summary>This document defines the REST API for the Terra Data Repository.</summary> <p> **Status: design in progress** There are a few top-level endpoints (besides some used by swagger): * / - generated by swagger: swagger API page that provides this documentation and a live UI for submitting REST requests * /status - provides the operational status of the service * /configuration - provides the basic configuration and information about the service * /api - is the authenticated and authorized Data Repository API * /ga4gh/drs/v1 - is a transcription of the Data Repository Service API The API endpoints are organized by interface. Each interface is separately versioned. <p> **Notes on Naming** <p> All of the reference items are suffixed with \\\"Model\\\". Those names are used as the class names in the generated Java code. It is helpful to distinguish these model classes from other related classes, like the DAO classes and the operation classes. </details> # noqa: E501
7
+
8
+ The version of the OpenAPI document: 0.1.0
9
+ Generated by: https://openapi-generator.tech
10
+ """
11
+
12
+
13
+ import pprint
14
+ import re # noqa: F401
15
+
16
+ import six
17
+
18
+ from data_repo_client.configuration import Configuration
19
+
20
+
21
+ class EnumerateBillingProfileResourcesModel(object):
22
+ """NOTE: This class is auto generated by OpenAPI Generator.
23
+ Ref: https://openapi-generator.tech
24
+
25
+ Do not edit the class manually.
26
+ """
27
+
28
+ """
29
+ Attributes:
30
+ openapi_types (dict): The key is attribute name
31
+ and the value is attribute type.
32
+ attribute_map (dict): The key is attribute name
33
+ and the value is json key in definition.
34
+ """
35
+ openapi_types = {
36
+ 'items': 'list[ProfileOwnedResourceModel]'
37
+ }
38
+
39
+ attribute_map = {
40
+ 'items': 'items'
41
+ }
42
+
43
+ def __init__(self, items=None, local_vars_configuration=None): # noqa: E501
44
+ """EnumerateBillingProfileResourcesModel - a model defined in OpenAPI""" # noqa: E501
45
+ if local_vars_configuration is None:
46
+ local_vars_configuration = Configuration()
47
+ self.local_vars_configuration = local_vars_configuration
48
+
49
+ self._items = None
50
+ self.discriminator = None
51
+
52
+ if items is not None:
53
+ self.items = items
54
+
55
+ @property
56
+ def items(self):
57
+ """Gets the items of this EnumerateBillingProfileResourcesModel. # noqa: E501
58
+
59
+
60
+ :return: The items of this EnumerateBillingProfileResourcesModel. # noqa: E501
61
+ :rtype: list[ProfileOwnedResourceModel]
62
+ """
63
+ return self._items
64
+
65
+ @items.setter
66
+ def items(self, items):
67
+ """Sets the items of this EnumerateBillingProfileResourcesModel.
68
+
69
+
70
+ :param items: The items of this EnumerateBillingProfileResourcesModel. # noqa: E501
71
+ :type: list[ProfileOwnedResourceModel]
72
+ """
73
+
74
+ self._items = items
75
+
76
+ def to_dict(self):
77
+ """Returns the model properties as a dict"""
78
+ result = {}
79
+
80
+ for attr, _ in six.iteritems(self.openapi_types):
81
+ value = getattr(self, attr)
82
+ if isinstance(value, list):
83
+ result[attr] = list(map(
84
+ lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
85
+ value
86
+ ))
87
+ elif hasattr(value, "to_dict"):
88
+ result[attr] = value.to_dict()
89
+ elif isinstance(value, dict):
90
+ result[attr] = dict(map(
91
+ lambda item: (item[0], item[1].to_dict())
92
+ if hasattr(item[1], "to_dict") else item,
93
+ value.items()
94
+ ))
95
+ else:
96
+ result[attr] = value
97
+
98
+ return result
99
+
100
+ def to_str(self):
101
+ """Returns the string representation of the model"""
102
+ return pprint.pformat(self.to_dict())
103
+
104
+ def __repr__(self):
105
+ """For `print` and `pprint`"""
106
+ return self.to_str()
107
+
108
+ def __eq__(self, other):
109
+ """Returns true if both objects are equal"""
110
+ if not isinstance(other, EnumerateBillingProfileResourcesModel):
111
+ return False
112
+
113
+ return self.to_dict() == other.to_dict()
114
+
115
+ def __ne__(self, other):
116
+ """Returns true if both objects are not equal"""
117
+ if not isinstance(other, EnumerateBillingProfileResourcesModel):
118
+ return True
119
+
120
+ return self.to_dict() != other.to_dict()
@@ -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:
@@ -0,0 +1,240 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ Data Repository API
5
+
6
+ <details><summary>This document defines the REST API for the Terra Data Repository.</summary> <p> **Status: design in progress** There are a few top-level endpoints (besides some used by swagger): * / - generated by swagger: swagger API page that provides this documentation and a live UI for submitting REST requests * /status - provides the operational status of the service * /configuration - provides the basic configuration and information about the service * /api - is the authenticated and authorized Data Repository API * /ga4gh/drs/v1 - is a transcription of the Data Repository Service API The API endpoints are organized by interface. Each interface is separately versioned. <p> **Notes on Naming** <p> All of the reference items are suffixed with \\\"Model\\\". Those names are used as the class names in the generated Java code. It is helpful to distinguish these model classes from other related classes, like the DAO classes and the operation classes. </details> # noqa: E501
7
+
8
+ The version of the OpenAPI document: 0.1.0
9
+ Generated by: https://openapi-generator.tech
10
+ """
11
+
12
+
13
+ import pprint
14
+ import re # noqa: F401
15
+
16
+ import six
17
+
18
+ from data_repo_client.configuration import Configuration
19
+
20
+
21
+ class ProfileOwnedResourceModel(object):
22
+ """NOTE: This class is auto generated by OpenAPI Generator.
23
+ Ref: https://openapi-generator.tech
24
+
25
+ Do not edit the class manually.
26
+ """
27
+
28
+ """
29
+ Attributes:
30
+ openapi_types (dict): The key is attribute name
31
+ and the value is attribute type.
32
+ attribute_map (dict): The key is attribute name
33
+ and the value is json key in definition.
34
+ """
35
+ openapi_types = {
36
+ 'id': 'str',
37
+ 'name': 'str',
38
+ 'description': 'str',
39
+ 'created_date': 'str',
40
+ 'type': 'str'
41
+ }
42
+
43
+ attribute_map = {
44
+ 'id': 'id',
45
+ 'name': 'name',
46
+ 'description': 'description',
47
+ 'created_date': 'createdDate',
48
+ 'type': 'type'
49
+ }
50
+
51
+ def __init__(self, id=None, name=None, description=None, created_date=None, type=None, local_vars_configuration=None): # noqa: E501
52
+ """ProfileOwnedResourceModel - a model defined in OpenAPI""" # noqa: E501
53
+ if local_vars_configuration is None:
54
+ local_vars_configuration = Configuration()
55
+ self.local_vars_configuration = local_vars_configuration
56
+
57
+ self._id = None
58
+ self._name = None
59
+ self._description = None
60
+ self._created_date = None
61
+ self._type = None
62
+ self.discriminator = None
63
+
64
+ if id is not None:
65
+ self.id = id
66
+ if name is not None:
67
+ self.name = name
68
+ if description is not None:
69
+ self.description = description
70
+ if created_date is not None:
71
+ self.created_date = created_date
72
+ if type is not None:
73
+ self.type = type
74
+
75
+ @property
76
+ def id(self):
77
+ """Gets the id of this ProfileOwnedResourceModel. # noqa: E501
78
+
79
+ Unique identifier for a dataset, snapshot, etc. # noqa: E501
80
+
81
+ :return: The id of this ProfileOwnedResourceModel. # noqa: E501
82
+ :rtype: str
83
+ """
84
+ return self._id
85
+
86
+ @id.setter
87
+ def id(self, id):
88
+ """Sets the id of this ProfileOwnedResourceModel.
89
+
90
+ Unique identifier for a dataset, snapshot, etc. # noqa: E501
91
+
92
+ :param id: The id of this ProfileOwnedResourceModel. # noqa: E501
93
+ :type: str
94
+ """
95
+
96
+ self._id = id
97
+
98
+ @property
99
+ def name(self):
100
+ """Gets the name of this ProfileOwnedResourceModel. # noqa: E501
101
+
102
+ Name of the resource # noqa: E501
103
+
104
+ :return: The name of this ProfileOwnedResourceModel. # noqa: E501
105
+ :rtype: str
106
+ """
107
+ return self._name
108
+
109
+ @name.setter
110
+ def name(self, name):
111
+ """Sets the name of this ProfileOwnedResourceModel.
112
+
113
+ Name of the resource # noqa: E501
114
+
115
+ :param name: The name of this ProfileOwnedResourceModel. # noqa: E501
116
+ :type: str
117
+ """
118
+
119
+ self._name = name
120
+
121
+ @property
122
+ def description(self):
123
+ """Gets the description of this ProfileOwnedResourceModel. # noqa: E501
124
+
125
+ Description of the resource # noqa: E501
126
+
127
+ :return: The description of this ProfileOwnedResourceModel. # noqa: E501
128
+ :rtype: str
129
+ """
130
+ return self._description
131
+
132
+ @description.setter
133
+ def description(self, description):
134
+ """Sets the description of this ProfileOwnedResourceModel.
135
+
136
+ Description of the resource # noqa: E501
137
+
138
+ :param description: The description of this ProfileOwnedResourceModel. # noqa: E501
139
+ :type: str
140
+ """
141
+
142
+ self._description = description
143
+
144
+ @property
145
+ def created_date(self):
146
+ """Gets the created_date of this ProfileOwnedResourceModel. # noqa: E501
147
+
148
+ Date the resource was created # noqa: E501
149
+
150
+ :return: The created_date of this ProfileOwnedResourceModel. # noqa: E501
151
+ :rtype: str
152
+ """
153
+ return self._created_date
154
+
155
+ @created_date.setter
156
+ def created_date(self, created_date):
157
+ """Sets the created_date of this ProfileOwnedResourceModel.
158
+
159
+ Date the resource was created # noqa: E501
160
+
161
+ :param created_date: The created_date of this ProfileOwnedResourceModel. # noqa: E501
162
+ :type: str
163
+ """
164
+
165
+ self._created_date = created_date
166
+
167
+ @property
168
+ def type(self):
169
+ """Gets the type of this ProfileOwnedResourceModel. # noqa: E501
170
+
171
+ Type of the resource # noqa: E501
172
+
173
+ :return: The type of this ProfileOwnedResourceModel. # noqa: E501
174
+ :rtype: str
175
+ """
176
+ return self._type
177
+
178
+ @type.setter
179
+ def type(self, type):
180
+ """Sets the type of this ProfileOwnedResourceModel.
181
+
182
+ Type of the resource # noqa: E501
183
+
184
+ :param type: The type of this ProfileOwnedResourceModel. # noqa: E501
185
+ :type: str
186
+ """
187
+ allowed_values = ["DATASET", "SNAPSHOT"] # noqa: E501
188
+ if self.local_vars_configuration.client_side_validation and type not in allowed_values: # noqa: E501
189
+ raise ValueError(
190
+ "Invalid value for `type` ({0}), must be one of {1}" # noqa: E501
191
+ .format(type, allowed_values)
192
+ )
193
+
194
+ self._type = type
195
+
196
+ def to_dict(self):
197
+ """Returns the model properties as a dict"""
198
+ result = {}
199
+
200
+ for attr, _ in six.iteritems(self.openapi_types):
201
+ value = getattr(self, attr)
202
+ if isinstance(value, list):
203
+ result[attr] = list(map(
204
+ lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
205
+ value
206
+ ))
207
+ elif hasattr(value, "to_dict"):
208
+ result[attr] = value.to_dict()
209
+ elif isinstance(value, dict):
210
+ result[attr] = dict(map(
211
+ lambda item: (item[0], item[1].to_dict())
212
+ if hasattr(item[1], "to_dict") else item,
213
+ value.items()
214
+ ))
215
+ else:
216
+ result[attr] = value
217
+
218
+ return result
219
+
220
+ def to_str(self):
221
+ """Returns the string representation of the model"""
222
+ return pprint.pformat(self.to_dict())
223
+
224
+ def __repr__(self):
225
+ """For `print` and `pprint`"""
226
+ return self.to_str()
227
+
228
+ def __eq__(self, other):
229
+ """Returns true if both objects are equal"""
230
+ if not isinstance(other, ProfileOwnedResourceModel):
231
+ return False
232
+
233
+ return self.to_dict() == other.to_dict()
234
+
235
+ def __ne__(self, other):
236
+ """Returns true if both objects are not equal"""
237
+ if not isinstance(other, ProfileOwnedResourceModel):
238
+ return True
239
+
240
+ return self.to_dict() != other.to_dict()
@@ -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
1
  Metadata-Version: 2.1
2
2
  Name: data-repo-client
3
- Version: 2.197.0
3
+ Version: 2.360.0
4
4
  Summary: Data Repository API
5
5
  Home-page:
6
6
  Author: OpenAPI Generator community
@@ -1,26 +1,26 @@
1
- data_repo_client/__init__.py,sha256=Cq5s4bn48UTxTjKP4AHTYtgS6CamdY5-oZLMtVdKpLM,17944
2
- data_repo_client/api_client.py,sha256=cIJ6x_wZcVV04FRjTFCUS8yv7nmwOsRitTiabAfF5yU,27141
3
- data_repo_client/configuration.py,sha256=XGq8eWdmAGKbhZAxD2g7YySO1N4Wg04hAu5iOpYOPIE,13682
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=0ii20A56Iw7acgovjdTA3Q4iG_MdiM5NEl__GSn1WEE,16847
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=pBQ0qR2IMwuZxDE2-88hnfe-m0WROSDRxfwjgDAcHNY,219509
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=1Bh6f7_vIqqXssrXHOZrfZLTjSl0PpKtGUaAnHpvwQg,47273
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=0s_VjYEzSaz6pLiY07UjL0Ted0gl3bvDWooXYn5wDjk,464634
17
- data_repo_client/api/resources_api.py,sha256=wVLPNYsCi7Qi5sjfkgzmBWNBkbBTug3_hBrVff_a0Z4,47274
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=C07q_0ggMAGcmcVUaXNi3GDSgfN7hhZs6SnKQnKv7QQ,188090
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=573HZcDimwLHQR8ZuWEuMRvP8FXvEskmamDZ6PIzgIU,6966
23
- data_repo_client/models/__init__.py,sha256=BEbp1P49lNA6lvysRXYKuxWPTcahbAqNVZoFfikrNJM,16518
22
+ data_repo_client/api/upgrade_api.py,sha256=iqQNsNe6HUPWsa6vOGTYLVsesU5h-zzVF9iqD8mjEy4,7236
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
26
26
  data_repo_client/models/access_info_model.py,sha256=pjo33xq-HY88dNT0romCh6HpOf5_E66hlLzzKUe-jqE,5036
@@ -63,16 +63,16 @@ data_repo_client/models/data_deletion_json_array_model.py,sha256=T0KrJuTrxKnlXrc
63
63
  data_repo_client/models/data_deletion_request.py,sha256=ZLTfGmjVqo1pZCS2e81yeelPICLyhb3MH8lZfhtUWWE,8176
64
64
  data_repo_client/models/data_deletion_table_model.py,sha256=V4e3w_lYx5R50y23OFz0Qw3JP_z_yU8n76DXVivquEQ,6382
65
65
  data_repo_client/models/dataset_data_model.py,sha256=MeSpkKKarPgD53uYhAh08XBFBFTGzL3WZICzIgr5kUk,6024
66
- data_repo_client/models/dataset_model.py,sha256=gn6fwpPeTvIL4zzWfrux3WK3T6jRXAvxgM9qYjaH-ds,21195
66
+ data_repo_client/models/dataset_model.py,sha256=hKWVS9cBoNKo5g9NZ7cAYjoUxTAMt_NicenyuQY6qjU,22285
67
67
  data_repo_client/models/dataset_patch_request_model.py,sha256=QJZ0Zyn7-BgD0dr7UWypQtxxkv047YAu5933lY8NtZM,6311
68
68
  data_repo_client/models/dataset_request_access_include_model.py,sha256=D_ZdqcVDMcX8YfR94MBOLk_1lOkQ1xdlbNIzKIc5rWM,4006
69
- data_repo_client/models/dataset_request_model.py,sha256=vbkBNrBh9-t_ti0EQ0VpIEYlTMyxOcQrTfOlGsYO7zA,21943
69
+ data_repo_client/models/dataset_request_model.py,sha256=KZ-6iiobExHDcDyxfqBoH3k2xvB4NA27ger0v_kIuyQ,23607
70
70
  data_repo_client/models/dataset_request_model_policies.py,sha256=Yl3tf0gLZSA69v6oiHnnNsavOZAdA4xFJLG8nOHuPEg,6054
71
71
  data_repo_client/models/dataset_schema_column_update_model.py,sha256=29ZCpEk0_PLBbRtKxWJ1mm6iJkwI0_ReBNj4DT6pQG0,5161
72
72
  data_repo_client/models/dataset_schema_update_model.py,sha256=2icmS1BMYFsxYER59_sHMXbsGm-A_bohhVguxxPwV7g,5152
73
73
  data_repo_client/models/dataset_schema_update_model_changes.py,sha256=xs0AN-aApqzEBHPUzSVGp0pSPV_P7bGsRLV7LNpcljw,6320
74
74
  data_repo_client/models/dataset_specification_model.py,sha256=p0wTr3i0fN-7R2w8iAKAeKMuxoBGyU4Dcz6HUgjcZLU,6063
75
- data_repo_client/models/dataset_summary_model.py,sha256=VBhnJf9nEpYGBTxfiBfiIbONRlb_aSNxza2JCxFCrUg,17724
75
+ data_repo_client/models/dataset_summary_model.py,sha256=O4RARng8uk2LLSAfNV697inbqpml5_D2kuaDOjtVnaM,18842
76
76
  data_repo_client/models/date_partition_options_model.py,sha256=ITrkbX9PR2obOq8Rss64-lpbuRQ3CIWyxzf-dwe7504,5840
77
77
  data_repo_client/models/delete_response_model.py,sha256=y1FwgHj9XChiH5WJujUXZ7_7Rq3qD7_P6STALfRmtiI,4733
78
78
  data_repo_client/models/directory_detail_model.py,sha256=MIbAVlqDeNZa026sk_xksgXJkLMbaZGTCoOa6qfcvQE,5821
@@ -89,6 +89,7 @@ data_repo_client/models/drs_service_info.py,sha256=dPPug8VxqPBb1Rfr-x06XrbPSsukr
89
89
  data_repo_client/models/duos_firecloud_group_model.py,sha256=ki0uzvNulam9BahKKm62E_02JDmYxP-2mwj8EkJObWY,9826
90
90
  data_repo_client/models/duos_firecloud_groups_sync_response.py,sha256=qRhre3bcwwMGI-1dA2N3neJSR2pugalKcWHuB9ZWtTY,5531
91
91
  data_repo_client/models/enumerate_billing_profile_model.py,sha256=iUX9OGRVXlzAcpn5FrGCjydZdoxK2km6lZp7roDR4ds,5132
92
+ data_repo_client/models/enumerate_billing_profile_resources_model.py,sha256=SMcCYos2-aihkZZXmi6h-r0vHjB8XXRRRvTSw0Emyoo,4451
92
93
  data_repo_client/models/enumerate_dataset_model.py,sha256=Gk-RslpCSGfFcKEnyE8PmJVFbvLha6uuOkQ-wu2shU8,7001
93
94
  data_repo_client/models/enumerate_snapshot_access_request.py,sha256=UcORTaVhPVNMHbNIwqFbmVVWJFQKmvlGSg3_tzm2x6g,4407
94
95
  data_repo_client/models/enumerate_snapshot_model.py,sha256=ZmXC2qTk_UyJYrl1qrcbSwpwEFLYMB69CFTK16nt3Sw,7914
@@ -98,7 +99,7 @@ data_repo_client/models/file_detail_model.py,sha256=_NVSNR0uXdxgkLsTSVrUOdUZYQ2M
98
99
  data_repo_client/models/file_load_model.py,sha256=11IHOF9UaMun8-Z34z_L3j2OT0fM2acpUdCAa137fR4,10687
99
100
  data_repo_client/models/file_model.py,sha256=Dqoj4qRpLHYNCVW3uUc41lOcOAX4XpIAe-TUNypA0QQ,11800
100
101
  data_repo_client/models/file_model_type.py,sha256=x7PXUbjUN73OdI-A6g668ewaWMLYD2nWYd0VgSfwHzc,3717
101
- data_repo_client/models/iam_resource_type_enum.py,sha256=0KulOSKYtS841gZNdg0mwkEa5fdl-oeiz0w4HUbtNf0,3969
102
+ data_repo_client/models/iam_resource_type_enum.py,sha256=dFyYJhRvhlFYYqu52mjf2w0lJkevrouU57yvNDd2le8,4023
102
103
  data_repo_client/models/inaccessible_workspace_policy_model.py,sha256=UYecaXHPnw1h--6Z2bQANH9DhiiQa1xiNxrqbYiPz1s,6284
103
104
  data_repo_client/models/ingest_request_model.py,sha256=HCkLmZXOcaP1LqUm77xfD09YgShd9o3HVUZ9YO_to1Q,28298
104
105
  data_repo_client/models/ingest_response_model.py,sha256=tLII9otmkYcvYAv7xWbRBXsyOMRBSXisohuWiCyzWKU,12863
@@ -109,6 +110,7 @@ data_repo_client/models/journal_entry_model.py,sha256=j8LH_DjZ5oVx0hJ1fh2FXbQ8zV
109
110
  data_repo_client/models/policy_member_request.py,sha256=mofRi1fAg1P8llzwc-BtRuVKo-250mAvkxqASS2pyVc,4378
110
111
  data_repo_client/models/policy_model.py,sha256=izw6Ov6n8bOnOltzQu7BxWueDTfGFp5KnKqQywjivXw,4790
111
112
  data_repo_client/models/policy_response.py,sha256=bMdVxv5CGCBaWHXgLCiHDLBNGjYiuUZWkopGVtlIFF8,6870
113
+ data_repo_client/models/profile_owned_resource_model.py,sha256=Ziyrhoc6js5YenXzOjQqP3VhPHBNpL3Lo7MZHiPX7qo,7890
112
114
  data_repo_client/models/query_column_statistics_request_model.py,sha256=QvR_jxJ6T_WPkJlzzdMJVbLTfKr1JcqgtWciSGYHei8,5451
113
115
  data_repo_client/models/query_data_request_model.py,sha256=CIrPQuLtzJLzpS7evplCBmqhNgGFlDDQiTXipThRlk0,8231
114
116
  data_repo_client/models/relationship_model.py,sha256=bPqdInPORqCkotPTOtoOI-UEvpfYYw3JkdAPopp5m3E,6167
@@ -118,7 +120,7 @@ data_repo_client/models/repository_status_model.py,sha256=vazFN_Djp9FjxKrH7fL1Sj
118
120
  data_repo_client/models/repository_status_model_systems.py,sha256=K9DR6Dd9WWh10H4jxu8UKyhuuB7ybBbAGR4tw4bUWDU,5663
119
121
  data_repo_client/models/resource_locks.py,sha256=nXYIcHUn85g8v_3YCeltPzrDAXLh_IHqzhlxVlxSUWc,5339
120
122
  data_repo_client/models/resource_policy_model.py,sha256=wF2mEjF3rzXqrik1yHNGaVnAs_wTxoQ2apGXx8NVZyA,6875
121
- data_repo_client/models/sam_policy_model.py,sha256=cFzEti1HyKLJ07ms0PSiz16I5Y-4qMN7LoogHui35VM,5696
123
+ data_repo_client/models/sam_policy_model.py,sha256=P3DpAWSV4HMGammM-xIvWK30A_IeCypB2ZtfE8S08pA,6301
122
124
  data_repo_client/models/snapshot_access_request.py,sha256=1HpZ0BxH6_xTt9DGKn-p_SYZ7fKKodgjY8FxqB2mEHY,7229
123
125
  data_repo_client/models/snapshot_access_request_details_response.py,sha256=K487rRnYwRvYQIOzFlWQX6qWwuy6qzklWLlBLH2rYCQ,4556
124
126
  data_repo_client/models/snapshot_access_request_members_response.py,sha256=iXwoS4r678DjPDZ1kOpkxRWD2DcbgtNPdM7a9gGRkhg,4417
@@ -195,7 +197,7 @@ data_repo_client/models/upgrade_model.py,sha256=stze92OGQ-gxke0-bpj9QY9me2ICSzpq
195
197
  data_repo_client/models/upgrade_response_model.py,sha256=yXIdF7WvxABO6u5iCAC4_5exfcbOw9TkXjRMsESuTuI,6106
196
198
  data_repo_client/models/user_status_info.py,sha256=jHBZ8rhO6ZrE_rmRAQMTHrwNvhfaMy8kzYjFNSMFeQ0,6457
197
199
  data_repo_client/models/workspace_policy_model.py,sha256=pgLpcUQUcN38IfdGBesOi9cfcF94no2xg6pgzcbTCLE,7966
198
- data_repo_client-2.197.0.dist-info/METADATA,sha256=yW3KPxUsJTFi5FdSY6fXZtqbpf2_6DrgN2UESu_2fls,1420
199
- data_repo_client-2.197.0.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
200
- data_repo_client-2.197.0.dist-info/top_level.txt,sha256=rxRfDoBxOaUhmfMLoiE926w1prfERSr2Qg70w69QsgQ,17
201
- data_repo_client-2.197.0.dist-info/RECORD,,
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,,