Skip to content

Commit

Permalink
Merge pull request #407 from hkad98/regenerate_clients
Browse files Browse the repository at this point in the history
Regenerate API client for upcoming release 1.8.0

Reviewed-by: Jan Kadlec
             https://github.com/hkad98
  • Loading branch information
gdgate authored Nov 2, 2023
2 parents f89f480 + 437d677 commit 5ae8f50
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion gooddata-api-client/docs/ActionsApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,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,
data_sampling_percentage=100.0,
exact_filter=[
"exact_filter_example",
],
Expand Down
2 changes: 1 addition & 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,
data_sampling_percentage=100.0,
exact_filter=[
"exact_filter_example",
],
Expand Down
2 changes: 1 addition & 1 deletion gooddata-api-client/docs/ElementsRequest.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ 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
**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
**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]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ def _from_openapi_data(cls, label, *args, **kwargs): # noqa: E501
through its discriminator because we passed in
_visited_composed_classes = (Animal,)
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 # noqa: E501
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 # noqa: E501
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 # noqa: E501
exact_filter ([str, none_type]): Return only items, whose ```label``` title exactly matches one of ```filter```.. [optional] # noqa: E501
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 # noqa: E501
filter_by (FilterBy): [optional] # noqa: E501
Expand Down Expand Up @@ -264,7 +264,7 @@ def __init__(self, label, *args, **kwargs): # noqa: E501
through its discriminator because we passed in
_visited_composed_classes = (Animal,)
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 # noqa: E501
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 # noqa: E501
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 # noqa: E501
exact_filter ([str, none_type]): Return only items, whose ```label``` title exactly matches one of ```filter```.. [optional] # noqa: E501
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 # noqa: E501
filter_by (FilterBy): [optional] # noqa: E501
Expand Down
6 changes: 3 additions & 3 deletions schemas/gooddata-afm-client.json
Original file line number Diff line number Diff line change
Expand Up @@ -755,7 +755,7 @@
"type": "boolean"
},
"dataSamplingPercentage": {
"default": 100,
"default": 100.0,
"deprecated": true,
"description": "Specifies percentage of source table data scanned during the computation. This field is deprecated and is no longer used during the elements computation.",
"format": "float",
Expand Down Expand Up @@ -885,7 +885,7 @@
"description": "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.",
"example": [
[
1,
1.0,
2.5
],
[
Expand Down Expand Up @@ -930,7 +930,7 @@
"description": "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.",
"example": [
[
1,
1.0,
2.5
],
[
Expand Down
6 changes: 3 additions & 3 deletions schemas/gooddata-api-client.json
Original file line number Diff line number Diff line change
Expand Up @@ -3558,7 +3558,7 @@
"type": "boolean"
},
"dataSamplingPercentage": {
"default": 100,
"default": 100.0,
"deprecated": true,
"description": "Specifies percentage of source table data scanned during the computation. This field is deprecated and is no longer used during the elements computation.",
"format": "float",
Expand Down Expand Up @@ -3751,7 +3751,7 @@
"description": "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.",
"example": [
[
1,
1.0,
2.5
],
[
Expand Down Expand Up @@ -3796,7 +3796,7 @@
"description": "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.",
"example": [
[
1,
1.0,
2.5
],
[
Expand Down

0 comments on commit 5ae8f50

Please sign in to comment.