Skip to content

Commit 0ef0107

Browse files
committed
chore: regenerate API client from updated OpenAPI spec
Update all auto-generated API client code (docs, api, models) and schema JSON files to match the latest OpenAPI specification.
1 parent e650ab3 commit 0ef0107

148 files changed

Lines changed: 10003 additions & 44165 deletions

File tree

Some content is hidden

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

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

Lines changed: 102 additions & 8 deletions
Large diffs are not rendered by default.

gooddata-api-client/README.md

Lines changed: 238 additions & 203 deletions
Large diffs are not rendered by default.

gooddata-api-client/docs/AIApi.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Method | HTTP request | Description
1717
[**metadata_sync_organization**](AIApi.md#metadata_sync_organization) | **POST** /api/v1/actions/organization/metadataSync | (BETA) Sync organization scope Metadata to other services
1818
[**patch_entity_knowledge_recommendations**](AIApi.md#patch_entity_knowledge_recommendations) | **PATCH** /api/v1/entities/workspaces/{workspaceId}/knowledgeRecommendations/{objectId} |
1919
[**patch_entity_memory_items**](AIApi.md#patch_entity_memory_items) | **PATCH** /api/v1/entities/workspaces/{workspaceId}/memoryItems/{objectId} |
20-
[**search_entities_knowledge_recommendations**](AIApi.md#search_entities_knowledge_recommendations) | **POST** /api/v1/entities/workspaces/{workspaceId}/knowledgeRecommendations/search |
20+
[**search_entities_knowledge_recommendations**](AIApi.md#search_entities_knowledge_recommendations) | **POST** /api/v1/entities/workspaces/{workspaceId}/knowledgeRecommendations/search | The search endpoint (beta)
2121
[**search_entities_memory_items**](AIApi.md#search_entities_memory_items) | **POST** /api/v1/entities/workspaces/{workspaceId}/memoryItems/search | Search request for MemoryItem
2222
[**update_entity_knowledge_recommendations**](AIApi.md#update_entity_knowledge_recommendations) | **PUT** /api/v1/entities/workspaces/{workspaceId}/knowledgeRecommendations/{objectId} |
2323
[**update_entity_memory_items**](AIApi.md#update_entity_memory_items) | **PUT** /api/v1/entities/workspaces/{workspaceId}/memoryItems/{objectId} |
@@ -1157,7 +1157,7 @@ No authorization required
11571157
# **search_entities_knowledge_recommendations**
11581158
> JsonApiKnowledgeRecommendationOutList search_entities_knowledge_recommendations(workspace_id, entity_search_body)
11591159
1160-
1160+
The search endpoint (beta)
11611161

11621162
### Example
11631163

@@ -1205,6 +1205,7 @@ with gooddata_api_client.ApiClient() as api_client:
12051205

12061206
# example passing only required values which don't have defaults set
12071207
try:
1208+
# The search endpoint (beta)
12081209
api_response = api_instance.search_entities_knowledge_recommendations(workspace_id, entity_search_body)
12091210
pprint(api_response)
12101211
except gooddata_api_client.ApiException as e:
@@ -1213,6 +1214,7 @@ with gooddata_api_client.ApiClient() as api_client:
12131214
# example passing only required values which don't have defaults set
12141215
# and optional values
12151216
try:
1217+
# The search endpoint (beta)
12161218
api_response = api_instance.search_entities_knowledge_recommendations(workspace_id, entity_search_body, origin=origin, x_gdc_validate_relations=x_gdc_validate_relations)
12171219
pprint(api_response)
12181220
except gooddata_api_client.ApiException as e:

gooddata-api-client/docs/AILakeApi.md

Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ Method | HTTP request | Description
77
[**deprovision_ai_lake_database_instance**](AILakeApi.md#deprovision_ai_lake_database_instance) | **DELETE** /api/v1/ailake/database/instances/{instanceId} | (BETA) Delete an existing AILake Database instance
88
[**get_ai_lake_database_instance**](AILakeApi.md#get_ai_lake_database_instance) | **GET** /api/v1/ailake/database/instances/{instanceId} | (BETA) Get the specified AILake Database instance
99
[**get_ai_lake_operation**](AILakeApi.md#get_ai_lake_operation) | **GET** /api/v1/ailake/operations/{operationId} | (BETA) Get Long Running Operation details
10+
[**get_ai_lake_service_status**](AILakeApi.md#get_ai_lake_service_status) | **GET** /api/v1/ailake/services/{serviceId}/status | (BETA) Get AI Lake service status
1011
[**list_ai_lake_database_instances**](AILakeApi.md#list_ai_lake_database_instances) | **GET** /api/v1/ailake/database/instances | (BETA) List AI Lake Database instances
1112
[**list_ai_lake_services**](AILakeApi.md#list_ai_lake_services) | **GET** /api/v1/ailake/services | (BETA) List AI Lake services
1213
[**provision_ai_lake_database_instance**](AILakeApi.md#provision_ai_lake_database_instance) | **POST** /api/v1/ailake/database/instances | (BETA) Create a new AILake Database instance
@@ -224,6 +225,73 @@ No authorization required
224225

225226
[[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)
226227

228+
# **get_ai_lake_service_status**
229+
> GetServiceStatusResponse get_ai_lake_service_status(service_id)
230+
231+
(BETA) Get AI Lake service status
232+
233+
(BETA) Returns the status of a service in the organization's AI Lake. The status is controller-specific (e.g., available commands, readiness).
234+
235+
### Example
236+
237+
238+
```python
239+
import time
240+
import gooddata_api_client
241+
from gooddata_api_client.api import ai_lake_api
242+
from gooddata_api_client.model.get_service_status_response import GetServiceStatusResponse
243+
from pprint import pprint
244+
# Defining the host is optional and defaults to http://localhost
245+
# See configuration.py for a list of all supported configuration parameters.
246+
configuration = gooddata_api_client.Configuration(
247+
host = "http://localhost"
248+
)
249+
250+
251+
# Enter a context with an instance of the API client
252+
with gooddata_api_client.ApiClient() as api_client:
253+
# Create an instance of the API class
254+
api_instance = ai_lake_api.AILakeApi(api_client)
255+
service_id = "serviceId_example" # str |
256+
257+
# example passing only required values which don't have defaults set
258+
try:
259+
# (BETA) Get AI Lake service status
260+
api_response = api_instance.get_ai_lake_service_status(service_id)
261+
pprint(api_response)
262+
except gooddata_api_client.ApiException as e:
263+
print("Exception when calling AILakeApi->get_ai_lake_service_status: %s\n" % e)
264+
```
265+
266+
267+
### Parameters
268+
269+
Name | Type | Description | Notes
270+
------------- | ------------- | ------------- | -------------
271+
**service_id** | **str**| |
272+
273+
### Return type
274+
275+
[**GetServiceStatusResponse**](GetServiceStatusResponse.md)
276+
277+
### Authorization
278+
279+
No authorization required
280+
281+
### HTTP request headers
282+
283+
- **Content-Type**: Not defined
284+
- **Accept**: application/json
285+
286+
287+
### HTTP response details
288+
289+
| Status code | Description | Response headers |
290+
|-------------|-------------|------------------|
291+
**200** | AI Lake service status successfully retrieved | - |
292+
293+
[[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)
294+
227295
# **list_ai_lake_database_instances**
228296
> ListDatabaseInstancesResponse list_ai_lake_database_instances()
229297

0 commit comments

Comments
 (0)