Skip to content

Commit bbdfcdb

Browse files
author
gdgate
authored
Merge pull request #342 from hkad98/regenerate_clients
TRIVIAL: regenerate clients Reviewed-by: https://github.com/Mara3l
2 parents a0f3b9d + a5bc7ed commit bbdfcdb

File tree

6 files changed

+11
-13
lines changed

6 files changed

+11
-13
lines changed

gooddata-api-client/docs/AttributeFilterElements.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Filter on specific set of label values.
55
## Properties
66
Name | Type | Description | Notes
77
------------ | ------------- | ------------- | -------------
8-
**values** | **[str]** | Set of label values. |
8+
**values** | **[str, none_type]** | Set of label values. |
99
**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]
1010

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

gooddata-api-client/docs/Element.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ List of returned elements.
55
## Properties
66
Name | Type | Description | Notes
77
------------ | ------------- | ------------- | -------------
8-
**primary_title** | **str** | Title of primary label of attribute owning requested label or null if the primary label is excluded |
8+
**primary_title** | **str** | Title of primary label of attribute owning requested label, null if the title is null or the primary label is excluded |
99
**title** | **str** | Title of requested label. |
1010
**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]
1111

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ def openapi_types():
8484
and the value is attribute type.
8585
"""
8686
return {
87-
'values': ([str],), # noqa: E501
87+
'values': ([str, none_type],), # noqa: E501
8888
}
8989

9090
@cached_property
@@ -107,7 +107,7 @@ def _from_openapi_data(cls, values, *args, **kwargs): # noqa: E501
107107
"""AttributeFilterElements - a model defined in OpenAPI
108108
109109
Args:
110-
values ([str]): Set of label values.
110+
values ([str, none_type]): Set of label values.
111111
112112
Keyword Args:
113113
_check_type (bool): if True, values for parameters in openapi_types
@@ -196,7 +196,7 @@ def __init__(self, values, *args, **kwargs): # noqa: E501
196196
"""AttributeFilterElements - a model defined in OpenAPI
197197
198198
Args:
199-
values ([str]): Set of label values.
199+
values ([str, none_type]): Set of label values.
200200
201201
Keyword Args:
202202
_check_type (bool): if True, values for parameters in openapi_types

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ def _from_openapi_data(cls, primary_title, title, *args, **kwargs): # noqa: E50
107107
"""Element - a model defined in OpenAPI
108108
109109
Args:
110-
primary_title (str): Title of primary label of attribute owning requested label or null if the primary label is excluded
110+
primary_title (str): Title of primary label of attribute owning requested label, null if the title is null or the primary label is excluded
111111
title (str): Title of requested label.
112112
113113
Keyword Args:
@@ -198,7 +198,7 @@ def __init__(self, primary_title, title, *args, **kwargs): # noqa: E501
198198
"""Element - a model defined in OpenAPI
199199
200200
Args:
201-
primary_title (str): Title of primary label of attribute owning requested label or null if the primary label is excluded
201+
primary_title (str): Title of primary label of attribute owning requested label, null if the title is null or the primary label is excluded
202202
title (str): Title of requested label.
203203
204204
Keyword Args:

schemas/gooddata-afm-client.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -409,8 +409,7 @@
409409
"value2"
410410
],
411411
"items": {
412-
"description": "Set of label values.",
413-
"example": "[\"value1\",\"value2\"]",
412+
"nullable": true,
414413
"type": "string"
415414
},
416415
"type": "array",
@@ -699,7 +698,7 @@
699698
"description": "List of returned elements.",
700699
"properties": {
701700
"primaryTitle": {
702-
"description": "Title of primary label of attribute owning requested label or null if the primary label is excluded",
701+
"description": "Title of primary label of attribute owning requested label, null if the title is null or the primary label is excluded",
703702
"type": "string"
704703
},
705704
"title": {

schemas/gooddata-api-client.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -507,8 +507,7 @@
507507
"value2"
508508
],
509509
"items": {
510-
"description": "Set of label values.",
511-
"example": "[\"value1\",\"value2\"]",
510+
"nullable": true,
512511
"type": "string"
513512
},
514513
"type": "array",
@@ -3345,7 +3344,7 @@
33453344
"description": "List of returned elements.",
33463345
"properties": {
33473346
"primaryTitle": {
3348-
"description": "Title of primary label of attribute owning requested label or null if the primary label is excluded",
3347+
"description": "Title of primary label of attribute owning requested label, null if the title is null or the primary label is excluded",
33493348
"type": "string"
33503349
},
33513350
"title": {

0 commit comments

Comments
 (0)