@openremote/rest 1.3.0-snapshot.20250124124333 → 1.3.0-snapshot.20250128141336
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/umd/index.bundle.js +1 -1
- package/dist/umd/index.js +1 -1
- package/lib/restclient.d.ts +506 -506
- package/lib/restclient.js +1 -1
- package/lib/restclient.js.map +1 -1
- package/package.json +3 -3
package/lib/restclient.d.ts
CHANGED
|
@@ -9,116 +9,49 @@ export interface HttpClient<O> {
|
|
|
9
9
|
options?: O;
|
|
10
10
|
}): RestResponse<R>;
|
|
11
11
|
}
|
|
12
|
-
export declare class
|
|
13
|
-
protected httpClient: HttpClient<O>;
|
|
14
|
-
constructor(httpClient: HttpClient<O>);
|
|
15
|
-
/**
|
|
16
|
-
* HTTP POST /alarm
|
|
17
|
-
* Java method: org.openremote.model.alarm.AlarmResource.createAlarm
|
|
18
|
-
*/
|
|
19
|
-
createAlarm(alarm: Model.Alarm, queryParams?: {
|
|
20
|
-
assetIds?: any[];
|
|
21
|
-
}, options?: O): RestResponse<Model.SentAlarm>;
|
|
22
|
-
/**
|
|
23
|
-
* HTTP GET /alarm
|
|
24
|
-
* Java method: org.openremote.model.alarm.AlarmResource.getAlarms
|
|
25
|
-
*/
|
|
26
|
-
getAlarms(queryParams?: {
|
|
27
|
-
realm?: any;
|
|
28
|
-
status?: Model.AlarmStatus;
|
|
29
|
-
assetId?: any;
|
|
30
|
-
assigneeId?: any;
|
|
31
|
-
}, options?: O): RestResponse<Model.SentAlarm[]>;
|
|
32
|
-
/**
|
|
33
|
-
* HTTP DELETE /alarm
|
|
34
|
-
* Java method: org.openremote.model.alarm.AlarmResource.removeAlarms
|
|
35
|
-
*/
|
|
36
|
-
removeAlarms(ids: any[], options?: O): RestResponse<void>;
|
|
37
|
-
/**
|
|
38
|
-
* HTTP PUT /alarm/assets
|
|
39
|
-
* Java method: org.openremote.model.alarm.AlarmResource.setAssetLinks
|
|
40
|
-
*/
|
|
41
|
-
setAssetLinks(links: Model.AlarmAssetLink[], options?: O): RestResponse<void>;
|
|
42
|
-
/**
|
|
43
|
-
* HTTP GET /alarm/{alarmId}
|
|
44
|
-
* Java method: org.openremote.model.alarm.AlarmResource.getAlarm
|
|
45
|
-
*/
|
|
46
|
-
getAlarm(alarmId: any, options?: O): RestResponse<Model.SentAlarm>;
|
|
47
|
-
/**
|
|
48
|
-
* HTTP DELETE /alarm/{alarmId}
|
|
49
|
-
* Java method: org.openremote.model.alarm.AlarmResource.removeAlarm
|
|
50
|
-
*/
|
|
51
|
-
removeAlarm(alarmId: any, options?: O): RestResponse<void>;
|
|
52
|
-
/**
|
|
53
|
-
* HTTP PUT /alarm/{alarmId}
|
|
54
|
-
* Java method: org.openremote.model.alarm.AlarmResource.updateAlarm
|
|
55
|
-
*/
|
|
56
|
-
updateAlarm(alarmId: any, alarm: Model.SentAlarm, options?: O): RestResponse<void>;
|
|
57
|
-
/**
|
|
58
|
-
* HTTP GET /alarm/{alarmId}/assets
|
|
59
|
-
* Java method: org.openremote.model.alarm.AlarmResource.getAssetLinks
|
|
60
|
-
*/
|
|
61
|
-
getAssetLinks(alarmId: any, queryParams?: {
|
|
62
|
-
realm?: any;
|
|
63
|
-
}, options?: O): RestResponse<Model.AlarmAssetLink[]>;
|
|
64
|
-
}
|
|
65
|
-
export declare class DashboardResourceClient<O> {
|
|
12
|
+
export declare class StatusResourceClient<O> {
|
|
66
13
|
protected httpClient: HttpClient<O>;
|
|
67
14
|
constructor(httpClient: HttpClient<O>);
|
|
68
15
|
/**
|
|
69
|
-
* HTTP
|
|
70
|
-
* Java method: org.openremote.model.
|
|
71
|
-
*/
|
|
72
|
-
create(dashboard: Model.Dashboard, options?: O): RestResponse<Model.Dashboard>;
|
|
73
|
-
/**
|
|
74
|
-
* HTTP PUT /dashboard
|
|
75
|
-
* Java method: org.openremote.model.dashboard.DashboardResource.update
|
|
76
|
-
*/
|
|
77
|
-
update(dashboard: Model.Dashboard, options?: O): RestResponse<Model.Dashboard>;
|
|
78
|
-
/**
|
|
79
|
-
* HTTP GET /dashboard/all/{realm}
|
|
80
|
-
* Java method: org.openremote.model.dashboard.DashboardResource.getAllRealmDashboards
|
|
81
|
-
*/
|
|
82
|
-
getAllRealmDashboards(realm: any, options?: O): RestResponse<Model.Dashboard[]>;
|
|
83
|
-
/**
|
|
84
|
-
* HTTP POST /dashboard/query
|
|
85
|
-
* Java method: org.openremote.model.dashboard.DashboardResource.query
|
|
86
|
-
*/
|
|
87
|
-
query(dashboardQuery: Model.DashboardQuery, options?: O): RestResponse<Model.Dashboard[]>;
|
|
88
|
-
/**
|
|
89
|
-
* HTTP DELETE /dashboard/{realm}/{dashboardId}
|
|
90
|
-
* Java method: org.openremote.model.dashboard.DashboardResource.delete
|
|
16
|
+
* HTTP GET /health
|
|
17
|
+
* Java method: org.openremote.model.system.StatusResource.getHealthStatus
|
|
91
18
|
*/
|
|
92
|
-
|
|
19
|
+
getHealthStatus(options?: O): RestResponse<{
|
|
20
|
+
[index: string]: any;
|
|
21
|
+
}>;
|
|
93
22
|
/**
|
|
94
|
-
* HTTP GET /
|
|
95
|
-
* Java method: org.openremote.model.
|
|
23
|
+
* HTTP GET /info
|
|
24
|
+
* Java method: org.openremote.model.system.StatusResource.getInfo
|
|
96
25
|
*/
|
|
97
|
-
|
|
26
|
+
getInfo(options?: O): RestResponse<{
|
|
27
|
+
[index: string]: any;
|
|
28
|
+
}>;
|
|
98
29
|
}
|
|
99
|
-
export declare class
|
|
30
|
+
export declare class AgentResourceClient<O> {
|
|
100
31
|
protected httpClient: HttpClient<O>;
|
|
101
32
|
constructor(httpClient: HttpClient<O>);
|
|
102
33
|
/**
|
|
103
|
-
* HTTP
|
|
104
|
-
* Java method: org.openremote.model.
|
|
105
|
-
*/
|
|
106
|
-
createProvisioningConfig(provisioningConfig: Model.ProvisioningConfigUnion<any, any>, options?: O): RestResponse<number>;
|
|
107
|
-
/**
|
|
108
|
-
* HTTP GET /provisioning
|
|
109
|
-
* Java method: org.openremote.model.provisioning.ProvisioningResource.getProvisioningConfigs
|
|
34
|
+
* HTTP GET /agent/assetDiscovery/{agentId}
|
|
35
|
+
* Java method: org.openremote.model.asset.agent.AgentResource.doProtocolAssetDiscovery
|
|
110
36
|
*/
|
|
111
|
-
|
|
37
|
+
doProtocolAssetDiscovery(agentId: any, queryParams?: {
|
|
38
|
+
realm?: any;
|
|
39
|
+
}, options?: O): RestResponse<Model.AssetTreeNode[]>;
|
|
112
40
|
/**
|
|
113
|
-
* HTTP
|
|
114
|
-
* Java method: org.openremote.model.
|
|
41
|
+
* HTTP POST /agent/assetImport/{agentId}
|
|
42
|
+
* Java method: org.openremote.model.asset.agent.AgentResource.doProtocolAssetImport
|
|
115
43
|
*/
|
|
116
|
-
|
|
44
|
+
doProtocolAssetImport(agentId: any, fileInfo: Model.FileInfo, queryParams?: {
|
|
45
|
+
realm?: any;
|
|
46
|
+
}, options?: O): RestResponse<Model.AssetTreeNode[]>;
|
|
117
47
|
/**
|
|
118
|
-
* HTTP
|
|
119
|
-
* Java method: org.openremote.model.
|
|
48
|
+
* HTTP GET /agent/instanceDiscovery/{agentType}
|
|
49
|
+
* Java method: org.openremote.model.asset.agent.AgentResource.doProtocolInstanceDiscovery
|
|
120
50
|
*/
|
|
121
|
-
|
|
51
|
+
doProtocolInstanceDiscovery(agentType: any, queryParams?: {
|
|
52
|
+
parentId?: any;
|
|
53
|
+
realm?: any;
|
|
54
|
+
}, options?: O): RestResponse<Model.Agent[]>;
|
|
122
55
|
}
|
|
123
56
|
export declare class GatewayClientResourceClient<O> {
|
|
124
57
|
protected httpClient: HttpClient<O>;
|
|
@@ -156,109 +89,119 @@ export declare class GatewayClientResourceClient<O> {
|
|
|
156
89
|
*/
|
|
157
90
|
getConnectionStatus(realm: any, options?: O): RestResponse<Model.ConnectionStatus>;
|
|
158
91
|
}
|
|
159
|
-
export declare class
|
|
92
|
+
export declare class NotificationResourceClient<O> {
|
|
160
93
|
protected httpClient: HttpClient<O>;
|
|
161
94
|
constructor(httpClient: HttpClient<O>);
|
|
162
95
|
/**
|
|
163
|
-
* HTTP
|
|
164
|
-
* Java method: org.openremote.model.
|
|
96
|
+
* HTTP GET /notification
|
|
97
|
+
* Java method: org.openremote.model.notification.NotificationResource.getNotifications
|
|
165
98
|
*/
|
|
166
|
-
|
|
99
|
+
getNotifications(queryParams?: {
|
|
100
|
+
id?: any;
|
|
101
|
+
type?: any;
|
|
102
|
+
from?: any;
|
|
103
|
+
to?: any;
|
|
104
|
+
realmId?: any;
|
|
105
|
+
userId?: any;
|
|
106
|
+
assetId?: any;
|
|
107
|
+
}, options?: O): RestResponse<Model.SentNotification[]>;
|
|
167
108
|
/**
|
|
168
|
-
* HTTP DELETE /
|
|
169
|
-
* Java method: org.openremote.model.
|
|
109
|
+
* HTTP DELETE /notification
|
|
110
|
+
* Java method: org.openremote.model.notification.NotificationResource.removeNotifications
|
|
170
111
|
*/
|
|
171
|
-
|
|
172
|
-
|
|
112
|
+
removeNotifications(queryParams?: {
|
|
113
|
+
id?: any;
|
|
114
|
+
type?: any;
|
|
115
|
+
from?: any;
|
|
116
|
+
to?: any;
|
|
117
|
+
realmId?: any;
|
|
118
|
+
userId?: any;
|
|
119
|
+
assetId?: any;
|
|
173
120
|
}, options?: O): RestResponse<void>;
|
|
174
121
|
/**
|
|
175
|
-
* HTTP
|
|
176
|
-
* Java method: org.openremote.model.
|
|
122
|
+
* HTTP POST /notification/alert
|
|
123
|
+
* Java method: org.openremote.model.notification.NotificationResource.sendNotification
|
|
177
124
|
*/
|
|
178
|
-
|
|
125
|
+
sendNotification(notification: Model.Notification, options?: O): RestResponse<void>;
|
|
179
126
|
/**
|
|
180
|
-
* HTTP
|
|
181
|
-
* Java method: org.openremote.model.
|
|
127
|
+
* HTTP DELETE /notification/{notificationId}
|
|
128
|
+
* Java method: org.openremote.model.notification.NotificationResource.removeNotification
|
|
182
129
|
*/
|
|
183
|
-
|
|
130
|
+
removeNotification(notificationId: any, options?: O): RestResponse<void>;
|
|
184
131
|
/**
|
|
185
|
-
* HTTP
|
|
186
|
-
* Java method: org.openremote.model.
|
|
132
|
+
* HTTP PUT /notification/{notificationId}/acknowledged
|
|
133
|
+
* Java method: org.openremote.model.notification.NotificationResource.notificationAcknowledged
|
|
187
134
|
*/
|
|
188
|
-
|
|
189
|
-
|
|
135
|
+
notificationAcknowledged(notificationId: any, acknowledgement: any, queryParams?: {
|
|
136
|
+
targetId?: any;
|
|
190
137
|
}, options?: O): RestResponse<void>;
|
|
191
138
|
/**
|
|
192
|
-
* HTTP
|
|
193
|
-
* Java method: org.openremote.model.
|
|
194
|
-
*/
|
|
195
|
-
getPartial(assetId: any, options?: O): RestResponse<Model.Asset>;
|
|
196
|
-
/**
|
|
197
|
-
* HTTP POST /asset/query
|
|
198
|
-
* Java method: org.openremote.model.asset.AssetResource.queryAssets
|
|
199
|
-
*/
|
|
200
|
-
queryAssets(query: Model.AssetQuery, options?: O): RestResponse<Model.Asset[]>;
|
|
201
|
-
/**
|
|
202
|
-
* HTTP GET /asset/user/current
|
|
203
|
-
* Java method: org.openremote.model.asset.AssetResource.getCurrentUserAssets
|
|
139
|
+
* HTTP PUT /notification/{notificationId}/delivered
|
|
140
|
+
* Java method: org.openremote.model.notification.NotificationResource.notificationDelivered
|
|
204
141
|
*/
|
|
205
|
-
|
|
142
|
+
notificationDelivered(notificationId: any, queryParams?: {
|
|
143
|
+
targetId?: any;
|
|
144
|
+
}, options?: O): RestResponse<void>;
|
|
145
|
+
}
|
|
146
|
+
export declare class AssetDatapointResourceClient<O> {
|
|
147
|
+
protected httpClient: HttpClient<O>;
|
|
148
|
+
constructor(httpClient: HttpClient<O>);
|
|
206
149
|
/**
|
|
207
|
-
* HTTP
|
|
208
|
-
* Java method: org.openremote.model.
|
|
150
|
+
* HTTP GET /asset/datapoint/export
|
|
151
|
+
* Java method: org.openremote.model.datapoint.AssetDatapointResource.getDatapointExport
|
|
209
152
|
*/
|
|
210
|
-
|
|
153
|
+
getDatapointExport(queryParams?: {
|
|
154
|
+
attributeRefs?: any;
|
|
155
|
+
fromTimestamp?: number;
|
|
156
|
+
toTimestamp?: number;
|
|
157
|
+
}, options?: O): RestResponse<any>;
|
|
211
158
|
/**
|
|
212
|
-
* HTTP GET /asset/
|
|
213
|
-
* Java method: org.openremote.model.
|
|
159
|
+
* HTTP GET /asset/datapoint/periods
|
|
160
|
+
* Java method: org.openremote.model.datapoint.AssetDatapointResource.getDatapointPeriod
|
|
214
161
|
*/
|
|
215
|
-
|
|
216
|
-
realm?: any;
|
|
217
|
-
userId?: any;
|
|
162
|
+
getDatapointPeriod(queryParams?: {
|
|
218
163
|
assetId?: any;
|
|
219
|
-
|
|
164
|
+
attributeName?: any;
|
|
165
|
+
}, options?: O): RestResponse<Model.DatapointPeriod>;
|
|
220
166
|
/**
|
|
221
|
-
* HTTP POST /asset/
|
|
222
|
-
* Java method: org.openremote.model.
|
|
167
|
+
* HTTP POST /asset/datapoint/{assetId}/{attributeName}
|
|
168
|
+
* Java method: org.openremote.model.datapoint.AssetDatapointResource.getDatapoints
|
|
223
169
|
*/
|
|
224
|
-
|
|
170
|
+
getDatapoints(assetId: any, attributeName: any, query: Model.AssetDatapointQueryUnion, options?: O): RestResponse<Model.ValueDatapoint<any>[]>;
|
|
171
|
+
}
|
|
172
|
+
export declare class RealmResourceClient<O> {
|
|
173
|
+
protected httpClient: HttpClient<O>;
|
|
174
|
+
constructor(httpClient: HttpClient<O>);
|
|
225
175
|
/**
|
|
226
|
-
* HTTP
|
|
227
|
-
* Java method: org.openremote.model.
|
|
176
|
+
* HTTP POST /realm
|
|
177
|
+
* Java method: org.openremote.model.security.RealmResource.create
|
|
228
178
|
*/
|
|
229
|
-
|
|
179
|
+
create(realm: Model.Realm, options?: O): RestResponse<void>;
|
|
230
180
|
/**
|
|
231
|
-
* HTTP
|
|
232
|
-
* Java method: org.openremote.model.
|
|
181
|
+
* HTTP GET /realm
|
|
182
|
+
* Java method: org.openremote.model.security.RealmResource.getAll
|
|
233
183
|
*/
|
|
234
|
-
|
|
184
|
+
getAll(options?: O): RestResponse<Model.Realm[]>;
|
|
235
185
|
/**
|
|
236
|
-
* HTTP GET /
|
|
237
|
-
* Java method: org.openremote.model.
|
|
186
|
+
* HTTP GET /realm/accessible
|
|
187
|
+
* Java method: org.openremote.model.security.RealmResource.getAccessible
|
|
238
188
|
*/
|
|
239
|
-
|
|
189
|
+
getAccessible(options?: O): RestResponse<Model.Realm[]>;
|
|
240
190
|
/**
|
|
241
|
-
* HTTP
|
|
242
|
-
* Java method: org.openremote.model.
|
|
191
|
+
* HTTP DELETE /realm/{name}
|
|
192
|
+
* Java method: org.openremote.model.security.RealmResource.delete
|
|
243
193
|
*/
|
|
244
|
-
|
|
194
|
+
delete(name: any, options?: O): RestResponse<void>;
|
|
245
195
|
/**
|
|
246
|
-
* HTTP
|
|
247
|
-
* Java method: org.openremote.model.
|
|
196
|
+
* HTTP GET /realm/{name}
|
|
197
|
+
* Java method: org.openremote.model.security.RealmResource.get
|
|
248
198
|
*/
|
|
249
|
-
|
|
199
|
+
get(name: any, options?: O): RestResponse<Model.Realm>;
|
|
250
200
|
/**
|
|
251
|
-
* HTTP PUT /
|
|
252
|
-
* Java method: org.openremote.model.
|
|
253
|
-
*/
|
|
254
|
-
writeAttributeValue$PUT$asset_assetId_attribute_attributeName_timestamp(assetId: any, attributeName: any, timestamp: any, value: any, options?: O): RestResponse<Model.AttributeWriteResult>;
|
|
255
|
-
/**
|
|
256
|
-
* HTTP PUT /asset/{parentAssetId}/child
|
|
257
|
-
* Java method: org.openremote.model.asset.AssetResource.updateParent
|
|
201
|
+
* HTTP PUT /realm/{name}
|
|
202
|
+
* Java method: org.openremote.model.security.RealmResource.update
|
|
258
203
|
*/
|
|
259
|
-
|
|
260
|
-
assetIds?: any[];
|
|
261
|
-
}, options?: O): RestResponse<void>;
|
|
204
|
+
update(name: any, realm: Model.Realm, options?: O): RestResponse<void>;
|
|
262
205
|
}
|
|
263
206
|
export declare class ConfigurationResourceClient<O> {
|
|
264
207
|
protected httpClient: HttpClient<O>;
|
|
@@ -286,92 +229,123 @@ export declare class ConfigurationResourceClient<O> {
|
|
|
286
229
|
*/
|
|
287
230
|
getManagerConfigImage(filename: any, options?: O): RestResponse<any>;
|
|
288
231
|
}
|
|
289
|
-
export declare class
|
|
232
|
+
export declare class AssetPredictedDatapointResourceClient<O> {
|
|
290
233
|
protected httpClient: HttpClient<O>;
|
|
291
234
|
constructor(httpClient: HttpClient<O>);
|
|
292
235
|
/**
|
|
293
|
-
* HTTP POST /
|
|
294
|
-
* Java method: org.openremote.model.
|
|
236
|
+
* HTTP POST /asset/predicted/{assetId}/{attributeName}
|
|
237
|
+
* Java method: org.openremote.model.datapoint.AssetPredictedDatapointResource.getPredictedDatapoints
|
|
295
238
|
*/
|
|
296
|
-
|
|
239
|
+
getPredictedDatapoints(assetId: any, attributeName: any, query: Model.AssetDatapointQueryUnion, options?: O): RestResponse<Model.ValueDatapoint<any>[]>;
|
|
240
|
+
/**
|
|
241
|
+
* HTTP PUT /asset/predicted/{assetId}/{attributeName}
|
|
242
|
+
* Java method: org.openremote.model.datapoint.AssetPredictedDatapointResource.writePredictedDatapoints
|
|
243
|
+
*/
|
|
244
|
+
writePredictedDatapoints(assetId: any, attributeName: any, predictedDatapoints: Model.ValueDatapoint<any>[], options?: O): RestResponse<void>;
|
|
297
245
|
}
|
|
298
|
-
export declare class
|
|
246
|
+
export declare class AssetResourceClient<O> {
|
|
299
247
|
protected httpClient: HttpClient<O>;
|
|
300
248
|
constructor(httpClient: HttpClient<O>);
|
|
301
249
|
/**
|
|
302
|
-
* HTTP POST /
|
|
303
|
-
* Java method: org.openremote.model.
|
|
250
|
+
* HTTP POST /asset
|
|
251
|
+
* Java method: org.openremote.model.asset.AssetResource.create
|
|
304
252
|
*/
|
|
305
|
-
create(
|
|
253
|
+
create(asset: Model.Asset, options?: O): RestResponse<Model.Asset>;
|
|
306
254
|
/**
|
|
307
|
-
* HTTP
|
|
308
|
-
* Java method: org.openremote.model.
|
|
255
|
+
* HTTP DELETE /asset
|
|
256
|
+
* Java method: org.openremote.model.asset.AssetResource.delete
|
|
309
257
|
*/
|
|
310
|
-
|
|
258
|
+
delete(queryParams?: {
|
|
259
|
+
assetId?: any[];
|
|
260
|
+
}, options?: O): RestResponse<void>;
|
|
311
261
|
/**
|
|
312
|
-
* HTTP
|
|
313
|
-
* Java method: org.openremote.model.
|
|
262
|
+
* HTTP PUT /asset/attributes
|
|
263
|
+
* Java method: org.openremote.model.asset.AssetResource.writeAttributeValues
|
|
314
264
|
*/
|
|
315
|
-
|
|
265
|
+
writeAttributeValues(attributeStates: Model.AttributeState[], options?: O): RestResponse<Model.AttributeWriteResult[]>;
|
|
316
266
|
/**
|
|
317
|
-
* HTTP
|
|
318
|
-
* Java method: org.openremote.model.
|
|
267
|
+
* HTTP PUT /asset/attributes/timestamp
|
|
268
|
+
* Java method: org.openremote.model.asset.AssetResource.writeAttributeEvents
|
|
319
269
|
*/
|
|
320
|
-
|
|
270
|
+
writeAttributeEvents(attributeEvents: Model.AttributeEvent[], options?: O): RestResponse<Model.AttributeWriteResult[]>;
|
|
321
271
|
/**
|
|
322
|
-
* HTTP
|
|
323
|
-
* Java method: org.openremote.model.
|
|
272
|
+
* HTTP DELETE /asset/parent
|
|
273
|
+
* Java method: org.openremote.model.asset.AssetResource.updateNoneParent
|
|
324
274
|
*/
|
|
325
|
-
|
|
275
|
+
updateNoneParent(queryParams?: {
|
|
276
|
+
assetIds?: any[];
|
|
277
|
+
}, options?: O): RestResponse<void>;
|
|
326
278
|
/**
|
|
327
|
-
* HTTP
|
|
328
|
-
* Java method: org.openremote.model.
|
|
279
|
+
* HTTP GET /asset/partial/{assetId}
|
|
280
|
+
* Java method: org.openremote.model.asset.AssetResource.getPartial
|
|
329
281
|
*/
|
|
330
|
-
|
|
331
|
-
}
|
|
332
|
-
export declare class MapResourceClient<O> {
|
|
333
|
-
protected httpClient: HttpClient<O>;
|
|
334
|
-
constructor(httpClient: HttpClient<O>);
|
|
282
|
+
getPartial(assetId: any, options?: O): RestResponse<Model.Asset>;
|
|
335
283
|
/**
|
|
336
|
-
* HTTP
|
|
337
|
-
* Java method: org.openremote.model.
|
|
284
|
+
* HTTP POST /asset/query
|
|
285
|
+
* Java method: org.openremote.model.asset.AssetResource.queryAssets
|
|
338
286
|
*/
|
|
339
|
-
|
|
340
|
-
[id: string]: any;
|
|
341
|
-
}>;
|
|
287
|
+
queryAssets(query: Model.AssetQuery, options?: O): RestResponse<Model.Asset[]>;
|
|
342
288
|
/**
|
|
343
|
-
* HTTP
|
|
344
|
-
* Java method: org.openremote.model.
|
|
289
|
+
* HTTP GET /asset/user/current
|
|
290
|
+
* Java method: org.openremote.model.asset.AssetResource.getCurrentUserAssets
|
|
345
291
|
*/
|
|
346
|
-
|
|
347
|
-
[index: string]: Model.MapRealmConfig;
|
|
348
|
-
}, options?: O): RestResponse<any>;
|
|
292
|
+
getCurrentUserAssets(options?: O): RestResponse<Model.Asset[]>;
|
|
349
293
|
/**
|
|
350
|
-
* HTTP
|
|
351
|
-
* Java method: org.openremote.model.
|
|
294
|
+
* HTTP POST /asset/user/link
|
|
295
|
+
* Java method: org.openremote.model.asset.AssetResource.createUserAssetLinks
|
|
352
296
|
*/
|
|
353
|
-
|
|
354
|
-
[id: string]: any;
|
|
355
|
-
}>;
|
|
297
|
+
createUserAssetLinks(userAssets: Model.UserAssetLink[], options?: O): RestResponse<void>;
|
|
356
298
|
/**
|
|
357
|
-
* HTTP GET /
|
|
358
|
-
* Java method: org.openremote.model.
|
|
299
|
+
* HTTP GET /asset/user/link
|
|
300
|
+
* Java method: org.openremote.model.asset.AssetResource.getUserAssetLinks
|
|
359
301
|
*/
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
302
|
+
getUserAssetLinks(queryParams?: {
|
|
303
|
+
realm?: any;
|
|
304
|
+
userId?: any;
|
|
305
|
+
assetId?: any;
|
|
306
|
+
}, options?: O): RestResponse<Model.UserAssetLink[]>;
|
|
365
307
|
/**
|
|
366
|
-
* HTTP POST /asset/
|
|
367
|
-
* Java method: org.openremote.model.
|
|
308
|
+
* HTTP POST /asset/user/link/delete
|
|
309
|
+
* Java method: org.openremote.model.asset.AssetResource.deleteUserAssetLinks
|
|
368
310
|
*/
|
|
369
|
-
|
|
311
|
+
deleteUserAssetLinks(userAssets: Model.UserAssetLink[], options?: O): RestResponse<void>;
|
|
370
312
|
/**
|
|
371
|
-
* HTTP
|
|
372
|
-
* Java method: org.openremote.model.
|
|
313
|
+
* HTTP DELETE /asset/user/link/{realm}/{userId}
|
|
314
|
+
* Java method: org.openremote.model.asset.AssetResource.deleteAllUserAssetLinks
|
|
373
315
|
*/
|
|
374
|
-
|
|
316
|
+
deleteAllUserAssetLinks(realm: any, userId: any, options?: O): RestResponse<void>;
|
|
317
|
+
/**
|
|
318
|
+
* HTTP DELETE /asset/user/link/{realm}/{userId}/{assetId}
|
|
319
|
+
* Java method: org.openremote.model.asset.AssetResource.deleteUserAssetLink
|
|
320
|
+
*/
|
|
321
|
+
deleteUserAssetLink(realm: any, userId: any, assetId: any, options?: O): RestResponse<void>;
|
|
322
|
+
/**
|
|
323
|
+
* HTTP GET /asset/{assetId}
|
|
324
|
+
* Java method: org.openremote.model.asset.AssetResource.get
|
|
325
|
+
*/
|
|
326
|
+
get(assetId: any, options?: O): RestResponse<Model.Asset>;
|
|
327
|
+
/**
|
|
328
|
+
* HTTP PUT /asset/{assetId}
|
|
329
|
+
* Java method: org.openremote.model.asset.AssetResource.update
|
|
330
|
+
*/
|
|
331
|
+
update(assetId: any, asset: Model.Asset, options?: O): RestResponse<Model.Asset>;
|
|
332
|
+
/**
|
|
333
|
+
* HTTP PUT /asset/{assetId}/attribute/{attributeName}
|
|
334
|
+
* Java method: org.openremote.model.asset.AssetResource.writeAttributeValue
|
|
335
|
+
*/
|
|
336
|
+
writeAttributeValue$PUT$asset_assetId_attribute_attributeName(assetId: any, attributeName: any, value: any, options?: O): RestResponse<Model.AttributeWriteResult>;
|
|
337
|
+
/**
|
|
338
|
+
* HTTP PUT /asset/{assetId}/attribute/{attributeName}/{timestamp}
|
|
339
|
+
* Java method: org.openremote.model.asset.AssetResource.writeAttributeValue
|
|
340
|
+
*/
|
|
341
|
+
writeAttributeValue$PUT$asset_assetId_attribute_attributeName_timestamp(assetId: any, attributeName: any, timestamp: any, value: any, options?: O): RestResponse<Model.AttributeWriteResult>;
|
|
342
|
+
/**
|
|
343
|
+
* HTTP PUT /asset/{parentAssetId}/child
|
|
344
|
+
* Java method: org.openremote.model.asset.AssetResource.updateParent
|
|
345
|
+
*/
|
|
346
|
+
updateParent(parentAssetId: any, queryParams?: {
|
|
347
|
+
assetIds?: any[];
|
|
348
|
+
}, options?: O): RestResponse<void>;
|
|
375
349
|
}
|
|
376
350
|
export declare class UserResourceClient<O> {
|
|
377
351
|
protected httpClient: HttpClient<O>;
|
|
@@ -497,349 +471,322 @@ export declare class UserResourceClient<O> {
|
|
|
497
471
|
*/
|
|
498
472
|
get(realm: any, userId: any, options?: O): RestResponse<Model.User>;
|
|
499
473
|
}
|
|
500
|
-
export declare class
|
|
474
|
+
export declare class RulesResourceClient<O> {
|
|
501
475
|
protected httpClient: HttpClient<O>;
|
|
502
476
|
constructor(httpClient: HttpClient<O>);
|
|
503
477
|
/**
|
|
504
|
-
* HTTP
|
|
505
|
-
* Java method: org.openremote.model.
|
|
478
|
+
* HTTP POST /rules
|
|
479
|
+
* Java method: org.openremote.model.rules.RulesResource.createGlobalRuleset
|
|
506
480
|
*/
|
|
507
|
-
|
|
508
|
-
realm?: any;
|
|
509
|
-
}, options?: O): RestResponse<Model.AssetTreeNode[]>;
|
|
481
|
+
createGlobalRuleset(ruleset: Model.GlobalRuleset, options?: O): RestResponse<number>;
|
|
510
482
|
/**
|
|
511
|
-
* HTTP
|
|
512
|
-
* Java method: org.openremote.model.
|
|
483
|
+
* HTTP GET /rules
|
|
484
|
+
* Java method: org.openremote.model.rules.RulesResource.getGlobalRulesets
|
|
513
485
|
*/
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
486
|
+
getGlobalRulesets(queryParams?: {
|
|
487
|
+
language?: Model.RulesetLang[];
|
|
488
|
+
fullyPopulate?: boolean;
|
|
489
|
+
}, options?: O): RestResponse<Model.GlobalRuleset[]>;
|
|
517
490
|
/**
|
|
518
|
-
* HTTP
|
|
519
|
-
* Java method: org.openremote.model.
|
|
491
|
+
* HTTP POST /rules/asset
|
|
492
|
+
* Java method: org.openremote.model.rules.RulesResource.createAssetRuleset
|
|
520
493
|
*/
|
|
521
|
-
|
|
522
|
-
parentId?: any;
|
|
523
|
-
realm?: any;
|
|
524
|
-
}, options?: O): RestResponse<Model.Agent[]>;
|
|
525
|
-
}
|
|
526
|
-
export declare class AppResourceClient<O> {
|
|
527
|
-
protected httpClient: HttpClient<O>;
|
|
528
|
-
constructor(httpClient: HttpClient<O>);
|
|
494
|
+
createAssetRuleset(ruleset: Model.AssetRuleset, options?: O): RestResponse<number>;
|
|
529
495
|
/**
|
|
530
|
-
* HTTP GET /
|
|
531
|
-
* Java method: org.openremote.model.
|
|
496
|
+
* HTTP GET /rules/asset/for/{assetId}
|
|
497
|
+
* Java method: org.openremote.model.rules.RulesResource.getAssetRulesets
|
|
532
498
|
*/
|
|
533
|
-
|
|
499
|
+
getAssetRulesets(assetId: any, queryParams?: {
|
|
500
|
+
language?: Model.RulesetLang[];
|
|
501
|
+
fullyPopulate?: boolean;
|
|
502
|
+
}, options?: O): RestResponse<Model.AssetRuleset[]>;
|
|
534
503
|
/**
|
|
535
|
-
* HTTP
|
|
536
|
-
* Java method: org.openremote.model.
|
|
504
|
+
* HTTP DELETE /rules/asset/{id}
|
|
505
|
+
* Java method: org.openremote.model.rules.RulesResource.deleteAssetRuleset
|
|
537
506
|
*/
|
|
538
|
-
|
|
507
|
+
deleteAssetRuleset(id: any, options?: O): RestResponse<void>;
|
|
539
508
|
/**
|
|
540
|
-
* HTTP GET /
|
|
541
|
-
* Java method: org.openremote.model.
|
|
509
|
+
* HTTP GET /rules/asset/{id}
|
|
510
|
+
* Java method: org.openremote.model.rules.RulesResource.getAssetRuleset
|
|
542
511
|
*/
|
|
543
|
-
|
|
544
|
-
}
|
|
545
|
-
export declare class GatewayServiceResourceClient<O> {
|
|
546
|
-
protected httpClient: HttpClient<O>;
|
|
547
|
-
constructor(httpClient: HttpClient<O>);
|
|
512
|
+
getAssetRuleset(id: any, options?: O): RestResponse<Model.AssetRuleset>;
|
|
548
513
|
/**
|
|
549
|
-
* HTTP
|
|
550
|
-
* Java method: org.openremote.model.
|
|
514
|
+
* HTTP PUT /rules/asset/{id}
|
|
515
|
+
* Java method: org.openremote.model.rules.RulesResource.updateAssetRuleset
|
|
551
516
|
*/
|
|
552
|
-
|
|
517
|
+
updateAssetRuleset(id: any, ruleset: Model.AssetRuleset, options?: O): RestResponse<void>;
|
|
553
518
|
/**
|
|
554
|
-
* HTTP
|
|
555
|
-
* Java method: org.openremote.model.
|
|
519
|
+
* HTTP GET /rules/geofences/{assetId}
|
|
520
|
+
* Java method: org.openremote.model.rules.RulesResource.getAssetGeofences
|
|
556
521
|
*/
|
|
557
|
-
|
|
522
|
+
getAssetGeofences(assetId: any, options?: O): RestResponse<Model.GeofenceDefinition[]>;
|
|
558
523
|
/**
|
|
559
|
-
* HTTP GET /
|
|
560
|
-
* Java method: org.openremote.model.
|
|
524
|
+
* HTTP GET /rules/info/asset/{assetId}
|
|
525
|
+
* Java method: org.openremote.model.rules.RulesResource.getAssetEngineInfo
|
|
561
526
|
*/
|
|
562
|
-
|
|
527
|
+
getAssetEngineInfo(assetId: any, options?: O): RestResponse<Model.RulesEngineInfo>;
|
|
563
528
|
/**
|
|
564
|
-
* HTTP GET /
|
|
565
|
-
* Java method: org.openremote.model.
|
|
529
|
+
* HTTP GET /rules/info/global
|
|
530
|
+
* Java method: org.openremote.model.rules.RulesResource.getGlobalEngineInfo
|
|
566
531
|
*/
|
|
567
|
-
|
|
532
|
+
getGlobalEngineInfo(options?: O): RestResponse<Model.RulesEngineInfo>;
|
|
568
533
|
/**
|
|
569
|
-
* HTTP GET /
|
|
570
|
-
* Java method: org.openremote.model.
|
|
534
|
+
* HTTP GET /rules/info/realm/{realm}
|
|
535
|
+
* Java method: org.openremote.model.rules.RulesResource.getRealmEngineInfo
|
|
571
536
|
*/
|
|
572
|
-
|
|
573
|
-
}
|
|
574
|
-
export declare class AssetDatapointResourceClient<O> {
|
|
575
|
-
protected httpClient: HttpClient<O>;
|
|
576
|
-
constructor(httpClient: HttpClient<O>);
|
|
537
|
+
getRealmEngineInfo(realm: any, options?: O): RestResponse<Model.RulesEngineInfo>;
|
|
577
538
|
/**
|
|
578
|
-
* HTTP
|
|
579
|
-
* Java method: org.openremote.model.
|
|
539
|
+
* HTTP POST /rules/realm
|
|
540
|
+
* Java method: org.openremote.model.rules.RulesResource.createRealmRuleset
|
|
580
541
|
*/
|
|
581
|
-
|
|
582
|
-
attributeRefs?: any;
|
|
583
|
-
fromTimestamp?: number;
|
|
584
|
-
toTimestamp?: number;
|
|
585
|
-
}, options?: O): RestResponse<any>;
|
|
542
|
+
createRealmRuleset(ruleset: Model.RealmRuleset, options?: O): RestResponse<number>;
|
|
586
543
|
/**
|
|
587
|
-
* HTTP GET /
|
|
588
|
-
* Java method: org.openremote.model.
|
|
544
|
+
* HTTP GET /rules/realm/for/{realm}
|
|
545
|
+
* Java method: org.openremote.model.rules.RulesResource.getRealmRulesets
|
|
589
546
|
*/
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
}, options?: O): RestResponse<Model.
|
|
547
|
+
getRealmRulesets(realm: any, queryParams?: {
|
|
548
|
+
language?: Model.RulesetLang[];
|
|
549
|
+
fullyPopulate?: boolean;
|
|
550
|
+
}, options?: O): RestResponse<Model.RealmRuleset[]>;
|
|
594
551
|
/**
|
|
595
|
-
* HTTP
|
|
596
|
-
* Java method: org.openremote.model.
|
|
552
|
+
* HTTP DELETE /rules/realm/{id}
|
|
553
|
+
* Java method: org.openremote.model.rules.RulesResource.deleteRealmRuleset
|
|
597
554
|
*/
|
|
598
|
-
|
|
599
|
-
}
|
|
600
|
-
export declare class StatusResourceClient<O> {
|
|
601
|
-
protected httpClient: HttpClient<O>;
|
|
602
|
-
constructor(httpClient: HttpClient<O>);
|
|
555
|
+
deleteRealmRuleset(id: any, options?: O): RestResponse<void>;
|
|
603
556
|
/**
|
|
604
|
-
* HTTP GET /
|
|
605
|
-
* Java method: org.openremote.model.
|
|
557
|
+
* HTTP GET /rules/realm/{id}
|
|
558
|
+
* Java method: org.openremote.model.rules.RulesResource.getRealmRuleset
|
|
606
559
|
*/
|
|
607
|
-
|
|
608
|
-
[index: string]: any;
|
|
609
|
-
}>;
|
|
560
|
+
getRealmRuleset(id: any, options?: O): RestResponse<Model.RealmRuleset>;
|
|
610
561
|
/**
|
|
611
|
-
* HTTP
|
|
612
|
-
* Java method: org.openremote.model.
|
|
562
|
+
* HTTP PUT /rules/realm/{id}
|
|
563
|
+
* Java method: org.openremote.model.rules.RulesResource.updateRealmRuleset
|
|
613
564
|
*/
|
|
614
|
-
|
|
615
|
-
[index: string]: any;
|
|
616
|
-
}>;
|
|
617
|
-
}
|
|
618
|
-
export declare class FlowResourceClient<O> {
|
|
619
|
-
protected httpClient: HttpClient<O>;
|
|
620
|
-
constructor(httpClient: HttpClient<O>);
|
|
565
|
+
updateRealmRuleset(id: any, ruleset: Model.RealmRuleset, options?: O): RestResponse<void>;
|
|
621
566
|
/**
|
|
622
|
-
* HTTP
|
|
623
|
-
* Java method: org.openremote.model.rules.
|
|
567
|
+
* HTTP DELETE /rules/{id}
|
|
568
|
+
* Java method: org.openremote.model.rules.RulesResource.deleteGlobalRuleset
|
|
624
569
|
*/
|
|
625
|
-
|
|
570
|
+
deleteGlobalRuleset(id: any, options?: O): RestResponse<void>;
|
|
626
571
|
/**
|
|
627
|
-
* HTTP GET /
|
|
628
|
-
* Java method: org.openremote.model.rules.
|
|
572
|
+
* HTTP GET /rules/{id}
|
|
573
|
+
* Java method: org.openremote.model.rules.RulesResource.getGlobalRuleset
|
|
629
574
|
*/
|
|
630
|
-
|
|
575
|
+
getGlobalRuleset(id: any, options?: O): RestResponse<Model.GlobalRuleset>;
|
|
631
576
|
/**
|
|
632
|
-
* HTTP
|
|
633
|
-
* Java method: org.openremote.model.rules.
|
|
577
|
+
* HTTP PUT /rules/{id}
|
|
578
|
+
* Java method: org.openremote.model.rules.RulesResource.updateGlobalRuleset
|
|
634
579
|
*/
|
|
635
|
-
|
|
580
|
+
updateGlobalRuleset(id: any, ruleset: Model.GlobalRuleset, options?: O): RestResponse<void>;
|
|
636
581
|
}
|
|
637
|
-
export declare class
|
|
582
|
+
export declare class AlarmResourceClient<O> {
|
|
638
583
|
protected httpClient: HttpClient<O>;
|
|
639
584
|
constructor(httpClient: HttpClient<O>);
|
|
640
585
|
/**
|
|
641
|
-
* HTTP
|
|
642
|
-
* Java method: org.openremote.model.
|
|
586
|
+
* HTTP POST /alarm
|
|
587
|
+
* Java method: org.openremote.model.alarm.AlarmResource.createAlarm
|
|
643
588
|
*/
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
}, options?: O): RestResponse<Model.AssetDescriptor[]>;
|
|
589
|
+
createAlarm(alarm: Model.Alarm, queryParams?: {
|
|
590
|
+
assetIds?: any[];
|
|
591
|
+
}, options?: O): RestResponse<Model.SentAlarm>;
|
|
648
592
|
/**
|
|
649
|
-
* HTTP GET /
|
|
650
|
-
* Java method: org.openremote.model.
|
|
593
|
+
* HTTP GET /alarm
|
|
594
|
+
* Java method: org.openremote.model.alarm.AlarmResource.getAlarms
|
|
651
595
|
*/
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
596
|
+
getAlarms(queryParams?: {
|
|
597
|
+
realm?: any;
|
|
598
|
+
status?: Model.AlarmStatus;
|
|
599
|
+
assetId?: any;
|
|
600
|
+
assigneeId?: any;
|
|
601
|
+
}, options?: O): RestResponse<Model.SentAlarm[]>;
|
|
655
602
|
/**
|
|
656
|
-
* HTTP
|
|
657
|
-
* Java method: org.openremote.model.
|
|
603
|
+
* HTTP DELETE /alarm
|
|
604
|
+
* Java method: org.openremote.model.alarm.AlarmResource.removeAlarms
|
|
658
605
|
*/
|
|
659
|
-
|
|
660
|
-
parentId?: any;
|
|
661
|
-
parentType?: any;
|
|
662
|
-
}, options?: O): RestResponse<Model.AssetTypeInfo[]>;
|
|
606
|
+
removeAlarms(ids: any[], options?: O): RestResponse<void>;
|
|
663
607
|
/**
|
|
664
|
-
* HTTP
|
|
665
|
-
* Java method: org.openremote.model.
|
|
608
|
+
* HTTP PUT /alarm/assets
|
|
609
|
+
* Java method: org.openremote.model.alarm.AlarmResource.setAssetLinks
|
|
666
610
|
*/
|
|
667
|
-
|
|
668
|
-
parentId?: any;
|
|
669
|
-
}, options?: O): RestResponse<{
|
|
670
|
-
[index: string]: Model.MetaItemDescriptor;
|
|
671
|
-
}>;
|
|
611
|
+
setAssetLinks(links: Model.AlarmAssetLink[], options?: O): RestResponse<void>;
|
|
672
612
|
/**
|
|
673
|
-
* HTTP GET /
|
|
674
|
-
* Java method: org.openremote.model.
|
|
613
|
+
* HTTP GET /alarm/{alarmId}
|
|
614
|
+
* Java method: org.openremote.model.alarm.AlarmResource.getAlarm
|
|
675
615
|
*/
|
|
676
|
-
|
|
677
|
-
parentId?: any;
|
|
678
|
-
}, options?: O): RestResponse<{
|
|
679
|
-
[index: string]: Model.ValueDescriptor;
|
|
680
|
-
}>;
|
|
681
|
-
}
|
|
682
|
-
export declare class NotificationResourceClient<O> {
|
|
683
|
-
protected httpClient: HttpClient<O>;
|
|
684
|
-
constructor(httpClient: HttpClient<O>);
|
|
616
|
+
getAlarm(alarmId: any, options?: O): RestResponse<Model.SentAlarm>;
|
|
685
617
|
/**
|
|
686
|
-
* HTTP
|
|
687
|
-
* Java method: org.openremote.model.
|
|
618
|
+
* HTTP DELETE /alarm/{alarmId}
|
|
619
|
+
* Java method: org.openremote.model.alarm.AlarmResource.removeAlarm
|
|
688
620
|
*/
|
|
689
|
-
|
|
690
|
-
id?: any;
|
|
691
|
-
type?: any;
|
|
692
|
-
from?: any;
|
|
693
|
-
to?: any;
|
|
694
|
-
realmId?: any;
|
|
695
|
-
userId?: any;
|
|
696
|
-
assetId?: any;
|
|
697
|
-
}, options?: O): RestResponse<Model.SentNotification[]>;
|
|
621
|
+
removeAlarm(alarmId: any, options?: O): RestResponse<void>;
|
|
698
622
|
/**
|
|
699
|
-
* HTTP
|
|
700
|
-
* Java method: org.openremote.model.
|
|
623
|
+
* HTTP PUT /alarm/{alarmId}
|
|
624
|
+
* Java method: org.openremote.model.alarm.AlarmResource.updateAlarm
|
|
701
625
|
*/
|
|
702
|
-
|
|
703
|
-
id?: any;
|
|
704
|
-
type?: any;
|
|
705
|
-
from?: any;
|
|
706
|
-
to?: any;
|
|
707
|
-
realmId?: any;
|
|
708
|
-
userId?: any;
|
|
709
|
-
assetId?: any;
|
|
710
|
-
}, options?: O): RestResponse<void>;
|
|
626
|
+
updateAlarm(alarmId: any, alarm: Model.SentAlarm, options?: O): RestResponse<void>;
|
|
711
627
|
/**
|
|
712
|
-
* HTTP
|
|
713
|
-
* Java method: org.openremote.model.
|
|
628
|
+
* HTTP GET /alarm/{alarmId}/assets
|
|
629
|
+
* Java method: org.openremote.model.alarm.AlarmResource.getAssetLinks
|
|
714
630
|
*/
|
|
715
|
-
|
|
631
|
+
getAssetLinks(alarmId: any, queryParams?: {
|
|
632
|
+
realm?: any;
|
|
633
|
+
}, options?: O): RestResponse<Model.AlarmAssetLink[]>;
|
|
634
|
+
}
|
|
635
|
+
export declare class DashboardResourceClient<O> {
|
|
636
|
+
protected httpClient: HttpClient<O>;
|
|
637
|
+
constructor(httpClient: HttpClient<O>);
|
|
716
638
|
/**
|
|
717
|
-
* HTTP
|
|
718
|
-
* Java method: org.openremote.model.
|
|
639
|
+
* HTTP POST /dashboard
|
|
640
|
+
* Java method: org.openremote.model.dashboard.DashboardResource.create
|
|
719
641
|
*/
|
|
720
|
-
|
|
642
|
+
create(dashboard: Model.Dashboard, options?: O): RestResponse<Model.Dashboard>;
|
|
721
643
|
/**
|
|
722
|
-
* HTTP PUT /
|
|
723
|
-
* Java method: org.openremote.model.
|
|
644
|
+
* HTTP PUT /dashboard
|
|
645
|
+
* Java method: org.openremote.model.dashboard.DashboardResource.update
|
|
724
646
|
*/
|
|
725
|
-
|
|
726
|
-
targetId?: any;
|
|
727
|
-
}, options?: O): RestResponse<void>;
|
|
647
|
+
update(dashboard: Model.Dashboard, options?: O): RestResponse<Model.Dashboard>;
|
|
728
648
|
/**
|
|
729
|
-
* HTTP
|
|
730
|
-
* Java method: org.openremote.model.
|
|
649
|
+
* HTTP GET /dashboard/all/{realm}
|
|
650
|
+
* Java method: org.openremote.model.dashboard.DashboardResource.getAllRealmDashboards
|
|
731
651
|
*/
|
|
732
|
-
|
|
733
|
-
targetId?: any;
|
|
734
|
-
}, options?: O): RestResponse<void>;
|
|
735
|
-
}
|
|
736
|
-
export declare class RulesResourceClient<O> {
|
|
737
|
-
protected httpClient: HttpClient<O>;
|
|
738
|
-
constructor(httpClient: HttpClient<O>);
|
|
652
|
+
getAllRealmDashboards(realm: any, options?: O): RestResponse<Model.Dashboard[]>;
|
|
739
653
|
/**
|
|
740
|
-
* HTTP POST /
|
|
741
|
-
* Java method: org.openremote.model.
|
|
654
|
+
* HTTP POST /dashboard/query
|
|
655
|
+
* Java method: org.openremote.model.dashboard.DashboardResource.query
|
|
742
656
|
*/
|
|
743
|
-
|
|
657
|
+
query(dashboardQuery: Model.DashboardQuery, options?: O): RestResponse<Model.Dashboard[]>;
|
|
744
658
|
/**
|
|
745
|
-
* HTTP
|
|
746
|
-
* Java method: org.openremote.model.
|
|
659
|
+
* HTTP DELETE /dashboard/{realm}/{dashboardId}
|
|
660
|
+
* Java method: org.openremote.model.dashboard.DashboardResource.delete
|
|
747
661
|
*/
|
|
748
|
-
|
|
749
|
-
language?: Model.RulesetLang[];
|
|
750
|
-
fullyPopulate?: boolean;
|
|
751
|
-
}, options?: O): RestResponse<Model.GlobalRuleset[]>;
|
|
662
|
+
delete(realm: any, dashboardId: any, options?: O): RestResponse<void>;
|
|
752
663
|
/**
|
|
753
|
-
* HTTP
|
|
754
|
-
* Java method: org.openremote.model.
|
|
664
|
+
* HTTP GET /dashboard/{realm}/{dashboardId}
|
|
665
|
+
* Java method: org.openremote.model.dashboard.DashboardResource.get
|
|
755
666
|
*/
|
|
756
|
-
|
|
667
|
+
get(realm: any, dashboardId: any, options?: O): RestResponse<Model.Dashboard>;
|
|
668
|
+
}
|
|
669
|
+
export declare class ConsoleResourceClient<O> {
|
|
670
|
+
protected httpClient: HttpClient<O>;
|
|
671
|
+
constructor(httpClient: HttpClient<O>);
|
|
757
672
|
/**
|
|
758
|
-
* HTTP
|
|
759
|
-
* Java method: org.openremote.model.
|
|
673
|
+
* HTTP POST /console/register
|
|
674
|
+
* Java method: org.openremote.model.console.ConsoleResource.register
|
|
760
675
|
*/
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
676
|
+
register(consoleRegistration: Model.ConsoleRegistration, options?: O): RestResponse<Model.ConsoleRegistration>;
|
|
677
|
+
}
|
|
678
|
+
export declare class AssetModelResourceClient<O> {
|
|
679
|
+
protected httpClient: HttpClient<O>;
|
|
680
|
+
constructor(httpClient: HttpClient<O>);
|
|
765
681
|
/**
|
|
766
|
-
* HTTP
|
|
767
|
-
* Java method: org.openremote.model.
|
|
682
|
+
* HTTP GET /model/assetDescriptors
|
|
683
|
+
* Java method: org.openremote.model.asset.AssetModelResource.getAssetDescriptors
|
|
768
684
|
*/
|
|
769
|
-
|
|
685
|
+
getAssetDescriptors(queryParams?: {
|
|
686
|
+
parentId?: any;
|
|
687
|
+
parentType?: any;
|
|
688
|
+
}, options?: O): RestResponse<Model.AssetDescriptor[]>;
|
|
770
689
|
/**
|
|
771
|
-
* HTTP GET /
|
|
772
|
-
* Java method: org.openremote.model.
|
|
690
|
+
* HTTP GET /model/assetInfo/{assetType}
|
|
691
|
+
* Java method: org.openremote.model.asset.AssetModelResource.getAssetInfo
|
|
773
692
|
*/
|
|
774
|
-
|
|
693
|
+
getAssetInfo(assetType: any, queryParams?: {
|
|
694
|
+
parentId?: any;
|
|
695
|
+
}, options?: O): RestResponse<Model.AssetTypeInfo>;
|
|
775
696
|
/**
|
|
776
|
-
* HTTP
|
|
777
|
-
* Java method: org.openremote.model.
|
|
697
|
+
* HTTP GET /model/assetInfos
|
|
698
|
+
* Java method: org.openremote.model.asset.AssetModelResource.getAssetInfos
|
|
778
699
|
*/
|
|
779
|
-
|
|
700
|
+
getAssetInfos(queryParams?: {
|
|
701
|
+
parentId?: any;
|
|
702
|
+
parentType?: any;
|
|
703
|
+
}, options?: O): RestResponse<Model.AssetTypeInfo[]>;
|
|
780
704
|
/**
|
|
781
|
-
* HTTP GET /
|
|
782
|
-
* Java method: org.openremote.model.
|
|
705
|
+
* HTTP GET /model/metaItemDescriptors
|
|
706
|
+
* Java method: org.openremote.model.asset.AssetModelResource.getMetaItemDescriptors
|
|
783
707
|
*/
|
|
784
|
-
|
|
708
|
+
getMetaItemDescriptors(queryParams?: {
|
|
709
|
+
parentId?: any;
|
|
710
|
+
}, options?: O): RestResponse<{
|
|
711
|
+
[index: string]: Model.MetaItemDescriptor;
|
|
712
|
+
}>;
|
|
785
713
|
/**
|
|
786
|
-
* HTTP GET /
|
|
787
|
-
* Java method: org.openremote.model.
|
|
714
|
+
* HTTP GET /model/valueDescriptors
|
|
715
|
+
* Java method: org.openremote.model.asset.AssetModelResource.getValueDescriptors
|
|
788
716
|
*/
|
|
789
|
-
|
|
717
|
+
getValueDescriptors(queryParams?: {
|
|
718
|
+
parentId?: any;
|
|
719
|
+
}, options?: O): RestResponse<{
|
|
720
|
+
[index: string]: Model.ValueDescriptor;
|
|
721
|
+
}>;
|
|
722
|
+
}
|
|
723
|
+
export declare class AppResourceClient<O> {
|
|
724
|
+
protected httpClient: HttpClient<O>;
|
|
725
|
+
constructor(httpClient: HttpClient<O>);
|
|
790
726
|
/**
|
|
791
|
-
* HTTP GET /
|
|
792
|
-
* Java method: org.openremote.model.
|
|
727
|
+
* HTTP GET /apps
|
|
728
|
+
* Java method: org.openremote.model.apps.AppResource.getApps
|
|
793
729
|
*/
|
|
794
|
-
|
|
730
|
+
getApps(options?: O): RestResponse<any[]>;
|
|
795
731
|
/**
|
|
796
|
-
* HTTP GET /
|
|
797
|
-
* Java method: org.openremote.model.
|
|
732
|
+
* HTTP GET /apps/consoleConfig
|
|
733
|
+
* Java method: org.openremote.model.apps.AppResource.getConsoleConfig
|
|
798
734
|
*/
|
|
799
|
-
|
|
735
|
+
getConsoleConfig(options?: O): RestResponse<any>;
|
|
800
736
|
/**
|
|
801
|
-
* HTTP
|
|
802
|
-
* Java method: org.openremote.model.
|
|
737
|
+
* HTTP GET /apps/info
|
|
738
|
+
* Java method: org.openremote.model.apps.AppResource.getAppInfos
|
|
803
739
|
*/
|
|
804
|
-
|
|
740
|
+
getAppInfos(options?: O): RestResponse<any>;
|
|
741
|
+
}
|
|
742
|
+
export declare class FlowResourceClient<O> {
|
|
743
|
+
protected httpClient: HttpClient<O>;
|
|
744
|
+
constructor(httpClient: HttpClient<O>);
|
|
805
745
|
/**
|
|
806
|
-
* HTTP GET /
|
|
807
|
-
* Java method: org.openremote.model.rules.
|
|
746
|
+
* HTTP GET /flow
|
|
747
|
+
* Java method: org.openremote.model.rules.flow.FlowResource.getAllNodeDefinitions
|
|
808
748
|
*/
|
|
809
|
-
|
|
810
|
-
language?: Model.RulesetLang[];
|
|
811
|
-
fullyPopulate?: boolean;
|
|
812
|
-
}, options?: O): RestResponse<Model.RealmRuleset[]>;
|
|
749
|
+
getAllNodeDefinitions(options?: O): RestResponse<Model.Node[]>;
|
|
813
750
|
/**
|
|
814
|
-
* HTTP
|
|
815
|
-
* Java method: org.openremote.model.rules.
|
|
751
|
+
* HTTP GET /flow/{name}
|
|
752
|
+
* Java method: org.openremote.model.rules.flow.FlowResource.getNodeDefinition
|
|
816
753
|
*/
|
|
817
|
-
|
|
754
|
+
getNodeDefinition(name: any, options?: O): RestResponse<Model.Node>;
|
|
818
755
|
/**
|
|
819
|
-
* HTTP GET /
|
|
820
|
-
* Java method: org.openremote.model.rules.
|
|
756
|
+
* HTTP GET /flow/{type}
|
|
757
|
+
* Java method: org.openremote.model.rules.flow.FlowResource.getAllNodeDefinitionsByType
|
|
821
758
|
*/
|
|
822
|
-
|
|
759
|
+
getAllNodeDefinitionsByType(type: Model.NodeType, options?: O): RestResponse<Model.Node[]>;
|
|
760
|
+
}
|
|
761
|
+
export declare class MapResourceClient<O> {
|
|
762
|
+
protected httpClient: HttpClient<O>;
|
|
763
|
+
constructor(httpClient: HttpClient<O>);
|
|
823
764
|
/**
|
|
824
|
-
* HTTP
|
|
825
|
-
* Java method: org.openremote.model.
|
|
765
|
+
* HTTP GET /map
|
|
766
|
+
* Java method: org.openremote.model.map.MapResource.getSettings
|
|
826
767
|
*/
|
|
827
|
-
|
|
768
|
+
getSettings(options?: O): RestResponse<{
|
|
769
|
+
[id: string]: any;
|
|
770
|
+
}>;
|
|
828
771
|
/**
|
|
829
|
-
* HTTP
|
|
830
|
-
* Java method: org.openremote.model.
|
|
772
|
+
* HTTP PUT /map
|
|
773
|
+
* Java method: org.openremote.model.map.MapResource.saveSettings
|
|
831
774
|
*/
|
|
832
|
-
|
|
775
|
+
saveSettings(mapConfig: {
|
|
776
|
+
[index: string]: Model.MapRealmConfig;
|
|
777
|
+
}, options?: O): RestResponse<any>;
|
|
833
778
|
/**
|
|
834
|
-
* HTTP GET /
|
|
835
|
-
* Java method: org.openremote.model.
|
|
779
|
+
* HTTP GET /map/js
|
|
780
|
+
* Java method: org.openremote.model.map.MapResource.getSettingsJs
|
|
836
781
|
*/
|
|
837
|
-
|
|
782
|
+
getSettingsJs(options?: O): RestResponse<{
|
|
783
|
+
[id: string]: any;
|
|
784
|
+
}>;
|
|
838
785
|
/**
|
|
839
|
-
* HTTP
|
|
840
|
-
* Java method: org.openremote.model.
|
|
786
|
+
* HTTP GET /map/tile/{zoom}/{column}/{row}
|
|
787
|
+
* Java method: org.openremote.model.map.MapResource.getTile
|
|
841
788
|
*/
|
|
842
|
-
|
|
789
|
+
getTile(zoom: number, column: number, row: number, options?: O): RestResponse<any>;
|
|
843
790
|
}
|
|
844
791
|
export declare class SyslogResourceClient<O> {
|
|
845
792
|
protected httpClient: HttpClient<O>;
|
|
@@ -873,51 +820,104 @@ export declare class SyslogResourceClient<O> {
|
|
|
873
820
|
subCategory?: any[];
|
|
874
821
|
}, options?: O): RestResponse<any>;
|
|
875
822
|
}
|
|
823
|
+
export declare class GatewayServiceResourceClient<O> {
|
|
824
|
+
protected httpClient: HttpClient<O>;
|
|
825
|
+
constructor(httpClient: HttpClient<O>);
|
|
826
|
+
/**
|
|
827
|
+
* HTTP POST /gateway/tunnel
|
|
828
|
+
* Java method: org.openremote.model.gateway.GatewayServiceResource.startTunnel
|
|
829
|
+
*/
|
|
830
|
+
startTunnel(tunnelInfo: Model.GatewayTunnelInfo, options?: O): RestResponse<Model.GatewayTunnelInfo>;
|
|
831
|
+
/**
|
|
832
|
+
* HTTP DELETE /gateway/tunnel
|
|
833
|
+
* Java method: org.openremote.model.gateway.GatewayServiceResource.stopTunnel
|
|
834
|
+
*/
|
|
835
|
+
stopTunnel(tunnelInfo: Model.GatewayTunnelInfo, options?: O): RestResponse<void>;
|
|
836
|
+
/**
|
|
837
|
+
* HTTP GET /gateway/tunnel/{realm}
|
|
838
|
+
* Java method: org.openremote.model.gateway.GatewayServiceResource.getAllActiveTunnelInfos
|
|
839
|
+
*/
|
|
840
|
+
getAllActiveTunnelInfos(realm: any, options?: O): RestResponse<Model.GatewayTunnelInfo[]>;
|
|
841
|
+
/**
|
|
842
|
+
* HTTP GET /gateway/tunnel/{realm}/{id}
|
|
843
|
+
* Java method: org.openremote.model.gateway.GatewayServiceResource.getGatewayActiveTunnelInfos
|
|
844
|
+
*/
|
|
845
|
+
getGatewayActiveTunnelInfos(realm: any, id: any, options?: O): RestResponse<Model.GatewayTunnelInfo[]>;
|
|
846
|
+
/**
|
|
847
|
+
* HTTP GET /gateway/tunnel/{realm}/{id}/{target}/{targetPort}
|
|
848
|
+
* Java method: org.openremote.model.gateway.GatewayServiceResource.getActiveTunnelInfo
|
|
849
|
+
*/
|
|
850
|
+
getActiveTunnelInfo(realm: any, id: any, target: any, targetPort: number, options?: O): RestResponse<Model.GatewayTunnelInfo>;
|
|
851
|
+
}
|
|
852
|
+
export declare class ProvisioningResourceClient<O> {
|
|
853
|
+
protected httpClient: HttpClient<O>;
|
|
854
|
+
constructor(httpClient: HttpClient<O>);
|
|
855
|
+
/**
|
|
856
|
+
* HTTP POST /provisioning
|
|
857
|
+
* Java method: org.openremote.model.provisioning.ProvisioningResource.createProvisioningConfig
|
|
858
|
+
*/
|
|
859
|
+
createProvisioningConfig(provisioningConfig: Model.ProvisioningConfigUnion<any, any>, options?: O): RestResponse<number>;
|
|
860
|
+
/**
|
|
861
|
+
* HTTP GET /provisioning
|
|
862
|
+
* Java method: org.openremote.model.provisioning.ProvisioningResource.getProvisioningConfigs
|
|
863
|
+
*/
|
|
864
|
+
getProvisioningConfigs(options?: O): RestResponse<Model.ProvisioningConfigUnion<any, any>[]>;
|
|
865
|
+
/**
|
|
866
|
+
* HTTP DELETE /provisioning/{id}
|
|
867
|
+
* Java method: org.openremote.model.provisioning.ProvisioningResource.deleteProvisioningConfig
|
|
868
|
+
*/
|
|
869
|
+
deleteProvisioningConfig(id: any, options?: O): RestResponse<void>;
|
|
870
|
+
/**
|
|
871
|
+
* HTTP PUT /provisioning/{id}
|
|
872
|
+
* Java method: org.openremote.model.provisioning.ProvisioningResource.updateProvisioningConfig
|
|
873
|
+
*/
|
|
874
|
+
updateProvisioningConfig(id: any, provisioningConfig: Model.ProvisioningConfigUnion<any, any>, options?: O): RestResponse<void>;
|
|
875
|
+
}
|
|
876
876
|
export type RestResponse<R> = Promise<Axios.GenericAxiosResponse<R>>;
|
|
877
877
|
export declare class ApiClient {
|
|
878
|
-
protected
|
|
879
|
-
protected
|
|
880
|
-
protected _provisioningResource: AxiosProvisioningResourceClient;
|
|
878
|
+
protected _statusResource: AxiosStatusResourceClient;
|
|
879
|
+
protected _agentResource: AxiosAgentResourceClient;
|
|
881
880
|
protected _gatewayClientResource: AxiosGatewayClientResourceClient;
|
|
882
|
-
protected
|
|
883
|
-
protected
|
|
884
|
-
protected _consoleResource: AxiosConsoleResourceClient;
|
|
881
|
+
protected _notificationResource: AxiosNotificationResourceClient;
|
|
882
|
+
protected _assetDatapointResource: AxiosAssetDatapointResourceClient;
|
|
885
883
|
protected _realmResource: AxiosRealmResourceClient;
|
|
886
|
-
protected
|
|
884
|
+
protected _configurationResource: AxiosConfigurationResourceClient;
|
|
887
885
|
protected _assetPredictedDatapointResource: AxiosAssetPredictedDatapointResourceClient;
|
|
886
|
+
protected _assetResource: AxiosAssetResourceClient;
|
|
888
887
|
protected _userResource: AxiosUserResourceClient;
|
|
889
|
-
protected
|
|
888
|
+
protected _rulesResource: AxiosRulesResourceClient;
|
|
889
|
+
protected _alarmResource: AxiosAlarmResourceClient;
|
|
890
|
+
protected _dashboardResource: AxiosDashboardResourceClient;
|
|
891
|
+
protected _consoleResource: AxiosConsoleResourceClient;
|
|
892
|
+
protected _assetModelResource: AxiosAssetModelResourceClient;
|
|
890
893
|
protected _appResource: AxiosAppResourceClient;
|
|
891
|
-
protected _gatewayServiceResource: AxiosGatewayServiceResourceClient;
|
|
892
|
-
protected _assetDatapointResource: AxiosAssetDatapointResourceClient;
|
|
893
|
-
protected _statusResource: AxiosStatusResourceClient;
|
|
894
894
|
protected _flowResource: AxiosFlowResourceClient;
|
|
895
|
-
protected
|
|
896
|
-
protected _notificationResource: AxiosNotificationResourceClient;
|
|
897
|
-
protected _rulesResource: AxiosRulesResourceClient;
|
|
895
|
+
protected _mapResource: AxiosMapResourceClient;
|
|
898
896
|
protected _syslogResource: AxiosSyslogResourceClient;
|
|
897
|
+
protected _gatewayServiceResource: AxiosGatewayServiceResourceClient;
|
|
898
|
+
protected _provisioningResource: AxiosProvisioningResourceClient;
|
|
899
899
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
900
|
-
get
|
|
901
|
-
get
|
|
902
|
-
get ProvisioningResource(): AxiosProvisioningResourceClient;
|
|
900
|
+
get StatusResource(): AxiosStatusResourceClient;
|
|
901
|
+
get AgentResource(): AxiosAgentResourceClient;
|
|
903
902
|
get GatewayClientResource(): AxiosGatewayClientResourceClient;
|
|
904
|
-
get
|
|
905
|
-
get
|
|
906
|
-
get ConsoleResource(): AxiosConsoleResourceClient;
|
|
903
|
+
get NotificationResource(): AxiosNotificationResourceClient;
|
|
904
|
+
get AssetDatapointResource(): AxiosAssetDatapointResourceClient;
|
|
907
905
|
get RealmResource(): AxiosRealmResourceClient;
|
|
908
|
-
get
|
|
906
|
+
get ConfigurationResource(): AxiosConfigurationResourceClient;
|
|
909
907
|
get AssetPredictedDatapointResource(): AxiosAssetPredictedDatapointResourceClient;
|
|
908
|
+
get AssetResource(): AxiosAssetResourceClient;
|
|
910
909
|
get UserResource(): AxiosUserResourceClient;
|
|
911
|
-
get
|
|
910
|
+
get RulesResource(): AxiosRulesResourceClient;
|
|
911
|
+
get AlarmResource(): AxiosAlarmResourceClient;
|
|
912
|
+
get DashboardResource(): AxiosDashboardResourceClient;
|
|
913
|
+
get ConsoleResource(): AxiosConsoleResourceClient;
|
|
914
|
+
get AssetModelResource(): AxiosAssetModelResourceClient;
|
|
912
915
|
get AppResource(): AxiosAppResourceClient;
|
|
913
|
-
get GatewayServiceResource(): AxiosGatewayServiceResourceClient;
|
|
914
|
-
get AssetDatapointResource(): AxiosAssetDatapointResourceClient;
|
|
915
|
-
get StatusResource(): AxiosStatusResourceClient;
|
|
916
916
|
get FlowResource(): AxiosFlowResourceClient;
|
|
917
|
-
get
|
|
918
|
-
get NotificationResource(): AxiosNotificationResourceClient;
|
|
919
|
-
get RulesResource(): AxiosRulesResourceClient;
|
|
917
|
+
get MapResource(): AxiosMapResourceClient;
|
|
920
918
|
get SyslogResource(): AxiosSyslogResourceClient;
|
|
919
|
+
get GatewayServiceResource(): AxiosGatewayServiceResourceClient;
|
|
920
|
+
get ProvisioningResource(): AxiosProvisioningResourceClient;
|
|
921
921
|
}
|
|
922
922
|
import * as Axios from "axios";
|
|
923
923
|
declare module "axios" {
|
|
@@ -925,66 +925,66 @@ declare module "axios" {
|
|
|
925
925
|
data: R;
|
|
926
926
|
}
|
|
927
927
|
}
|
|
928
|
-
export declare class
|
|
929
|
-
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
930
|
-
}
|
|
931
|
-
export declare class AxiosDashboardResourceClient extends DashboardResourceClient<Axios.AxiosRequestConfig> {
|
|
928
|
+
export declare class AxiosStatusResourceClient extends StatusResourceClient<Axios.AxiosRequestConfig> {
|
|
932
929
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
933
930
|
}
|
|
934
|
-
export declare class
|
|
931
|
+
export declare class AxiosAgentResourceClient extends AgentResourceClient<Axios.AxiosRequestConfig> {
|
|
935
932
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
936
933
|
}
|
|
937
934
|
export declare class AxiosGatewayClientResourceClient extends GatewayClientResourceClient<Axios.AxiosRequestConfig> {
|
|
938
935
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
939
936
|
}
|
|
940
|
-
export declare class
|
|
941
|
-
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
942
|
-
}
|
|
943
|
-
export declare class AxiosConfigurationResourceClient extends ConfigurationResourceClient<Axios.AxiosRequestConfig> {
|
|
937
|
+
export declare class AxiosNotificationResourceClient extends NotificationResourceClient<Axios.AxiosRequestConfig> {
|
|
944
938
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
945
939
|
}
|
|
946
|
-
export declare class
|
|
940
|
+
export declare class AxiosAssetDatapointResourceClient extends AssetDatapointResourceClient<Axios.AxiosRequestConfig> {
|
|
947
941
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
948
942
|
}
|
|
949
943
|
export declare class AxiosRealmResourceClient extends RealmResourceClient<Axios.AxiosRequestConfig> {
|
|
950
944
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
951
945
|
}
|
|
952
|
-
export declare class
|
|
946
|
+
export declare class AxiosConfigurationResourceClient extends ConfigurationResourceClient<Axios.AxiosRequestConfig> {
|
|
953
947
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
954
948
|
}
|
|
955
949
|
export declare class AxiosAssetPredictedDatapointResourceClient extends AssetPredictedDatapointResourceClient<Axios.AxiosRequestConfig> {
|
|
956
950
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
957
951
|
}
|
|
952
|
+
export declare class AxiosAssetResourceClient extends AssetResourceClient<Axios.AxiosRequestConfig> {
|
|
953
|
+
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
954
|
+
}
|
|
958
955
|
export declare class AxiosUserResourceClient extends UserResourceClient<Axios.AxiosRequestConfig> {
|
|
959
956
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
960
957
|
}
|
|
961
|
-
export declare class
|
|
958
|
+
export declare class AxiosRulesResourceClient extends RulesResourceClient<Axios.AxiosRequestConfig> {
|
|
962
959
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
963
960
|
}
|
|
964
|
-
export declare class
|
|
961
|
+
export declare class AxiosAlarmResourceClient extends AlarmResourceClient<Axios.AxiosRequestConfig> {
|
|
965
962
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
966
963
|
}
|
|
967
|
-
export declare class
|
|
964
|
+
export declare class AxiosDashboardResourceClient extends DashboardResourceClient<Axios.AxiosRequestConfig> {
|
|
968
965
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
969
966
|
}
|
|
970
|
-
export declare class
|
|
967
|
+
export declare class AxiosConsoleResourceClient extends ConsoleResourceClient<Axios.AxiosRequestConfig> {
|
|
971
968
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
972
969
|
}
|
|
973
|
-
export declare class
|
|
970
|
+
export declare class AxiosAssetModelResourceClient extends AssetModelResourceClient<Axios.AxiosRequestConfig> {
|
|
971
|
+
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
972
|
+
}
|
|
973
|
+
export declare class AxiosAppResourceClient extends AppResourceClient<Axios.AxiosRequestConfig> {
|
|
974
974
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
975
975
|
}
|
|
976
976
|
export declare class AxiosFlowResourceClient extends FlowResourceClient<Axios.AxiosRequestConfig> {
|
|
977
977
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
978
978
|
}
|
|
979
|
-
export declare class
|
|
979
|
+
export declare class AxiosMapResourceClient extends MapResourceClient<Axios.AxiosRequestConfig> {
|
|
980
980
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
981
981
|
}
|
|
982
|
-
export declare class
|
|
982
|
+
export declare class AxiosSyslogResourceClient extends SyslogResourceClient<Axios.AxiosRequestConfig> {
|
|
983
983
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
984
984
|
}
|
|
985
|
-
export declare class
|
|
985
|
+
export declare class AxiosGatewayServiceResourceClient extends GatewayServiceResourceClient<Axios.AxiosRequestConfig> {
|
|
986
986
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
987
987
|
}
|
|
988
|
-
export declare class
|
|
988
|
+
export declare class AxiosProvisioningResourceClient extends ProvisioningResourceClient<Axios.AxiosRequestConfig> {
|
|
989
989
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
990
990
|
}
|