gooddata-api-client 1.68.1.dev1__py3-none-any.whl → 1.68.1.dev3__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.
- gooddata_api_client/__init__.py +1 -1
- gooddata_api_client/api_client.py +1 -1
- gooddata_api_client/configuration.py +1 -1
- gooddata_api_client/model/alert_afm.py +6 -0
- gooddata_api_client/model/declarative_user.py +4 -0
- gooddata_api_client/model/json_api_ip_allowlist_policy_in_attributes.py +2 -2
- gooddata_api_client/model/json_api_user_in_attributes.py +2 -2
- gooddata_api_client/model/ranking_filter_ranking_filter.py +4 -0
- {gooddata_api_client-1.68.1.dev1.dist-info → gooddata_api_client-1.68.1.dev3.dist-info}/METADATA +2 -2
- {gooddata_api_client-1.68.1.dev1.dist-info → gooddata_api_client-1.68.1.dev3.dist-info}/RECORD +13 -13
- {gooddata_api_client-1.68.1.dev1.dist-info → gooddata_api_client-1.68.1.dev3.dist-info}/WHEEL +0 -0
- {gooddata_api_client-1.68.1.dev1.dist-info → gooddata_api_client-1.68.1.dev3.dist-info}/licenses/LICENSE.txt +0 -0
- {gooddata_api_client-1.68.1.dev1.dist-info → gooddata_api_client-1.68.1.dev3.dist-info}/top_level.txt +0 -0
gooddata_api_client/__init__.py
CHANGED
|
@@ -77,7 +77,7 @@ class ApiClient(object):
|
|
|
77
77
|
self.default_headers[header_name] = header_value
|
|
78
78
|
self.cookie = cookie
|
|
79
79
|
# Set default User-Agent.
|
|
80
|
-
self.user_agent = 'OpenAPI-Generator/1.68.1.
|
|
80
|
+
self.user_agent = 'OpenAPI-Generator/1.68.1.dev3/python'
|
|
81
81
|
|
|
82
82
|
def __enter__(self):
|
|
83
83
|
return self
|
|
@@ -381,7 +381,7 @@ class Configuration(object):
|
|
|
381
381
|
"OS: {env}\n"\
|
|
382
382
|
"Python Version: {pyversion}\n"\
|
|
383
383
|
"Version of the API: v0\n"\
|
|
384
|
-
"SDK Package Version: 1.68.1.
|
|
384
|
+
"SDK Package Version: 1.68.1.dev3".\
|
|
385
385
|
format(env=sys.platform, pyversion=sys.version)
|
|
386
386
|
|
|
387
387
|
def get_host_settings(self):
|
|
@@ -34,9 +34,11 @@ def lazy_import():
|
|
|
34
34
|
from gooddata_api_client.model.attribute_item import AttributeItem
|
|
35
35
|
from gooddata_api_client.model.filter_definition import FilterDefinition
|
|
36
36
|
from gooddata_api_client.model.measure_item import MeasureItem
|
|
37
|
+
from gooddata_api_client.model.parameter_item import ParameterItem
|
|
37
38
|
globals()['AttributeItem'] = AttributeItem
|
|
38
39
|
globals()['FilterDefinition'] = FilterDefinition
|
|
39
40
|
globals()['MeasureItem'] = MeasureItem
|
|
41
|
+
globals()['ParameterItem'] = ParameterItem
|
|
40
42
|
|
|
41
43
|
|
|
42
44
|
class AlertAfm(ModelNormal):
|
|
@@ -100,6 +102,7 @@ class AlertAfm(ModelNormal):
|
|
|
100
102
|
'measures': ([MeasureItem],), # noqa: E501
|
|
101
103
|
'attributes': ([AttributeItem],), # noqa: E501
|
|
102
104
|
'aux_measures': ([MeasureItem],), # noqa: E501
|
|
105
|
+
'parameters': ([ParameterItem],), # noqa: E501
|
|
103
106
|
}
|
|
104
107
|
|
|
105
108
|
@cached_property
|
|
@@ -112,6 +115,7 @@ class AlertAfm(ModelNormal):
|
|
|
112
115
|
'measures': 'measures', # noqa: E501
|
|
113
116
|
'attributes': 'attributes', # noqa: E501
|
|
114
117
|
'aux_measures': 'auxMeasures', # noqa: E501
|
|
118
|
+
'parameters': 'parameters', # noqa: E501
|
|
115
119
|
}
|
|
116
120
|
|
|
117
121
|
read_only_vars = {
|
|
@@ -161,6 +165,7 @@ class AlertAfm(ModelNormal):
|
|
|
161
165
|
_visited_composed_classes = (Animal,)
|
|
162
166
|
attributes ([AttributeItem]): Attributes to be used in the computation.. [optional] # noqa: E501
|
|
163
167
|
aux_measures ([MeasureItem]): Metrics to be referenced from other AFM objects (e.g. filters) but not included in the result.. [optional] # noqa: E501
|
|
168
|
+
parameters ([ParameterItem]): Parameters to be used in the computation.. [optional] # noqa: E501
|
|
164
169
|
"""
|
|
165
170
|
|
|
166
171
|
_check_type = kwargs.pop('_check_type', True)
|
|
@@ -254,6 +259,7 @@ class AlertAfm(ModelNormal):
|
|
|
254
259
|
_visited_composed_classes = (Animal,)
|
|
255
260
|
attributes ([AttributeItem]): Attributes to be used in the computation.. [optional] # noqa: E501
|
|
256
261
|
aux_measures ([MeasureItem]): Metrics to be referenced from other AFM objects (e.g. filters) but not included in the result.. [optional] # noqa: E501
|
|
262
|
+
parameters ([ParameterItem]): Parameters to be used in the computation.. [optional] # noqa: E501
|
|
257
263
|
"""
|
|
258
264
|
|
|
259
265
|
_check_type = kwargs.pop('_check_type', True)
|
|
@@ -116,6 +116,7 @@ class DeclarativeUser(ModelNormal):
|
|
|
116
116
|
'lastname': (str,), # noqa: E501
|
|
117
117
|
'permissions': ([DeclarativeUserPermission],), # noqa: E501
|
|
118
118
|
'settings': ([DeclarativeSetting],), # noqa: E501
|
|
119
|
+
'system_account': (bool,), # noqa: E501
|
|
119
120
|
'user_groups': ([DeclarativeUserGroupIdentifier],), # noqa: E501
|
|
120
121
|
}
|
|
121
122
|
|
|
@@ -132,6 +133,7 @@ class DeclarativeUser(ModelNormal):
|
|
|
132
133
|
'lastname': 'lastname', # noqa: E501
|
|
133
134
|
'permissions': 'permissions', # noqa: E501
|
|
134
135
|
'settings': 'settings', # noqa: E501
|
|
136
|
+
'system_account': 'systemAccount', # noqa: E501
|
|
135
137
|
'user_groups': 'userGroups', # noqa: E501
|
|
136
138
|
}
|
|
137
139
|
|
|
@@ -185,6 +187,7 @@ class DeclarativeUser(ModelNormal):
|
|
|
185
187
|
lastname (str): User last name. [optional] # noqa: E501
|
|
186
188
|
permissions ([DeclarativeUserPermission]): [optional] # noqa: E501
|
|
187
189
|
settings ([DeclarativeSetting]): A list of user settings.. [optional] # noqa: E501
|
|
190
|
+
system_account (bool): Is user system account. [optional] # noqa: E501
|
|
188
191
|
user_groups ([DeclarativeUserGroupIdentifier]): [optional] # noqa: E501
|
|
189
192
|
"""
|
|
190
193
|
|
|
@@ -281,6 +284,7 @@ class DeclarativeUser(ModelNormal):
|
|
|
281
284
|
lastname (str): User last name. [optional] # noqa: E501
|
|
282
285
|
permissions ([DeclarativeUserPermission]): [optional] # noqa: E501
|
|
283
286
|
settings ([DeclarativeSetting]): A list of user settings.. [optional] # noqa: E501
|
|
287
|
+
system_account (bool): Is user system account. [optional] # noqa: E501
|
|
284
288
|
user_groups ([DeclarativeUserGroupIdentifier]): [optional] # noqa: E501
|
|
285
289
|
"""
|
|
286
290
|
|
|
@@ -105,7 +105,7 @@ class JsonApiIpAllowlistPolicyInAttributes(ModelNormal):
|
|
|
105
105
|
"""JsonApiIpAllowlistPolicyInAttributes - a model defined in OpenAPI
|
|
106
106
|
|
|
107
107
|
Args:
|
|
108
|
-
allowed_sources ([str], none_type): Allowed source IPv4 addresses or CIDR ranges.
|
|
108
|
+
allowed_sources ([str], none_type): Allowed source IPv4 or IPv6 addresses or CIDR ranges. The /0 and ::/0 prefixes are not allowed.
|
|
109
109
|
|
|
110
110
|
Keyword Args:
|
|
111
111
|
_check_type (bool): if True, values for parameters in openapi_types
|
|
@@ -194,7 +194,7 @@ class JsonApiIpAllowlistPolicyInAttributes(ModelNormal):
|
|
|
194
194
|
"""JsonApiIpAllowlistPolicyInAttributes - a model defined in OpenAPI
|
|
195
195
|
|
|
196
196
|
Args:
|
|
197
|
-
allowed_sources ([str], none_type): Allowed source IPv4 addresses or CIDR ranges.
|
|
197
|
+
allowed_sources ([str], none_type): Allowed source IPv4 or IPv6 addresses or CIDR ranges. The /0 and ::/0 prefixes are not allowed.
|
|
198
198
|
|
|
199
199
|
Keyword Args:
|
|
200
200
|
_check_type (bool): if True, values for parameters in openapi_types
|
|
@@ -159,7 +159,7 @@ class JsonApiUserInAttributes(ModelNormal):
|
|
|
159
159
|
email (str): [optional] # noqa: E501
|
|
160
160
|
firstname (str): [optional] # noqa: E501
|
|
161
161
|
lastname (str): [optional] # noqa: E501
|
|
162
|
-
system_account (bool): [optional] # noqa: E501
|
|
162
|
+
system_account (bool): Is user system account. [optional] # noqa: E501
|
|
163
163
|
"""
|
|
164
164
|
|
|
165
165
|
_check_type = kwargs.pop('_check_type', True)
|
|
@@ -249,7 +249,7 @@ class JsonApiUserInAttributes(ModelNormal):
|
|
|
249
249
|
email (str): [optional] # noqa: E501
|
|
250
250
|
firstname (str): [optional] # noqa: E501
|
|
251
251
|
lastname (str): [optional] # noqa: E501
|
|
252
|
-
system_account (bool): [optional] # noqa: E501
|
|
252
|
+
system_account (bool): Is user system account. [optional] # noqa: E501
|
|
253
253
|
"""
|
|
254
254
|
|
|
255
255
|
_check_type = kwargs.pop('_check_type', True)
|
|
@@ -98,6 +98,7 @@ class RankingFilterRankingFilter(ModelNormal):
|
|
|
98
98
|
'apply_on_result': (bool,), # noqa: E501
|
|
99
99
|
'dimensionality': ([AfmIdentifier],), # noqa: E501
|
|
100
100
|
'local_identifier': (str,), # noqa: E501
|
|
101
|
+
'strict_limit_of_rows': (bool,), # noqa: E501
|
|
101
102
|
}
|
|
102
103
|
|
|
103
104
|
@cached_property
|
|
@@ -112,6 +113,7 @@ class RankingFilterRankingFilter(ModelNormal):
|
|
|
112
113
|
'apply_on_result': 'applyOnResult', # noqa: E501
|
|
113
114
|
'dimensionality': 'dimensionality', # noqa: E501
|
|
114
115
|
'local_identifier': 'localIdentifier', # noqa: E501
|
|
116
|
+
'strict_limit_of_rows': 'strictLimitOfRows', # noqa: E501
|
|
115
117
|
}
|
|
116
118
|
|
|
117
119
|
read_only_vars = {
|
|
@@ -163,6 +165,7 @@ class RankingFilterRankingFilter(ModelNormal):
|
|
|
163
165
|
apply_on_result (bool): [optional] # noqa: E501
|
|
164
166
|
dimensionality ([AfmIdentifier]): References to the attributes to be used when filtering.. [optional] # noqa: E501
|
|
165
167
|
local_identifier (str): [optional] # noqa: E501
|
|
168
|
+
strict_limit_of_rows (bool): When true, filter returns requested number of rows at most. Default is false.. [optional] # noqa: E501
|
|
166
169
|
"""
|
|
167
170
|
|
|
168
171
|
_check_type = kwargs.pop('_check_type', True)
|
|
@@ -259,6 +262,7 @@ class RankingFilterRankingFilter(ModelNormal):
|
|
|
259
262
|
apply_on_result (bool): [optional] # noqa: E501
|
|
260
263
|
dimensionality ([AfmIdentifier]): References to the attributes to be used when filtering.. [optional] # noqa: E501
|
|
261
264
|
local_identifier (str): [optional] # noqa: E501
|
|
265
|
+
strict_limit_of_rows (bool): When true, filter returns requested number of rows at most. Default is false.. [optional] # noqa: E501
|
|
262
266
|
"""
|
|
263
267
|
|
|
264
268
|
_check_type = kwargs.pop('_check_type', True)
|
{gooddata_api_client-1.68.1.dev1.dist-info → gooddata_api_client-1.68.1.dev3.dist-info}/METADATA
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: gooddata-api-client
|
|
3
|
-
Version: 1.68.1.
|
|
3
|
+
Version: 1.68.1.dev3
|
|
4
4
|
Summary: OpenAPI definition
|
|
5
5
|
Home-page:
|
|
6
6
|
Author: GoodData (generated by OpenAPI Generator)
|
|
@@ -29,7 +29,7 @@ No description provided (generated by Openapi Generator https://github.com/opena
|
|
|
29
29
|
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
|
|
30
30
|
|
|
31
31
|
- API version: v0
|
|
32
|
-
- Package version: 1.68.1.
|
|
32
|
+
- Package version: 1.68.1.dev3
|
|
33
33
|
- Build package: org.openapitools.codegen.languages.PythonPriorClientCodegen
|
|
34
34
|
|
|
35
35
|
## Requirements.
|
{gooddata_api_client-1.68.1.dev1.dist-info → gooddata_api_client-1.68.1.dev3.dist-info}/RECORD
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
gooddata_api_client/__init__.py,sha256=
|
|
2
|
-
gooddata_api_client/api_client.py,sha256=
|
|
3
|
-
gooddata_api_client/configuration.py,sha256=
|
|
1
|
+
gooddata_api_client/__init__.py,sha256=Geosy2_W7RwpRi-xCNaSuF_H6h1Ba7a-ASWy6kC-lXo,854
|
|
2
|
+
gooddata_api_client/api_client.py,sha256=RvvvCoYFkaAiq9Lv8I78h6HvTcagtWGKqhwgPYlL-LM,39367
|
|
3
|
+
gooddata_api_client/configuration.py,sha256=DGmVu6_ihh_H23JPESL_zQ68QVshKWr0SVM18rC_AuQ,16423
|
|
4
4
|
gooddata_api_client/exceptions.py,sha256=J6doCDt25NmTb6YSHlJ4BsFkQHZWv2N1eX72ErUvDho,5140
|
|
5
5
|
gooddata_api_client/model_utils.py,sha256=IKRK6b9aJgEzwhOXr9f0Ex-2o-XkAjt5e_dteIY8lPI,83597
|
|
6
6
|
gooddata_api_client/rest.py,sha256=WGOL6Ak_bbh8UloQDwCN0wa7vTruFTEqVDzRI2mGvaE,14346
|
|
@@ -174,7 +174,7 @@ gooddata_api_client/model/afm_valid_objects_query.py,sha256=VY7pgJu81JRfj9Xi5RTb
|
|
|
174
174
|
gooddata_api_client/model/afm_valid_objects_response.py,sha256=AAaFlYG8re7OJ5bKt42eqbcfnDirSsMQg2givcFcH4g,11809
|
|
175
175
|
gooddata_api_client/model/aggregate_key_config.py,sha256=lOFcJSSkKMiRIqJRP_47cxTz8QDOF73S562wEdLvR3k,11613
|
|
176
176
|
gooddata_api_client/model/ai_usage_metadata_item.py,sha256=ZrHYPGiidk0_DqkDHhPiE1q6IMnq_unWJoiFJOCbEJA,12351
|
|
177
|
-
gooddata_api_client/model/alert_afm.py,sha256=
|
|
177
|
+
gooddata_api_client/model/alert_afm.py,sha256=z4PT3-f2ki3h1726WEFDOMKjdcNTQcr6LpODh35mF6c,14413
|
|
178
178
|
gooddata_api_client/model/alert_condition.py,sha256=k_A2ziXRC0B3EAylnec-QcjRr1FUXxA3XrPx2H9GEvg,15274
|
|
179
179
|
gooddata_api_client/model/alert_condition_operand.py,sha256=ZerTfm11Ek7GLyO-369gLay7aWjz86yUJw2im8qXHXg,15003
|
|
180
180
|
gooddata_api_client/model/alert_description.py,sha256=fj4x9zXHc3f2d00UXLbw1r7z80AbcVuZ_IAOu16RIM0,15225
|
|
@@ -414,7 +414,7 @@ gooddata_api_client/model/declarative_source_reference.py,sha256=v-H1R8Mh0QGI_Nz
|
|
|
414
414
|
gooddata_api_client/model/declarative_table.py,sha256=DTm7xRM8BY36xm3bwNdjAsf1Bxnuwm4JYZrURqGR-zw,13108
|
|
415
415
|
gooddata_api_client/model/declarative_tables.py,sha256=DHLyjIcF_BXudBTMPWOwnnUnHFBEDMffQ8SixOvsmLE,11870
|
|
416
416
|
gooddata_api_client/model/declarative_theme.py,sha256=dmuYdeG-Muco57NLJS5Fd2T6g8BRTWtOKfgige3SkW4,12161
|
|
417
|
-
gooddata_api_client/model/declarative_user.py,sha256=
|
|
417
|
+
gooddata_api_client/model/declarative_user.py,sha256=FhFQkcASgGCrrJ0t-NTR4EJyIKU_EHYDT39NLT6zD-U,14653
|
|
418
418
|
gooddata_api_client/model/declarative_user_data_filter.py,sha256=opIJy1zwNbj8dcctR7BEKNyxglMbWARONthLCdHIM08,14078
|
|
419
419
|
gooddata_api_client/model/declarative_user_data_filters.py,sha256=UNhnPkl8qIOgP9ee-2kv4s23vZ8c06qsqbj7NwQw7Tk,12005
|
|
420
420
|
gooddata_api_client/model/declarative_user_group.py,sha256=JMx0i3KGsFyeYKwRizs2E3b94Oo1-A6NtVBc8rvFFJk,13006
|
|
@@ -877,7 +877,7 @@ gooddata_api_client/model/json_api_identity_provider_patch.py,sha256=4AnoHP00BqE
|
|
|
877
877
|
gooddata_api_client/model/json_api_identity_provider_patch_document.py,sha256=Hq3ZCh5Pgx5esfgNTml7P_k272g7VYorN8HrNYvmNhU,11910
|
|
878
878
|
gooddata_api_client/model/json_api_identity_provider_to_one_linkage.py,sha256=LoBMV7rPjUXDGq_IiFkTlv7WdpBfpAK570_VdfYFvHQ,14199
|
|
879
879
|
gooddata_api_client/model/json_api_ip_allowlist_policy_in.py,sha256=1zccZ2YQ6FGgV8H2rzOdUK0LZ7qXQrqiZHzV8IB0Uzw,13501
|
|
880
|
-
gooddata_api_client/model/json_api_ip_allowlist_policy_in_attributes.py,sha256=
|
|
880
|
+
gooddata_api_client/model/json_api_ip_allowlist_policy_in_attributes.py,sha256=WAuY_OkyGM3ZPHeyr4UjivRqCnABz_TNXWz-o1R3dTc,11941
|
|
881
881
|
gooddata_api_client/model/json_api_ip_allowlist_policy_in_document.py,sha256=halfZAE9DZvf0sPUXqDdeQTX1Q0bCzJV5fGg6vnfUJw,11891
|
|
882
882
|
gooddata_api_client/model/json_api_ip_allowlist_policy_in_relationships.py,sha256=vJg2v3fO-udOGFl2UE_pR7usBN2Q8mT8MoEqyss5Hig,12514
|
|
883
883
|
gooddata_api_client/model/json_api_ip_allowlist_policy_out.py,sha256=Id8_BMns5ovbuKnC7z-k9scCn3-Dv4nhADKKl1AFjWA,13504
|
|
@@ -1086,7 +1086,7 @@ gooddata_api_client/model/json_api_user_identifier_out_list.py,sha256=t8KJeR_mBl
|
|
|
1086
1086
|
gooddata_api_client/model/json_api_user_identifier_out_with_links.py,sha256=PGfV2NUzbDScTCDYKjBGhHI2hH6Un4EX1twhn050yf0,15414
|
|
1087
1087
|
gooddata_api_client/model/json_api_user_identifier_to_one_linkage.py,sha256=Gucshty6myqziFbEEgoBIInbayqia4aTeALNLzbMp8k,14175
|
|
1088
1088
|
gooddata_api_client/model/json_api_user_in.py,sha256=-9aLHLzJUa3mLX4WvrGqs9DXq3MxXd9Ok85KROMh-Lg,13131
|
|
1089
|
-
gooddata_api_client/model/json_api_user_in_attributes.py,sha256
|
|
1089
|
+
gooddata_api_client/model/json_api_user_in_attributes.py,sha256=-zMSoPVU5ocEVxqEdtpdXJ7KDpUei-4sYuDMLHoD0NQ,12710
|
|
1090
1090
|
gooddata_api_client/model/json_api_user_in_document.py,sha256=YPT-6oobw38YyxDYLHYzTfOtQQcX6VBn7xsZUVvH5D8,11759
|
|
1091
1091
|
gooddata_api_client/model/json_api_user_linkage.py,sha256=ZfXmsOB0Q2_8iAAhhF8oRE8IqIStS31GIIIiLXJwJ0g,11956
|
|
1092
1092
|
gooddata_api_client/model/json_api_user_out.py,sha256=93LBUJde20zNf_R2StRrtP2_J7iEoWXbNz251kYaiTg,13134
|
|
@@ -1308,7 +1308,7 @@ gooddata_api_client/model/range_measure_value_filter.py,sha256=Mv1o3UqiJrrKWfRfL
|
|
|
1308
1308
|
gooddata_api_client/model/range_measure_value_filter_range_measure_value_filter.py,sha256=QhzajrojFHWnOnTCuroO3fJ1C4IYMU1eJr0DtES6Us8,13871
|
|
1309
1309
|
gooddata_api_client/model/range_wrapper.py,sha256=W3MdbW4-IStgZaW-OPL5pIq4T9_enQivMBCS3OyoCBg,11684
|
|
1310
1310
|
gooddata_api_client/model/ranking_filter.py,sha256=gdgE2PIIbVcHQrgJvZm3suswJKUmVG6ezbGs6JSOBmw,11935
|
|
1311
|
-
gooddata_api_client/model/ranking_filter_ranking_filter.py,sha256=
|
|
1311
|
+
gooddata_api_client/model/ranking_filter_ranking_filter.py,sha256=Rvy0V3mx-dMSgrnmDE2K4tIss-djf5huaez3hO82c2s,13886
|
|
1312
1312
|
gooddata_api_client/model/raw_custom_label.py,sha256=PKUzjKAkovhn8uMZAEUi1ILmcWZ_ui1cbt8Gxhqrk7U,11567
|
|
1313
1313
|
gooddata_api_client/model/raw_custom_metric.py,sha256=vyHHfvkjlez3oEXVHPjA69lE4c5FQ1wAgjO7ibCPmiE,11584
|
|
1314
1314
|
gooddata_api_client/model/raw_custom_override.py,sha256=mvTVU0Yt35N0g6iyCC3VcMbcoHJxTZ6sX7aIRDYgAzs,12419
|
|
@@ -1473,8 +1473,8 @@ gooddata_api_client/model/workspace_user_groups.py,sha256=L0e0-inFdCFY041uWt-OiR
|
|
|
1473
1473
|
gooddata_api_client/model/workspace_users.py,sha256=Y8uJJ2RrK2-vvRJY4b09TxiPEcqix-AZv_Wggkgf_zk,12129
|
|
1474
1474
|
gooddata_api_client/model/xliff.py,sha256=s2jHGsGhsr6VBI1DUeZeR9AjIDMS8_WEOVC5gDk4QE0,12646
|
|
1475
1475
|
gooddata_api_client/models/__init__.py,sha256=Uk22gDRsR2ZwgJQa0W2CUHbIbZJze5P4LOZXxXfC57s,128874
|
|
1476
|
-
gooddata_api_client-1.68.1.
|
|
1477
|
-
gooddata_api_client-1.68.1.
|
|
1478
|
-
gooddata_api_client-1.68.1.
|
|
1479
|
-
gooddata_api_client-1.68.1.
|
|
1480
|
-
gooddata_api_client-1.68.1.
|
|
1476
|
+
gooddata_api_client-1.68.1.dev3.dist-info/licenses/LICENSE.txt,sha256=TXcX7q0JaEM02DrmcvaMqNvU912yBiaQGzCA5rZlp0U,20163
|
|
1477
|
+
gooddata_api_client-1.68.1.dev3.dist-info/METADATA,sha256=5g0qAt8qGyjHLjyRN5MsUQf2rJ8gf_oeXmJwfcXW4ng,351006
|
|
1478
|
+
gooddata_api_client-1.68.1.dev3.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
|
|
1479
|
+
gooddata_api_client-1.68.1.dev3.dist-info/top_level.txt,sha256=GaZfT4qEz5cKY0eA2Iub4vcr6soTMJolR7uIRDfgpcU,20
|
|
1480
|
+
gooddata_api_client-1.68.1.dev3.dist-info/RECORD,,
|
{gooddata_api_client-1.68.1.dev1.dist-info → gooddata_api_client-1.68.1.dev3.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|