Skip to content

Commit dfe4e92

Browse files
author
TeamCity
committed
Update PAAS OpenAPI spec (from develop/4.4)
1 parent 74fb34a commit dfe4e92

17 files changed

Lines changed: 608 additions & 212 deletions

paas/docs/CalculatedField.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
| **configurationVersion** | **Integer** | Version of calculated field configuration. | [optional] |
1919
| **_configuration** | **CalculatedFieldConfiguration** | | |
2020
| **version** | **Long** | | [optional] |
21+
| **additionalInfo** | **com.fasterxml.jackson.databind.JsonNode** | Additional parameters of the calculated field | [optional] |
2122

2223

2324

paas/docs/CalculatedFieldInfo.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
| **configurationVersion** | **Integer** | Version of calculated field configuration. | [optional] |
1919
| **_configuration** | **CalculatedFieldConfiguration** | | |
2020
| **version** | **Long** | | [optional] |
21+
| **additionalInfo** | **com.fasterxml.jackson.databind.JsonNode** | Additional parameters of the calculated field | [optional] |
2122
| **entityName** | **String** | | [optional] |
2223

2324

paas/docs/EdgeEventType.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,8 @@
9494

9595
* `AI_MODEL` (value: `"AI_MODEL"`)
9696

97+
* `API_KEY` (value: `"API_KEY"`)
98+
9799

98100

99101
---

paas/docs/EntityGroupControllerApi.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ void removeEntitiesFromEntityGroup(@Nonnull String entityGroupId, @Nonnull List<
3737
EntityGroupInfo saveEntityGroup(@Nonnull EntityGroup entityGroup) // Create Or Update Entity Group (saveEntityGroup)
3838
void shareEntityGroup(@Nonnull String entityGroupId, @Nonnull ShareGroupRequest shareGroupRequest) // Share the Entity Group (shareEntityGroup)
3939
void shareEntityGroupToChildOwnerUserGroup(@Nonnull String entityGroupId, @Nonnull String userGroupId, @Nonnull String roleId) // Share the Entity Group with User group (shareEntityGroupToChildOwnerUserGroup)
40+
void shareEntityGroupToChildOwnerUserGroupV2(@Nonnull UUID entityGroupId, @Nonnull ShareGroupRequest shareGroupRequest) // Share the Entity Group with User group (shareEntityGroupToChildOwnerUserGroupV2)
4041
EntityGroup unassignEntityGroupFromEdge(@Nonnull String edgeId, @Nonnull String groupType, @Nonnull String entityGroupId) // Unassign entity group from edge (unassignEntityGroupFromEdge)
4142
```
4243

@@ -945,6 +946,31 @@ Share the entity group with specified user group using specified role. Availab
945946
null (empty response body)
946947

947948

949+
## shareEntityGroupToChildOwnerUserGroupV2
950+
951+
```
952+
void shareEntityGroupToChildOwnerUserGroupV2(@Nonnull UUID entityGroupId, @Nonnull ShareGroupRequest shareGroupRequest)
953+
```
954+
955+
**POST** `/api/v2/entityGroup/{entityGroupId}/share`
956+
957+
Share the Entity Group with User group (shareEntityGroupToChildOwnerUserGroupV2)
958+
959+
Share the entity group with specified user group using specified role. Available for users with 'TENANT_ADMIN' or 'CUSTOMER_USER' authority. Security check is performed to verify that the user has 'WRITE' permission for specified group.
960+
961+
962+
### Parameters
963+
964+
| Name | Type | Description | Notes |
965+
|------------- | ------------- | ------------- | -------------|
966+
| **entityGroupId** | **UUID** | A uuid value representing the Entity Group Id that you would like to share. For example, '784f394c-42b6-435a-983c-b7beff2784f9' | |
967+
| **shareGroupRequest** | **ShareGroupRequest** | | |
968+
969+
### Return type
970+
971+
null (empty response body)
972+
973+
948974
## unassignEntityGroupFromEdge
949975

950976
```

paas/docs/FeaturesInfo.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@
99
|------------ | ------------- | ------------- | -------------|
1010
| **smsEnabled** | **Boolean** | | [optional] |
1111
| **oauthEnabled** | **Boolean** | | [optional] |
12-
| **notificationEnabled** | **Boolean** | | [optional] |
1312
| **whiteLabelingEnabled** | **Boolean** | | [optional] |
1413
| **twoFaEnabled** | **Boolean** | | [optional] |
1514
| **emailEnabled** | **Boolean** | | [optional] |
15+
| **notificationEnabled** | **Boolean** | | [optional] |
1616

1717

1818

paas/docs/SelfRegistrationParams.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
|------------ | ------------- | ------------- | -------------|
1010
| **permissions** | **List\<GroupPermission\>** | | [optional] |
1111
| **type** | **SelfRegistrationType** | | |
12-
| **showPrivacyPolicy** | **Boolean** | | [optional] |
1312
| **showTermsOfUse** | **Boolean** | | [optional] |
13+
| **showPrivacyPolicy** | **Boolean** | | [optional] |
1414
| **title** | **String** | | [optional] |
1515
| **enabled** | **Boolean** | | [optional] |
1616
| **homeDashboard** | **HomeDashboardParams** | | [optional] |

paas/docs/TsKvEntry.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@
1212
| **key** | **String** | | [optional] |
1313
| **booleanValue** | **Boolean** | | [optional] |
1414
| **valueAsString** | **String** | | [optional] |
15-
| **longValue** | **Long** | | [optional] |
16-
| **doubleValue** | **Double** | | [optional] |
1715
| **dataType** | **DataType** | | [optional] |
1816
| **jsonValue** | **String** | | [optional] |
1917
| **strValue** | **String** | | [optional] |
18+
| **longValue** | **Long** | | [optional] |
19+
| **doubleValue** | **Double** | | [optional] |
2020
| **version** | **Long** | | [optional] |
2121

2222

0 commit comments

Comments
 (0)