Skip to content

Commit db7dcd8

Browse files
committed
chore: regenerate api-client against staging
Generated with `make api-client STAGING=1`
1 parent a1ccba8 commit db7dcd8

420 files changed

Lines changed: 66975 additions & 11853 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: 184 additions & 28 deletions
Large diffs are not rendered by default.

gooddata-api-client/README.md

Lines changed: 177 additions & 23 deletions
Large diffs are not rendered by default.

gooddata-api-client/docs/AFM.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Top level executable entity. Combination of [A]ttributes, [F]ilters & [M]etrics.
66
Name | Type | Description | Notes
77
------------ | ------------- | ------------- | -------------
88
**attributes** | [**[AttributeItem]**](AttributeItem.md) | Attributes to be used in the computation. |
9-
**filters** | [**[AFMFiltersInner]**](AFMFiltersInner.md) | Various filter types to filter the execution result. |
9+
**filters** | [**[FilterDefinition]**](FilterDefinition.md) | Various filter types to filter the execution result. |
1010
**measures** | [**[MeasureItem]**](MeasureItem.md) | Metrics to be computed. |
1111
**aux_measures** | [**[MeasureItem]**](MeasureItem.md) | Metrics to be referenced from other AFM objects (e.g. filters) but not included in the result. | [optional]
1212
**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]

gooddata-api-client/docs/AFMFiltersInner.md

Lines changed: 0 additions & 21 deletions
This file was deleted.

gooddata-api-client/docs/AIApi.md

Lines changed: 459 additions & 64 deletions
Large diffs are not rendered by default.

gooddata-api-client/docs/AILakeApi.md

Lines changed: 58 additions & 78 deletions
Large diffs are not rendered by default.

gooddata-api-client/docs/AILakeDatabasesApi.md

Lines changed: 22 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ No authorization required
8989
[[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)
9090

9191
# **deprovision_ai_lake_database_instance**
92-
> {str: (bool, date, datetime, dict, float, int, list, str, none_type)} deprovision_ai_lake_database_instance(instance_id)
92+
> deprovision_ai_lake_database_instance(instance_id)
9393
9494
(BETA) Delete an existing AILake Database instance
9595

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

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

146144
### Return type
147145

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

150148
### Authorization
151149

@@ -154,7 +152,7 @@ No authorization required
154152
### HTTP request headers
155153

156154
- **Content-Type**: Not defined
157-
- **Accept**: application/json
155+
- **Accept**: Not defined
158156

159157

160158
### HTTP response details
@@ -260,8 +258,8 @@ with gooddata_api_client.ApiClient() as api_client:
260258
# Create an instance of the API class
261259
api_instance = ai_lake_databases_api.AILakeDatabasesApi(api_client)
262260
instance_id = "instanceId_example" # str | Database instance identifier. Accepts the database name (preferred) or UUID.
263-
page = "0" # str | Zero-based page number. (optional) if omitted the server will use the default value of "0"
264-
size = "50" # str | Number of items per page. (optional) if omitted the server will use the default value of "50"
261+
page = 0 # int | Zero-based page number. (optional) if omitted the server will use the default value of 0
262+
size = 50 # int | Number of items per page. (optional) if omitted the server will use the default value of 50
265263
meta_include = [
266264
"metaInclude_example",
267265
] # [str] | (optional)
@@ -290,8 +288,8 @@ with gooddata_api_client.ApiClient() as api_client:
290288
Name | Type | Description | Notes
291289
------------- | ------------- | ------------- | -------------
292290
**instance_id** | **str**| Database instance identifier. Accepts the database name (preferred) or UUID. |
293-
**page** | **str**| Zero-based page number. | [optional] if omitted the server will use the default value of "0"
294-
**size** | **str**| Number of items per page. | [optional] if omitted the server will use the default value of "50"
291+
**page** | **int**| Zero-based page number. | [optional] if omitted the server will use the default value of 0
292+
**size** | **int**| Number of items per page. | [optional] if omitted the server will use the default value of 50
295293
**meta_include** | **[str]**| | [optional]
296294

297295
### Return type
@@ -343,8 +341,8 @@ configuration = gooddata_api_client.Configuration(
343341
with gooddata_api_client.ApiClient() as api_client:
344342
# Create an instance of the API class
345343
api_instance = ai_lake_databases_api.AILakeDatabasesApi(api_client)
346-
page = "0" # str | Zero-based page number. (optional) if omitted the server will use the default value of "0"
347-
size = "50" # str | Number of items per page. (optional) if omitted the server will use the default value of "50"
344+
page = 0 # int | Zero-based page number. (optional) if omitted the server will use the default value of 0
345+
size = 50 # int | Number of items per page. (optional) if omitted the server will use the default value of 50
348346
meta_include = [
349347
"metaInclude_example",
350348
] # [str] | (optional)
@@ -364,8 +362,8 @@ with gooddata_api_client.ApiClient() as api_client:
364362

365363
Name | Type | Description | Notes
366364
------------- | ------------- | ------------- | -------------
367-
**page** | **str**| Zero-based page number. | [optional] if omitted the server will use the default value of "0"
368-
**size** | **str**| Number of items per page. | [optional] if omitted the server will use the default value of "50"
365+
**page** | **int**| Zero-based page number. | [optional] if omitted the server will use the default value of 0
366+
**size** | **int**| Number of items per page. | [optional] if omitted the server will use the default value of 50
369367
**meta_include** | **[str]**| | [optional]
370368

371369
### Return type
@@ -417,8 +415,8 @@ configuration = gooddata_api_client.Configuration(
417415
with gooddata_api_client.ApiClient() as api_client:
418416
# Create an instance of the API class
419417
api_instance = ai_lake_databases_api.AILakeDatabasesApi(api_client)
420-
page = "0" # str | Zero-based page number. (optional) if omitted the server will use the default value of "0"
421-
size = "50" # str | Number of items per page. (optional) if omitted the server will use the default value of "50"
418+
page = 0 # int | Zero-based page number. (optional) if omitted the server will use the default value of 0
419+
size = 50 # int | Number of items per page. (optional) if omitted the server will use the default value of 50
422420
meta_include = [
423421
"metaInclude_example",
424422
] # [str] | (optional)
@@ -438,8 +436,8 @@ with gooddata_api_client.ApiClient() as api_client:
438436

439437
Name | Type | Description | Notes
440438
------------- | ------------- | ------------- | -------------
441-
**page** | **str**| Zero-based page number. | [optional] if omitted the server will use the default value of "0"
442-
**size** | **str**| Number of items per page. | [optional] if omitted the server will use the default value of "50"
439+
**page** | **int**| Zero-based page number. | [optional] if omitted the server will use the default value of 0
440+
**size** | **int**| Number of items per page. | [optional] if omitted the server will use the default value of 50
443441
**meta_include** | **[str]**| | [optional]
444442

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

467465
# **provision_ai_lake_database_instance**
468-
> {str: (bool, date, datetime, dict, float, int, list, str, none_type)} provision_ai_lake_database_instance(provision_database_instance_request)
466+
> provision_ai_lake_database_instance(provision_database_instance_request)
469467
470468
(BETA) Create a new AILake Database instance
471469

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

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

530526
### Return type
531527

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

534530
### Authorization
535531

@@ -538,7 +534,7 @@ No authorization required
538534
### HTTP request headers
539535

540536
- **Content-Type**: application/json
541-
- **Accept**: application/json
537+
- **Accept**: Not defined
542538

543539

544540
### HTTP response details

0 commit comments

Comments
 (0)