Skip to content

Commit 796e205

Browse files
authored
Merge pull request #1292 from gooddata/auto/cassette-update-20260204-090207
chore: update cassettes and SDK for gdc-nas compatibility
2 parents bc9fcd8 + de7b542 commit 796e205

File tree

133 files changed

+1987
-1751
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

133 files changed

+1987
-1751
lines changed

gooddata-api-client/docs/ActionsApi.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,13 @@ with gooddata_api_client.ApiClient() as api_client:
141141
api_instance = actions_api.ActionsApi(api_client)
142142
workspace_id = "/6bUUGjjNSwg0_bs" # str | Workspace identifier
143143
chat_request = ChatRequest(
144+
allowed_relationship_types=[
145+
AllowedRelationshipType(
146+
allow_orphans=True,
147+
source_type="attribute",
148+
target_type="attribute",
149+
),
150+
],
144151
include_hidden=False,
145152
limit_create=3,
146153
limit_create_context=10,
@@ -311,6 +318,13 @@ with gooddata_api_client.ApiClient() as api_client:
311318
api_instance = actions_api.ActionsApi(api_client)
312319
workspace_id = "/6bUUGjjNSwg0_bs" # str | Workspace identifier
313320
chat_request = ChatRequest(
321+
allowed_relationship_types=[
322+
AllowedRelationshipType(
323+
allow_orphans=True,
324+
source_type="attribute",
325+
target_type="attribute",
326+
),
327+
],
314328
include_hidden=False,
315329
limit_create=3,
316330
limit_create_context=10,
@@ -1512,7 +1526,7 @@ with gooddata_api_client.ApiClient() as api_client:
15121526
elements_request = ElementsRequest(
15131527
cache_id="cache_id_example",
15141528
complement_filter=False,
1515-
data_sampling_percentage=100.0,
1529+
data_sampling_percentage=100,
15161530
depends_on=[
15171531
ElementsRequestDependsOnInner(None),
15181532
],

gooddata-api-client/docs/ChatRequest.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
77
**question** | **str** | User question |
8+
**allowed_relationship_types** | [**[AllowedRelationshipType]**](AllowedRelationshipType.md) | Filter relationships and search results based on allowed relationship type combinations. When specified, only relationships matching the allowed types are returned (e.g. for view-only users). | [optional]
89
**include_hidden** | **bool** | If true, includes hidden objects in search and visualization building. If false (default), excludes objects where isHidden=true. | [optional] if omitted the server will use the default value of False
910
**limit_create** | **int** | Maximum number of created results. | [optional] if omitted the server will use the default value of 3
1011
**limit_create_context** | **int** | Maximum number of relevant objects included into context for LLM (for each object type). | [optional] if omitted the server will use the default value of 10

gooddata-api-client/docs/ComputationApi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -392,7 +392,7 @@ with gooddata_api_client.ApiClient() as api_client:
392392
elements_request = ElementsRequest(
393393
cache_id="cache_id_example",
394394
complement_filter=False,
395-
data_sampling_percentage=100.0,
395+
data_sampling_percentage=100,
396396
depends_on=[
397397
ElementsRequestDependsOnInner(None),
398398
],

gooddata-api-client/docs/ElementsRequest.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Name | Type | Description | Notes
77
**label** | **str** | Requested label. |
88
**cache_id** | **str** | If specified, the element data will be taken from the result with the same cacheId if it is available. | [optional]
99
**complement_filter** | **bool** | Inverse filters: * ```false``` - return items matching ```patternFilter``` and ```exactFilter``` * ```true``` - return items not matching ```patternFilter``` and ```exactFilter``` | [optional] if omitted the server will use the default value of False
10-
**data_sampling_percentage** | **float** | Specifies percentage of source table data scanned during the computation. This field is deprecated and is no longer used during the elements computation. | [optional] if omitted the server will use the default value of 100.0
10+
**data_sampling_percentage** | **float** | Specifies percentage of source table data scanned during the computation. This field is deprecated and is no longer used during the elements computation. | [optional] if omitted the server will use the default value of 100
1111
**depends_on** | [**[ElementsRequestDependsOnInner]**](ElementsRequestDependsOnInner.md) | Return only items that are not filtered-out by the parent filters. | [optional]
1212
**exact_filter** | **[str, none_type]** | Return only items, whose ```label``` title exactly matches one of ```filter```. | [optional]
1313
**exclude_primary_label** | **bool** | Excludes items from the result that differ only by primary label * ```false``` - return items with distinct primary label * ```true``` - return items with distinct requested label | [optional] if omitted the server will use the default value of False

gooddata-api-client/docs/JsonApiOrganizationOutAttributes.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,12 @@ Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
77
**allowed_origins** | **[str]** | | [optional]
88
**cache_settings** | [**JsonApiOrganizationOutAttributesCacheSettings**](JsonApiOrganizationOutAttributesCacheSettings.md) | | [optional]
9+
**data_center** | **str, none_type** | Current deployment region. Should be used for issue investigation only. | [optional]
910
**early_access** | **str, none_type** | The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues. | [optional]
1011
**early_access_values** | **[str], none_type** | The early access feature identifiers. They are used to enable experimental features. | [optional]
1112
**hostname** | **str** | | [optional]
1213
**name** | **str, none_type** | | [optional]
14+
**region** | **str, none_type** | Current deployment cluster name. Should be used for issue investigation only. | [optional]
1315
**any string name** | **bool, date, datetime, dict, float, int, list, str, none_type** | any string name can be used but the value must be the correct type | [optional]
1416

1517
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

gooddata-api-client/docs/SmartFunctionsApi.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,13 @@ with gooddata_api_client.ApiClient() as api_client:
5656
api_instance = smart_functions_api.SmartFunctionsApi(api_client)
5757
workspace_id = "/6bUUGjjNSwg0_bs" # str | Workspace identifier
5858
chat_request = ChatRequest(
59+
allowed_relationship_types=[
60+
AllowedRelationshipType(
61+
allow_orphans=True,
62+
source_type="attribute",
63+
target_type="attribute",
64+
),
65+
],
5966
include_hidden=False,
6067
limit_create=3,
6168
limit_create_context=10,
@@ -226,6 +233,13 @@ with gooddata_api_client.ApiClient() as api_client:
226233
api_instance = smart_functions_api.SmartFunctionsApi(api_client)
227234
workspace_id = "/6bUUGjjNSwg0_bs" # str | Workspace identifier
228235
chat_request = ChatRequest(
236+
allowed_relationship_types=[
237+
AllowedRelationshipType(
238+
allow_orphans=True,
239+
source_type="attribute",
240+
target_type="attribute",
241+
),
242+
],
229243
include_hidden=False,
230244
limit_create=3,
231245
limit_create_context=10,

gooddata-api-client/gooddata_api_client/model/chat_request.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,9 @@
3131

3232

3333
def lazy_import():
34+
from gooddata_api_client.model.allowed_relationship_type import AllowedRelationshipType
3435
from gooddata_api_client.model.user_context import UserContext
36+
globals()['AllowedRelationshipType'] = AllowedRelationshipType
3537
globals()['UserContext'] = UserContext
3638

3739

@@ -102,6 +104,7 @@ def openapi_types():
102104
lazy_import()
103105
return {
104106
'question': (str,), # noqa: E501
107+
'allowed_relationship_types': ([AllowedRelationshipType],), # noqa: E501
105108
'include_hidden': (bool,), # noqa: E501
106109
'limit_create': (int,), # noqa: E501
107110
'limit_create_context': (int,), # noqa: E501
@@ -121,6 +124,7 @@ def discriminator():
121124

122125
attribute_map = {
123126
'question': 'question', # noqa: E501
127+
'allowed_relationship_types': 'allowedRelationshipTypes', # noqa: E501
124128
'include_hidden': 'includeHidden', # noqa: E501
125129
'limit_create': 'limitCreate', # noqa: E501
126130
'limit_create_context': 'limitCreateContext', # noqa: E501
@@ -177,6 +181,7 @@ def _from_openapi_data(cls, question, *args, **kwargs): # noqa: E501
177181
Animal class but this time we won't travel
178182
through its discriminator because we passed in
179183
_visited_composed_classes = (Animal,)
184+
allowed_relationship_types ([AllowedRelationshipType]): Filter relationships and search results based on allowed relationship type combinations. When specified, only relationships matching the allowed types are returned (e.g. for view-only users).. [optional] # noqa: E501
180185
include_hidden (bool): If true, includes hidden objects in search and visualization building. If false (default), excludes objects where isHidden=true.. [optional] if omitted the server will use the default value of False # noqa: E501
181186
limit_create (int): Maximum number of created results.. [optional] if omitted the server will use the default value of 3 # noqa: E501
182187
limit_create_context (int): Maximum number of relevant objects included into context for LLM (for each object type).. [optional] if omitted the server will use the default value of 10 # noqa: E501
@@ -276,6 +281,7 @@ def __init__(self, question, *args, **kwargs): # noqa: E501
276281
Animal class but this time we won't travel
277282
through its discriminator because we passed in
278283
_visited_composed_classes = (Animal,)
284+
allowed_relationship_types ([AllowedRelationshipType]): Filter relationships and search results based on allowed relationship type combinations. When specified, only relationships matching the allowed types are returned (e.g. for view-only users).. [optional] # noqa: E501
279285
include_hidden (bool): If true, includes hidden objects in search and visualization building. If false (default), excludes objects where isHidden=true.. [optional] if omitted the server will use the default value of False # noqa: E501
280286
limit_create (int): Maximum number of created results.. [optional] if omitted the server will use the default value of 3 # noqa: E501
281287
limit_create_context (int): Maximum number of relevant objects included into context for LLM (for each object type).. [optional] if omitted the server will use the default value of 10 # noqa: E501

gooddata-api-client/gooddata_api_client/model/elements_request.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ def _from_openapi_data(cls, label, *args, **kwargs): # noqa: E501
179179
_visited_composed_classes = (Animal,)
180180
cache_id (str): If specified, the element data will be taken from the result with the same cacheId if it is available.. [optional] # noqa: E501
181181
complement_filter (bool): Inverse filters: * ```false``` - return items matching ```patternFilter``` and ```exactFilter``` * ```true``` - return items not matching ```patternFilter``` and ```exactFilter```. [optional] if omitted the server will use the default value of False # noqa: E501
182-
data_sampling_percentage (float): Specifies percentage of source table data scanned during the computation. This field is deprecated and is no longer used during the elements computation.. [optional] if omitted the server will use the default value of 100.0 # noqa: E501
182+
data_sampling_percentage (float): Specifies percentage of source table data scanned during the computation. This field is deprecated and is no longer used during the elements computation.. [optional] if omitted the server will use the default value of 100 # noqa: E501
183183
depends_on ([ElementsRequestDependsOnInner]): Return only items that are not filtered-out by the parent filters.. [optional] # noqa: E501
184184
exact_filter ([str, none_type]): Return only items, whose ```label``` title exactly matches one of ```filter```.. [optional] # noqa: E501
185185
exclude_primary_label (bool): Excludes items from the result that differ only by primary label * ```false``` - return items with distinct primary label * ```true``` - return items with distinct requested label. [optional] if omitted the server will use the default value of False # noqa: E501
@@ -278,7 +278,7 @@ def __init__(self, label, *args, **kwargs): # noqa: E501
278278
_visited_composed_classes = (Animal,)
279279
cache_id (str): If specified, the element data will be taken from the result with the same cacheId if it is available.. [optional] # noqa: E501
280280
complement_filter (bool): Inverse filters: * ```false``` - return items matching ```patternFilter``` and ```exactFilter``` * ```true``` - return items not matching ```patternFilter``` and ```exactFilter```. [optional] if omitted the server will use the default value of False # noqa: E501
281-
data_sampling_percentage (float): Specifies percentage of source table data scanned during the computation. This field is deprecated and is no longer used during the elements computation.. [optional] if omitted the server will use the default value of 100.0 # noqa: E501
281+
data_sampling_percentage (float): Specifies percentage of source table data scanned during the computation. This field is deprecated and is no longer used during the elements computation.. [optional] if omitted the server will use the default value of 100 # noqa: E501
282282
depends_on ([ElementsRequestDependsOnInner]): Return only items that are not filtered-out by the parent filters.. [optional] # noqa: E501
283283
exact_filter ([str, none_type]): Return only items, whose ```label``` title exactly matches one of ```filter```.. [optional] # noqa: E501
284284
exclude_primary_label (bool): Excludes items from the result that differ only by primary label * ```false``` - return items with distinct primary label * ```true``` - return items with distinct requested label. [optional] if omitted the server will use the default value of False # noqa: E501

gooddata-api-client/gooddata_api_client/model/forecast_request.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@ class ForecastRequest(ModelNormal):
6060

6161
validations = {
6262
('confidence_level',): {
63-
'exclusive_maximum''inclusive_maximum': 1.0,
64-
'exclusive_minimum''inclusive_minimum': 0.0,
63+
'exclusive_maximum''inclusive_maximum': 1,
64+
'exclusive_minimum''inclusive_minimum': 0,
6565
},
6666
}
6767

gooddata-api-client/gooddata_api_client/model/json_api_organization_out_attributes.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,10 +99,12 @@ def openapi_types():
9999
return {
100100
'allowed_origins': ([str],), # noqa: E501
101101
'cache_settings': (JsonApiOrganizationOutAttributesCacheSettings,), # noqa: E501
102+
'data_center': (str, none_type,), # noqa: E501
102103
'early_access': (str, none_type,), # noqa: E501
103104
'early_access_values': ([str], none_type,), # noqa: E501
104105
'hostname': (str,), # noqa: E501
105106
'name': (str, none_type,), # noqa: E501
107+
'region': (str, none_type,), # noqa: E501
106108
}
107109

108110
@cached_property
@@ -113,10 +115,12 @@ def discriminator():
113115
attribute_map = {
114116
'allowed_origins': 'allowedOrigins', # noqa: E501
115117
'cache_settings': 'cacheSettings', # noqa: E501
118+
'data_center': 'dataCenter', # noqa: E501
116119
'early_access': 'earlyAccess', # noqa: E501
117120
'early_access_values': 'earlyAccessValues', # noqa: E501
118121
'hostname': 'hostname', # noqa: E501
119122
'name': 'name', # noqa: E501
123+
'region': 'region', # noqa: E501
120124
}
121125

122126
read_only_vars = {
@@ -162,10 +166,12 @@ def _from_openapi_data(cls, *args, **kwargs): # noqa: E501
162166
_visited_composed_classes = (Animal,)
163167
allowed_origins ([str]): [optional] # noqa: E501
164168
cache_settings (JsonApiOrganizationOutAttributesCacheSettings): [optional] # noqa: E501
169+
data_center (str, none_type): Current deployment region. Should be used for issue investigation only.. [optional] # noqa: E501
165170
early_access (str, none_type): The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.. [optional] # noqa: E501
166171
early_access_values ([str], none_type): The early access feature identifiers. They are used to enable experimental features.. [optional] # noqa: E501
167172
hostname (str): [optional] # noqa: E501
168173
name (str, none_type): [optional] # noqa: E501
174+
region (str, none_type): Current deployment cluster name. Should be used for issue investigation only.. [optional] # noqa: E501
169175
"""
170176

171177
_check_type = kwargs.pop('_check_type', True)
@@ -253,10 +259,12 @@ def __init__(self, *args, **kwargs): # noqa: E501
253259
_visited_composed_classes = (Animal,)
254260
allowed_origins ([str]): [optional] # noqa: E501
255261
cache_settings (JsonApiOrganizationOutAttributesCacheSettings): [optional] # noqa: E501
262+
data_center (str, none_type): Current deployment region. Should be used for issue investigation only.. [optional] # noqa: E501
256263
early_access (str, none_type): The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.. [optional] # noqa: E501
257264
early_access_values ([str], none_type): The early access feature identifiers. They are used to enable experimental features.. [optional] # noqa: E501
258265
hostname (str): [optional] # noqa: E501
259266
name (str, none_type): [optional] # noqa: E501
267+
region (str, none_type): Current deployment cluster name. Should be used for issue investigation only.. [optional] # noqa: E501
260268
"""
261269

262270
_check_type = kwargs.pop('_check_type', True)

0 commit comments

Comments
 (0)