gooddata-api-client 1.65.1.dev2__py3-none-any.whl → 1.65.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/declarative_column.py +2 -5
- gooddata_api_client/model/declarative_ip_allowlist_policy.py +297 -0
- gooddata_api_client/model/declarative_organization.py +6 -0
- gooddata_api_client/models/__init__.py +1 -0
- {gooddata_api_client-1.65.1.dev2.dist-info → gooddata_api_client-1.65.1.dev3.dist-info}/METADATA +3 -2
- {gooddata_api_client-1.65.1.dev2.dist-info → gooddata_api_client-1.65.1.dev3.dist-info}/RECORD +12 -11
- {gooddata_api_client-1.65.1.dev2.dist-info → gooddata_api_client-1.65.1.dev3.dist-info}/WHEEL +0 -0
- {gooddata_api_client-1.65.1.dev2.dist-info → gooddata_api_client-1.65.1.dev3.dist-info}/licenses/LICENSE.txt +0 -0
- {gooddata_api_client-1.65.1.dev2.dist-info → gooddata_api_client-1.65.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.65.1.
|
|
80
|
+
self.user_agent = 'OpenAPI-Generator/1.65.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.65.1.
|
|
384
|
+
"SDK Package Version: 1.65.1.dev3".\
|
|
385
385
|
format(env=sys.platform, pyversion=sys.version)
|
|
386
386
|
|
|
387
387
|
def get_host_settings(self):
|
|
@@ -71,9 +71,6 @@ class DeclarativeColumn(ModelNormal):
|
|
|
71
71
|
validations = {
|
|
72
72
|
('name',): {
|
|
73
73
|
'max_length': 255,
|
|
74
|
-
'regex': {
|
|
75
|
-
'pattern': r'^[^\x00]*$', # noqa: E501
|
|
76
|
-
},
|
|
77
74
|
},
|
|
78
75
|
('description',): {
|
|
79
76
|
'max_length': 10000,
|
|
@@ -143,7 +140,7 @@ class DeclarativeColumn(ModelNormal):
|
|
|
143
140
|
|
|
144
141
|
Args:
|
|
145
142
|
data_type (str): Column type
|
|
146
|
-
name (str): Column name
|
|
143
|
+
name (str): Column name. Must not contain NUL (0x00) characters.
|
|
147
144
|
|
|
148
145
|
Keyword Args:
|
|
149
146
|
_check_type (bool): if True, values for parameters in openapi_types
|
|
@@ -239,7 +236,7 @@ class DeclarativeColumn(ModelNormal):
|
|
|
239
236
|
|
|
240
237
|
Args:
|
|
241
238
|
data_type (str): Column type
|
|
242
|
-
name (str): Column name
|
|
239
|
+
name (str): Column name. Must not contain NUL (0x00) characters.
|
|
243
240
|
|
|
244
241
|
Keyword Args:
|
|
245
242
|
_check_type (bool): if True, values for parameters in openapi_types
|
|
@@ -0,0 +1,297 @@
|
|
|
1
|
+
"""
|
|
2
|
+
OpenAPI definition
|
|
3
|
+
|
|
4
|
+
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501
|
|
5
|
+
|
|
6
|
+
The version of the OpenAPI document: v0
|
|
7
|
+
Contact: support@gooddata.com
|
|
8
|
+
Generated by: https://openapi-generator.tech
|
|
9
|
+
"""
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
import re # noqa: F401
|
|
13
|
+
import sys # noqa: F401
|
|
14
|
+
|
|
15
|
+
from gooddata_api_client.model_utils import ( # noqa: F401
|
|
16
|
+
ApiTypeError,
|
|
17
|
+
ModelComposed,
|
|
18
|
+
ModelNormal,
|
|
19
|
+
ModelSimple,
|
|
20
|
+
cached_property,
|
|
21
|
+
change_keys_js_to_python,
|
|
22
|
+
convert_js_args_to_python_args,
|
|
23
|
+
date,
|
|
24
|
+
datetime,
|
|
25
|
+
file_type,
|
|
26
|
+
none_type,
|
|
27
|
+
validate_get_composed_info,
|
|
28
|
+
OpenApiModel
|
|
29
|
+
)
|
|
30
|
+
from gooddata_api_client.exceptions import ApiAttributeError
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
def lazy_import():
|
|
34
|
+
from gooddata_api_client.model.declarative_user_group_identifier import DeclarativeUserGroupIdentifier
|
|
35
|
+
from gooddata_api_client.model.declarative_user_identifier import DeclarativeUserIdentifier
|
|
36
|
+
globals()['DeclarativeUserGroupIdentifier'] = DeclarativeUserGroupIdentifier
|
|
37
|
+
globals()['DeclarativeUserIdentifier'] = DeclarativeUserIdentifier
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
class DeclarativeIpAllowlistPolicy(ModelNormal):
|
|
41
|
+
"""NOTE: This class is auto generated by OpenAPI Generator.
|
|
42
|
+
Ref: https://openapi-generator.tech
|
|
43
|
+
|
|
44
|
+
Do not edit the class manually.
|
|
45
|
+
|
|
46
|
+
Attributes:
|
|
47
|
+
allowed_values (dict): The key is the tuple path to the attribute
|
|
48
|
+
and the for var_name this is (var_name,). The value is a dict
|
|
49
|
+
with a capitalized key describing the allowed value and an allowed
|
|
50
|
+
value. These dicts store the allowed enum values.
|
|
51
|
+
attribute_map (dict): The key is attribute name
|
|
52
|
+
and the value is json key in definition.
|
|
53
|
+
discriminator_value_class_map (dict): A dict to go from the discriminator
|
|
54
|
+
variable value to the discriminator class name.
|
|
55
|
+
validations (dict): The key is the tuple path to the attribute
|
|
56
|
+
and the for var_name this is (var_name,). The value is a dict
|
|
57
|
+
that stores validations for max_length, min_length, max_items,
|
|
58
|
+
min_items, exclusive_maximum, inclusive_maximum, exclusive_minimum,
|
|
59
|
+
inclusive_minimum, and regex.
|
|
60
|
+
additional_properties_type (tuple): A tuple of classes accepted
|
|
61
|
+
as additional properties values.
|
|
62
|
+
"""
|
|
63
|
+
|
|
64
|
+
allowed_values = {
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
validations = {
|
|
68
|
+
('id',): {
|
|
69
|
+
'regex': {
|
|
70
|
+
'pattern': r'^(?!\.)[.A-Za-z0-9_-]{1,255}$', # noqa: E501
|
|
71
|
+
},
|
|
72
|
+
},
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
@cached_property
|
|
76
|
+
def additional_properties_type():
|
|
77
|
+
"""
|
|
78
|
+
This must be a method because a model may have properties that are
|
|
79
|
+
of type self, this must run after the class is loaded
|
|
80
|
+
"""
|
|
81
|
+
lazy_import()
|
|
82
|
+
return (bool, date, datetime, dict, float, int, list, str, none_type,) # noqa: E501
|
|
83
|
+
|
|
84
|
+
_nullable = False
|
|
85
|
+
|
|
86
|
+
@cached_property
|
|
87
|
+
def openapi_types():
|
|
88
|
+
"""
|
|
89
|
+
This must be a method because a model may have properties that are
|
|
90
|
+
of type self, this must run after the class is loaded
|
|
91
|
+
|
|
92
|
+
Returns
|
|
93
|
+
openapi_types (dict): The key is attribute name
|
|
94
|
+
and the value is attribute type.
|
|
95
|
+
"""
|
|
96
|
+
lazy_import()
|
|
97
|
+
return {
|
|
98
|
+
'allowed_sources': ([str],), # noqa: E501
|
|
99
|
+
'id': (str,), # noqa: E501
|
|
100
|
+
'user_groups': ([DeclarativeUserGroupIdentifier],), # noqa: E501
|
|
101
|
+
'users': ([DeclarativeUserIdentifier],), # noqa: E501
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
@cached_property
|
|
105
|
+
def discriminator():
|
|
106
|
+
return None
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
attribute_map = {
|
|
110
|
+
'allowed_sources': 'allowedSources', # noqa: E501
|
|
111
|
+
'id': 'id', # noqa: E501
|
|
112
|
+
'user_groups': 'userGroups', # noqa: E501
|
|
113
|
+
'users': 'users', # noqa: E501
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
read_only_vars = {
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
_composed_schemas = {}
|
|
120
|
+
|
|
121
|
+
@classmethod
|
|
122
|
+
@convert_js_args_to_python_args
|
|
123
|
+
def _from_openapi_data(cls, allowed_sources, id, *args, **kwargs): # noqa: E501
|
|
124
|
+
"""DeclarativeIpAllowlistPolicy - a model defined in OpenAPI
|
|
125
|
+
|
|
126
|
+
Args:
|
|
127
|
+
allowed_sources ([str]): Allowed source IP addresses or CIDR ranges.
|
|
128
|
+
id (str): Identifier of an IP allowlist policy.
|
|
129
|
+
|
|
130
|
+
Keyword Args:
|
|
131
|
+
_check_type (bool): if True, values for parameters in openapi_types
|
|
132
|
+
will be type checked and a TypeError will be
|
|
133
|
+
raised if the wrong type is input.
|
|
134
|
+
Defaults to True
|
|
135
|
+
_path_to_item (tuple/list): This is a list of keys or values to
|
|
136
|
+
drill down to the model in received_data
|
|
137
|
+
when deserializing a response
|
|
138
|
+
_spec_property_naming (bool): True if the variable names in the input data
|
|
139
|
+
are serialized names, as specified in the OpenAPI document.
|
|
140
|
+
False if the variable names in the input data
|
|
141
|
+
are pythonic names, e.g. snake case (default)
|
|
142
|
+
_configuration (Configuration): the instance to use when
|
|
143
|
+
deserializing a file_type parameter.
|
|
144
|
+
If passed, type conversion is attempted
|
|
145
|
+
If omitted no type conversion is done.
|
|
146
|
+
_visited_composed_classes (tuple): This stores a tuple of
|
|
147
|
+
classes that we have traveled through so that
|
|
148
|
+
if we see that class again we will not use its
|
|
149
|
+
discriminator again.
|
|
150
|
+
When traveling through a discriminator, the
|
|
151
|
+
composed schema that is
|
|
152
|
+
is traveled through is added to this set.
|
|
153
|
+
For example if Animal has a discriminator
|
|
154
|
+
petType and we pass in "Dog", and the class Dog
|
|
155
|
+
allOf includes Animal, we move through Animal
|
|
156
|
+
once using the discriminator, and pick Dog.
|
|
157
|
+
Then in Dog, we will make an instance of the
|
|
158
|
+
Animal class but this time we won't travel
|
|
159
|
+
through its discriminator because we passed in
|
|
160
|
+
_visited_composed_classes = (Animal,)
|
|
161
|
+
user_groups ([DeclarativeUserGroupIdentifier]): Target user groups this policy applies to.. [optional] # noqa: E501
|
|
162
|
+
users ([DeclarativeUserIdentifier]): Target users this policy applies to.. [optional] # noqa: E501
|
|
163
|
+
"""
|
|
164
|
+
|
|
165
|
+
_check_type = kwargs.pop('_check_type', True)
|
|
166
|
+
_spec_property_naming = kwargs.pop('_spec_property_naming', True)
|
|
167
|
+
_path_to_item = kwargs.pop('_path_to_item', ())
|
|
168
|
+
_configuration = kwargs.pop('_configuration', None)
|
|
169
|
+
_visited_composed_classes = kwargs.pop('_visited_composed_classes', ())
|
|
170
|
+
|
|
171
|
+
self = super(OpenApiModel, cls).__new__(cls)
|
|
172
|
+
|
|
173
|
+
if args:
|
|
174
|
+
for arg in args:
|
|
175
|
+
if isinstance(arg, dict):
|
|
176
|
+
kwargs.update(arg)
|
|
177
|
+
else:
|
|
178
|
+
raise ApiTypeError(
|
|
179
|
+
"Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % (
|
|
180
|
+
args,
|
|
181
|
+
self.__class__.__name__,
|
|
182
|
+
),
|
|
183
|
+
path_to_item=_path_to_item,
|
|
184
|
+
valid_classes=(self.__class__,),
|
|
185
|
+
)
|
|
186
|
+
|
|
187
|
+
self._data_store = {}
|
|
188
|
+
self._check_type = _check_type
|
|
189
|
+
self._spec_property_naming = _spec_property_naming
|
|
190
|
+
self._path_to_item = _path_to_item
|
|
191
|
+
self._configuration = _configuration
|
|
192
|
+
self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
|
|
193
|
+
|
|
194
|
+
self.allowed_sources = allowed_sources
|
|
195
|
+
self.id = id
|
|
196
|
+
for var_name, var_value in kwargs.items():
|
|
197
|
+
if var_name not in self.attribute_map and \
|
|
198
|
+
self._configuration is not None and \
|
|
199
|
+
self._configuration.discard_unknown_keys and \
|
|
200
|
+
self.additional_properties_type is None:
|
|
201
|
+
# discard variable.
|
|
202
|
+
continue
|
|
203
|
+
setattr(self, var_name, var_value)
|
|
204
|
+
return self
|
|
205
|
+
|
|
206
|
+
required_properties = set([
|
|
207
|
+
'_data_store',
|
|
208
|
+
'_check_type',
|
|
209
|
+
'_spec_property_naming',
|
|
210
|
+
'_path_to_item',
|
|
211
|
+
'_configuration',
|
|
212
|
+
'_visited_composed_classes',
|
|
213
|
+
])
|
|
214
|
+
|
|
215
|
+
@convert_js_args_to_python_args
|
|
216
|
+
def __init__(self, allowed_sources, id, *args, **kwargs): # noqa: E501
|
|
217
|
+
"""DeclarativeIpAllowlistPolicy - a model defined in OpenAPI
|
|
218
|
+
|
|
219
|
+
Args:
|
|
220
|
+
allowed_sources ([str]): Allowed source IP addresses or CIDR ranges.
|
|
221
|
+
id (str): Identifier of an IP allowlist policy.
|
|
222
|
+
|
|
223
|
+
Keyword Args:
|
|
224
|
+
_check_type (bool): if True, values for parameters in openapi_types
|
|
225
|
+
will be type checked and a TypeError will be
|
|
226
|
+
raised if the wrong type is input.
|
|
227
|
+
Defaults to True
|
|
228
|
+
_path_to_item (tuple/list): This is a list of keys or values to
|
|
229
|
+
drill down to the model in received_data
|
|
230
|
+
when deserializing a response
|
|
231
|
+
_spec_property_naming (bool): True if the variable names in the input data
|
|
232
|
+
are serialized names, as specified in the OpenAPI document.
|
|
233
|
+
False if the variable names in the input data
|
|
234
|
+
are pythonic names, e.g. snake case (default)
|
|
235
|
+
_configuration (Configuration): the instance to use when
|
|
236
|
+
deserializing a file_type parameter.
|
|
237
|
+
If passed, type conversion is attempted
|
|
238
|
+
If omitted no type conversion is done.
|
|
239
|
+
_visited_composed_classes (tuple): This stores a tuple of
|
|
240
|
+
classes that we have traveled through so that
|
|
241
|
+
if we see that class again we will not use its
|
|
242
|
+
discriminator again.
|
|
243
|
+
When traveling through a discriminator, the
|
|
244
|
+
composed schema that is
|
|
245
|
+
is traveled through is added to this set.
|
|
246
|
+
For example if Animal has a discriminator
|
|
247
|
+
petType and we pass in "Dog", and the class Dog
|
|
248
|
+
allOf includes Animal, we move through Animal
|
|
249
|
+
once using the discriminator, and pick Dog.
|
|
250
|
+
Then in Dog, we will make an instance of the
|
|
251
|
+
Animal class but this time we won't travel
|
|
252
|
+
through its discriminator because we passed in
|
|
253
|
+
_visited_composed_classes = (Animal,)
|
|
254
|
+
user_groups ([DeclarativeUserGroupIdentifier]): Target user groups this policy applies to.. [optional] # noqa: E501
|
|
255
|
+
users ([DeclarativeUserIdentifier]): Target users this policy applies to.. [optional] # noqa: E501
|
|
256
|
+
"""
|
|
257
|
+
|
|
258
|
+
_check_type = kwargs.pop('_check_type', True)
|
|
259
|
+
_spec_property_naming = kwargs.pop('_spec_property_naming', False)
|
|
260
|
+
_path_to_item = kwargs.pop('_path_to_item', ())
|
|
261
|
+
_configuration = kwargs.pop('_configuration', None)
|
|
262
|
+
_visited_composed_classes = kwargs.pop('_visited_composed_classes', ())
|
|
263
|
+
|
|
264
|
+
if args:
|
|
265
|
+
for arg in args:
|
|
266
|
+
if isinstance(arg, dict):
|
|
267
|
+
kwargs.update(arg)
|
|
268
|
+
else:
|
|
269
|
+
raise ApiTypeError(
|
|
270
|
+
"Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % (
|
|
271
|
+
args,
|
|
272
|
+
self.__class__.__name__,
|
|
273
|
+
),
|
|
274
|
+
path_to_item=_path_to_item,
|
|
275
|
+
valid_classes=(self.__class__,),
|
|
276
|
+
)
|
|
277
|
+
|
|
278
|
+
self._data_store = {}
|
|
279
|
+
self._check_type = _check_type
|
|
280
|
+
self._spec_property_naming = _spec_property_naming
|
|
281
|
+
self._path_to_item = _path_to_item
|
|
282
|
+
self._configuration = _configuration
|
|
283
|
+
self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
|
|
284
|
+
|
|
285
|
+
self.allowed_sources = allowed_sources
|
|
286
|
+
self.id = id
|
|
287
|
+
for var_name, var_value in kwargs.items():
|
|
288
|
+
if var_name not in self.attribute_map and \
|
|
289
|
+
self._configuration is not None and \
|
|
290
|
+
self._configuration.discard_unknown_keys and \
|
|
291
|
+
self.additional_properties_type is None:
|
|
292
|
+
# discard variable.
|
|
293
|
+
continue
|
|
294
|
+
setattr(self, var_name, var_value)
|
|
295
|
+
if var_name in self.read_only_vars:
|
|
296
|
+
raise ApiAttributeError(f"`{var_name}` is a read-only attribute. Use `from_openapi_data` to instantiate "
|
|
297
|
+
f"class with read only attributes.")
|
|
@@ -36,6 +36,7 @@ def lazy_import():
|
|
|
36
36
|
from gooddata_api_client.model.declarative_data_source import DeclarativeDataSource
|
|
37
37
|
from gooddata_api_client.model.declarative_export_template import DeclarativeExportTemplate
|
|
38
38
|
from gooddata_api_client.model.declarative_identity_provider import DeclarativeIdentityProvider
|
|
39
|
+
from gooddata_api_client.model.declarative_ip_allowlist_policy import DeclarativeIpAllowlistPolicy
|
|
39
40
|
from gooddata_api_client.model.declarative_jwk import DeclarativeJwk
|
|
40
41
|
from gooddata_api_client.model.declarative_notification_channel import DeclarativeNotificationChannel
|
|
41
42
|
from gooddata_api_client.model.declarative_organization_info import DeclarativeOrganizationInfo
|
|
@@ -48,6 +49,7 @@ def lazy_import():
|
|
|
48
49
|
globals()['DeclarativeDataSource'] = DeclarativeDataSource
|
|
49
50
|
globals()['DeclarativeExportTemplate'] = DeclarativeExportTemplate
|
|
50
51
|
globals()['DeclarativeIdentityProvider'] = DeclarativeIdentityProvider
|
|
52
|
+
globals()['DeclarativeIpAllowlistPolicy'] = DeclarativeIpAllowlistPolicy
|
|
51
53
|
globals()['DeclarativeJwk'] = DeclarativeJwk
|
|
52
54
|
globals()['DeclarativeNotificationChannel'] = DeclarativeNotificationChannel
|
|
53
55
|
globals()['DeclarativeOrganizationInfo'] = DeclarativeOrganizationInfo
|
|
@@ -116,6 +118,7 @@ class DeclarativeOrganization(ModelNormal):
|
|
|
116
118
|
'data_sources': ([DeclarativeDataSource],), # noqa: E501
|
|
117
119
|
'export_templates': ([DeclarativeExportTemplate],), # noqa: E501
|
|
118
120
|
'identity_providers': ([DeclarativeIdentityProvider],), # noqa: E501
|
|
121
|
+
'ip_allowlist_policies': ([DeclarativeIpAllowlistPolicy],), # noqa: E501
|
|
119
122
|
'jwks': ([DeclarativeJwk],), # noqa: E501
|
|
120
123
|
'notification_channels': ([DeclarativeNotificationChannel],), # noqa: E501
|
|
121
124
|
'user_groups': ([DeclarativeUserGroup],), # noqa: E501
|
|
@@ -136,6 +139,7 @@ class DeclarativeOrganization(ModelNormal):
|
|
|
136
139
|
'data_sources': 'dataSources', # noqa: E501
|
|
137
140
|
'export_templates': 'exportTemplates', # noqa: E501
|
|
138
141
|
'identity_providers': 'identityProviders', # noqa: E501
|
|
142
|
+
'ip_allowlist_policies': 'ipAllowlistPolicies', # noqa: E501
|
|
139
143
|
'jwks': 'jwks', # noqa: E501
|
|
140
144
|
'notification_channels': 'notificationChannels', # noqa: E501
|
|
141
145
|
'user_groups': 'userGroups', # noqa: E501
|
|
@@ -193,6 +197,7 @@ class DeclarativeOrganization(ModelNormal):
|
|
|
193
197
|
data_sources ([DeclarativeDataSource]): [optional] # noqa: E501
|
|
194
198
|
export_templates ([DeclarativeExportTemplate]): [optional] # noqa: E501
|
|
195
199
|
identity_providers ([DeclarativeIdentityProvider]): [optional] # noqa: E501
|
|
200
|
+
ip_allowlist_policies ([DeclarativeIpAllowlistPolicy]): [optional] # noqa: E501
|
|
196
201
|
jwks ([DeclarativeJwk]): [optional] # noqa: E501
|
|
197
202
|
notification_channels ([DeclarativeNotificationChannel]): [optional] # noqa: E501
|
|
198
203
|
user_groups ([DeclarativeUserGroup]): [optional] # noqa: E501
|
|
@@ -293,6 +298,7 @@ class DeclarativeOrganization(ModelNormal):
|
|
|
293
298
|
data_sources ([DeclarativeDataSource]): [optional] # noqa: E501
|
|
294
299
|
export_templates ([DeclarativeExportTemplate]): [optional] # noqa: E501
|
|
295
300
|
identity_providers ([DeclarativeIdentityProvider]): [optional] # noqa: E501
|
|
301
|
+
ip_allowlist_policies ([DeclarativeIpAllowlistPolicy]): [optional] # noqa: E501
|
|
296
302
|
jwks ([DeclarativeJwk]): [optional] # noqa: E501
|
|
297
303
|
notification_channels ([DeclarativeNotificationChannel]): [optional] # noqa: E501
|
|
298
304
|
user_groups ([DeclarativeUserGroup]): [optional] # noqa: E501
|
|
@@ -249,6 +249,7 @@ from gooddata_api_client.model.declarative_filter_context import DeclarativeFilt
|
|
|
249
249
|
from gooddata_api_client.model.declarative_filter_view import DeclarativeFilterView
|
|
250
250
|
from gooddata_api_client.model.declarative_identity_provider import DeclarativeIdentityProvider
|
|
251
251
|
from gooddata_api_client.model.declarative_identity_provider_identifier import DeclarativeIdentityProviderIdentifier
|
|
252
|
+
from gooddata_api_client.model.declarative_ip_allowlist_policy import DeclarativeIpAllowlistPolicy
|
|
252
253
|
from gooddata_api_client.model.declarative_jwk import DeclarativeJwk
|
|
253
254
|
from gooddata_api_client.model.declarative_jwk_specification import DeclarativeJwkSpecification
|
|
254
255
|
from gooddata_api_client.model.declarative_label import DeclarativeLabel
|
{gooddata_api_client-1.65.1.dev2.dist-info → gooddata_api_client-1.65.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.65.1.
|
|
3
|
+
Version: 1.65.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.65.1.
|
|
32
|
+
- Package version: 1.65.1.dev3
|
|
33
33
|
- Build package: org.openapitools.codegen.languages.PythonPriorClientCodegen
|
|
34
34
|
|
|
35
35
|
## Requirements.
|
|
@@ -1602,6 +1602,7 @@ Class | Method | HTTP request | Description
|
|
|
1602
1602
|
- [DeclarativeFilterView](docs/DeclarativeFilterView.md)
|
|
1603
1603
|
- [DeclarativeIdentityProvider](docs/DeclarativeIdentityProvider.md)
|
|
1604
1604
|
- [DeclarativeIdentityProviderIdentifier](docs/DeclarativeIdentityProviderIdentifier.md)
|
|
1605
|
+
- [DeclarativeIpAllowlistPolicy](docs/DeclarativeIpAllowlistPolicy.md)
|
|
1605
1606
|
- [DeclarativeJwk](docs/DeclarativeJwk.md)
|
|
1606
1607
|
- [DeclarativeJwkSpecification](docs/DeclarativeJwkSpecification.md)
|
|
1607
1608
|
- [DeclarativeLabel](docs/DeclarativeLabel.md)
|
{gooddata_api_client-1.65.1.dev2.dist-info → gooddata_api_client-1.65.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=JywR4hWOA5TxOspYaUGT8MfAM6rIj48ire5y0tbd1lM,854
|
|
2
|
+
gooddata_api_client/api_client.py,sha256=X2MasxDFPckxlJ0h33pfEd8p6tRje0Fytcar0c9MlMM,39367
|
|
3
|
+
gooddata_api_client/configuration.py,sha256=jzwA27-rMTdYyz2wgnNux8SlREzqgcRh0XbR0m8z4gc,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
|
|
@@ -358,7 +358,7 @@ gooddata_api_client/model/declarative_attribute.py,sha256=uGJFOq_ZN4VKyqCSD8GMON
|
|
|
358
358
|
gooddata_api_client/model/declarative_attribute_hierarchy.py,sha256=Dxoi_iStCS7SlmsCruUTe3SBIlTV0JCZ8ZdumXQs104,14776
|
|
359
359
|
gooddata_api_client/model/declarative_automation.py,sha256=gMT4CE5HTXVDxlkpwNzLZCy76iFp3hzcQPk8N-XURio,22368
|
|
360
360
|
gooddata_api_client/model/declarative_color_palette.py,sha256=GTWr6XLtqQV0DGVwivmByqh5TZ0fbdsK0-6GkGmTVeQ,12182
|
|
361
|
-
gooddata_api_client/model/declarative_column.py,sha256=
|
|
361
|
+
gooddata_api_client/model/declarative_column.py,sha256=1fRk27vGUCNldONu8O6Wk5dBI7ZDr350CBLqXHylLsY,13996
|
|
362
362
|
gooddata_api_client/model/declarative_csp_directive.py,sha256=FSG8pmGRD-faK9gC6LjzizllsEnUHBA-54ZQJ1iznxw,11903
|
|
363
363
|
gooddata_api_client/model/declarative_custom_application_setting.py,sha256=Wjm457H6bCUAEvhUDEOP0mxWq5dCR_Ik3coKMyVHsVE,12835
|
|
364
364
|
gooddata_api_client/model/declarative_custom_geo_collection.py,sha256=8IR_trxenBjZYFJoTQgLxPHKQW6NIDpkNth9MmSI2d8,12429
|
|
@@ -382,6 +382,7 @@ gooddata_api_client/model/declarative_filter_context.py,sha256=iO6YOTmvocXWKOr0E
|
|
|
382
382
|
gooddata_api_client/model/declarative_filter_view.py,sha256=oZcFrlrAOCopinGqnp41ArF0nMYc4vQabf3McvZXbXw,14191
|
|
383
383
|
gooddata_api_client/model/declarative_identity_provider.py,sha256=jwLpXPfLMdPHn-o3DJFb_9mvsWIsdyDDU92zbsuXPLc,19413
|
|
384
384
|
gooddata_api_client/model/declarative_identity_provider_identifier.py,sha256=jt3NdJtPwzXR9wKqcaPAu0su5RP3sJ1kDz3-gyVDUvc,12344
|
|
385
|
+
gooddata_api_client/model/declarative_ip_allowlist_policy.py,sha256=6abudP-kYu3JdWiUXfcSL9hkIdQZaSmeQCP3wfdy_go,13304
|
|
385
386
|
gooddata_api_client/model/declarative_jwk.py,sha256=dahbULnsF91ZC8MnlvFjHFUhUQu7REk7gKb1ZcEtbnY,12209
|
|
386
387
|
gooddata_api_client/model/declarative_jwk_specification.py,sha256=bEgaqmFKbYrkU9VAkhVuqJFYwUeFZ1OfdQ0C4bFEWo8,16469
|
|
387
388
|
gooddata_api_client/model/declarative_label.py,sha256=fJqkzWGe0S6nJlHw2GWjTQ9I0q4fepsfhgXJmfu2yRs,16439
|
|
@@ -394,7 +395,7 @@ gooddata_api_client/model/declarative_notification_channel.py,sha256=fhtlyYZ8bwS
|
|
|
394
395
|
gooddata_api_client/model/declarative_notification_channel_destination.py,sha256=IoElypSlbdt3m33S0Wesovw-pU-6WIdnBWZmu03hRe8,18253
|
|
395
396
|
gooddata_api_client/model/declarative_notification_channel_identifier.py,sha256=xHngrjy2WOl0JH0ub4fIZtICoGHEt3ERHmFpSv6tguY,12369
|
|
396
397
|
gooddata_api_client/model/declarative_notification_channels.py,sha256=MddjBi6fMrJGztnBFbjEc-AygREIg601asVnGRqBiBI,12099
|
|
397
|
-
gooddata_api_client/model/declarative_organization.py,sha256=
|
|
398
|
+
gooddata_api_client/model/declarative_organization.py,sha256=0dfwLHDDCbq6M_MebGJQzko7TQaB7Z--N_dmR4jSfVo,17374
|
|
398
399
|
gooddata_api_client/model/declarative_organization_info.py,sha256=ikz6CVmL2JbFko0H9OKXrlNQJLejHRAmiMBi6qjO3Ws,16500
|
|
399
400
|
gooddata_api_client/model/declarative_organization_permission.py,sha256=SK_4PaBwjfjFL8bLtmjYB77YS_vUIqYKnatHMVIDUK8,12262
|
|
400
401
|
gooddata_api_client/model/declarative_parameter.py,sha256=hw0ZMX9t8WSbW3i0jjhZpVmSTQNbQhl_ppKobP1mtiY,14781
|
|
@@ -1456,9 +1457,9 @@ gooddata_api_client/model/workspace_user_group.py,sha256=qYErAGFJUyXBK_33RgCdvRm
|
|
|
1456
1457
|
gooddata_api_client/model/workspace_user_groups.py,sha256=L0e0-inFdCFY041uWt-OiRJg1UpeLyGR4t0ENigdHU8,12181
|
|
1457
1458
|
gooddata_api_client/model/workspace_users.py,sha256=Y8uJJ2RrK2-vvRJY4b09TxiPEcqix-AZv_Wggkgf_zk,12129
|
|
1458
1459
|
gooddata_api_client/model/xliff.py,sha256=s2jHGsGhsr6VBI1DUeZeR9AjIDMS8_WEOVC5gDk4QE0,12646
|
|
1459
|
-
gooddata_api_client/models/__init__.py,sha256=
|
|
1460
|
-
gooddata_api_client-1.65.1.
|
|
1461
|
-
gooddata_api_client-1.65.1.
|
|
1462
|
-
gooddata_api_client-1.65.1.
|
|
1463
|
-
gooddata_api_client-1.65.1.
|
|
1464
|
-
gooddata_api_client-1.65.1.
|
|
1460
|
+
gooddata_api_client/models/__init__.py,sha256=xYKVQ5-9aEJvIoZpKPAQqmV-IsBtTTtvtiBZEVyQug8,127232
|
|
1461
|
+
gooddata_api_client-1.65.1.dev3.dist-info/licenses/LICENSE.txt,sha256=TXcX7q0JaEM02DrmcvaMqNvU912yBiaQGzCA5rZlp0U,20163
|
|
1462
|
+
gooddata_api_client-1.65.1.dev3.dist-info/METADATA,sha256=VCQXiYsgfpW9U_tdaEN8i0_6H36GzPWLa3pm_DJAwM8,344110
|
|
1463
|
+
gooddata_api_client-1.65.1.dev3.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
|
|
1464
|
+
gooddata_api_client-1.65.1.dev3.dist-info/top_level.txt,sha256=GaZfT4qEz5cKY0eA2Iub4vcr6soTMJolR7uIRDfgpcU,20
|
|
1465
|
+
gooddata_api_client-1.65.1.dev3.dist-info/RECORD,,
|
{gooddata_api_client-1.65.1.dev2.dist-info → gooddata_api_client-1.65.1.dev3.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|