Skip to content

Commit 7221df4

Browse files
Merge pull request #927 from gooddata/snapshot-master-a576d4fc-to-rel/dev
[bot] Merge master/a576d4fc into rel/dev
2 parents 7d1f6ca + a576d4f commit 7221df4

33 files changed

+191
-90
lines changed

gooddata-api-client/docs/ChatHistoryInteraction.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ Name | Type | Description | Notes
1010
**question** | **str** | User question |
1111
**routing** | [**RouteResult**](RouteResult.md) | |
1212
**created_visualizations** | [**CreatedVisualizations**](CreatedVisualizations.md) | | [optional]
13+
**error_response** | **str** | Error response in anything fails. | [optional]
1314
**found_objects** | [**FoundObjects**](FoundObjects.md) | | [optional]
1415
**text_response** | **str** | Text response for general questions. | [optional]
1516
**thread_id_suffix** | **str** | Chat History thread suffix appended to ID generated by backend. Enables more chat windows. | [optional]

gooddata-api-client/docs/ChatResult.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
77
**chat_history_interaction_id** | **int** | Chat History interaction ID. Unique ID for each interaction. | [optional]
88
**created_visualizations** | [**CreatedVisualizations**](CreatedVisualizations.md) | | [optional]
9+
**error_response** | **str** | Error response in anything fails. | [optional]
910
**found_objects** | [**FoundObjects**](FoundObjects.md) | | [optional]
1011
**routing** | [**RouteResult**](RouteResult.md) | | [optional]
1112
**text_response** | **str** | Text response for general questions. | [optional]

gooddata-api-client/docs/DeclarativeNotificationChannel.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ Name | Type | Description | Notes
1111
**description** | **str** | Description of a notification channel. | [optional]
1212
**destination** | [**DeclarativeNotificationChannelDestination**](DeclarativeNotificationChannelDestination.md) | | [optional]
1313
**destination_type** | **str, none_type** | | [optional] [readonly]
14+
**in_platform_notification** | **str** | In-platform notifications configuration. No effect if the destination type is IN_PLATFORM. DISABLED - in-platform notifications are not sent ENABLED - in-platform notifications are sent in addition to the regular notifications | [optional] if omitted the server will use the default value of "DISABLED"
1415
**name** | **str** | Name of a notification channel. | [optional]
1516
**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]
1617

gooddata-api-client/docs/EntitiesApi.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1815,6 +1815,7 @@ with gooddata_api_client.ApiClient() as api_client:
18151815
description="description_example",
18161816
destination=JsonApiNotificationChannelInAttributesDestination(None),
18171817
destination_type="WEBHOOK",
1818+
in_platform_notification="DISABLED",
18181819
name="name_example",
18191820
),
18201821
id="id1",
@@ -2850,7 +2851,7 @@ with gooddata_api_client.ApiClient() as api_client:
28502851
"include=parent",
28512852
] # [str] | Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together. (optional)
28522853
meta_include = [
2853-
"metaInclude=config,permissions,hierarchy,dataModelDatasets,all",
2854+
"metaInclude=permissions,config,hierarchy,dataModelDatasets,all",
28542855
] # [str] | Include Meta objects. (optional)
28552856

28562857
# example passing only required values which don't have defaults set
@@ -8035,7 +8036,7 @@ with gooddata_api_client.ApiClient() as api_client:
80358036
"sort_example",
80368037
] # [str] | Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported. (optional)
80378038
meta_include = [
8038-
"metaInclude=config,permissions,hierarchy,dataModelDatasets,page,all",
8039+
"metaInclude=permissions,config,hierarchy,dataModelDatasets,page,all",
80398040
] # [str] | Include Meta objects. (optional)
80408041

80418042
# example passing only required values which don't have defaults set
@@ -11221,7 +11222,7 @@ with gooddata_api_client.ApiClient() as api_client:
1122111222
"include=parent",
1122211223
] # [str] | Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together. (optional)
1122311224
meta_include = [
11224-
"metaInclude=config,permissions,hierarchy,dataModelDatasets,all",
11225+
"metaInclude=permissions,config,hierarchy,dataModelDatasets,all",
1122511226
] # [str] | Include Meta objects. (optional)
1122611227

1122711228
# example passing only required values which don't have defaults set
@@ -13048,6 +13049,7 @@ with gooddata_api_client.ApiClient() as api_client:
1304813049
description="description_example",
1304913050
destination=JsonApiNotificationChannelInAttributesDestination(None),
1305013051
destination_type="WEBHOOK",
13052+
in_platform_notification="DISABLED",
1305113053
name="name_example",
1305213054
),
1305313055
id="id1",
@@ -15918,6 +15920,7 @@ with gooddata_api_client.ApiClient() as api_client:
1591815920
description="description_example",
1591915921
destination=JsonApiNotificationChannelInAttributesDestination(None),
1592015922
destination_type="WEBHOOK",
15923+
in_platform_notification="DISABLED",
1592115924
name="name_example",
1592215925
),
1592315926
id="id1",

gooddata-api-client/docs/JsonApiNotificationChannelInAttributes.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ Name | Type | Description | Notes
99
**description** | **str, none_type** | | [optional]
1010
**destination** | [**JsonApiNotificationChannelInAttributesDestination**](JsonApiNotificationChannelInAttributesDestination.md) | | [optional]
1111
**destination_type** | **str, none_type** | | [optional]
12+
**in_platform_notification** | **str** | In-platform notifications configuration. No effect if the destination type is IN_PLATFORM. DISABLED - in-platform notifications are not sent ENABLED - in-platform notifications are sent in addition to the regular notifications | [optional]
1213
**name** | **str, none_type** | | [optional]
1314
**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]
1415

gooddata-api-client/docs/LayoutApi.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3060,6 +3060,7 @@ with gooddata_api_client.ApiClient() as api_client:
30603060
description="This is a channel",
30613061
destination=DeclarativeNotificationChannelDestination(None),
30623062
id="notification-channel-1",
3063+
in_platform_notification="DISABLED",
30633064
name="channel",
30643065
),
30653066
],
@@ -3195,6 +3196,7 @@ with gooddata_api_client.ApiClient() as api_client:
31953196
description="This is a channel",
31963197
destination=DeclarativeNotificationChannelDestination(None),
31973198
id="notification-channel-1",
3199+
in_platform_notification="DISABLED",
31983200
name="channel",
31993201
),
32003202
],

gooddata-api-client/docs/MeasureGroupHeaders.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44
## Properties
55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
7-
**first** | [**MeasureHeaderOut**](MeasureHeaderOut.md) | | [optional]
8-
**last** | [**MeasureHeaderOut**](MeasureHeaderOut.md) | | [optional]
97
**measure_group_headers** | [**[MeasureHeaderOut]**](MeasureHeaderOut.md) | | [optional]
108
**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]
119

gooddata-api-client/docs/NotificationChannelsApi.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ with gooddata_api_client.ApiClient() as api_client:
4848
description="description_example",
4949
destination=JsonApiNotificationChannelInAttributesDestination(None),
5050
destination_type="WEBHOOK",
51+
in_platform_notification="DISABLED",
5152
name="name_example",
5253
),
5354
id="id1",
@@ -418,6 +419,7 @@ with gooddata_api_client.ApiClient() as api_client:
418419
description="description_example",
419420
destination=JsonApiNotificationChannelInAttributesDestination(None),
420421
destination_type="WEBHOOK",
422+
in_platform_notification="DISABLED",
421423
name="name_example",
422424
),
423425
id="id1",
@@ -510,6 +512,7 @@ with gooddata_api_client.ApiClient() as api_client:
510512
description="This is a channel",
511513
destination=DeclarativeNotificationChannelDestination(None),
512514
id="notification-channel-1",
515+
in_platform_notification="DISABLED",
513516
name="channel",
514517
),
515518
],
@@ -587,6 +590,7 @@ with gooddata_api_client.ApiClient() as api_client:
587590
description="description_example",
588591
destination=JsonApiNotificationChannelInAttributesDestination(None),
589592
destination_type="WEBHOOK",
593+
in_platform_notification="DISABLED",
590594
name="name_example",
591595
),
592596
id="id1",

gooddata-api-client/docs/OrganizationDeclarativeAPIsApi.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -171,6 +171,7 @@ with gooddata_api_client.ApiClient() as api_client:
171171
description="This is a channel",
172172
destination=DeclarativeNotificationChannelDestination(None),
173173
id="notification-channel-1",
174+
in_platform_notification="DISABLED",
174175
name="channel",
175176
),
176177
],

gooddata-api-client/docs/OrganizationModelControllerApi.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -615,6 +615,7 @@ with gooddata_api_client.ApiClient() as api_client:
615615
description="description_example",
616616
destination=JsonApiNotificationChannelInAttributesDestination(None),
617617
destination_type="WEBHOOK",
618+
in_platform_notification="DISABLED",
618619
name="name_example",
619620
),
620621
id="id1",
@@ -1070,7 +1071,7 @@ with gooddata_api_client.ApiClient() as api_client:
10701071
"include=parent",
10711072
] # [str] | Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together. (optional)
10721073
meta_include = [
1073-
"metaInclude=config,permissions,hierarchy,dataModelDatasets,all",
1074+
"metaInclude=permissions,config,hierarchy,dataModelDatasets,all",
10741075
] # [str] | Include Meta objects. (optional)
10751076

10761077
# example passing only required values which don't have defaults set
@@ -3159,7 +3160,7 @@ with gooddata_api_client.ApiClient() as api_client:
31593160
"sort_example",
31603161
] # [str] | Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported. (optional)
31613162
meta_include = [
3162-
"metaInclude=config,permissions,hierarchy,dataModelDatasets,page,all",
3163+
"metaInclude=permissions,config,hierarchy,dataModelDatasets,page,all",
31633164
] # [str] | Include Meta objects. (optional)
31643165

31653166
# example passing only required values which don't have defaults set
@@ -4333,7 +4334,7 @@ with gooddata_api_client.ApiClient() as api_client:
43334334
"include=parent",
43344335
] # [str] | Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together. (optional)
43354336
meta_include = [
4336-
"metaInclude=config,permissions,hierarchy,dataModelDatasets,all",
4337+
"metaInclude=permissions,config,hierarchy,dataModelDatasets,all",
43374338
] # [str] | Include Meta objects. (optional)
43384339

43394340
# example passing only required values which don't have defaults set
@@ -4983,6 +4984,7 @@ with gooddata_api_client.ApiClient() as api_client:
49834984
description="description_example",
49844985
destination=JsonApiNotificationChannelInAttributesDestination(None),
49854986
destination_type="WEBHOOK",
4987+
in_platform_notification="DISABLED",
49864988
name="name_example",
49874989
),
49884990
id="id1",
@@ -6133,6 +6135,7 @@ with gooddata_api_client.ApiClient() as api_client:
61336135
description="description_example",
61346136
destination=JsonApiNotificationChannelInAttributesDestination(None),
61356137
destination_type="WEBHOOK",
6138+
in_platform_notification="DISABLED",
61366139
name="name_example",
61376140
),
61386141
id="id1",

0 commit comments

Comments
 (0)