Skip to content

Commit 4560396

Browse files
committed
regenerated clients
1 parent bc81fd2 commit 4560396

29 files changed

Lines changed: 496 additions & 613 deletions

ce/docs/RelationsQueryFilter.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
| Name | Type | Description | Notes |
1111
|------------ | ------------- | ------------- | -------------|
1212
| **rootEntity** | **AliasEntityId** | | [optional] |
13+
| **multiRoot** | **Boolean** | | [optional] |
1314
| **multiRootEntitiesType** | **EntityType** | | [optional] |
1415
| **multiRootEntityIds** | **Set\<String\>** | | [optional] |
1516
| **direction** | **EntitySearchDirection** | | [optional] |
@@ -19,7 +20,6 @@
1920
| **negate** | **Boolean** | | [optional] |
2021
| **rootStateEntity** | **Boolean** | | [optional] |
2122
| **defaultStateEntity** | **AliasEntityId** | | [optional] |
22-
| **multiRoot** | **Boolean** | | [optional] |
2323

2424

2525

ce/docs/ShortCustomerInfo.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,7 @@
99
|------------ | ------------- | ------------- | -------------|
1010
| **customerId** | **CustomerId** | JSON object with the customer Id. | [optional] |
1111
| **title** | **String** | Title of the customer. | [optional] |
12-
| **isPublic** | **Boolean** | | [optional] |
13-
| **_public** | **Boolean** | | [optional] |
12+
| **isPublic** | **Boolean** | Indicates special 'Public' customer used to embed dashboards on public websites. | [optional] |
1413

1514

1615

ce/docs/SystemInfo.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
| Name | Type | Description | Notes |
99
|------------ | ------------- | ------------- | -------------|
1010
| **systemData** | **List\<SystemInfoData\>** | System data. | [optional] |
11-
| **monolith** | **Boolean** | | [optional] |
11+
| **monolith** | **Boolean** | Is monolith. | [optional] |
1212

1313

1414

ce/spec/openapi.json

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -96163,6 +96163,9 @@
9616396163
"rootEntity": {
9616496164
"$ref": "#/components/schemas/AliasEntityId"
9616596165
},
96166+
"multiRoot": {
96167+
"type": "boolean"
96168+
},
9616696169
"multiRootEntitiesType": {
9616796170
"$ref": "#/components/schemas/EntityType"
9616896171
},
@@ -96197,9 +96200,6 @@
9619796200
},
9619896201
"defaultStateEntity": {
9619996202
"$ref": "#/components/schemas/AliasEntityId"
96200-
},
96201-
"multiRoot": {
96202-
"type": "boolean"
9620396203
}
9620496204
}
9620596205
}
@@ -97258,10 +97258,7 @@
9725897258
},
9725997259
"isPublic": {
9726097260
"type": "boolean",
97261-
"writeOnly": true
97262-
},
97263-
"public": {
97264-
"type": "boolean"
97261+
"description": "Indicates special 'Public' customer used to embed dashboards on public websites."
9726597262
}
9726697263
}
9726797264
},
@@ -97964,7 +97961,8 @@
9796497961
}
9796597962
},
9796697963
"monolith": {
97967-
"type": "boolean"
97964+
"type": "boolean",
97965+
"description": "Is monolith."
9796897966
}
9796997967
}
9797097968
},

ce/src/main/java/org/thingsboard/client/model/RelationsQueryFilter.java

Lines changed: 38 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@
5050
*/
5151
@JsonPropertyOrder({
5252
RelationsQueryFilter.JSON_PROPERTY_ROOT_ENTITY,
53+
RelationsQueryFilter.JSON_PROPERTY_MULTI_ROOT,
5354
RelationsQueryFilter.JSON_PROPERTY_MULTI_ROOT_ENTITIES_TYPE,
5455
RelationsQueryFilter.JSON_PROPERTY_MULTI_ROOT_ENTITY_IDS,
5556
RelationsQueryFilter.JSON_PROPERTY_DIRECTION,
@@ -58,8 +59,7 @@
5859
RelationsQueryFilter.JSON_PROPERTY_FETCH_LAST_LEVEL_ONLY,
5960
RelationsQueryFilter.JSON_PROPERTY_NEGATE,
6061
RelationsQueryFilter.JSON_PROPERTY_ROOT_STATE_ENTITY,
61-
RelationsQueryFilter.JSON_PROPERTY_DEFAULT_STATE_ENTITY,
62-
RelationsQueryFilter.JSON_PROPERTY_MULTI_ROOT
62+
RelationsQueryFilter.JSON_PROPERTY_DEFAULT_STATE_ENTITY
6363
})
6464
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.20.0")
6565
@JsonIgnoreProperties(
@@ -73,6 +73,10 @@ public class RelationsQueryFilter extends EntityFilter {
7373
@javax.annotation.Nullable
7474
private AliasEntityId rootEntity;
7575

76+
public static final String JSON_PROPERTY_MULTI_ROOT = "multiRoot";
77+
@javax.annotation.Nullable
78+
private Boolean multiRoot;
79+
7680
public static final String JSON_PROPERTY_MULTI_ROOT_ENTITIES_TYPE = "multiRootEntitiesType";
7781
@javax.annotation.Nullable
7882
private EntityType multiRootEntitiesType;
@@ -109,10 +113,6 @@ public class RelationsQueryFilter extends EntityFilter {
109113
@javax.annotation.Nullable
110114
private AliasEntityId defaultStateEntity;
111115

112-
public static final String JSON_PROPERTY_MULTI_ROOT = "multiRoot";
113-
@javax.annotation.Nullable
114-
private Boolean multiRoot;
115-
116116
public RelationsQueryFilter() {
117117
}
118118

@@ -140,6 +140,30 @@ public void setRootEntity(@javax.annotation.Nullable AliasEntityId rootEntity) {
140140
}
141141

142142

143+
public RelationsQueryFilter multiRoot(@javax.annotation.Nullable Boolean multiRoot) {
144+
this.multiRoot = multiRoot;
145+
return this;
146+
}
147+
148+
/**
149+
* Get multiRoot
150+
* @return multiRoot
151+
*/
152+
@javax.annotation.Nullable
153+
@JsonProperty(value = JSON_PROPERTY_MULTI_ROOT, required = false)
154+
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
155+
public Boolean getMultiRoot() {
156+
return multiRoot;
157+
}
158+
159+
160+
@JsonProperty(value = JSON_PROPERTY_MULTI_ROOT, required = false)
161+
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
162+
public void setMultiRoot(@javax.annotation.Nullable Boolean multiRoot) {
163+
this.multiRoot = multiRoot;
164+
}
165+
166+
143167
public RelationsQueryFilter multiRootEntitiesType(@javax.annotation.Nullable EntityType multiRootEntitiesType) {
144168
this.multiRootEntitiesType = multiRootEntitiesType;
145169
return this;
@@ -373,30 +397,6 @@ public void setDefaultStateEntity(@javax.annotation.Nullable AliasEntityId defau
373397
}
374398

375399

376-
public RelationsQueryFilter multiRoot(@javax.annotation.Nullable Boolean multiRoot) {
377-
this.multiRoot = multiRoot;
378-
return this;
379-
}
380-
381-
/**
382-
* Get multiRoot
383-
* @return multiRoot
384-
*/
385-
@javax.annotation.Nullable
386-
@JsonProperty(value = JSON_PROPERTY_MULTI_ROOT, required = false)
387-
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
388-
public Boolean getMultiRoot() {
389-
return multiRoot;
390-
}
391-
392-
393-
@JsonProperty(value = JSON_PROPERTY_MULTI_ROOT, required = false)
394-
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
395-
public void setMultiRoot(@javax.annotation.Nullable Boolean multiRoot) {
396-
this.multiRoot = multiRoot;
397-
}
398-
399-
400400
@Override
401401
public RelationsQueryFilter type(@javax.annotation.Nonnull String type) {
402402
this.setType(type);
@@ -416,6 +416,7 @@ public boolean equals(Object o) {
416416
}
417417
RelationsQueryFilter relationsQueryFilter = (RelationsQueryFilter) o;
418418
return Objects.equals(this.rootEntity, relationsQueryFilter.rootEntity) &&
419+
Objects.equals(this.multiRoot, relationsQueryFilter.multiRoot) &&
419420
Objects.equals(this.multiRootEntitiesType, relationsQueryFilter.multiRootEntitiesType) &&
420421
Objects.equals(this.multiRootEntityIds, relationsQueryFilter.multiRootEntityIds) &&
421422
Objects.equals(this.direction, relationsQueryFilter.direction) &&
@@ -425,13 +426,12 @@ public boolean equals(Object o) {
425426
Objects.equals(this.negate, relationsQueryFilter.negate) &&
426427
Objects.equals(this.rootStateEntity, relationsQueryFilter.rootStateEntity) &&
427428
Objects.equals(this.defaultStateEntity, relationsQueryFilter.defaultStateEntity) &&
428-
Objects.equals(this.multiRoot, relationsQueryFilter.multiRoot) &&
429429
super.equals(o);
430430
}
431431

432432
@Override
433433
public int hashCode() {
434-
return Objects.hash(rootEntity, multiRootEntitiesType, multiRootEntityIds, direction, filters, maxLevel, fetchLastLevelOnly, negate, rootStateEntity, defaultStateEntity, multiRoot, super.hashCode());
434+
return Objects.hash(rootEntity, multiRoot, multiRootEntitiesType, multiRootEntityIds, direction, filters, maxLevel, fetchLastLevelOnly, negate, rootStateEntity, defaultStateEntity, super.hashCode());
435435
}
436436

437437
@Override
@@ -440,6 +440,7 @@ public String toString() {
440440
sb.append("class RelationsQueryFilter {\n");
441441
sb.append(" ").append(toIndentedString(super.toString())).append("\n");
442442
sb.append(" rootEntity: ").append(toIndentedString(rootEntity)).append("\n");
443+
sb.append(" multiRoot: ").append(toIndentedString(multiRoot)).append("\n");
443444
sb.append(" multiRootEntitiesType: ").append(toIndentedString(multiRootEntitiesType)).append("\n");
444445
sb.append(" multiRootEntityIds: ").append(toIndentedString(multiRootEntityIds)).append("\n");
445446
sb.append(" direction: ").append(toIndentedString(direction)).append("\n");
@@ -449,7 +450,6 @@ public String toString() {
449450
sb.append(" negate: ").append(toIndentedString(negate)).append("\n");
450451
sb.append(" rootStateEntity: ").append(toIndentedString(rootStateEntity)).append("\n");
451452
sb.append(" defaultStateEntity: ").append(toIndentedString(defaultStateEntity)).append("\n");
452-
sb.append(" multiRoot: ").append(toIndentedString(multiRoot)).append("\n");
453453
sb.append("}");
454454
return sb.toString();
455455
}
@@ -507,6 +507,11 @@ public String toUrlQueryString(String prefix) {
507507
joiner.add(getRootEntity().toUrlQueryString(prefix + "rootEntity" + suffix));
508508
}
509509

510+
// add `multiRoot` to the URL query string
511+
if (getMultiRoot() != null) {
512+
joiner.add(String.format(java.util.Locale.ROOT, "%smultiRoot%s=%s", prefix, suffix, ApiClient.urlEncode(ApiClient.valueToString(getMultiRoot()))));
513+
}
514+
510515
// add `multiRootEntitiesType` to the URL query string
511516
if (getMultiRootEntitiesType() != null) {
512517
joiner.add(String.format(java.util.Locale.ROOT, "%smultiRootEntitiesType%s=%s", prefix, suffix, ApiClient.urlEncode(ApiClient.valueToString(getMultiRootEntitiesType()))));
@@ -563,11 +568,6 @@ public String toUrlQueryString(String prefix) {
563568
joiner.add(getDefaultStateEntity().toUrlQueryString(prefix + "defaultStateEntity" + suffix));
564569
}
565570

566-
// add `multiRoot` to the URL query string
567-
if (getMultiRoot() != null) {
568-
joiner.add(String.format(java.util.Locale.ROOT, "%smultiRoot%s=%s", prefix, suffix, ApiClient.urlEncode(ApiClient.valueToString(getMultiRoot()))));
569-
}
570-
571571
return joiner.toString();
572572
}
573573
static {

ce/src/main/java/org/thingsboard/client/model/ShortCustomerInfo.java

Lines changed: 4 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,7 @@
3838
@JsonPropertyOrder({
3939
ShortCustomerInfo.JSON_PROPERTY_CUSTOMER_ID,
4040
ShortCustomerInfo.JSON_PROPERTY_TITLE,
41-
ShortCustomerInfo.JSON_PROPERTY_IS_PUBLIC,
42-
ShortCustomerInfo.JSON_PROPERTY_PUBLIC
41+
ShortCustomerInfo.JSON_PROPERTY_IS_PUBLIC
4342
})
4443
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.20.0")
4544
public class ShortCustomerInfo {
@@ -55,10 +54,6 @@ public class ShortCustomerInfo {
5554
@javax.annotation.Nullable
5655
private Boolean isPublic;
5756

58-
public static final String JSON_PROPERTY_PUBLIC = "public";
59-
@javax.annotation.Nullable
60-
private Boolean _public;
61-
6257
public ShortCustomerInfo() {
6358
}
6459

@@ -116,7 +111,7 @@ public ShortCustomerInfo isPublic(@javax.annotation.Nullable Boolean isPublic) {
116111
}
117112

118113
/**
119-
* Get isPublic
114+
* Indicates special &#39;Public&#39; customer used to embed dashboards on public websites.
120115
* @return isPublic
121116
*/
122117
@javax.annotation.Nullable
@@ -134,30 +129,6 @@ public void setIsPublic(@javax.annotation.Nullable Boolean isPublic) {
134129
}
135130

136131

137-
public ShortCustomerInfo _public(@javax.annotation.Nullable Boolean _public) {
138-
this._public = _public;
139-
return this;
140-
}
141-
142-
/**
143-
* Get _public
144-
* @return _public
145-
*/
146-
@javax.annotation.Nullable
147-
@JsonProperty(value = JSON_PROPERTY_PUBLIC, required = false)
148-
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
149-
public Boolean getPublic() {
150-
return _public;
151-
}
152-
153-
154-
@JsonProperty(value = JSON_PROPERTY_PUBLIC, required = false)
155-
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
156-
public void setPublic(@javax.annotation.Nullable Boolean _public) {
157-
this._public = _public;
158-
}
159-
160-
161132
/**
162133
* Return true if this ShortCustomerInfo object is equal to o.
163134
*/
@@ -172,13 +143,12 @@ public boolean equals(Object o) {
172143
ShortCustomerInfo shortCustomerInfo = (ShortCustomerInfo) o;
173144
return Objects.equals(this.customerId, shortCustomerInfo.customerId) &&
174145
Objects.equals(this.title, shortCustomerInfo.title) &&
175-
Objects.equals(this.isPublic, shortCustomerInfo.isPublic) &&
176-
Objects.equals(this._public, shortCustomerInfo._public);
146+
Objects.equals(this.isPublic, shortCustomerInfo.isPublic);
177147
}
178148

179149
@Override
180150
public int hashCode() {
181-
return Objects.hash(customerId, title, isPublic, _public);
151+
return Objects.hash(customerId, title, isPublic);
182152
}
183153

184154
@Override
@@ -188,7 +158,6 @@ public String toString() {
188158
sb.append(" customerId: ").append(toIndentedString(customerId)).append("\n");
189159
sb.append(" title: ").append(toIndentedString(title)).append("\n");
190160
sb.append(" isPublic: ").append(toIndentedString(isPublic)).append("\n");
191-
sb.append(" _public: ").append(toIndentedString(_public)).append("\n");
192161
sb.append("}");
193162
return sb.toString();
194163
}
@@ -251,11 +220,6 @@ public String toUrlQueryString(String prefix) {
251220
joiner.add(String.format(java.util.Locale.ROOT, "%sisPublic%s=%s", prefix, suffix, ApiClient.urlEncode(ApiClient.valueToString(getIsPublic()))));
252221
}
253222

254-
// add `public` to the URL query string
255-
if (getPublic() != null) {
256-
joiner.add(String.format(java.util.Locale.ROOT, "%spublic%s=%s", prefix, suffix, ApiClient.urlEncode(ApiClient.valueToString(getPublic()))));
257-
}
258-
259223
return joiner.toString();
260224
}
261225
}

ce/src/main/java/org/thingsboard/client/model/SystemInfo.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ public SystemInfo monolith(@javax.annotation.Nullable Boolean monolith) {
9292
}
9393

9494
/**
95-
* Get monolith
95+
* Is monolith.
9696
* @return monolith
9797
*/
9898
@javax.annotation.Nullable

paas/docs/Integration.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,16 @@ A JSON value representing the integration.
1717
| **debugMode** | **Boolean** | Enable/disable debug. | [optional] |
1818
| **debugSettings** | **DebugSettings** | Debug settings object. | [optional] |
1919
| **enabled** | **Boolean** | Boolean flag to enable/disable the integration | [optional] |
20-
| **remote** | **Boolean** | Boolean flag to enable/disable the integration to be executed remotely. Remote integration is launched in a separate microservice. Local integration is executed by the platform core | [optional] |
2120
| **allowCreateDevicesOrAssets** | **Boolean** | Boolean flag to allow/disallow the integration to create devices or assets that send message and do not exist in the system yet | [optional] |
22-
| **edgeTemplate** | **Boolean** | Boolean flag that specifies that is regular or edge template integration | [optional] |
2321
| **version** | **Long** | | [optional] |
2422
| **defaultConverterId** | **ConverterId** | JSON object with the Uplink Converter Id | |
2523
| **downlinkConverterId** | **ConverterId** | JSON object with the Downlink Converter Id | [optional] |
2624
| **routingKey** | **String** | String value used by HTTP based integrations for the base URL construction and by the remote integrations. Remote integration uses this value along with the 'secret' for kind of security and validation to be able to connect to the platform using Grpc | |
2725
| **secret** | **String** | String value used by the remote integrations. Remote integration uses this value along with the 'routingKey' for kind of security and validation to be able to connect to the platform using Grpc | [optional] |
2826
| **_configuration** | **com.fasterxml.jackson.databind.JsonNode** | JSON object representing integration configuration. Each integration type has specific configuration with the connectivity parameters (like 'host' and 'port' for MQTT type or 'baseUrl' for HTTP based type, etc.) and other important parameters dependent on the integration type | |
2927
| **additionalInfo** | **com.fasterxml.jackson.databind.JsonNode** | Additional parameters of the integration | [optional] |
28+
| **edgeTemplate** | **Boolean** | Boolean flag that specifies that is regular or edge template integration | [optional] |
29+
| **remote** | **Boolean** | Boolean flag to enable/disable the integration to be executed remotely. Remote integration is launched in a separate microservice. Local integration is executed by the platform core | [optional] |
3030

3131

3232

paas/docs/IntegrationInfo.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@
1515
| **debugMode** | **Boolean** | Enable/disable debug. | [optional] |
1616
| **debugSettings** | **DebugSettings** | Debug settings object. | [optional] |
1717
| **enabled** | **Boolean** | Boolean flag to enable/disable the integration | [optional] |
18-
| **remote** | **Boolean** | Boolean flag to enable/disable the integration to be executed remotely. Remote integration is launched in a separate microservice. Local integration is executed by the platform core | [optional] |
1918
| **allowCreateDevicesOrAssets** | **Boolean** | Boolean flag to allow/disallow the integration to create devices or assets that send message and do not exist in the system yet | [optional] |
20-
| **edgeTemplate** | **Boolean** | Boolean flag that specifies that is regular or edge template integration | [optional] |
2119
| **version** | **Long** | | [optional] |
2220
| **status** | **Object** | | [optional] |
2321
| **stats** | **Object** | | [optional] |
22+
| **edgeTemplate** | **Boolean** | Boolean flag that specifies that is regular or edge template integration | [optional] |
23+
| **remote** | **Boolean** | Boolean flag to enable/disable the integration to be executed remotely. Remote integration is launched in a separate microservice. Local integration is executed by the platform core | [optional] |
2424

2525

2626

paas/docs/RelationsQueryFilter.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
| Name | Type | Description | Notes |
1111
|------------ | ------------- | ------------- | -------------|
1212
| **rootEntity** | **AliasEntityId** | | [optional] |
13+
| **multiRoot** | **Boolean** | | [optional] |
1314
| **multiRootEntitiesType** | **EntityType** | | [optional] |
1415
| **multiRootEntityIds** | **Set\<String\>** | | [optional] |
1516
| **direction** | **EntitySearchDirection** | | [optional] |
@@ -19,7 +20,6 @@
1920
| **negate** | **Boolean** | | [optional] |
2021
| **rootStateEntity** | **Boolean** | | [optional] |
2122
| **defaultStateEntity** | **AliasEntityId** | | [optional] |
22-
| **multiRoot** | **Boolean** | | [optional] |
2323

2424

2525

0 commit comments

Comments
 (0)