@openremote/rest 1.4.0-snapshot.20250310212521 → 1.4.0-snapshot.20250311100033
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 +486 -486
- 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,83 +9,6 @@ export interface HttpClient<O> {
|
|
|
9
9
|
options?: O;
|
|
10
10
|
}): RestResponse<R>;
|
|
11
11
|
}
|
|
12
|
-
export declare class ProvisioningResourceClient<O> {
|
|
13
|
-
protected httpClient: HttpClient<O>;
|
|
14
|
-
constructor(httpClient: HttpClient<O>);
|
|
15
|
-
/**
|
|
16
|
-
* HTTP POST /provisioning
|
|
17
|
-
* Java method: org.openremote.model.provisioning.ProvisioningResource.createProvisioningConfig
|
|
18
|
-
*/
|
|
19
|
-
createProvisioningConfig(provisioningConfig: Model.ProvisioningConfigUnion<any, any>, options?: O): RestResponse<number>;
|
|
20
|
-
/**
|
|
21
|
-
* HTTP GET /provisioning
|
|
22
|
-
* Java method: org.openremote.model.provisioning.ProvisioningResource.getProvisioningConfigs
|
|
23
|
-
*/
|
|
24
|
-
getProvisioningConfigs(options?: O): RestResponse<Model.ProvisioningConfigUnion<any, any>[]>;
|
|
25
|
-
/**
|
|
26
|
-
* HTTP DELETE /provisioning/{id}
|
|
27
|
-
* Java method: org.openremote.model.provisioning.ProvisioningResource.deleteProvisioningConfig
|
|
28
|
-
*/
|
|
29
|
-
deleteProvisioningConfig(id: number, options?: O): RestResponse<void>;
|
|
30
|
-
/**
|
|
31
|
-
* HTTP PUT /provisioning/{id}
|
|
32
|
-
* Java method: org.openremote.model.provisioning.ProvisioningResource.updateProvisioningConfig
|
|
33
|
-
*/
|
|
34
|
-
updateProvisioningConfig(id: number, provisioningConfig: Model.ProvisioningConfigUnion<any, any>, options?: O): RestResponse<void>;
|
|
35
|
-
}
|
|
36
|
-
export declare class AlarmResourceClient<O> {
|
|
37
|
-
protected httpClient: HttpClient<O>;
|
|
38
|
-
constructor(httpClient: HttpClient<O>);
|
|
39
|
-
/**
|
|
40
|
-
* HTTP POST /alarm
|
|
41
|
-
* Java method: org.openremote.model.alarm.AlarmResource.createAlarm
|
|
42
|
-
*/
|
|
43
|
-
createAlarm(alarm: Model.Alarm, queryParams?: {
|
|
44
|
-
assetIds?: string[];
|
|
45
|
-
}, options?: O): RestResponse<Model.SentAlarm>;
|
|
46
|
-
/**
|
|
47
|
-
* HTTP GET /alarm
|
|
48
|
-
* Java method: org.openremote.model.alarm.AlarmResource.getAlarms
|
|
49
|
-
*/
|
|
50
|
-
getAlarms(queryParams?: {
|
|
51
|
-
realm?: string;
|
|
52
|
-
status?: Model.AlarmStatus;
|
|
53
|
-
assetId?: string;
|
|
54
|
-
assigneeId?: string;
|
|
55
|
-
}, options?: O): RestResponse<Model.SentAlarm[]>;
|
|
56
|
-
/**
|
|
57
|
-
* HTTP DELETE /alarm
|
|
58
|
-
* Java method: org.openremote.model.alarm.AlarmResource.removeAlarms
|
|
59
|
-
*/
|
|
60
|
-
removeAlarms(ids: number[], options?: O): RestResponse<void>;
|
|
61
|
-
/**
|
|
62
|
-
* HTTP PUT /alarm/assets
|
|
63
|
-
* Java method: org.openremote.model.alarm.AlarmResource.setAssetLinks
|
|
64
|
-
*/
|
|
65
|
-
setAssetLinks(links: Model.AlarmAssetLink[], options?: O): RestResponse<void>;
|
|
66
|
-
/**
|
|
67
|
-
* HTTP GET /alarm/{alarmId}
|
|
68
|
-
* Java method: org.openremote.model.alarm.AlarmResource.getAlarm
|
|
69
|
-
*/
|
|
70
|
-
getAlarm(alarmId: number, options?: O): RestResponse<Model.SentAlarm>;
|
|
71
|
-
/**
|
|
72
|
-
* HTTP DELETE /alarm/{alarmId}
|
|
73
|
-
* Java method: org.openremote.model.alarm.AlarmResource.removeAlarm
|
|
74
|
-
*/
|
|
75
|
-
removeAlarm(alarmId: number, options?: O): RestResponse<void>;
|
|
76
|
-
/**
|
|
77
|
-
* HTTP PUT /alarm/{alarmId}
|
|
78
|
-
* Java method: org.openremote.model.alarm.AlarmResource.updateAlarm
|
|
79
|
-
*/
|
|
80
|
-
updateAlarm(alarmId: number, alarm: Model.SentAlarm, options?: O): RestResponse<void>;
|
|
81
|
-
/**
|
|
82
|
-
* HTTP GET /alarm/{alarmId}/assets
|
|
83
|
-
* Java method: org.openremote.model.alarm.AlarmResource.getAssetLinks
|
|
84
|
-
*/
|
|
85
|
-
getAssetLinks(alarmId: number, queryParams?: {
|
|
86
|
-
realm?: string;
|
|
87
|
-
}, options?: O): RestResponse<Model.AlarmAssetLink[]>;
|
|
88
|
-
}
|
|
89
12
|
export declare class UserResourceClient<O> {
|
|
90
13
|
protected httpClient: HttpClient<O>;
|
|
91
14
|
constructor(httpClient: HttpClient<O>);
|
|
@@ -210,61 +133,40 @@ export declare class UserResourceClient<O> {
|
|
|
210
133
|
*/
|
|
211
134
|
get(realm: string, userId: string, options?: O): RestResponse<Model.User>;
|
|
212
135
|
}
|
|
213
|
-
export declare class
|
|
136
|
+
export declare class ConsoleResourceClient<O> {
|
|
214
137
|
protected httpClient: HttpClient<O>;
|
|
215
138
|
constructor(httpClient: HttpClient<O>);
|
|
216
139
|
/**
|
|
217
|
-
* HTTP
|
|
218
|
-
* Java method: org.openremote.model.
|
|
219
|
-
*/
|
|
220
|
-
getManagerConfig(options?: O): RestResponse<Model.ManagerAppConfig>;
|
|
221
|
-
/**
|
|
222
|
-
* HTTP PUT /configuration/manager
|
|
223
|
-
* Java method: org.openremote.model.manager.ConfigurationResource.update
|
|
224
|
-
*/
|
|
225
|
-
update(managerConfiguration: Model.ManagerAppConfig, options?: O): RestResponse<Model.ManagerAppConfig>;
|
|
226
|
-
/**
|
|
227
|
-
* HTTP POST /configuration/manager/file
|
|
228
|
-
* Java method: org.openremote.model.manager.ConfigurationResource.fileUpload
|
|
229
|
-
*/
|
|
230
|
-
fileUpload(fileInfo: Model.FileInfo, queryParams?: {
|
|
231
|
-
path?: string;
|
|
232
|
-
}, options?: O): RestResponse<string>;
|
|
233
|
-
/**
|
|
234
|
-
* HTTP GET /configuration/manager/image/{filename: .+}
|
|
235
|
-
* Java method: org.openremote.model.manager.ConfigurationResource.getManagerConfigImage
|
|
140
|
+
* HTTP POST /console/register
|
|
141
|
+
* Java method: org.openremote.model.console.ConsoleResource.register
|
|
236
142
|
*/
|
|
237
|
-
|
|
143
|
+
register(consoleRegistration: Model.ConsoleRegistration, options?: O): RestResponse<Model.ConsoleRegistration>;
|
|
238
144
|
}
|
|
239
|
-
export declare class
|
|
145
|
+
export declare class AgentResourceClient<O> {
|
|
240
146
|
protected httpClient: HttpClient<O>;
|
|
241
147
|
constructor(httpClient: HttpClient<O>);
|
|
242
148
|
/**
|
|
243
|
-
* HTTP GET /
|
|
244
|
-
* Java method: org.openremote.model.
|
|
245
|
-
*/
|
|
246
|
-
getSettings(options?: O): RestResponse<{
|
|
247
|
-
[id: string]: unknown;
|
|
248
|
-
}>;
|
|
249
|
-
/**
|
|
250
|
-
* HTTP PUT /map
|
|
251
|
-
* Java method: org.openremote.model.map.MapResource.saveSettings
|
|
149
|
+
* HTTP GET /agent/assetDiscovery/{agentId}
|
|
150
|
+
* Java method: org.openremote.model.asset.agent.AgentResource.doProtocolAssetDiscovery
|
|
252
151
|
*/
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
}, options?: O): RestResponse<
|
|
152
|
+
doProtocolAssetDiscovery(agentId: string, queryParams?: {
|
|
153
|
+
realm?: string;
|
|
154
|
+
}, options?: O): RestResponse<Model.AssetTreeNode[]>;
|
|
256
155
|
/**
|
|
257
|
-
* HTTP
|
|
258
|
-
* Java method: org.openremote.model.
|
|
156
|
+
* HTTP POST /agent/assetImport/{agentId}
|
|
157
|
+
* Java method: org.openremote.model.asset.agent.AgentResource.doProtocolAssetImport
|
|
259
158
|
*/
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
}>;
|
|
159
|
+
doProtocolAssetImport(agentId: string, fileInfo: Model.FileInfo, queryParams?: {
|
|
160
|
+
realm?: string;
|
|
161
|
+
}, options?: O): RestResponse<Model.AssetTreeNode[]>;
|
|
263
162
|
/**
|
|
264
|
-
* HTTP GET /
|
|
265
|
-
* Java method: org.openremote.model.
|
|
163
|
+
* HTTP GET /agent/instanceDiscovery/{agentType}
|
|
164
|
+
* Java method: org.openremote.model.asset.agent.AgentResource.doProtocolInstanceDiscovery
|
|
266
165
|
*/
|
|
267
|
-
|
|
166
|
+
doProtocolInstanceDiscovery(agentType: string, queryParams?: {
|
|
167
|
+
parentId?: string;
|
|
168
|
+
realm?: string;
|
|
169
|
+
}, options?: O): RestResponse<Model.Agent[]>;
|
|
268
170
|
}
|
|
269
171
|
export declare class AssetModelResourceClient<O> {
|
|
270
172
|
protected httpClient: HttpClient<O>;
|
|
@@ -311,284 +213,331 @@ export declare class AssetModelResourceClient<O> {
|
|
|
311
213
|
[index: string]: Model.ValueDescriptor;
|
|
312
214
|
}>;
|
|
313
215
|
}
|
|
314
|
-
export declare class
|
|
216
|
+
export declare class ProvisioningResourceClient<O> {
|
|
315
217
|
protected httpClient: HttpClient<O>;
|
|
316
218
|
constructor(httpClient: HttpClient<O>);
|
|
317
219
|
/**
|
|
318
|
-
* HTTP POST /
|
|
319
|
-
* Java method: org.openremote.model.
|
|
220
|
+
* HTTP POST /provisioning
|
|
221
|
+
* Java method: org.openremote.model.provisioning.ProvisioningResource.createProvisioningConfig
|
|
320
222
|
*/
|
|
321
|
-
|
|
223
|
+
createProvisioningConfig(provisioningConfig: Model.ProvisioningConfigUnion<any, any>, options?: O): RestResponse<number>;
|
|
322
224
|
/**
|
|
323
|
-
* HTTP GET /
|
|
324
|
-
* Java method: org.openremote.model.
|
|
225
|
+
* HTTP GET /provisioning
|
|
226
|
+
* Java method: org.openremote.model.provisioning.ProvisioningResource.getProvisioningConfigs
|
|
325
227
|
*/
|
|
326
|
-
|
|
327
|
-
language?: Model.RulesetLang[];
|
|
328
|
-
fullyPopulate?: boolean;
|
|
329
|
-
}, options?: O): RestResponse<Model.GlobalRuleset[]>;
|
|
228
|
+
getProvisioningConfigs(options?: O): RestResponse<Model.ProvisioningConfigUnion<any, any>[]>;
|
|
330
229
|
/**
|
|
331
|
-
* HTTP
|
|
332
|
-
* Java method: org.openremote.model.
|
|
230
|
+
* HTTP DELETE /provisioning/{id}
|
|
231
|
+
* Java method: org.openremote.model.provisioning.ProvisioningResource.deleteProvisioningConfig
|
|
333
232
|
*/
|
|
334
|
-
|
|
233
|
+
deleteProvisioningConfig(id: number, options?: O): RestResponse<void>;
|
|
335
234
|
/**
|
|
336
|
-
* HTTP
|
|
337
|
-
* Java method: org.openremote.model.
|
|
235
|
+
* HTTP PUT /provisioning/{id}
|
|
236
|
+
* Java method: org.openremote.model.provisioning.ProvisioningResource.updateProvisioningConfig
|
|
338
237
|
*/
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
238
|
+
updateProvisioningConfig(id: number, provisioningConfig: Model.ProvisioningConfigUnion<any, any>, options?: O): RestResponse<void>;
|
|
239
|
+
}
|
|
240
|
+
export declare class GatewayClientResourceClient<O> {
|
|
241
|
+
protected httpClient: HttpClient<O>;
|
|
242
|
+
constructor(httpClient: HttpClient<O>);
|
|
343
243
|
/**
|
|
344
|
-
* HTTP DELETE /
|
|
345
|
-
* Java method: org.openremote.model.
|
|
244
|
+
* HTTP DELETE /gateway/connection
|
|
245
|
+
* Java method: org.openremote.model.gateway.GatewayClientResource.deleteConnections
|
|
346
246
|
*/
|
|
347
|
-
|
|
247
|
+
deleteConnections(queryParams?: {
|
|
248
|
+
realm?: string[];
|
|
249
|
+
}, options?: O): RestResponse<void>;
|
|
348
250
|
/**
|
|
349
|
-
* HTTP GET /
|
|
350
|
-
* Java method: org.openremote.model.
|
|
251
|
+
* HTTP GET /gateway/connection
|
|
252
|
+
* Java method: org.openremote.model.gateway.GatewayClientResource.getConnections
|
|
351
253
|
*/
|
|
352
|
-
|
|
254
|
+
getConnections(options?: O): RestResponse<Model.GatewayConnection[]>;
|
|
353
255
|
/**
|
|
354
|
-
* HTTP
|
|
355
|
-
* Java method: org.openremote.model.
|
|
256
|
+
* HTTP DELETE /gateway/connection/{realm}
|
|
257
|
+
* Java method: org.openremote.model.gateway.GatewayClientResource.deleteConnection
|
|
356
258
|
*/
|
|
357
|
-
|
|
259
|
+
deleteConnection(realm: string, options?: O): RestResponse<void>;
|
|
358
260
|
/**
|
|
359
|
-
* HTTP GET /
|
|
360
|
-
* Java method: org.openremote.model.
|
|
261
|
+
* HTTP GET /gateway/connection/{realm}
|
|
262
|
+
* Java method: org.openremote.model.gateway.GatewayClientResource.getConnection
|
|
361
263
|
*/
|
|
362
|
-
|
|
264
|
+
getConnection(realm: string, options?: O): RestResponse<Model.GatewayConnection>;
|
|
363
265
|
/**
|
|
364
|
-
* HTTP
|
|
365
|
-
* Java method: org.openremote.model.
|
|
266
|
+
* HTTP PUT /gateway/connection/{realm}
|
|
267
|
+
* Java method: org.openremote.model.gateway.GatewayClientResource.setConnection
|
|
366
268
|
*/
|
|
367
|
-
|
|
269
|
+
setConnection(realm: string, connection: Model.GatewayConnection, options?: O): RestResponse<void>;
|
|
368
270
|
/**
|
|
369
|
-
* HTTP GET /
|
|
370
|
-
* Java method: org.openremote.model.
|
|
271
|
+
* HTTP GET /gateway/status/{realm}
|
|
272
|
+
* Java method: org.openremote.model.gateway.GatewayClientResource.getConnectionStatus
|
|
371
273
|
*/
|
|
372
|
-
|
|
274
|
+
getConnectionStatus(realm: string, options?: O): RestResponse<Model.ConnectionStatus>;
|
|
275
|
+
}
|
|
276
|
+
export declare class FlowResourceClient<O> {
|
|
277
|
+
protected httpClient: HttpClient<O>;
|
|
278
|
+
constructor(httpClient: HttpClient<O>);
|
|
373
279
|
/**
|
|
374
|
-
* HTTP GET /
|
|
375
|
-
* Java method: org.openremote.model.rules.
|
|
280
|
+
* HTTP GET /flow
|
|
281
|
+
* Java method: org.openremote.model.rules.flow.FlowResource.getAllNodeDefinitions
|
|
376
282
|
*/
|
|
377
|
-
|
|
283
|
+
getAllNodeDefinitions(options?: O): RestResponse<Model.Node[]>;
|
|
378
284
|
/**
|
|
379
|
-
* HTTP
|
|
380
|
-
* Java method: org.openremote.model.rules.
|
|
285
|
+
* HTTP GET /flow/{name}
|
|
286
|
+
* Java method: org.openremote.model.rules.flow.FlowResource.getNodeDefinition
|
|
381
287
|
*/
|
|
382
|
-
|
|
288
|
+
getNodeDefinition(name: string, options?: O): RestResponse<Model.Node>;
|
|
383
289
|
/**
|
|
384
|
-
* HTTP GET /
|
|
385
|
-
* Java method: org.openremote.model.rules.
|
|
290
|
+
* HTTP GET /flow/{type}
|
|
291
|
+
* Java method: org.openremote.model.rules.flow.FlowResource.getAllNodeDefinitionsByType
|
|
386
292
|
*/
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
293
|
+
getAllNodeDefinitionsByType(type: Model.NodeType, options?: O): RestResponse<Model.Node[]>;
|
|
294
|
+
}
|
|
295
|
+
export declare class StatusResourceClient<O> {
|
|
296
|
+
protected httpClient: HttpClient<O>;
|
|
297
|
+
constructor(httpClient: HttpClient<O>);
|
|
391
298
|
/**
|
|
392
|
-
* HTTP
|
|
393
|
-
* Java method: org.openremote.model.
|
|
299
|
+
* HTTP GET /health
|
|
300
|
+
* Java method: org.openremote.model.system.StatusResource.getHealthStatus
|
|
394
301
|
*/
|
|
395
|
-
|
|
302
|
+
getHealthStatus(options?: O): RestResponse<{
|
|
303
|
+
[index: string]: any;
|
|
304
|
+
}>;
|
|
396
305
|
/**
|
|
397
|
-
* HTTP GET /
|
|
398
|
-
* Java method: org.openremote.model.
|
|
306
|
+
* HTTP GET /info
|
|
307
|
+
* Java method: org.openremote.model.system.StatusResource.getInfo
|
|
399
308
|
*/
|
|
400
|
-
|
|
309
|
+
getInfo(options?: O): RestResponse<{
|
|
310
|
+
[index: string]: any;
|
|
311
|
+
}>;
|
|
312
|
+
}
|
|
313
|
+
export declare class GatewayServiceResourceClient<O> {
|
|
314
|
+
protected httpClient: HttpClient<O>;
|
|
315
|
+
constructor(httpClient: HttpClient<O>);
|
|
401
316
|
/**
|
|
402
|
-
* HTTP
|
|
403
|
-
* Java method: org.openremote.model.
|
|
317
|
+
* HTTP POST /gateway/tunnel
|
|
318
|
+
* Java method: org.openremote.model.gateway.GatewayServiceResource.startTunnel
|
|
404
319
|
*/
|
|
405
|
-
|
|
320
|
+
startTunnel(tunnelInfo: Model.GatewayTunnelInfo, options?: O): RestResponse<Model.GatewayTunnelInfo>;
|
|
406
321
|
/**
|
|
407
|
-
* HTTP DELETE /
|
|
408
|
-
* Java method: org.openremote.model.
|
|
322
|
+
* HTTP DELETE /gateway/tunnel
|
|
323
|
+
* Java method: org.openremote.model.gateway.GatewayServiceResource.stopTunnel
|
|
409
324
|
*/
|
|
410
|
-
|
|
325
|
+
stopTunnel(tunnelInfo: Model.GatewayTunnelInfo, options?: O): RestResponse<void>;
|
|
411
326
|
/**
|
|
412
|
-
* HTTP GET /
|
|
413
|
-
* Java method: org.openremote.model.
|
|
327
|
+
* HTTP GET /gateway/tunnel/{realm}
|
|
328
|
+
* Java method: org.openremote.model.gateway.GatewayServiceResource.getAllActiveTunnelInfos
|
|
414
329
|
*/
|
|
415
|
-
|
|
330
|
+
getAllActiveTunnelInfos(realm: string, options?: O): RestResponse<Model.GatewayTunnelInfo[]>;
|
|
416
331
|
/**
|
|
417
|
-
* HTTP
|
|
418
|
-
* Java method: org.openremote.model.
|
|
332
|
+
* HTTP GET /gateway/tunnel/{realm}/{id}
|
|
333
|
+
* Java method: org.openremote.model.gateway.GatewayServiceResource.getGatewayActiveTunnelInfos
|
|
419
334
|
*/
|
|
420
|
-
|
|
335
|
+
getGatewayActiveTunnelInfos(realm: string, id: string, options?: O): RestResponse<Model.GatewayTunnelInfo[]>;
|
|
336
|
+
/**
|
|
337
|
+
* HTTP GET /gateway/tunnel/{realm}/{id}/{target}/{targetPort}
|
|
338
|
+
* Java method: org.openremote.model.gateway.GatewayServiceResource.getActiveTunnelInfo
|
|
339
|
+
*/
|
|
340
|
+
getActiveTunnelInfo(realm: string, id: string, target: string, targetPort: number, options?: O): RestResponse<Model.GatewayTunnelInfo>;
|
|
421
341
|
}
|
|
422
|
-
export declare class
|
|
342
|
+
export declare class MapResourceClient<O> {
|
|
423
343
|
protected httpClient: HttpClient<O>;
|
|
424
344
|
constructor(httpClient: HttpClient<O>);
|
|
425
345
|
/**
|
|
426
|
-
* HTTP
|
|
427
|
-
* Java method: org.openremote.model.
|
|
346
|
+
* HTTP GET /map
|
|
347
|
+
* Java method: org.openremote.model.map.MapResource.getSettings
|
|
428
348
|
*/
|
|
429
|
-
|
|
349
|
+
getSettings(options?: O): RestResponse<{
|
|
350
|
+
[id: string]: unknown;
|
|
351
|
+
}>;
|
|
430
352
|
/**
|
|
431
|
-
* HTTP PUT /
|
|
432
|
-
* Java method: org.openremote.model.
|
|
353
|
+
* HTTP PUT /map
|
|
354
|
+
* Java method: org.openremote.model.map.MapResource.saveSettings
|
|
433
355
|
*/
|
|
434
|
-
|
|
356
|
+
saveSettings(mapConfig: {
|
|
357
|
+
[index: string]: Model.MapRealmConfig;
|
|
358
|
+
}, options?: O): RestResponse<any>;
|
|
359
|
+
/**
|
|
360
|
+
* HTTP GET /map/js
|
|
361
|
+
* Java method: org.openremote.model.map.MapResource.getSettingsJs
|
|
362
|
+
*/
|
|
363
|
+
getSettingsJs(options?: O): RestResponse<{
|
|
364
|
+
[id: string]: unknown;
|
|
365
|
+
}>;
|
|
366
|
+
/**
|
|
367
|
+
* HTTP GET /map/tile/{zoom}/{column}/{row}
|
|
368
|
+
* Java method: org.openremote.model.map.MapResource.getTile
|
|
369
|
+
*/
|
|
370
|
+
getTile(zoom: number, column: number, row: number, options?: O): RestResponse<any>;
|
|
435
371
|
}
|
|
436
|
-
export declare class
|
|
372
|
+
export declare class AssetResourceClient<O> {
|
|
437
373
|
protected httpClient: HttpClient<O>;
|
|
438
374
|
constructor(httpClient: HttpClient<O>);
|
|
439
375
|
/**
|
|
440
|
-
* HTTP POST /
|
|
441
|
-
* Java method: org.openremote.model.
|
|
376
|
+
* HTTP POST /asset
|
|
377
|
+
* Java method: org.openremote.model.asset.AssetResource.create
|
|
442
378
|
*/
|
|
443
|
-
create(
|
|
379
|
+
create(asset: Model.Asset, options?: O): RestResponse<Model.Asset>;
|
|
444
380
|
/**
|
|
445
|
-
* HTTP
|
|
446
|
-
* Java method: org.openremote.model.
|
|
381
|
+
* HTTP DELETE /asset
|
|
382
|
+
* Java method: org.openremote.model.asset.AssetResource.delete
|
|
447
383
|
*/
|
|
448
|
-
|
|
384
|
+
delete(queryParams?: {
|
|
385
|
+
assetId?: string[];
|
|
386
|
+
}, options?: O): RestResponse<void>;
|
|
449
387
|
/**
|
|
450
|
-
* HTTP
|
|
451
|
-
* Java method: org.openremote.model.
|
|
388
|
+
* HTTP PUT /asset/attributes
|
|
389
|
+
* Java method: org.openremote.model.asset.AssetResource.writeAttributeValues
|
|
452
390
|
*/
|
|
453
|
-
|
|
391
|
+
writeAttributeValues(attributeStates: Model.AttributeState[], options?: O): RestResponse<Model.AttributeWriteResult[]>;
|
|
454
392
|
/**
|
|
455
|
-
* HTTP
|
|
456
|
-
* Java method: org.openremote.model.
|
|
393
|
+
* HTTP PUT /asset/attributes/timestamp
|
|
394
|
+
* Java method: org.openremote.model.asset.AssetResource.writeAttributeEvents
|
|
457
395
|
*/
|
|
458
|
-
|
|
396
|
+
writeAttributeEvents(attributeEvents: Model.AttributeEvent[], options?: O): RestResponse<Model.AttributeWriteResult[]>;
|
|
459
397
|
/**
|
|
460
|
-
* HTTP
|
|
461
|
-
* Java method: org.openremote.model.
|
|
398
|
+
* HTTP DELETE /asset/parent
|
|
399
|
+
* Java method: org.openremote.model.asset.AssetResource.updateNoneParent
|
|
462
400
|
*/
|
|
463
|
-
|
|
401
|
+
updateNoneParent(queryParams?: {
|
|
402
|
+
assetIds?: string[];
|
|
403
|
+
}, options?: O): RestResponse<void>;
|
|
464
404
|
/**
|
|
465
|
-
* HTTP
|
|
466
|
-
* Java method: org.openremote.model.
|
|
405
|
+
* HTTP GET /asset/partial/{assetId}
|
|
406
|
+
* Java method: org.openremote.model.asset.AssetResource.getPartial
|
|
467
407
|
*/
|
|
468
|
-
|
|
469
|
-
}
|
|
470
|
-
export declare class StatusResourceClient<O> {
|
|
471
|
-
protected httpClient: HttpClient<O>;
|
|
472
|
-
constructor(httpClient: HttpClient<O>);
|
|
408
|
+
getPartial(assetId: string, options?: O): RestResponse<Model.Asset>;
|
|
473
409
|
/**
|
|
474
|
-
* HTTP
|
|
475
|
-
* Java method: org.openremote.model.
|
|
410
|
+
* HTTP POST /asset/query
|
|
411
|
+
* Java method: org.openremote.model.asset.AssetResource.queryAssets
|
|
476
412
|
*/
|
|
477
|
-
|
|
478
|
-
[index: string]: any;
|
|
479
|
-
}>;
|
|
413
|
+
queryAssets(query: Model.AssetQuery, options?: O): RestResponse<Model.Asset[]>;
|
|
480
414
|
/**
|
|
481
|
-
* HTTP GET /
|
|
482
|
-
* Java method: org.openremote.model.
|
|
415
|
+
* HTTP GET /asset/user/current
|
|
416
|
+
* Java method: org.openremote.model.asset.AssetResource.getCurrentUserAssets
|
|
483
417
|
*/
|
|
484
|
-
|
|
485
|
-
[index: string]: any;
|
|
486
|
-
}>;
|
|
487
|
-
}
|
|
488
|
-
export declare class FlowResourceClient<O> {
|
|
489
|
-
protected httpClient: HttpClient<O>;
|
|
490
|
-
constructor(httpClient: HttpClient<O>);
|
|
418
|
+
getCurrentUserAssets(options?: O): RestResponse<Model.Asset[]>;
|
|
491
419
|
/**
|
|
492
|
-
* HTTP
|
|
493
|
-
* Java method: org.openremote.model.
|
|
420
|
+
* HTTP POST /asset/user/link
|
|
421
|
+
* Java method: org.openremote.model.asset.AssetResource.createUserAssetLinks
|
|
494
422
|
*/
|
|
495
|
-
|
|
423
|
+
createUserAssetLinks(userAssets: Model.UserAssetLink[], options?: O): RestResponse<void>;
|
|
496
424
|
/**
|
|
497
|
-
* HTTP GET /
|
|
498
|
-
* Java method: org.openremote.model.
|
|
425
|
+
* HTTP GET /asset/user/link
|
|
426
|
+
* Java method: org.openremote.model.asset.AssetResource.getUserAssetLinks
|
|
499
427
|
*/
|
|
500
|
-
|
|
428
|
+
getUserAssetLinks(queryParams?: {
|
|
429
|
+
realm?: string;
|
|
430
|
+
userId?: string;
|
|
431
|
+
assetId?: string;
|
|
432
|
+
}, options?: O): RestResponse<Model.UserAssetLink[]>;
|
|
501
433
|
/**
|
|
502
|
-
* HTTP
|
|
503
|
-
* Java method: org.openremote.model.
|
|
434
|
+
* HTTP POST /asset/user/link/delete
|
|
435
|
+
* Java method: org.openremote.model.asset.AssetResource.deleteUserAssetLinks
|
|
504
436
|
*/
|
|
505
|
-
|
|
506
|
-
}
|
|
507
|
-
export declare class DashboardResourceClient<O> {
|
|
508
|
-
protected httpClient: HttpClient<O>;
|
|
509
|
-
constructor(httpClient: HttpClient<O>);
|
|
437
|
+
deleteUserAssetLinks(userAssets: Model.UserAssetLink[], options?: O): RestResponse<void>;
|
|
510
438
|
/**
|
|
511
|
-
* HTTP
|
|
512
|
-
* Java method: org.openremote.model.
|
|
439
|
+
* HTTP DELETE /asset/user/link/{realm}/{userId}
|
|
440
|
+
* Java method: org.openremote.model.asset.AssetResource.deleteAllUserAssetLinks
|
|
513
441
|
*/
|
|
514
|
-
|
|
442
|
+
deleteAllUserAssetLinks(realm: string, userId: string, options?: O): RestResponse<void>;
|
|
515
443
|
/**
|
|
516
|
-
* HTTP
|
|
517
|
-
* Java method: org.openremote.model.
|
|
444
|
+
* HTTP DELETE /asset/user/link/{realm}/{userId}/{assetId}
|
|
445
|
+
* Java method: org.openremote.model.asset.AssetResource.deleteUserAssetLink
|
|
518
446
|
*/
|
|
519
|
-
|
|
447
|
+
deleteUserAssetLink(realm: string, userId: string, assetId: string, options?: O): RestResponse<void>;
|
|
520
448
|
/**
|
|
521
|
-
* HTTP GET /
|
|
522
|
-
* Java method: org.openremote.model.
|
|
449
|
+
* HTTP GET /asset/{assetId}
|
|
450
|
+
* Java method: org.openremote.model.asset.AssetResource.get
|
|
523
451
|
*/
|
|
524
|
-
|
|
452
|
+
get(assetId: string, options?: O): RestResponse<Model.Asset>;
|
|
525
453
|
/**
|
|
526
|
-
* HTTP
|
|
527
|
-
* Java method: org.openremote.model.
|
|
454
|
+
* HTTP PUT /asset/{assetId}
|
|
455
|
+
* Java method: org.openremote.model.asset.AssetResource.update
|
|
528
456
|
*/
|
|
529
|
-
|
|
457
|
+
update(assetId: string, asset: Model.Asset, options?: O): RestResponse<Model.Asset>;
|
|
530
458
|
/**
|
|
531
|
-
* HTTP
|
|
532
|
-
* Java method: org.openremote.model.
|
|
459
|
+
* HTTP PUT /asset/{assetId}/attribute/{attributeName}
|
|
460
|
+
* Java method: org.openremote.model.asset.AssetResource.writeAttributeValue
|
|
533
461
|
*/
|
|
534
|
-
|
|
462
|
+
writeAttributeValue$PUT$asset_assetId_attribute_attributeName(assetId: string, attributeName: string, value: any, options?: O): RestResponse<Model.AttributeWriteResult>;
|
|
535
463
|
/**
|
|
536
|
-
* HTTP
|
|
537
|
-
* Java method: org.openremote.model.
|
|
464
|
+
* HTTP PUT /asset/{assetId}/attribute/{attributeName}/{timestamp}
|
|
465
|
+
* Java method: org.openremote.model.asset.AssetResource.writeAttributeValue
|
|
538
466
|
*/
|
|
539
|
-
|
|
467
|
+
writeAttributeValue$PUT$asset_assetId_attribute_attributeName_timestamp(assetId: string, attributeName: string, timestamp: number, value: any, options?: O): RestResponse<Model.AttributeWriteResult>;
|
|
468
|
+
/**
|
|
469
|
+
* HTTP PUT /asset/{parentAssetId}/child
|
|
470
|
+
* Java method: org.openremote.model.asset.AssetResource.updateParent
|
|
471
|
+
*/
|
|
472
|
+
updateParent(parentAssetId: string, queryParams?: {
|
|
473
|
+
assetIds?: string[];
|
|
474
|
+
}, options?: O): RestResponse<void>;
|
|
540
475
|
}
|
|
541
|
-
export declare class
|
|
476
|
+
export declare class RealmResourceClient<O> {
|
|
542
477
|
protected httpClient: HttpClient<O>;
|
|
543
478
|
constructor(httpClient: HttpClient<O>);
|
|
544
479
|
/**
|
|
545
|
-
* HTTP
|
|
546
|
-
* Java method: org.openremote.model.
|
|
480
|
+
* HTTP POST /realm
|
|
481
|
+
* Java method: org.openremote.model.security.RealmResource.create
|
|
547
482
|
*/
|
|
548
|
-
|
|
549
|
-
attributeRefs?: string;
|
|
550
|
-
fromTimestamp?: number;
|
|
551
|
-
toTimestamp?: number;
|
|
552
|
-
}, options?: O): RestResponse<any>;
|
|
483
|
+
create(realm: Model.Realm, options?: O): RestResponse<void>;
|
|
553
484
|
/**
|
|
554
|
-
* HTTP GET /
|
|
555
|
-
* Java method: org.openremote.model.
|
|
485
|
+
* HTTP GET /realm
|
|
486
|
+
* Java method: org.openremote.model.security.RealmResource.getAll
|
|
556
487
|
*/
|
|
557
|
-
|
|
558
|
-
assetId?: string;
|
|
559
|
-
attributeName?: string;
|
|
560
|
-
}, options?: O): RestResponse<Model.DatapointPeriod>;
|
|
488
|
+
getAll(options?: O): RestResponse<Model.Realm[]>;
|
|
561
489
|
/**
|
|
562
|
-
* HTTP
|
|
563
|
-
* Java method: org.openremote.model.
|
|
490
|
+
* HTTP GET /realm/accessible
|
|
491
|
+
* Java method: org.openremote.model.security.RealmResource.getAccessible
|
|
564
492
|
*/
|
|
565
|
-
|
|
493
|
+
getAccessible(options?: O): RestResponse<Model.Realm[]>;
|
|
494
|
+
/**
|
|
495
|
+
* HTTP DELETE /realm/{name}
|
|
496
|
+
* Java method: org.openremote.model.security.RealmResource.delete
|
|
497
|
+
*/
|
|
498
|
+
delete(name: string, options?: O): RestResponse<void>;
|
|
499
|
+
/**
|
|
500
|
+
* HTTP GET /realm/{name}
|
|
501
|
+
* Java method: org.openremote.model.security.RealmResource.get
|
|
502
|
+
*/
|
|
503
|
+
get(name: string, options?: O): RestResponse<Model.Realm>;
|
|
504
|
+
/**
|
|
505
|
+
* HTTP PUT /realm/{name}
|
|
506
|
+
* Java method: org.openremote.model.security.RealmResource.update
|
|
507
|
+
*/
|
|
508
|
+
update(name: string, realm: Model.Realm, options?: O): RestResponse<void>;
|
|
566
509
|
}
|
|
567
|
-
export declare class
|
|
510
|
+
export declare class SyslogResourceClient<O> {
|
|
568
511
|
protected httpClient: HttpClient<O>;
|
|
569
512
|
constructor(httpClient: HttpClient<O>);
|
|
570
513
|
/**
|
|
571
|
-
* HTTP GET /
|
|
572
|
-
* Java method: org.openremote.model.
|
|
514
|
+
* HTTP GET /syslog/config
|
|
515
|
+
* Java method: org.openremote.model.syslog.SyslogResource.getConfig
|
|
573
516
|
*/
|
|
574
|
-
|
|
575
|
-
realm?: string;
|
|
576
|
-
}, options?: O): RestResponse<Model.AssetTreeNode[]>;
|
|
517
|
+
getConfig(options?: O): RestResponse<Model.SyslogConfig>;
|
|
577
518
|
/**
|
|
578
|
-
* HTTP
|
|
579
|
-
* Java method: org.openremote.model.
|
|
519
|
+
* HTTP PUT /syslog/config
|
|
520
|
+
* Java method: org.openremote.model.syslog.SyslogResource.updateConfig
|
|
580
521
|
*/
|
|
581
|
-
|
|
582
|
-
realm?: string;
|
|
583
|
-
}, options?: O): RestResponse<Model.AssetTreeNode[]>;
|
|
522
|
+
updateConfig(config: Model.SyslogConfig, options?: O): RestResponse<void>;
|
|
584
523
|
/**
|
|
585
|
-
* HTTP
|
|
586
|
-
* Java method: org.openremote.model.
|
|
524
|
+
* HTTP DELETE /syslog/event
|
|
525
|
+
* Java method: org.openremote.model.syslog.SyslogResource.clearEvents
|
|
587
526
|
*/
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
527
|
+
clearEvents(options?: O): RestResponse<void>;
|
|
528
|
+
/**
|
|
529
|
+
* HTTP GET /syslog/event
|
|
530
|
+
* Java method: org.openremote.model.syslog.SyslogResource.getEvents
|
|
531
|
+
*/
|
|
532
|
+
getEvents(queryParams?: {
|
|
533
|
+
level?: Model.SyslogLevel;
|
|
534
|
+
per_page?: number;
|
|
535
|
+
page?: number;
|
|
536
|
+
from?: number;
|
|
537
|
+
to?: number;
|
|
538
|
+
category?: Model.SyslogCategory[];
|
|
539
|
+
subCategory?: string[];
|
|
540
|
+
}, options?: O): RestResponse<any>;
|
|
592
541
|
}
|
|
593
542
|
export declare class NotificationResourceClient<O> {
|
|
594
543
|
protected httpClient: HttpClient<O>;
|
|
@@ -644,183 +593,266 @@ export declare class NotificationResourceClient<O> {
|
|
|
644
593
|
targetId?: string;
|
|
645
594
|
}, options?: O): RestResponse<void>;
|
|
646
595
|
}
|
|
647
|
-
export declare class
|
|
596
|
+
export declare class AssetPredictedDatapointResourceClient<O> {
|
|
648
597
|
protected httpClient: HttpClient<O>;
|
|
649
598
|
constructor(httpClient: HttpClient<O>);
|
|
650
599
|
/**
|
|
651
|
-
* HTTP POST /
|
|
652
|
-
* Java method: org.openremote.model.
|
|
600
|
+
* HTTP POST /asset/predicted/{assetId}/{attributeName}
|
|
601
|
+
* Java method: org.openremote.model.datapoint.AssetPredictedDatapointResource.getPredictedDatapoints
|
|
653
602
|
*/
|
|
654
|
-
|
|
603
|
+
getPredictedDatapoints(assetId: string, attributeName: string, query: Model.AssetDatapointQueryUnion, options?: O): RestResponse<Model.ValueDatapoint<any>[]>;
|
|
604
|
+
/**
|
|
605
|
+
* HTTP PUT /asset/predicted/{assetId}/{attributeName}
|
|
606
|
+
* Java method: org.openremote.model.datapoint.AssetPredictedDatapointResource.writePredictedDatapoints
|
|
607
|
+
*/
|
|
608
|
+
writePredictedDatapoints(assetId: string, attributeName: string, predictedDatapoints: Model.ValueDatapoint<any>[], options?: O): RestResponse<void>;
|
|
655
609
|
}
|
|
656
|
-
export declare class
|
|
610
|
+
export declare class RulesResourceClient<O> {
|
|
657
611
|
protected httpClient: HttpClient<O>;
|
|
658
612
|
constructor(httpClient: HttpClient<O>);
|
|
659
613
|
/**
|
|
660
|
-
* HTTP POST /
|
|
661
|
-
* Java method: org.openremote.model.
|
|
614
|
+
* HTTP POST /rules
|
|
615
|
+
* Java method: org.openremote.model.rules.RulesResource.createGlobalRuleset
|
|
662
616
|
*/
|
|
663
|
-
|
|
617
|
+
createGlobalRuleset(ruleset: Model.GlobalRuleset, options?: O): RestResponse<number>;
|
|
664
618
|
/**
|
|
665
|
-
* HTTP
|
|
666
|
-
* Java method: org.openremote.model.
|
|
619
|
+
* HTTP GET /rules
|
|
620
|
+
* Java method: org.openremote.model.rules.RulesResource.getGlobalRulesets
|
|
667
621
|
*/
|
|
668
|
-
|
|
622
|
+
getGlobalRulesets(queryParams?: {
|
|
623
|
+
language?: Model.RulesetLang[];
|
|
624
|
+
fullyPopulate?: boolean;
|
|
625
|
+
}, options?: O): RestResponse<Model.GlobalRuleset[]>;
|
|
669
626
|
/**
|
|
670
|
-
* HTTP
|
|
671
|
-
* Java method: org.openremote.model.
|
|
627
|
+
* HTTP POST /rules/asset
|
|
628
|
+
* Java method: org.openremote.model.rules.RulesResource.createAssetRuleset
|
|
672
629
|
*/
|
|
673
|
-
|
|
630
|
+
createAssetRuleset(ruleset: Model.AssetRuleset, options?: O): RestResponse<number>;
|
|
674
631
|
/**
|
|
675
|
-
* HTTP GET /
|
|
676
|
-
* Java method: org.openremote.model.
|
|
632
|
+
* HTTP GET /rules/asset/for/{assetId}
|
|
633
|
+
* Java method: org.openremote.model.rules.RulesResource.getAssetRulesets
|
|
677
634
|
*/
|
|
678
|
-
|
|
635
|
+
getAssetRulesets(assetId: string, queryParams?: {
|
|
636
|
+
language?: Model.RulesetLang[];
|
|
637
|
+
fullyPopulate?: boolean;
|
|
638
|
+
}, options?: O): RestResponse<Model.AssetRuleset[]>;
|
|
679
639
|
/**
|
|
680
|
-
* HTTP
|
|
681
|
-
* Java method: org.openremote.model.
|
|
640
|
+
* HTTP DELETE /rules/asset/{id}
|
|
641
|
+
* Java method: org.openremote.model.rules.RulesResource.deleteAssetRuleset
|
|
682
642
|
*/
|
|
683
|
-
|
|
684
|
-
}
|
|
685
|
-
export declare class GatewayClientResourceClient<O> {
|
|
686
|
-
protected httpClient: HttpClient<O>;
|
|
687
|
-
constructor(httpClient: HttpClient<O>);
|
|
643
|
+
deleteAssetRuleset(id: number, options?: O): RestResponse<void>;
|
|
688
644
|
/**
|
|
689
|
-
* HTTP
|
|
690
|
-
* Java method: org.openremote.model.
|
|
645
|
+
* HTTP GET /rules/asset/{id}
|
|
646
|
+
* Java method: org.openremote.model.rules.RulesResource.getAssetRuleset
|
|
691
647
|
*/
|
|
692
|
-
|
|
693
|
-
realm?: string[];
|
|
694
|
-
}, options?: O): RestResponse<void>;
|
|
648
|
+
getAssetRuleset(id: number, options?: O): RestResponse<Model.AssetRuleset>;
|
|
695
649
|
/**
|
|
696
|
-
* HTTP
|
|
697
|
-
* Java method: org.openremote.model.
|
|
650
|
+
* HTTP PUT /rules/asset/{id}
|
|
651
|
+
* Java method: org.openremote.model.rules.RulesResource.updateAssetRuleset
|
|
698
652
|
*/
|
|
699
|
-
|
|
653
|
+
updateAssetRuleset(id: number, ruleset: Model.AssetRuleset, options?: O): RestResponse<void>;
|
|
700
654
|
/**
|
|
701
|
-
* HTTP
|
|
702
|
-
* Java method: org.openremote.model.
|
|
655
|
+
* HTTP GET /rules/geofences/{assetId}
|
|
656
|
+
* Java method: org.openremote.model.rules.RulesResource.getAssetGeofences
|
|
703
657
|
*/
|
|
704
|
-
|
|
658
|
+
getAssetGeofences(assetId: string, options?: O): RestResponse<Model.GeofenceDefinition[]>;
|
|
705
659
|
/**
|
|
706
|
-
* HTTP GET /
|
|
707
|
-
* Java method: org.openremote.model.
|
|
660
|
+
* HTTP GET /rules/info/asset/{assetId}
|
|
661
|
+
* Java method: org.openremote.model.rules.RulesResource.getAssetEngineInfo
|
|
708
662
|
*/
|
|
709
|
-
|
|
663
|
+
getAssetEngineInfo(assetId: string, options?: O): RestResponse<Model.RulesEngineInfo>;
|
|
710
664
|
/**
|
|
711
|
-
* HTTP
|
|
712
|
-
* Java method: org.openremote.model.
|
|
665
|
+
* HTTP GET /rules/info/global
|
|
666
|
+
* Java method: org.openremote.model.rules.RulesResource.getGlobalEngineInfo
|
|
713
667
|
*/
|
|
714
|
-
|
|
668
|
+
getGlobalEngineInfo(options?: O): RestResponse<Model.RulesEngineInfo>;
|
|
715
669
|
/**
|
|
716
|
-
* HTTP GET /
|
|
717
|
-
* Java method: org.openremote.model.
|
|
670
|
+
* HTTP GET /rules/info/realm/{realm}
|
|
671
|
+
* Java method: org.openremote.model.rules.RulesResource.getRealmEngineInfo
|
|
718
672
|
*/
|
|
719
|
-
|
|
673
|
+
getRealmEngineInfo(realm: string, options?: O): RestResponse<Model.RulesEngineInfo>;
|
|
674
|
+
/**
|
|
675
|
+
* HTTP POST /rules/realm
|
|
676
|
+
* Java method: org.openremote.model.rules.RulesResource.createRealmRuleset
|
|
677
|
+
*/
|
|
678
|
+
createRealmRuleset(ruleset: Model.RealmRuleset, options?: O): RestResponse<number>;
|
|
679
|
+
/**
|
|
680
|
+
* HTTP GET /rules/realm/for/{realm}
|
|
681
|
+
* Java method: org.openremote.model.rules.RulesResource.getRealmRulesets
|
|
682
|
+
*/
|
|
683
|
+
getRealmRulesets(realm: string, queryParams?: {
|
|
684
|
+
language?: Model.RulesetLang[];
|
|
685
|
+
fullyPopulate?: boolean;
|
|
686
|
+
}, options?: O): RestResponse<Model.RealmRuleset[]>;
|
|
687
|
+
/**
|
|
688
|
+
* HTTP DELETE /rules/realm/{id}
|
|
689
|
+
* Java method: org.openremote.model.rules.RulesResource.deleteRealmRuleset
|
|
690
|
+
*/
|
|
691
|
+
deleteRealmRuleset(id: number, options?: O): RestResponse<void>;
|
|
692
|
+
/**
|
|
693
|
+
* HTTP GET /rules/realm/{id}
|
|
694
|
+
* Java method: org.openremote.model.rules.RulesResource.getRealmRuleset
|
|
695
|
+
*/
|
|
696
|
+
getRealmRuleset(id: number, options?: O): RestResponse<Model.RealmRuleset>;
|
|
697
|
+
/**
|
|
698
|
+
* HTTP PUT /rules/realm/{id}
|
|
699
|
+
* Java method: org.openremote.model.rules.RulesResource.updateRealmRuleset
|
|
700
|
+
*/
|
|
701
|
+
updateRealmRuleset(id: number, ruleset: Model.RealmRuleset, options?: O): RestResponse<void>;
|
|
702
|
+
/**
|
|
703
|
+
* HTTP DELETE /rules/{id}
|
|
704
|
+
* Java method: org.openremote.model.rules.RulesResource.deleteGlobalRuleset
|
|
705
|
+
*/
|
|
706
|
+
deleteGlobalRuleset(id: number, options?: O): RestResponse<void>;
|
|
707
|
+
/**
|
|
708
|
+
* HTTP GET /rules/{id}
|
|
709
|
+
* Java method: org.openremote.model.rules.RulesResource.getGlobalRuleset
|
|
710
|
+
*/
|
|
711
|
+
getGlobalRuleset(id: number, options?: O): RestResponse<Model.GlobalRuleset>;
|
|
712
|
+
/**
|
|
713
|
+
* HTTP PUT /rules/{id}
|
|
714
|
+
* Java method: org.openremote.model.rules.RulesResource.updateGlobalRuleset
|
|
715
|
+
*/
|
|
716
|
+
updateGlobalRuleset(id: number, ruleset: Model.GlobalRuleset, options?: O): RestResponse<void>;
|
|
720
717
|
}
|
|
721
|
-
export declare class
|
|
718
|
+
export declare class DashboardResourceClient<O> {
|
|
722
719
|
protected httpClient: HttpClient<O>;
|
|
723
720
|
constructor(httpClient: HttpClient<O>);
|
|
724
721
|
/**
|
|
725
|
-
* HTTP POST /
|
|
726
|
-
* Java method: org.openremote.model.
|
|
722
|
+
* HTTP POST /dashboard
|
|
723
|
+
* Java method: org.openremote.model.dashboard.DashboardResource.create
|
|
727
724
|
*/
|
|
728
|
-
create(
|
|
725
|
+
create(dashboard: Model.Dashboard, options?: O): RestResponse<Model.Dashboard>;
|
|
729
726
|
/**
|
|
730
|
-
* HTTP
|
|
731
|
-
* Java method: org.openremote.model.
|
|
727
|
+
* HTTP PUT /dashboard
|
|
728
|
+
* Java method: org.openremote.model.dashboard.DashboardResource.update
|
|
732
729
|
*/
|
|
733
|
-
|
|
734
|
-
assetId?: string[];
|
|
735
|
-
}, options?: O): RestResponse<void>;
|
|
730
|
+
update(dashboard: Model.Dashboard, options?: O): RestResponse<Model.Dashboard>;
|
|
736
731
|
/**
|
|
737
|
-
* HTTP
|
|
738
|
-
* Java method: org.openremote.model.
|
|
732
|
+
* HTTP GET /dashboard/all/{realm}
|
|
733
|
+
* Java method: org.openremote.model.dashboard.DashboardResource.getAllRealmDashboards
|
|
739
734
|
*/
|
|
740
|
-
|
|
735
|
+
getAllRealmDashboards(realm: string, options?: O): RestResponse<Model.Dashboard[]>;
|
|
741
736
|
/**
|
|
742
|
-
* HTTP
|
|
743
|
-
* Java method: org.openremote.model.
|
|
737
|
+
* HTTP POST /dashboard/query
|
|
738
|
+
* Java method: org.openremote.model.dashboard.DashboardResource.query
|
|
744
739
|
*/
|
|
745
|
-
|
|
740
|
+
query(dashboardQuery: Model.DashboardQuery, options?: O): RestResponse<Model.Dashboard[]>;
|
|
741
|
+
/**
|
|
742
|
+
* HTTP DELETE /dashboard/{realm}/{dashboardId}
|
|
743
|
+
* Java method: org.openremote.model.dashboard.DashboardResource.delete
|
|
744
|
+
*/
|
|
745
|
+
delete(realm: string, dashboardId: string, options?: O): RestResponse<void>;
|
|
746
|
+
/**
|
|
747
|
+
* HTTP GET /dashboard/{realm}/{dashboardId}
|
|
748
|
+
* Java method: org.openremote.model.dashboard.DashboardResource.get
|
|
749
|
+
*/
|
|
750
|
+
get(realm: string, dashboardId: string, options?: O): RestResponse<Model.Dashboard>;
|
|
751
|
+
}
|
|
752
|
+
export declare class AlarmResourceClient<O> {
|
|
753
|
+
protected httpClient: HttpClient<O>;
|
|
754
|
+
constructor(httpClient: HttpClient<O>);
|
|
746
755
|
/**
|
|
747
|
-
* HTTP
|
|
748
|
-
* Java method: org.openremote.model.
|
|
756
|
+
* HTTP POST /alarm
|
|
757
|
+
* Java method: org.openremote.model.alarm.AlarmResource.createAlarm
|
|
749
758
|
*/
|
|
750
|
-
|
|
759
|
+
createAlarm(alarm: Model.Alarm, queryParams?: {
|
|
751
760
|
assetIds?: string[];
|
|
752
|
-
}, options?: O): RestResponse<
|
|
761
|
+
}, options?: O): RestResponse<Model.SentAlarm>;
|
|
753
762
|
/**
|
|
754
|
-
* HTTP GET /
|
|
755
|
-
* Java method: org.openremote.model.
|
|
763
|
+
* HTTP GET /alarm
|
|
764
|
+
* Java method: org.openremote.model.alarm.AlarmResource.getAlarms
|
|
756
765
|
*/
|
|
757
|
-
|
|
766
|
+
getAlarms(queryParams?: {
|
|
767
|
+
realm?: string;
|
|
768
|
+
status?: Model.AlarmStatus;
|
|
769
|
+
assetId?: string;
|
|
770
|
+
assigneeId?: string;
|
|
771
|
+
}, options?: O): RestResponse<Model.SentAlarm[]>;
|
|
758
772
|
/**
|
|
759
|
-
* HTTP
|
|
760
|
-
* Java method: org.openremote.model.
|
|
773
|
+
* HTTP DELETE /alarm
|
|
774
|
+
* Java method: org.openremote.model.alarm.AlarmResource.removeAlarms
|
|
761
775
|
*/
|
|
762
|
-
|
|
776
|
+
removeAlarms(ids: number[], options?: O): RestResponse<void>;
|
|
763
777
|
/**
|
|
764
|
-
* HTTP
|
|
765
|
-
* Java method: org.openremote.model.
|
|
778
|
+
* HTTP PUT /alarm/assets
|
|
779
|
+
* Java method: org.openremote.model.alarm.AlarmResource.setAssetLinks
|
|
766
780
|
*/
|
|
767
|
-
|
|
781
|
+
setAssetLinks(links: Model.AlarmAssetLink[], options?: O): RestResponse<void>;
|
|
768
782
|
/**
|
|
769
|
-
* HTTP
|
|
770
|
-
* Java method: org.openremote.model.
|
|
783
|
+
* HTTP GET /alarm/{alarmId}
|
|
784
|
+
* Java method: org.openremote.model.alarm.AlarmResource.getAlarm
|
|
771
785
|
*/
|
|
772
|
-
|
|
786
|
+
getAlarm(alarmId: number, options?: O): RestResponse<Model.SentAlarm>;
|
|
773
787
|
/**
|
|
774
|
-
* HTTP
|
|
775
|
-
* Java method: org.openremote.model.
|
|
788
|
+
* HTTP DELETE /alarm/{alarmId}
|
|
789
|
+
* Java method: org.openremote.model.alarm.AlarmResource.removeAlarm
|
|
776
790
|
*/
|
|
777
|
-
|
|
778
|
-
realm?: string;
|
|
779
|
-
userId?: string;
|
|
780
|
-
assetId?: string;
|
|
781
|
-
}, options?: O): RestResponse<Model.UserAssetLink[]>;
|
|
791
|
+
removeAlarm(alarmId: number, options?: O): RestResponse<void>;
|
|
782
792
|
/**
|
|
783
|
-
* HTTP
|
|
784
|
-
* Java method: org.openremote.model.
|
|
793
|
+
* HTTP PUT /alarm/{alarmId}
|
|
794
|
+
* Java method: org.openremote.model.alarm.AlarmResource.updateAlarm
|
|
785
795
|
*/
|
|
786
|
-
|
|
796
|
+
updateAlarm(alarmId: number, alarm: Model.SentAlarm, options?: O): RestResponse<void>;
|
|
787
797
|
/**
|
|
788
|
-
* HTTP
|
|
789
|
-
* Java method: org.openremote.model.
|
|
798
|
+
* HTTP GET /alarm/{alarmId}/assets
|
|
799
|
+
* Java method: org.openremote.model.alarm.AlarmResource.getAssetLinks
|
|
790
800
|
*/
|
|
791
|
-
|
|
801
|
+
getAssetLinks(alarmId: number, queryParams?: {
|
|
802
|
+
realm?: string;
|
|
803
|
+
}, options?: O): RestResponse<Model.AlarmAssetLink[]>;
|
|
804
|
+
}
|
|
805
|
+
export declare class ConfigurationResourceClient<O> {
|
|
806
|
+
protected httpClient: HttpClient<O>;
|
|
807
|
+
constructor(httpClient: HttpClient<O>);
|
|
792
808
|
/**
|
|
793
|
-
* HTTP
|
|
794
|
-
* Java method: org.openremote.model.
|
|
809
|
+
* HTTP GET /configuration/manager
|
|
810
|
+
* Java method: org.openremote.model.manager.ConfigurationResource.getManagerConfig
|
|
795
811
|
*/
|
|
796
|
-
|
|
812
|
+
getManagerConfig(options?: O): RestResponse<Model.ManagerAppConfig>;
|
|
797
813
|
/**
|
|
798
|
-
* HTTP
|
|
799
|
-
* Java method: org.openremote.model.
|
|
814
|
+
* HTTP PUT /configuration/manager
|
|
815
|
+
* Java method: org.openremote.model.manager.ConfigurationResource.update
|
|
800
816
|
*/
|
|
801
|
-
|
|
817
|
+
update(managerConfiguration: Model.ManagerAppConfig, options?: O): RestResponse<Model.ManagerAppConfig>;
|
|
802
818
|
/**
|
|
803
|
-
* HTTP
|
|
804
|
-
* Java method: org.openremote.model.
|
|
819
|
+
* HTTP POST /configuration/manager/file
|
|
820
|
+
* Java method: org.openremote.model.manager.ConfigurationResource.fileUpload
|
|
805
821
|
*/
|
|
806
|
-
|
|
822
|
+
fileUpload(fileInfo: Model.FileInfo, queryParams?: {
|
|
823
|
+
path?: string;
|
|
824
|
+
}, options?: O): RestResponse<string>;
|
|
807
825
|
/**
|
|
808
|
-
* HTTP
|
|
809
|
-
* Java method: org.openremote.model.
|
|
826
|
+
* HTTP GET /configuration/manager/image/{filename: .+}
|
|
827
|
+
* Java method: org.openremote.model.manager.ConfigurationResource.getManagerConfigImage
|
|
810
828
|
*/
|
|
811
|
-
|
|
829
|
+
getManagerConfigImage(filename: string, options?: O): RestResponse<any>;
|
|
830
|
+
}
|
|
831
|
+
export declare class AssetDatapointResourceClient<O> {
|
|
832
|
+
protected httpClient: HttpClient<O>;
|
|
833
|
+
constructor(httpClient: HttpClient<O>);
|
|
812
834
|
/**
|
|
813
|
-
* HTTP
|
|
814
|
-
* Java method: org.openremote.model.
|
|
835
|
+
* HTTP GET /asset/datapoint/export
|
|
836
|
+
* Java method: org.openremote.model.datapoint.AssetDatapointResource.getDatapointExport
|
|
815
837
|
*/
|
|
816
|
-
|
|
838
|
+
getDatapointExport(queryParams?: {
|
|
839
|
+
attributeRefs?: string;
|
|
840
|
+
fromTimestamp?: number;
|
|
841
|
+
toTimestamp?: number;
|
|
842
|
+
}, options?: O): RestResponse<any>;
|
|
817
843
|
/**
|
|
818
|
-
* HTTP
|
|
819
|
-
* Java method: org.openremote.model.
|
|
844
|
+
* HTTP GET /asset/datapoint/periods
|
|
845
|
+
* Java method: org.openremote.model.datapoint.AssetDatapointResource.getDatapointPeriod
|
|
820
846
|
*/
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
847
|
+
getDatapointPeriod(queryParams?: {
|
|
848
|
+
assetId?: string;
|
|
849
|
+
attributeName?: string;
|
|
850
|
+
}, options?: O): RestResponse<Model.DatapointPeriod>;
|
|
851
|
+
/**
|
|
852
|
+
* HTTP POST /asset/datapoint/{assetId}/{attributeName}
|
|
853
|
+
* Java method: org.openremote.model.datapoint.AssetDatapointResource.getDatapoints
|
|
854
|
+
*/
|
|
855
|
+
getDatapoints(assetId: string, attributeName: string, query: Model.AssetDatapointQueryUnion, options?: O): RestResponse<Model.ValueDatapoint<any>[]>;
|
|
824
856
|
}
|
|
825
857
|
export declare class AppResourceClient<O> {
|
|
826
858
|
protected httpClient: HttpClient<O>;
|
|
@@ -841,83 +873,51 @@ export declare class AppResourceClient<O> {
|
|
|
841
873
|
*/
|
|
842
874
|
getAppInfos(options?: O): RestResponse<any>;
|
|
843
875
|
}
|
|
844
|
-
export declare class SyslogResourceClient<O> {
|
|
845
|
-
protected httpClient: HttpClient<O>;
|
|
846
|
-
constructor(httpClient: HttpClient<O>);
|
|
847
|
-
/**
|
|
848
|
-
* HTTP GET /syslog/config
|
|
849
|
-
* Java method: org.openremote.model.syslog.SyslogResource.getConfig
|
|
850
|
-
*/
|
|
851
|
-
getConfig(options?: O): RestResponse<Model.SyslogConfig>;
|
|
852
|
-
/**
|
|
853
|
-
* HTTP PUT /syslog/config
|
|
854
|
-
* Java method: org.openremote.model.syslog.SyslogResource.updateConfig
|
|
855
|
-
*/
|
|
856
|
-
updateConfig(config: Model.SyslogConfig, options?: O): RestResponse<void>;
|
|
857
|
-
/**
|
|
858
|
-
* HTTP DELETE /syslog/event
|
|
859
|
-
* Java method: org.openremote.model.syslog.SyslogResource.clearEvents
|
|
860
|
-
*/
|
|
861
|
-
clearEvents(options?: O): RestResponse<void>;
|
|
862
|
-
/**
|
|
863
|
-
* HTTP GET /syslog/event
|
|
864
|
-
* Java method: org.openremote.model.syslog.SyslogResource.getEvents
|
|
865
|
-
*/
|
|
866
|
-
getEvents(queryParams?: {
|
|
867
|
-
level?: Model.SyslogLevel;
|
|
868
|
-
per_page?: number;
|
|
869
|
-
page?: number;
|
|
870
|
-
from?: number;
|
|
871
|
-
to?: number;
|
|
872
|
-
category?: Model.SyslogCategory[];
|
|
873
|
-
subCategory?: string[];
|
|
874
|
-
}, options?: O): RestResponse<any>;
|
|
875
|
-
}
|
|
876
876
|
export type RestResponse<R> = Promise<Axios.GenericAxiosResponse<R>>;
|
|
877
877
|
export declare class ApiClient {
|
|
878
|
-
protected _provisioningResource: AxiosProvisioningResourceClient;
|
|
879
|
-
protected _alarmResource: AxiosAlarmResourceClient;
|
|
880
878
|
protected _userResource: AxiosUserResourceClient;
|
|
881
|
-
protected
|
|
882
|
-
protected
|
|
879
|
+
protected _consoleResource: AxiosConsoleResourceClient;
|
|
880
|
+
protected _agentResource: AxiosAgentResourceClient;
|
|
883
881
|
protected _assetModelResource: AxiosAssetModelResourceClient;
|
|
884
|
-
protected
|
|
885
|
-
protected
|
|
886
|
-
protected _realmResource: AxiosRealmResourceClient;
|
|
887
|
-
protected _statusResource: AxiosStatusResourceClient;
|
|
882
|
+
protected _provisioningResource: AxiosProvisioningResourceClient;
|
|
883
|
+
protected _gatewayClientResource: AxiosGatewayClientResourceClient;
|
|
888
884
|
protected _flowResource: AxiosFlowResourceClient;
|
|
889
|
-
protected
|
|
890
|
-
protected _assetDatapointResource: AxiosAssetDatapointResourceClient;
|
|
891
|
-
protected _agentResource: AxiosAgentResourceClient;
|
|
892
|
-
protected _notificationResource: AxiosNotificationResourceClient;
|
|
893
|
-
protected _consoleResource: AxiosConsoleResourceClient;
|
|
885
|
+
protected _statusResource: AxiosStatusResourceClient;
|
|
894
886
|
protected _gatewayServiceResource: AxiosGatewayServiceResourceClient;
|
|
895
|
-
protected
|
|
887
|
+
protected _mapResource: AxiosMapResourceClient;
|
|
896
888
|
protected _assetResource: AxiosAssetResourceClient;
|
|
897
|
-
protected
|
|
889
|
+
protected _realmResource: AxiosRealmResourceClient;
|
|
898
890
|
protected _syslogResource: AxiosSyslogResourceClient;
|
|
891
|
+
protected _notificationResource: AxiosNotificationResourceClient;
|
|
892
|
+
protected _assetPredictedDatapointResource: AxiosAssetPredictedDatapointResourceClient;
|
|
893
|
+
protected _rulesResource: AxiosRulesResourceClient;
|
|
894
|
+
protected _dashboardResource: AxiosDashboardResourceClient;
|
|
895
|
+
protected _alarmResource: AxiosAlarmResourceClient;
|
|
896
|
+
protected _configurationResource: AxiosConfigurationResourceClient;
|
|
897
|
+
protected _assetDatapointResource: AxiosAssetDatapointResourceClient;
|
|
898
|
+
protected _appResource: AxiosAppResourceClient;
|
|
899
899
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
900
|
-
get ProvisioningResource(): AxiosProvisioningResourceClient;
|
|
901
|
-
get AlarmResource(): AxiosAlarmResourceClient;
|
|
902
900
|
get UserResource(): AxiosUserResourceClient;
|
|
903
|
-
get
|
|
904
|
-
get
|
|
901
|
+
get ConsoleResource(): AxiosConsoleResourceClient;
|
|
902
|
+
get AgentResource(): AxiosAgentResourceClient;
|
|
905
903
|
get AssetModelResource(): AxiosAssetModelResourceClient;
|
|
906
|
-
get
|
|
907
|
-
get
|
|
908
|
-
get RealmResource(): AxiosRealmResourceClient;
|
|
909
|
-
get StatusResource(): AxiosStatusResourceClient;
|
|
904
|
+
get ProvisioningResource(): AxiosProvisioningResourceClient;
|
|
905
|
+
get GatewayClientResource(): AxiosGatewayClientResourceClient;
|
|
910
906
|
get FlowResource(): AxiosFlowResourceClient;
|
|
911
|
-
get
|
|
912
|
-
get AssetDatapointResource(): AxiosAssetDatapointResourceClient;
|
|
913
|
-
get AgentResource(): AxiosAgentResourceClient;
|
|
914
|
-
get NotificationResource(): AxiosNotificationResourceClient;
|
|
915
|
-
get ConsoleResource(): AxiosConsoleResourceClient;
|
|
907
|
+
get StatusResource(): AxiosStatusResourceClient;
|
|
916
908
|
get GatewayServiceResource(): AxiosGatewayServiceResourceClient;
|
|
917
|
-
get
|
|
909
|
+
get MapResource(): AxiosMapResourceClient;
|
|
918
910
|
get AssetResource(): AxiosAssetResourceClient;
|
|
919
|
-
get
|
|
911
|
+
get RealmResource(): AxiosRealmResourceClient;
|
|
920
912
|
get SyslogResource(): AxiosSyslogResourceClient;
|
|
913
|
+
get NotificationResource(): AxiosNotificationResourceClient;
|
|
914
|
+
get AssetPredictedDatapointResource(): AxiosAssetPredictedDatapointResourceClient;
|
|
915
|
+
get RulesResource(): AxiosRulesResourceClient;
|
|
916
|
+
get DashboardResource(): AxiosDashboardResourceClient;
|
|
917
|
+
get AlarmResource(): AxiosAlarmResourceClient;
|
|
918
|
+
get ConfigurationResource(): AxiosConfigurationResourceClient;
|
|
919
|
+
get AssetDatapointResource(): AxiosAssetDatapointResourceClient;
|
|
920
|
+
get AppResource(): AxiosAppResourceClient;
|
|
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 AxiosProvisioningResourceClient extends ProvisioningResourceClient<Axios.AxiosRequestConfig> {
|
|
929
|
-
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
930
|
-
}
|
|
931
|
-
export declare class AxiosAlarmResourceClient extends AlarmResourceClient<Axios.AxiosRequestConfig> {
|
|
932
|
-
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
933
|
-
}
|
|
934
928
|
export declare class AxiosUserResourceClient extends UserResourceClient<Axios.AxiosRequestConfig> {
|
|
935
929
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
936
930
|
}
|
|
937
|
-
export declare class
|
|
931
|
+
export declare class AxiosConsoleResourceClient extends ConsoleResourceClient<Axios.AxiosRequestConfig> {
|
|
938
932
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
939
933
|
}
|
|
940
|
-
export declare class
|
|
934
|
+
export declare class AxiosAgentResourceClient extends AgentResourceClient<Axios.AxiosRequestConfig> {
|
|
941
935
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
942
936
|
}
|
|
943
937
|
export declare class AxiosAssetModelResourceClient extends AssetModelResourceClient<Axios.AxiosRequestConfig> {
|
|
944
938
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
945
939
|
}
|
|
946
|
-
export declare class
|
|
940
|
+
export declare class AxiosProvisioningResourceClient extends ProvisioningResourceClient<Axios.AxiosRequestConfig> {
|
|
947
941
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
948
942
|
}
|
|
949
|
-
export declare class
|
|
943
|
+
export declare class AxiosGatewayClientResourceClient extends GatewayClientResourceClient<Axios.AxiosRequestConfig> {
|
|
950
944
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
951
945
|
}
|
|
952
|
-
export declare class
|
|
946
|
+
export declare class AxiosFlowResourceClient extends FlowResourceClient<Axios.AxiosRequestConfig> {
|
|
953
947
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
954
948
|
}
|
|
955
949
|
export declare class AxiosStatusResourceClient extends StatusResourceClient<Axios.AxiosRequestConfig> {
|
|
956
950
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
957
951
|
}
|
|
958
|
-
export declare class
|
|
952
|
+
export declare class AxiosGatewayServiceResourceClient extends GatewayServiceResourceClient<Axios.AxiosRequestConfig> {
|
|
959
953
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
960
954
|
}
|
|
961
|
-
export declare class
|
|
955
|
+
export declare class AxiosMapResourceClient extends MapResourceClient<Axios.AxiosRequestConfig> {
|
|
962
956
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
963
957
|
}
|
|
964
|
-
export declare class
|
|
958
|
+
export declare class AxiosAssetResourceClient extends AssetResourceClient<Axios.AxiosRequestConfig> {
|
|
965
959
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
966
960
|
}
|
|
967
|
-
export declare class
|
|
961
|
+
export declare class AxiosRealmResourceClient extends RealmResourceClient<Axios.AxiosRequestConfig> {
|
|
962
|
+
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
963
|
+
}
|
|
964
|
+
export declare class AxiosSyslogResourceClient extends SyslogResourceClient<Axios.AxiosRequestConfig> {
|
|
968
965
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
969
966
|
}
|
|
970
967
|
export declare class AxiosNotificationResourceClient extends NotificationResourceClient<Axios.AxiosRequestConfig> {
|
|
971
968
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
972
969
|
}
|
|
973
|
-
export declare class
|
|
970
|
+
export declare class AxiosAssetPredictedDatapointResourceClient extends AssetPredictedDatapointResourceClient<Axios.AxiosRequestConfig> {
|
|
974
971
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
975
972
|
}
|
|
976
|
-
export declare class
|
|
973
|
+
export declare class AxiosRulesResourceClient extends RulesResourceClient<Axios.AxiosRequestConfig> {
|
|
977
974
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
978
975
|
}
|
|
979
|
-
export declare class
|
|
976
|
+
export declare class AxiosDashboardResourceClient extends DashboardResourceClient<Axios.AxiosRequestConfig> {
|
|
980
977
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
981
978
|
}
|
|
982
|
-
export declare class
|
|
979
|
+
export declare class AxiosAlarmResourceClient extends AlarmResourceClient<Axios.AxiosRequestConfig> {
|
|
983
980
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
984
981
|
}
|
|
985
|
-
export declare class
|
|
982
|
+
export declare class AxiosConfigurationResourceClient extends ConfigurationResourceClient<Axios.AxiosRequestConfig> {
|
|
986
983
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
987
984
|
}
|
|
988
|
-
export declare class
|
|
985
|
+
export declare class AxiosAssetDatapointResourceClient extends AssetDatapointResourceClient<Axios.AxiosRequestConfig> {
|
|
986
|
+
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
987
|
+
}
|
|
988
|
+
export declare class AxiosAppResourceClient extends AppResourceClient<Axios.AxiosRequestConfig> {
|
|
989
989
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
990
990
|
}
|