Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
212 changes: 184 additions & 28 deletions gooddata-api-client/.openapi-generator/FILES

Large diffs are not rendered by default.

200 changes: 177 additions & 23 deletions gooddata-api-client/README.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion gooddata-api-client/docs/AFM.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Top level executable entity. Combination of [A]ttributes, [F]ilters & [M]etrics.
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**attributes** | [**[AttributeItem]**](AttributeItem.md) | Attributes to be used in the computation. |
**filters** | [**[AFMFiltersInner]**](AFMFiltersInner.md) | Various filter types to filter the execution result. |
**filters** | [**[FilterDefinition]**](FilterDefinition.md) | Various filter types to filter the execution result. |
**measures** | [**[MeasureItem]**](MeasureItem.md) | Metrics to be computed. |
**aux_measures** | [**[MeasureItem]**](MeasureItem.md) | Metrics to be referenced from other AFM objects (e.g. filters) but not included in the result. | [optional]
**measure_definition_overrides** | [**[MetricDefinitionOverride]**](MetricDefinitionOverride.md) | (EXPERIMENTAL) Override definitions of catalog metrics for this request. Allows substituting a catalog metric's MAQL definition without modifying the stored definition. | [optional]
Expand Down
21 changes: 0 additions & 21 deletions gooddata-api-client/docs/AFMFiltersInner.md

This file was deleted.

523 changes: 459 additions & 64 deletions gooddata-api-client/docs/AIApi.md

Large diffs are not rendered by default.

136 changes: 58 additions & 78 deletions gooddata-api-client/docs/AILakeApi.md

Large diffs are not rendered by default.

48 changes: 22 additions & 26 deletions gooddata-api-client/docs/AILakeDatabasesApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ No authorization required
[[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)

# **deprovision_ai_lake_database_instance**
> {str: (bool, date, datetime, dict, float, int, list, str, none_type)} deprovision_ai_lake_database_instance(instance_id)
> deprovision_ai_lake_database_instance(instance_id)

(BETA) Delete an existing AILake Database instance

Expand Down Expand Up @@ -120,17 +120,15 @@ with gooddata_api_client.ApiClient() as api_client:
# example passing only required values which don't have defaults set
try:
# (BETA) Delete an existing AILake Database instance
api_response = api_instance.deprovision_ai_lake_database_instance(instance_id)
pprint(api_response)
api_instance.deprovision_ai_lake_database_instance(instance_id)
except gooddata_api_client.ApiException as e:
print("Exception when calling AILakeDatabasesApi->deprovision_ai_lake_database_instance: %s\n" % e)

# example passing only required values which don't have defaults set
# and optional values
try:
# (BETA) Delete an existing AILake Database instance
api_response = api_instance.deprovision_ai_lake_database_instance(instance_id, operation_id=operation_id)
pprint(api_response)
api_instance.deprovision_ai_lake_database_instance(instance_id, operation_id=operation_id)
except gooddata_api_client.ApiException as e:
print("Exception when calling AILakeDatabasesApi->deprovision_ai_lake_database_instance: %s\n" % e)
```
Expand All @@ -145,7 +143,7 @@ Name | Type | Description | Notes

### Return type

**{str: (bool, date, datetime, dict, float, int, list, str, none_type)}**
void (empty response body)

### Authorization

Expand All @@ -154,7 +152,7 @@ No authorization required
### HTTP request headers

- **Content-Type**: Not defined
- **Accept**: application/json
- **Accept**: Not defined


### HTTP response details
Expand Down Expand Up @@ -260,8 +258,8 @@ with gooddata_api_client.ApiClient() as api_client:
# Create an instance of the API class
api_instance = ai_lake_databases_api.AILakeDatabasesApi(api_client)
instance_id = "instanceId_example" # str | Database instance identifier. Accepts the database name (preferred) or UUID.
page = "0" # str | Zero-based page number. (optional) if omitted the server will use the default value of "0"
size = "50" # str | Number of items per page. (optional) if omitted the server will use the default value of "50"
page = 0 # int | Zero-based page number. (optional) if omitted the server will use the default value of 0
size = 50 # int | Number of items per page. (optional) if omitted the server will use the default value of 50
meta_include = [
"metaInclude_example",
] # [str] | (optional)
Expand Down Expand Up @@ -290,8 +288,8 @@ with gooddata_api_client.ApiClient() as api_client:
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**instance_id** | **str**| Database instance identifier. Accepts the database name (preferred) or UUID. |
**page** | **str**| Zero-based page number. | [optional] if omitted the server will use the default value of "0"
**size** | **str**| Number of items per page. | [optional] if omitted the server will use the default value of "50"
**page** | **int**| Zero-based page number. | [optional] if omitted the server will use the default value of 0
**size** | **int**| Number of items per page. | [optional] if omitted the server will use the default value of 50
**meta_include** | **[str]**| | [optional]

### Return type
Expand Down Expand Up @@ -343,8 +341,8 @@ configuration = gooddata_api_client.Configuration(
with gooddata_api_client.ApiClient() as api_client:
# Create an instance of the API class
api_instance = ai_lake_databases_api.AILakeDatabasesApi(api_client)
page = "0" # str | Zero-based page number. (optional) if omitted the server will use the default value of "0"
size = "50" # str | Number of items per page. (optional) if omitted the server will use the default value of "50"
page = 0 # int | Zero-based page number. (optional) if omitted the server will use the default value of 0
size = 50 # int | Number of items per page. (optional) if omitted the server will use the default value of 50
meta_include = [
"metaInclude_example",
] # [str] | (optional)
Expand All @@ -364,8 +362,8 @@ with gooddata_api_client.ApiClient() as api_client:

Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**page** | **str**| Zero-based page number. | [optional] if omitted the server will use the default value of "0"
**size** | **str**| Number of items per page. | [optional] if omitted the server will use the default value of "50"
**page** | **int**| Zero-based page number. | [optional] if omitted the server will use the default value of 0
**size** | **int**| Number of items per page. | [optional] if omitted the server will use the default value of 50
**meta_include** | **[str]**| | [optional]

### Return type
Expand Down Expand Up @@ -417,8 +415,8 @@ configuration = gooddata_api_client.Configuration(
with gooddata_api_client.ApiClient() as api_client:
# Create an instance of the API class
api_instance = ai_lake_databases_api.AILakeDatabasesApi(api_client)
page = "0" # str | Zero-based page number. (optional) if omitted the server will use the default value of "0"
size = "50" # str | Number of items per page. (optional) if omitted the server will use the default value of "50"
page = 0 # int | Zero-based page number. (optional) if omitted the server will use the default value of 0
size = 50 # int | Number of items per page. (optional) if omitted the server will use the default value of 50
meta_include = [
"metaInclude_example",
] # [str] | (optional)
Expand All @@ -438,8 +436,8 @@ with gooddata_api_client.ApiClient() as api_client:

Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**page** | **str**| Zero-based page number. | [optional] if omitted the server will use the default value of "0"
**size** | **str**| Number of items per page. | [optional] if omitted the server will use the default value of "50"
**page** | **int**| Zero-based page number. | [optional] if omitted the server will use the default value of 0
**size** | **int**| Number of items per page. | [optional] if omitted the server will use the default value of 50
**meta_include** | **[str]**| | [optional]

### Return type
Expand All @@ -465,7 +463,7 @@ No authorization required
[[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)

# **provision_ai_lake_database_instance**
> {str: (bool, date, datetime, dict, float, int, list, str, none_type)} provision_ai_lake_database_instance(provision_database_instance_request)
> provision_ai_lake_database_instance(provision_database_instance_request)

(BETA) Create a new AILake Database instance

Expand Down Expand Up @@ -504,17 +502,15 @@ with gooddata_api_client.ApiClient() as api_client:
# example passing only required values which don't have defaults set
try:
# (BETA) Create a new AILake Database instance
api_response = api_instance.provision_ai_lake_database_instance(provision_database_instance_request)
pprint(api_response)
api_instance.provision_ai_lake_database_instance(provision_database_instance_request)
except gooddata_api_client.ApiException as e:
print("Exception when calling AILakeDatabasesApi->provision_ai_lake_database_instance: %s\n" % e)

# example passing only required values which don't have defaults set
# and optional values
try:
# (BETA) Create a new AILake Database instance
api_response = api_instance.provision_ai_lake_database_instance(provision_database_instance_request, operation_id=operation_id)
pprint(api_response)
api_instance.provision_ai_lake_database_instance(provision_database_instance_request, operation_id=operation_id)
except gooddata_api_client.ApiException as e:
print("Exception when calling AILakeDatabasesApi->provision_ai_lake_database_instance: %s\n" % e)
```
Expand All @@ -529,7 +525,7 @@ Name | Type | Description | Notes

### Return type

**{str: (bool, date, datetime, dict, float, int, list, str, none_type)}**
void (empty response body)

### Authorization

Expand All @@ -538,7 +534,7 @@ No authorization required
### HTTP request headers

- **Content-Type**: application/json
- **Accept**: application/json
- **Accept**: Not defined


### HTTP response details
Expand Down
Loading
Loading