Skip to content

Commit ac781bb

Browse files
author
gdgate
authored
Merge pull request #442 from hkad98/regenerate_clients
TRIVIAL: regenerate API client Reviewed-by: https://github.com/Mara3l
2 parents 6249c53 + 441ce52 commit ac781bb

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

gooddata-api-client/docs/ActionsApi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ with gooddata_api_client.ApiClient() as api_client:
279279
workspace_id = "/6bUUGjjNSwg0_bs" # str | Workspace identifier
280280
elements_request = ElementsRequest(
281281
complement_filter=False,
282-
data_sampling_percentage=100,
282+
data_sampling_percentage=100.0,
283283
depends_on=[
284284
DependsOn(
285285
complement_filter=False,

gooddata-api-client/docs/ComputationApi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ with gooddata_api_client.ApiClient() as api_client:
4646
workspace_id = "/6bUUGjjNSwg0_bs" # str | Workspace identifier
4747
elements_request = ElementsRequest(
4848
complement_filter=False,
49-
data_sampling_percentage=100,
49+
data_sampling_percentage=100.0,
5050
depends_on=[
5151
DependsOn(
5252
complement_filter=False,

gooddata-api-client/docs/ElementsRequest.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
77
**label** | **str** | Requested label. |
88
**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
9-
**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
9+
**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
1010
**depends_on** | [**[DependsOn]**](DependsOn.md) | Return only items, whose are not filtered out by the parent filters. | [optional]
1111
**exact_filter** | **[str, none_type]** | Return only items, whose ```label``` title exactly matches one of ```filter```. | [optional]
1212
**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

gooddata-api-client/gooddata_api_client/model/elements_request.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ def _from_openapi_data(cls, label, *args, **kwargs): # noqa: E501
172172
through its discriminator because we passed in
173173
_visited_composed_classes = (Animal,)
174174
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
175-
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
175+
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
176176
depends_on ([DependsOn]): Return only items, whose are not filtered out by the parent filters.. [optional] # noqa: E501
177177
exact_filter ([str, none_type]): Return only items, whose ```label``` title exactly matches one of ```filter```.. [optional] # noqa: E501
178178
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
@@ -269,7 +269,7 @@ def __init__(self, label, *args, **kwargs): # noqa: E501
269269
through its discriminator because we passed in
270270
_visited_composed_classes = (Animal,)
271271
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
272-
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
272+
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
273273
depends_on ([DependsOn]): Return only items, whose are not filtered out by the parent filters.. [optional] # noqa: E501
274274
exact_filter ([str, none_type]): Return only items, whose ```label``` title exactly matches one of ```filter```.. [optional] # noqa: E501
275275
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

schemas/gooddata-afm-client.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -784,7 +784,7 @@
784784
"type": "boolean"
785785
},
786786
"dataSamplingPercentage": {
787-
"default": 100,
787+
"default": 100.0,
788788
"deprecated": true,
789789
"description": "Specifies percentage of source table data scanned during the computation. This field is deprecated and is no longer used during the elements computation.",
790790
"format": "float",
@@ -921,7 +921,7 @@
921921
"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.",
922922
"example": [
923923
[
924-
1,
924+
1.0,
925925
2.5
926926
],
927927
[
@@ -966,7 +966,7 @@
966966
"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.",
967967
"example": [
968968
[
969-
1,
969+
1.0,
970970
2.5
971971
],
972972
[

schemas/gooddata-api-client.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3587,7 +3587,7 @@
35873587
"type": "boolean"
35883588
},
35893589
"dataSamplingPercentage": {
3590-
"default": 100,
3590+
"default": 100.0,
35913591
"deprecated": true,
35923592
"description": "Specifies percentage of source table data scanned during the computation. This field is deprecated and is no longer used during the elements computation.",
35933593
"format": "float",
@@ -3787,7 +3787,7 @@
37873787
"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.",
37883788
"example": [
37893789
[
3790-
1,
3790+
1.0,
37913791
2.5
37923792
],
37933793
[
@@ -3832,7 +3832,7 @@
38323832
"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.",
38333833
"example": [
38343834
[
3835-
1,
3835+
1.0,
38363836
2.5
38373837
],
38383838
[

0 commit comments

Comments
 (0)