Skip to content

Commit 54ecbf5

Browse files
committed
chore: regenerate api-client and update schemas
1 parent b3b825a commit 54ecbf5

File tree

124 files changed

+26642
-31024
lines changed

Some content is hidden

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

124 files changed

+26642
-31024
lines changed

gooddata-api-client/.openapi-generator/FILES

Lines changed: 40 additions & 22 deletions
Large diffs are not rendered by default.

gooddata-api-client/README.md

Lines changed: 148 additions & 162 deletions
Large diffs are not rendered by default.

gooddata-api-client/docs/AIApi.md

Lines changed: 50 additions & 46 deletions
Large diffs are not rendered by default.

gooddata-api-client/docs/AILakeApi.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ configuration = gooddata_api_client.Configuration(
4040
with gooddata_api_client.ApiClient() as api_client:
4141
# Create an instance of the API class
4242
api_instance = ai_lake_api.AILakeApi(api_client)
43-
instance_id = "instanceId_example" # str |
43+
instance_id = "instanceId_example" # str | Database instance identifier. Accepts the database name (preferred) or UUID.
4444
operation_id = "operation-id_example" # str | (optional)
4545

4646
# example passing only required values which don't have defaults set
@@ -66,7 +66,7 @@ with gooddata_api_client.ApiClient() as api_client:
6666

6767
Name | Type | Description | Notes
6868
------------- | ------------- | ------------- | -------------
69-
**instance_id** | **str**| |
69+
**instance_id** | **str**| Database instance identifier. Accepts the database name (preferred) or UUID. |
7070
**operation_id** | **str**| | [optional]
7171

7272
### Return type
@@ -118,7 +118,7 @@ configuration = gooddata_api_client.Configuration(
118118
with gooddata_api_client.ApiClient() as api_client:
119119
# Create an instance of the API class
120120
api_instance = ai_lake_api.AILakeApi(api_client)
121-
instance_id = "instanceId_example" # str |
121+
instance_id = "instanceId_example" # str | Database instance identifier. Accepts the database name (preferred) or UUID.
122122

123123
# example passing only required values which don't have defaults set
124124
try:
@@ -134,7 +134,7 @@ with gooddata_api_client.ApiClient() as api_client:
134134

135135
Name | Type | Description | Notes
136136
------------- | ------------- | ------------- | -------------
137-
**instance_id** | **str**| |
137+
**instance_id** | **str**| Database instance identifier. Accepts the database name (preferred) or UUID. |
138138

139139
### Return type
140140

gooddata-api-client/docs/ActionsApi.md

Lines changed: 10 additions & 371 deletions
Large diffs are not rendered by default.

gooddata-api-client/docs/AggregatedFactControllerApi.md

Lines changed: 294 additions & 0 deletions
Large diffs are not rendered by default.

gooddata-api-client/docs/AppearanceApi.md

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -193,22 +193,13 @@ with gooddata_api_client.ApiClient() as api_client:
193193
# Create an instance of the API class
194194
api_instance = appearance_api.AppearanceApi(api_client)
195195
id = "/6bUUGjjNSwg0_bs" # str |
196-
filter = "name==someString;content==JsonNodeValue" # str | Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title=='Some Title';description=='desc'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty=='Value 123'). (optional)
197196

198197
# example passing only required values which don't have defaults set
199198
try:
200199
# Delete a Color Pallette
201200
api_instance.delete_entity_color_palettes(id)
202201
except gooddata_api_client.ApiException as e:
203202
print("Exception when calling AppearanceApi->delete_entity_color_palettes: %s\n" % e)
204-
205-
# example passing only required values which don't have defaults set
206-
# and optional values
207-
try:
208-
# Delete a Color Pallette
209-
api_instance.delete_entity_color_palettes(id, filter=filter)
210-
except gooddata_api_client.ApiException as e:
211-
print("Exception when calling AppearanceApi->delete_entity_color_palettes: %s\n" % e)
212203
```
213204

214205

@@ -217,7 +208,6 @@ with gooddata_api_client.ApiClient() as api_client:
217208
Name | Type | Description | Notes
218209
------------- | ------------- | ------------- | -------------
219210
**id** | **str**| |
220-
**filter** | **str**| Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title=='Some Title';description=='desc'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty=='Value 123'). | [optional]
221211

222212
### Return type
223213

@@ -266,22 +256,13 @@ with gooddata_api_client.ApiClient() as api_client:
266256
# Create an instance of the API class
267257
api_instance = appearance_api.AppearanceApi(api_client)
268258
id = "/6bUUGjjNSwg0_bs" # str |
269-
filter = "name==someString;content==JsonNodeValue" # str | Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title=='Some Title';description=='desc'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty=='Value 123'). (optional)
270259

271260
# example passing only required values which don't have defaults set
272261
try:
273262
# Delete Theming
274263
api_instance.delete_entity_themes(id)
275264
except gooddata_api_client.ApiException as e:
276265
print("Exception when calling AppearanceApi->delete_entity_themes: %s\n" % e)
277-
278-
# example passing only required values which don't have defaults set
279-
# and optional values
280-
try:
281-
# Delete Theming
282-
api_instance.delete_entity_themes(id, filter=filter)
283-
except gooddata_api_client.ApiException as e:
284-
print("Exception when calling AppearanceApi->delete_entity_themes: %s\n" % e)
285266
```
286267

287268

@@ -290,7 +271,6 @@ with gooddata_api_client.ApiClient() as api_client:
290271
Name | Type | Description | Notes
291272
------------- | ------------- | ------------- | -------------
292273
**id** | **str**| |
293-
**filter** | **str**| Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title=='Some Title';description=='desc'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty=='Value 123'). | [optional]
294274

295275
### Return type
296276

Lines changed: 108 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,108 @@
1+
# gooddata_api_client.AutomationResultControllerApi
2+
3+
All URIs are relative to *http://localhost*
4+
5+
Method | HTTP request | Description
6+
------------- | ------------- | -------------
7+
[**search_entities_automation_results**](AutomationResultControllerApi.md#search_entities_automation_results) | **POST** /api/v1/entities/workspaces/{workspaceId}/automationResults/search | The search endpoint (beta)
8+
9+
10+
# **search_entities_automation_results**
11+
> JsonApiAutomationResultOutList search_entities_automation_results(workspace_id, entity_search_body)
12+
13+
The search endpoint (beta)
14+
15+
### Example
16+
17+
18+
```python
19+
import time
20+
import gooddata_api_client
21+
from gooddata_api_client.api import automation_result_controller_api
22+
from gooddata_api_client.model.json_api_automation_result_out_list import JsonApiAutomationResultOutList
23+
from gooddata_api_client.model.entity_search_body import EntitySearchBody
24+
from pprint import pprint
25+
# Defining the host is optional and defaults to http://localhost
26+
# See configuration.py for a list of all supported configuration parameters.
27+
configuration = gooddata_api_client.Configuration(
28+
host = "http://localhost"
29+
)
30+
31+
32+
# Enter a context with an instance of the API client
33+
with gooddata_api_client.ApiClient() as api_client:
34+
# Create an instance of the API class
35+
api_instance = automation_result_controller_api.AutomationResultControllerApi(api_client)
36+
workspace_id = "workspaceId_example" # str |
37+
entity_search_body = EntitySearchBody(
38+
filter="filter_example",
39+
include=[
40+
"include_example",
41+
],
42+
meta_include=[
43+
"meta_include_example",
44+
],
45+
page=EntitySearchPage(
46+
index=0,
47+
size=100,
48+
),
49+
sort=[
50+
EntitySearchSort(
51+
direction="ASC",
52+
_property="_property_example",
53+
),
54+
],
55+
) # EntitySearchBody | Search request body with filter, pagination, and sorting options
56+
origin = "ALL" # str | (optional) if omitted the server will use the default value of "ALL"
57+
x_gdc_validate_relations = False # bool | (optional) if omitted the server will use the default value of False
58+
59+
# example passing only required values which don't have defaults set
60+
try:
61+
# The search endpoint (beta)
62+
api_response = api_instance.search_entities_automation_results(workspace_id, entity_search_body)
63+
pprint(api_response)
64+
except gooddata_api_client.ApiException as e:
65+
print("Exception when calling AutomationResultControllerApi->search_entities_automation_results: %s\n" % e)
66+
67+
# example passing only required values which don't have defaults set
68+
# and optional values
69+
try:
70+
# The search endpoint (beta)
71+
api_response = api_instance.search_entities_automation_results(workspace_id, entity_search_body, origin=origin, x_gdc_validate_relations=x_gdc_validate_relations)
72+
pprint(api_response)
73+
except gooddata_api_client.ApiException as e:
74+
print("Exception when calling AutomationResultControllerApi->search_entities_automation_results: %s\n" % e)
75+
```
76+
77+
78+
### Parameters
79+
80+
Name | Type | Description | Notes
81+
------------- | ------------- | ------------- | -------------
82+
**workspace_id** | **str**| |
83+
**entity_search_body** | [**EntitySearchBody**](EntitySearchBody.md)| Search request body with filter, pagination, and sorting options |
84+
**origin** | **str**| | [optional] if omitted the server will use the default value of "ALL"
85+
**x_gdc_validate_relations** | **bool**| | [optional] if omitted the server will use the default value of False
86+
87+
### Return type
88+
89+
[**JsonApiAutomationResultOutList**](JsonApiAutomationResultOutList.md)
90+
91+
### Authorization
92+
93+
No authorization required
94+
95+
### HTTP request headers
96+
97+
- **Content-Type**: application/json
98+
- **Accept**: application/json, application/vnd.gooddata.api+json
99+
100+
101+
### HTTP response details
102+
103+
| Status code | Description | Response headers |
104+
|-------------|-------------|------------------|
105+
**200** | Request successfully processed | - |
106+
107+
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
108+

gooddata-api-client/docs/AutomationsApi.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Method | HTTP request | Description
1515
[**patch_entity_automations**](AutomationsApi.md#patch_entity_automations) | **PATCH** /api/v1/entities/workspaces/{workspaceId}/automations/{objectId} | Patch an Automation
1616
[**pause_organization_automations**](AutomationsApi.md#pause_organization_automations) | **POST** /api/v1/actions/organization/automations/pause | Pause selected automations across all workspaces
1717
[**pause_workspace_automations**](AutomationsApi.md#pause_workspace_automations) | **POST** /api/v1/actions/workspaces/{workspaceId}/automations/pause | Pause selected automations in the workspace
18-
[**search_entities_automation_results**](AutomationsApi.md#search_entities_automation_results) | **POST** /api/v1/entities/workspaces/{workspaceId}/automationResults/search | Search request for AutomationResult
18+
[**search_entities_automation_results**](AutomationsApi.md#search_entities_automation_results) | **POST** /api/v1/entities/workspaces/{workspaceId}/automationResults/search | The search endpoint (beta)
1919
[**search_entities_automations**](AutomationsApi.md#search_entities_automations) | **POST** /api/v1/entities/workspaces/{workspaceId}/automations/search | The search endpoint (beta)
2020
[**set_automations**](AutomationsApi.md#set_automations) | **PUT** /api/v1/layout/workspaces/{workspaceId}/automations | Set automations
2121
[**trigger_automation**](AutomationsApi.md#trigger_automation) | **POST** /api/v1/actions/workspaces/{workspaceId}/automations/trigger | Trigger automation.
@@ -1442,7 +1442,7 @@ No authorization required
14421442
# **search_entities_automation_results**
14431443
> JsonApiAutomationResultOutList search_entities_automation_results(workspace_id, entity_search_body)
14441444
1445-
Search request for AutomationResult
1445+
The search endpoint (beta)
14461446

14471447
### Example
14481448

@@ -1490,7 +1490,7 @@ with gooddata_api_client.ApiClient() as api_client:
14901490

14911491
# example passing only required values which don't have defaults set
14921492
try:
1493-
# Search request for AutomationResult
1493+
# The search endpoint (beta)
14941494
api_response = api_instance.search_entities_automation_results(workspace_id, entity_search_body)
14951495
pprint(api_response)
14961496
except gooddata_api_client.ApiException as e:
@@ -1499,7 +1499,7 @@ with gooddata_api_client.ApiClient() as api_client:
14991499
# example passing only required values which don't have defaults set
15001500
# and optional values
15011501
try:
1502-
# Search request for AutomationResult
1502+
# The search endpoint (beta)
15031503
api_response = api_instance.search_entities_automation_results(workspace_id, entity_search_body, origin=origin, x_gdc_validate_relations=x_gdc_validate_relations)
15041504
pprint(api_response)
15051505
except gooddata_api_client.ApiException as e:

gooddata-api-client/docs/CSPDirectivesApi.md

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -117,22 +117,13 @@ with gooddata_api_client.ApiClient() as api_client:
117117
# Create an instance of the API class
118118
api_instance = csp_directives_api.CSPDirectivesApi(api_client)
119119
id = "/6bUUGjjNSwg0_bs" # str |
120-
filter = "sources==v1,v2,v3" # str | Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title=='Some Title';description=='desc'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty=='Value 123'). (optional)
121120

122121
# example passing only required values which don't have defaults set
123122
try:
124123
# Delete CSP Directives
125124
api_instance.delete_entity_csp_directives(id)
126125
except gooddata_api_client.ApiException as e:
127126
print("Exception when calling CSPDirectivesApi->delete_entity_csp_directives: %s\n" % e)
128-
129-
# example passing only required values which don't have defaults set
130-
# and optional values
131-
try:
132-
# Delete CSP Directives
133-
api_instance.delete_entity_csp_directives(id, filter=filter)
134-
except gooddata_api_client.ApiException as e:
135-
print("Exception when calling CSPDirectivesApi->delete_entity_csp_directives: %s\n" % e)
136127
```
137128

138129

@@ -141,7 +132,6 @@ with gooddata_api_client.ApiClient() as api_client:
141132
Name | Type | Description | Notes
142133
------------- | ------------- | ------------- | -------------
143134
**id** | **str**| |
144-
**filter** | **str**| Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title=='Some Title';description=='desc'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty=='Value 123'). | [optional]
145135

146136
### Return type
147137

0 commit comments

Comments
 (0)