Skip to content

Commit

Permalink
Merge pull request #510 from pcerny/pce/bump-client-r1.12
Browse files Browse the repository at this point in the history
TRIVIAL: regenerate api clients

Reviewed-by: https://github.com/Mara3l
  • Loading branch information
gdgate authored Jan 11, 2024
2 parents 15f08c2 + e2ebff9 commit 0d3192f
Show file tree
Hide file tree
Showing 219 changed files with 8,666 additions and 7,368 deletions.
4 changes: 4 additions & 0 deletions gooddata-api-client/.openapi-generator/FILES
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ docs/DeclarativeAnalyticalDashboardPermissionsInner.md
docs/DeclarativeAnalytics.md
docs/DeclarativeAnalyticsLayer.md
docs/DeclarativeAttribute.md
docs/DeclarativeAttributeHierarchy.md
docs/DeclarativeColorPalette.md
docs/DeclarativeColumn.md
docs/DeclarativeCspDirective.md
Expand Down Expand Up @@ -664,6 +665,7 @@ docs/UserPermission.md
docs/UserSettingsApi.md
docs/UsersDeclarativeAPIsApi.md
docs/UsersEntityAPIsApi.md
docs/ValidLabelElementsItem.md
docs/VisualizationObjectApi.md
docs/WorkspaceIdentifier.md
docs/WorkspaceObjectControllerApi.md
Expand Down Expand Up @@ -797,6 +799,7 @@ gooddata_api_client/model/declarative_analytical_dashboard_permissions_inner.py
gooddata_api_client/model/declarative_analytics.py
gooddata_api_client/model/declarative_analytics_layer.py
gooddata_api_client/model/declarative_attribute.py
gooddata_api_client/model/declarative_attribute_hierarchy.py
gooddata_api_client/model/declarative_color_palette.py
gooddata_api_client/model/declarative_column.py
gooddata_api_client/model/declarative_csp_directive.py
Expand Down Expand Up @@ -1348,6 +1351,7 @@ gooddata_api_client/model/user_management_user_groups_item.py
gooddata_api_client/model/user_management_users.py
gooddata_api_client/model/user_management_users_item.py
gooddata_api_client/model/user_permission.py
gooddata_api_client/model/valid_label_elements_item.py
gooddata_api_client/model/workspace_identifier.py
gooddata_api_client/model/workspace_permission_assignment.py
gooddata_api_client/model/workspace_permission_assignments.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 @@ -757,6 +757,7 @@ Class | Method | HTTP request | Description
- [DeclarativeAnalytics](docs/DeclarativeAnalytics.md)
- [DeclarativeAnalyticsLayer](docs/DeclarativeAnalyticsLayer.md)
- [DeclarativeAttribute](docs/DeclarativeAttribute.md)
- [DeclarativeAttributeHierarchy](docs/DeclarativeAttributeHierarchy.md)
- [DeclarativeColorPalette](docs/DeclarativeColorPalette.md)
- [DeclarativeColumn](docs/DeclarativeColumn.md)
- [DeclarativeCspDirective](docs/DeclarativeCspDirective.md)
Expand Down Expand Up @@ -1308,6 +1309,7 @@ Class | Method | HTTP request | Description
- [UserManagementUsers](docs/UserManagementUsers.md)
- [UserManagementUsersItem](docs/UserManagementUsersItem.md)
- [UserPermission](docs/UserPermission.md)
- [ValidLabelElementsItem](docs/ValidLabelElementsItem.md)
- [WorkspaceIdentifier](docs/WorkspaceIdentifier.md)
- [WorkspacePermissionAssignment](docs/WorkspacePermissionAssignment.md)
- [WorkspacePermissionAssignments](docs/WorkspacePermissionAssignments.md)
Expand Down
8 changes: 7 additions & 1 deletion gooddata-api-client/docs/ActionsApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,7 @@ with gooddata_api_client.ApiClient() as api_client:
workspace_id = "/6bUUGjjNSwg0_bs" # str | Workspace identifier
elements_request = ElementsRequest(
complement_filter=False,
data_sampling_percentage=100.0,
data_sampling_percentage=100,
depends_on=[
DependsOn(
complement_filter=False,
Expand All @@ -379,6 +379,12 @@ with gooddata_api_client.ApiClient() as api_client:
label="label_id",
pattern_filter="pattern_filter_example",
sort_order="ASC",
valid_label_elements=[
ValidLabelElementsItem(
id="id_example",
type="fact",
),
],
) # ElementsRequest |
offset = 0 # int | Request page with this offset. Must be positive integer. The API is limited to the maximum of 10000 items. Therefore this parameter is limited to this number as well. (optional) if omitted the server will use the default value of 0
limit = 1000 # int | Return only this number of items. Must be positive integer. The API is limited to the maximum of 10000 items. Therefore this parameter is limited to this number as well. (optional) if omitted the server will use the default value of 1000
Expand Down
19 changes: 19 additions & 0 deletions gooddata-api-client/docs/AnalyticsModelApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,25 @@ with gooddata_api_client.ApiClient() as api_client:
title="Revenues analysis",
),
],
attribute_hierarchies=[
DeclarativeAttributeHierarchy(
content={},
created_at="["2023-07-20 12:30"]",
created_by=DeclarativeUserIdentifier(
id="employee123",
type="user",
),
description="Simple number for total goods in current production.",
id="hierarchy-1",
modified_at="["2023-07-20 12:30"]",
modified_by=DeclarativeUserIdentifier(
id="employee123",
type="user",
),
tags=["Revenues"],
title="Count of goods",
),
],
dashboard_plugins=[
DeclarativeDashboardPlugin(
content={},
Expand Down
4 changes: 2 additions & 2 deletions gooddata-api-client/docs/ColumnWarning.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ Warning related to single column.
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**message** | **[str]** | Warning message related to the column. |
**name** | **[str]** | Column name. |
**message** | **str** | Warning message related to the column. |
**name** | **str** | Column name. |
**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
8 changes: 7 additions & 1 deletion gooddata-api-client/docs/ComputationApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ with gooddata_api_client.ApiClient() as api_client:
workspace_id = "/6bUUGjjNSwg0_bs" # str | Workspace identifier
elements_request = ElementsRequest(
complement_filter=False,
data_sampling_percentage=100.0,
data_sampling_percentage=100,
depends_on=[
DependsOn(
complement_filter=False,
Expand All @@ -66,6 +66,12 @@ with gooddata_api_client.ApiClient() as api_client:
label="label_id",
pattern_filter="pattern_filter_example",
sort_order="ASC",
valid_label_elements=[
ValidLabelElementsItem(
id="id_example",
type="fact",
),
],
) # ElementsRequest |
offset = 0 # int | Request page with this offset. Must be positive integer. The API is limited to the maximum of 10000 items. Therefore this parameter is limited to this number as well. (optional) if omitted the server will use the default value of 0
limit = 1000 # int | Return only this number of items. Must be positive integer. The API is limited to the maximum of 10000 items. Therefore this parameter is limited to this number as well. (optional) if omitted the server will use the default value of 1000
Expand Down
1 change: 1 addition & 0 deletions gooddata-api-client/docs/DeclarativeAnalyticsLayer.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**analytical_dashboard_extensions** | [**[DeclarativeAnalyticalDashboardExtension]**](DeclarativeAnalyticalDashboardExtension.md) | A list of dashboard permissions assigned to a related dashboard. | [optional]
**analytical_dashboards** | [**[DeclarativeAnalyticalDashboard]**](DeclarativeAnalyticalDashboard.md) | A list of analytical dashboards available in the model. | [optional]
**attribute_hierarchies** | [**[DeclarativeAttributeHierarchy]**](DeclarativeAttributeHierarchy.md) | A list of attribute hierarchies. | [optional]
**dashboard_plugins** | [**[DeclarativeDashboardPlugin]**](DeclarativeDashboardPlugin.md) | A list of dashboard plugins available in the model. | [optional]
**filter_contexts** | [**[DeclarativeFilterContext]**](DeclarativeFilterContext.md) | A list of filter contexts available in the model. | [optional]
**metrics** | [**[DeclarativeMetric]**](DeclarativeMetric.md) | A list of metrics available in the model. | [optional]
Expand Down
20 changes: 20 additions & 0 deletions gooddata-api-client/docs/DeclarativeAttributeHierarchy.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# DeclarativeAttributeHierarchy


## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**content** | **{str: (bool, date, datetime, dict, float, int, list, str, none_type)}** | A definition of the metric in JSON format. |
**id** | **str** | Attribute hierarchy object ID. |
**title** | **str** | Attribute hierarchy object title. |
**created_at** | **str, none_type** | Time of the entity creation. | [optional]
**created_by** | [**DeclarativeUserIdentifier**](DeclarativeUserIdentifier.md) | | [optional]
**description** | **str** | Attribute hierarchy object description. | [optional]
**modified_at** | **str, none_type** | Time of the last entity modification. | [optional]
**modified_by** | [**DeclarativeUserIdentifier**](DeclarativeUserIdentifier.md) | | [optional]
**tags** | **[str]** | A list of tags. | [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)


3 changes: 2 additions & 1 deletion gooddata-api-client/docs/ElementsRequest.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,14 @@ Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**label** | **str** | Requested label. |
**complement_filter** | **bool** | Inverse filters: * ```false``` - return items matching ```patternFilter``` and ```exactFilter``` * ```true``` - return items not matching ```patternFilter``` and ```exactFilter``` | [optional] if omitted the server will use the default value of False
**data_sampling_percentage** | **float** | Specifies percentage of source table data scanned during the computation. This field is deprecated and is no longer used during the elements computation. | [optional] if omitted the server will use the default value of 100.0
**data_sampling_percentage** | **float** | Specifies percentage of source table data scanned during the computation. This field is deprecated and is no longer used during the elements computation. | [optional] if omitted the server will use the default value of 100
**depends_on** | [**[DependsOn]**](DependsOn.md) | Return only items, whose are not filtered out by the parent filters. | [optional]
**exact_filter** | **[str, none_type]** | Return only items, whose ```label``` title exactly matches one of ```filter```. | [optional]
**exclude_primary_label** | **bool** | Excludes items from the result that differ only by primary label * ```false``` - return items with distinct primary label * ```true``` - return items with distinct requested label | [optional] if omitted the server will use the default value of False
**filter_by** | [**FilterBy**](FilterBy.md) | | [optional]
**pattern_filter** | **str** | Return only items, whose ```label``` title case insensitively contains ```filter``` as substring. | [optional]
**sort_order** | **str** | Sort order of returned items. Items are sorted by ```label``` title. If no sort order is specified then attribute's ```sortDirection``` is used, which is ASC by default | [optional]
**valid_label_elements** | [**[ValidLabelElementsItem]**](ValidLabelElementsItem.md) | Return only items, what are computable on metric. This feature is experimental. | [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
76 changes: 76 additions & 0 deletions gooddata-api-client/docs/LayoutApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -1529,6 +1529,25 @@ with gooddata_api_client.ApiClient() as api_client:
title="Revenues analysis",
),
],
attribute_hierarchies=[
DeclarativeAttributeHierarchy(
content={},
created_at="["2023-07-20 12:30"]",
created_by=DeclarativeUserIdentifier(
id="employee123",
type="user",
),
description="Simple number for total goods in current production.",
id="hierarchy-1",
modified_at="["2023-07-20 12:30"]",
modified_by=DeclarativeUserIdentifier(
id="employee123",
type="user",
),
tags=["Revenues"],
title="Count of goods",
),
],
dashboard_plugins=[
DeclarativeDashboardPlugin(
content={},
Expand Down Expand Up @@ -1828,6 +1847,25 @@ with gooddata_api_client.ApiClient() as api_client:
title="Revenues analysis",
),
],
attribute_hierarchies=[
DeclarativeAttributeHierarchy(
content={},
created_at="["2023-07-20 12:30"]",
created_by=DeclarativeUserIdentifier(
id="employee123",
type="user",
),
description="Simple number for total goods in current production.",
id="hierarchy-1",
modified_at="["2023-07-20 12:30"]",
modified_by=DeclarativeUserIdentifier(
id="employee123",
type="user",
),
tags=["Revenues"],
title="Count of goods",
),
],
dashboard_plugins=[
DeclarativeDashboardPlugin(
content={},
Expand Down Expand Up @@ -2386,6 +2424,25 @@ with gooddata_api_client.ApiClient() as api_client:
title="Revenues analysis",
),
],
attribute_hierarchies=[
DeclarativeAttributeHierarchy(
content={},
created_at="["2023-07-20 12:30"]",
created_by=DeclarativeUserIdentifier(
id="employee123",
type="user",
),
description="Simple number for total goods in current production.",
id="hierarchy-1",
modified_at="["2023-07-20 12:30"]",
modified_by=DeclarativeUserIdentifier(
id="employee123",
type="user",
),
tags=["Revenues"],
title="Count of goods",
),
],
dashboard_plugins=[
DeclarativeDashboardPlugin(
content={},
Expand Down Expand Up @@ -3266,6 +3323,25 @@ with gooddata_api_client.ApiClient() as api_client:
title="Revenues analysis",
),
],
attribute_hierarchies=[
DeclarativeAttributeHierarchy(
content={},
created_at="["2023-07-20 12:30"]",
created_by=DeclarativeUserIdentifier(
id="employee123",
type="user",
),
description="Simple number for total goods in current production.",
id="hierarchy-1",
modified_at="["2023-07-20 12:30"]",
modified_by=DeclarativeUserIdentifier(
id="employee123",
type="user",
),
tags=["Revenues"],
title="Count of goods",
),
],
dashboard_plugins=[
DeclarativeDashboardPlugin(
content={},
Expand Down
19 changes: 19 additions & 0 deletions gooddata-api-client/docs/OrganizationDeclarativeAPIsApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -328,6 +328,25 @@ with gooddata_api_client.ApiClient() as api_client:
title="Revenues analysis",
),
],
attribute_hierarchies=[
DeclarativeAttributeHierarchy(
content={},
created_at="["2023-07-20 12:30"]",
created_by=DeclarativeUserIdentifier(
id="employee123",
type="user",
),
description="Simple number for total goods in current production.",
id="hierarchy-1",
modified_at="["2023-07-20 12:30"]",
modified_by=DeclarativeUserIdentifier(
id="employee123",
type="user",
),
tags=["Revenues"],
title="Count of goods",
),
],
dashboard_plugins=[
DeclarativeDashboardPlugin(
content={},
Expand Down
4 changes: 2 additions & 2 deletions gooddata-api-client/docs/TableWarning.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ Warnings related to single table.
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**columns** | [**[ColumnWarning]**](ColumnWarning.md) | |
**name** | **[str]** | Table name. |
**message** | **[str]** | Warning message related to the table. | [optional]
**name** | **str** | Table name. |
**message** | **str** | Warning message related to the table. | [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
13 changes: 13 additions & 0 deletions gooddata-api-client/docs/ValidLabelElementsItem.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# ValidLabelElementsItem


## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**id** | **str** | Specifies entity used for valid elements computation. |
**type** | **str** | Specifies entity type which could be label, attribute, fact, or metric. |
**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)


Loading

0 comments on commit 0d3192f

Please sign in to comment.