Skip to content
Merged
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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions gooddata-api-client/.openapi-generator/FILES
Original file line number Diff line number Diff line change
Expand Up @@ -229,8 +229,10 @@ docs/EntityIdentifier.md
docs/ExecutionLinks.md
docs/ExecutionResponse.md
docs/ExecutionResult.md
docs/ExecutionResultDataSourceMessage.md
docs/ExecutionResultGrandTotal.md
docs/ExecutionResultHeader.md
docs/ExecutionResultMetadata.md
docs/ExecutionResultPaging.md
docs/ExecutionSettings.md
docs/ExportDefinitionsApi.md
Expand Down Expand Up @@ -1242,8 +1244,10 @@ gooddata_api_client/model/entity_identifier.py
gooddata_api_client/model/execution_links.py
gooddata_api_client/model/execution_response.py
gooddata_api_client/model/execution_result.py
gooddata_api_client/model/execution_result_data_source_message.py
gooddata_api_client/model/execution_result_grand_total.py
gooddata_api_client/model/execution_result_header.py
gooddata_api_client/model/execution_result_metadata.py
gooddata_api_client/model/execution_result_paging.py
gooddata_api_client/model/execution_settings.py
gooddata_api_client/model/export_request.py
Expand Down
2 changes: 2 additions & 0 deletions gooddata-api-client/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1111,8 +1111,10 @@ Class | Method | HTTP request | Description
- [ExecutionLinks](docs/ExecutionLinks.md)
- [ExecutionResponse](docs/ExecutionResponse.md)
- [ExecutionResult](docs/ExecutionResult.md)
- [ExecutionResultDataSourceMessage](docs/ExecutionResultDataSourceMessage.md)
- [ExecutionResultGrandTotal](docs/ExecutionResultGrandTotal.md)
- [ExecutionResultHeader](docs/ExecutionResultHeader.md)
- [ExecutionResultMetadata](docs/ExecutionResultMetadata.md)
- [ExecutionResultPaging](docs/ExecutionResultPaging.md)
- [ExecutionSettings](docs/ExecutionSettings.md)
- [ExportRequest](docs/ExportRequest.md)
Expand Down
4 changes: 2 additions & 2 deletions gooddata-api-client/docs/ActionsApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -710,7 +710,7 @@ No authorization required

Applies all the given cancel tokens.

Each cancel token corresponds to one unique execution request for the same result id. If all cancel tokens for the same result id are applied, the execution for this result id is canceled.
Each cancel token corresponds to one unique execution request for the same result id. If all cancel tokens for the same result id are applied, the execution for this result id is cancelled.

### Example

Expand Down Expand Up @@ -774,7 +774,7 @@ No authorization required

| Status code | Description | Response headers |
|-------------|-------------|------------------|
**200** | Status of the cancelling operation. | - |
**200** | Status of the cancellation operation. | - |

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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ Name | Type | Description | Notes
**column_name** | **str** | Workspace Data Filters column name. Data are filtered using this physical column. |
**id** | **str** | Workspace Data Filters ID. This ID is further used to refer to this instance. |
**title** | **str** | Workspace Data Filters title. |
**workspace** | [**WorkspaceIdentifier**](WorkspaceIdentifier.md) | |
**workspace_data_filter_settings** | [**[DeclarativeWorkspaceDataFilterSetting]**](DeclarativeWorkspaceDataFilterSetting.md) | Filter settings specifying values of filters valid for the workspace. |
**description** | **str** | Workspace Data Filters description. | [optional]
**workspace** | [**WorkspaceIdentifier**](WorkspaceIdentifier.md) | | [optional]
**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]

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
Expand Down
1 change: 1 addition & 0 deletions gooddata-api-client/docs/ExecutionResult.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ Name | Type | Description | Notes
**data** | **[{str: (bool, date, datetime, dict, float, int, list, str, none_type)}]** | A multi-dimensional array of computed results. The most common one being a 2-dimensional array. The arrays can be composed of Double or null values. |
**dimension_headers** | [**[DimensionHeader]**](DimensionHeader.md) | An array containing dimension headers. The size of the array corresponds to the number of dimensions. Their order corresponds to the dimension order in the execution result spec. |
**grand_totals** | [**[ExecutionResultGrandTotal]**](ExecutionResultGrandTotal.md) | |
**metadata** | [**ExecutionResultMetadata**](ExecutionResultMetadata.md) | |
**paging** | [**ExecutionResultPaging**](ExecutionResultPaging.md) | |
**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]

Expand Down
16 changes: 16 additions & 0 deletions gooddata-api-client/docs/ExecutionResultDataSourceMessage.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# ExecutionResultDataSourceMessage

A piece of extra information related to the results (e.g. debug information, warnings, etc.).

## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**correlation_id** | **str** | Id correlating different pieces of supplementary info together. |
**source** | **str** | Information about what part of the system created this piece of supplementary info. |
**type** | **str** | Type of the supplementary info instance. There are currently no well-known values for this, but there might be some in the future. |
**data** | **{str: (bool, date, datetime, dict, float, int, list, str, none_type)}** | Data of this particular supplementary info item: a free-form JSON specific to the particular supplementary info item type. | [optional]
**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]

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


13 changes: 13 additions & 0 deletions gooddata-api-client/docs/ExecutionResultMetadata.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# ExecutionResultMetadata

Additional metadata for the particular execution result.

## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**data_source_messages** | [**[ExecutionResultDataSourceMessage]**](ExecutionResultDataSourceMessage.md) | Additional information sent by the underlying data source. |
**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]

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


Original file line number Diff line number Diff line change
Expand Up @@ -5261,7 +5261,7 @@ def cancel_executions(
):
"""Applies all the given cancel tokens. # noqa: E501

Each cancel token corresponds to one unique execution request for the same result id. If all cancel tokens for the same result id are applied, the execution for this result id is canceled. # noqa: E501
Each cancel token corresponds to one unique execution request for the same result id. If all cancel tokens for the same result id are applied, the execution for this result id is cancelled. # noqa: E501
This method makes a synchronous HTTP request by default. To make an
asynchronous HTTP request, please pass async_req=True

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ class DeclarativeDataSource(ModelNormal):
'MOTHERDUCK': "MOTHERDUCK",
'FLEXCONNECT': "FLEXCONNECT",
'STARROCKS': "STARROCKS",
'ATHENA': "ATHENA",
},
('cache_strategy',): {
'ALWAYS': "ALWAYS",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ class DeclarativeSingleWorkspacePermission(ModelNormal):
'EXPORT_TABULAR': "EXPORT_TABULAR",
'EXPORT_PDF': "EXPORT_PDF",
'CREATE_AUTOMATION': "CREATE_AUTOMATION",
'USE_AI_ASSISTANT': "USE_AI_ASSISTANT",
'CREATE_FILTER_VIEW': "CREATE_FILTER_VIEW",
'VIEW': "VIEW",
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,9 +107,9 @@ def openapi_types():
'column_name': (str,), # noqa: E501
'id': (str,), # noqa: E501
'title': (str,), # noqa: E501
'workspace': (WorkspaceIdentifier,), # noqa: E501
'workspace_data_filter_settings': ([DeclarativeWorkspaceDataFilterSetting],), # noqa: E501
'description': (str,), # noqa: E501
'workspace': (WorkspaceIdentifier,), # noqa: E501
}

@cached_property
Expand All @@ -121,9 +121,9 @@ def discriminator():
'column_name': 'columnName', # noqa: E501
'id': 'id', # noqa: E501
'title': 'title', # noqa: E501
'workspace': 'workspace', # noqa: E501
'workspace_data_filter_settings': 'workspaceDataFilterSettings', # noqa: E501
'description': 'description', # noqa: E501
'workspace': 'workspace', # noqa: E501
}

read_only_vars = {
Expand All @@ -133,13 +133,14 @@ def discriminator():

@classmethod
@convert_js_args_to_python_args
def _from_openapi_data(cls, column_name, id, title, workspace_data_filter_settings, *args, **kwargs): # noqa: E501
def _from_openapi_data(cls, column_name, id, title, workspace, workspace_data_filter_settings, *args, **kwargs): # noqa: E501
"""DeclarativeWorkspaceDataFilter - a model defined in OpenAPI

Args:
column_name (str): Workspace Data Filters column name. Data are filtered using this physical column.
id (str): Workspace Data Filters ID. This ID is further used to refer to this instance.
title (str): Workspace Data Filters title.
workspace (WorkspaceIdentifier):
workspace_data_filter_settings ([DeclarativeWorkspaceDataFilterSetting]): Filter settings specifying values of filters valid for the workspace.

Keyword Args:
Expand Down Expand Up @@ -174,7 +175,6 @@ def _from_openapi_data(cls, column_name, id, title, workspace_data_filter_settin
through its discriminator because we passed in
_visited_composed_classes = (Animal,)
description (str): Workspace Data Filters description.. [optional] # noqa: E501
workspace (WorkspaceIdentifier): [optional] # noqa: E501
"""

_check_type = kwargs.pop('_check_type', True)
Expand Down Expand Up @@ -209,6 +209,7 @@ def _from_openapi_data(cls, column_name, id, title, workspace_data_filter_settin
self.column_name = column_name
self.id = id
self.title = title
self.workspace = workspace
self.workspace_data_filter_settings = workspace_data_filter_settings
for var_name, var_value in kwargs.items():
if var_name not in self.attribute_map and \
Expand All @@ -230,13 +231,14 @@ def _from_openapi_data(cls, column_name, id, title, workspace_data_filter_settin
])

@convert_js_args_to_python_args
def __init__(self, column_name, id, title, workspace_data_filter_settings, *args, **kwargs): # noqa: E501
def __init__(self, column_name, id, title, workspace, workspace_data_filter_settings, *args, **kwargs): # noqa: E501
"""DeclarativeWorkspaceDataFilter - a model defined in OpenAPI

Args:
column_name (str): Workspace Data Filters column name. Data are filtered using this physical column.
id (str): Workspace Data Filters ID. This ID is further used to refer to this instance.
title (str): Workspace Data Filters title.
workspace (WorkspaceIdentifier):
workspace_data_filter_settings ([DeclarativeWorkspaceDataFilterSetting]): Filter settings specifying values of filters valid for the workspace.

Keyword Args:
Expand Down Expand Up @@ -271,7 +273,6 @@ def __init__(self, column_name, id, title, workspace_data_filter_settings, *args
through its discriminator because we passed in
_visited_composed_classes = (Animal,)
description (str): Workspace Data Filters description.. [optional] # noqa: E501
workspace (WorkspaceIdentifier): [optional] # noqa: E501
"""

_check_type = kwargs.pop('_check_type', True)
Expand Down Expand Up @@ -304,6 +305,7 @@ def __init__(self, column_name, id, title, workspace_data_filter_settings, *args
self.column_name = column_name
self.id = id
self.title = title
self.workspace = workspace
self.workspace_data_filter_settings = workspace_data_filter_settings
for var_name, var_value in kwargs.items():
if var_name not in self.attribute_map and \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ class DeclarativeWorkspaceHierarchyPermission(ModelNormal):
'EXPORT_TABULAR': "EXPORT_TABULAR",
'EXPORT_PDF': "EXPORT_PDF",
'CREATE_AUTOMATION': "CREATE_AUTOMATION",
'USE_AI_ASSISTANT': "USE_AI_ASSISTANT",
'CREATE_FILTER_VIEW': "CREATE_FILTER_VIEW",
'VIEW': "VIEW",
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,11 @@
def lazy_import():
from gooddata_api_client.model.dimension_header import DimensionHeader
from gooddata_api_client.model.execution_result_grand_total import ExecutionResultGrandTotal
from gooddata_api_client.model.execution_result_metadata import ExecutionResultMetadata
from gooddata_api_client.model.execution_result_paging import ExecutionResultPaging
globals()['DimensionHeader'] = DimensionHeader
globals()['ExecutionResultGrandTotal'] = ExecutionResultGrandTotal
globals()['ExecutionResultMetadata'] = ExecutionResultMetadata
globals()['ExecutionResultPaging'] = ExecutionResultPaging


Expand Down Expand Up @@ -95,6 +97,7 @@ def openapi_types():
'data': ([{str: (bool, date, datetime, dict, float, int, list, str, none_type)}],), # noqa: E501
'dimension_headers': ([DimensionHeader],), # noqa: E501
'grand_totals': ([ExecutionResultGrandTotal],), # noqa: E501
'metadata': (ExecutionResultMetadata,), # noqa: E501
'paging': (ExecutionResultPaging,), # noqa: E501
}

Expand All @@ -107,6 +110,7 @@ def discriminator():
'data': 'data', # noqa: E501
'dimension_headers': 'dimensionHeaders', # noqa: E501
'grand_totals': 'grandTotals', # noqa: E501
'metadata': 'metadata', # noqa: E501
'paging': 'paging', # noqa: E501
}

Expand All @@ -117,13 +121,14 @@ def discriminator():

@classmethod
@convert_js_args_to_python_args
def _from_openapi_data(cls, data, dimension_headers, grand_totals, paging, *args, **kwargs): # noqa: E501
def _from_openapi_data(cls, data, dimension_headers, grand_totals, metadata, paging, *args, **kwargs): # noqa: E501
"""ExecutionResult - a model defined in OpenAPI

Args:
data ([{str: (bool, date, datetime, dict, float, int, list, str, none_type)}]): A multi-dimensional array of computed results. The most common one being a 2-dimensional array. The arrays can be composed of Double or null values.
dimension_headers ([DimensionHeader]): An array containing dimension headers. The size of the array corresponds to the number of dimensions. Their order corresponds to the dimension order in the execution result spec.
grand_totals ([ExecutionResultGrandTotal]):
metadata (ExecutionResultMetadata):
paging (ExecutionResultPaging):

Keyword Args:
Expand Down Expand Up @@ -191,6 +196,7 @@ def _from_openapi_data(cls, data, dimension_headers, grand_totals, paging, *args
self.data = data
self.dimension_headers = dimension_headers
self.grand_totals = grand_totals
self.metadata = metadata
self.paging = paging
for var_name, var_value in kwargs.items():
if var_name not in self.attribute_map and \
Expand All @@ -212,13 +218,14 @@ def _from_openapi_data(cls, data, dimension_headers, grand_totals, paging, *args
])

@convert_js_args_to_python_args
def __init__(self, data, dimension_headers, grand_totals, paging, *args, **kwargs): # noqa: E501
def __init__(self, data, dimension_headers, grand_totals, metadata, paging, *args, **kwargs): # noqa: E501
"""ExecutionResult - a model defined in OpenAPI

Args:
data ([{str: (bool, date, datetime, dict, float, int, list, str, none_type)}]): A multi-dimensional array of computed results. The most common one being a 2-dimensional array. The arrays can be composed of Double or null values.
dimension_headers ([DimensionHeader]): An array containing dimension headers. The size of the array corresponds to the number of dimensions. Their order corresponds to the dimension order in the execution result spec.
grand_totals ([ExecutionResultGrandTotal]):
metadata (ExecutionResultMetadata):
paging (ExecutionResultPaging):

Keyword Args:
Expand Down Expand Up @@ -284,6 +291,7 @@ def __init__(self, data, dimension_headers, grand_totals, paging, *args, **kwarg
self.data = data
self.dimension_headers = dimension_headers
self.grand_totals = grand_totals
self.metadata = metadata
self.paging = paging
for var_name, var_value in kwargs.items():
if var_name not in self.attribute_map and \
Expand Down
Loading
Loading