@openremote/rest 1.10.0-snapshot.20251023115142 → 1.10.0-snapshot.20251023140106
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.bundle.js.map +1 -1
- package/dist/umd/index.js +1 -1
- package/dist/umd/index.js.map +1 -1
- package/lib/restclient.d.ts +532 -532
- 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,66 +9,6 @@ export interface HttpClient<O> {
|
|
|
9
9
|
options?: O;
|
|
10
10
|
}): RestResponse<R>;
|
|
11
11
|
}
|
|
12
|
-
export declare class ConfigurationResourceClient<O> {
|
|
13
|
-
protected httpClient: HttpClient<O>;
|
|
14
|
-
constructor(httpClient: HttpClient<O>);
|
|
15
|
-
/**
|
|
16
|
-
* HTTP GET /configuration/manager
|
|
17
|
-
* Java method: org.openremote.model.manager.ConfigurationResource.getManagerConfig
|
|
18
|
-
*/
|
|
19
|
-
getManagerConfig(options?: O): RestResponse<Model.ManagerAppConfig>;
|
|
20
|
-
/**
|
|
21
|
-
* HTTP PUT /configuration/manager
|
|
22
|
-
* Java method: org.openremote.model.manager.ConfigurationResource.update
|
|
23
|
-
*/
|
|
24
|
-
update(managerConfiguration: Model.ManagerAppConfig, options?: O): RestResponse<Model.ManagerAppConfig>;
|
|
25
|
-
/**
|
|
26
|
-
* HTTP POST /configuration/manager/file
|
|
27
|
-
* Java method: org.openremote.model.manager.ConfigurationResource.fileUpload
|
|
28
|
-
*/
|
|
29
|
-
fileUpload(fileInfo: Model.FileInfo, queryParams?: {
|
|
30
|
-
path?: string;
|
|
31
|
-
}, options?: O): RestResponse<string>;
|
|
32
|
-
/**
|
|
33
|
-
* HTTP GET /configuration/manager/image/{filename: .+}
|
|
34
|
-
* Java method: org.openremote.model.manager.ConfigurationResource.getManagerConfigImage
|
|
35
|
-
*/
|
|
36
|
-
getManagerConfigImage(filename: string, options?: O): RestResponse<any>;
|
|
37
|
-
}
|
|
38
|
-
export declare class RealmResourceClient<O> {
|
|
39
|
-
protected httpClient: HttpClient<O>;
|
|
40
|
-
constructor(httpClient: HttpClient<O>);
|
|
41
|
-
/**
|
|
42
|
-
* HTTP POST /realm
|
|
43
|
-
* Java method: org.openremote.model.security.RealmResource.create
|
|
44
|
-
*/
|
|
45
|
-
create(realm: Model.Realm, options?: O): RestResponse<void>;
|
|
46
|
-
/**
|
|
47
|
-
* HTTP GET /realm
|
|
48
|
-
* Java method: org.openremote.model.security.RealmResource.getAll
|
|
49
|
-
*/
|
|
50
|
-
getAll(options?: O): RestResponse<Model.Realm[]>;
|
|
51
|
-
/**
|
|
52
|
-
* HTTP GET /realm/accessible
|
|
53
|
-
* Java method: org.openremote.model.security.RealmResource.getAccessible
|
|
54
|
-
*/
|
|
55
|
-
getAccessible(options?: O): RestResponse<Model.Realm[]>;
|
|
56
|
-
/**
|
|
57
|
-
* HTTP DELETE /realm/{name}
|
|
58
|
-
* Java method: org.openremote.model.security.RealmResource.delete
|
|
59
|
-
*/
|
|
60
|
-
delete(name: string, options?: O): RestResponse<void>;
|
|
61
|
-
/**
|
|
62
|
-
* HTTP GET /realm/{name}
|
|
63
|
-
* Java method: org.openremote.model.security.RealmResource.get
|
|
64
|
-
*/
|
|
65
|
-
get(name: string, options?: O): RestResponse<Model.Realm>;
|
|
66
|
-
/**
|
|
67
|
-
* HTTP PUT /realm/{name}
|
|
68
|
-
* Java method: org.openremote.model.security.RealmResource.update
|
|
69
|
-
*/
|
|
70
|
-
update(name: string, realm: Model.Realm, options?: O): RestResponse<void>;
|
|
71
|
-
}
|
|
72
12
|
export declare class UserResourceClient<O> {
|
|
73
13
|
protected httpClient: HttpClient<O>;
|
|
74
14
|
constructor(httpClient: HttpClient<O>);
|
|
@@ -193,199 +133,33 @@ export declare class UserResourceClient<O> {
|
|
|
193
133
|
*/
|
|
194
134
|
get(realm: string, userId: string, options?: O): RestResponse<Model.User>;
|
|
195
135
|
}
|
|
196
|
-
export declare class
|
|
197
|
-
protected httpClient: HttpClient<O>;
|
|
198
|
-
constructor(httpClient: HttpClient<O>);
|
|
199
|
-
/**
|
|
200
|
-
* HTTP GET /asset/datapoint/export
|
|
201
|
-
* Java method: org.openremote.model.datapoint.AssetDatapointResource.getDatapointExport
|
|
202
|
-
*/
|
|
203
|
-
getDatapointExport(queryParams?: {
|
|
204
|
-
attributeRefs?: string;
|
|
205
|
-
fromTimestamp?: number;
|
|
206
|
-
toTimestamp?: number;
|
|
207
|
-
}, options?: O): RestResponse<any>;
|
|
208
|
-
/**
|
|
209
|
-
* HTTP GET /asset/datapoint/periods
|
|
210
|
-
* Java method: org.openremote.model.datapoint.AssetDatapointResource.getDatapointPeriod
|
|
211
|
-
*/
|
|
212
|
-
getDatapointPeriod(queryParams?: {
|
|
213
|
-
assetId?: string;
|
|
214
|
-
attributeName?: string;
|
|
215
|
-
}, options?: O): RestResponse<Model.DatapointPeriod>;
|
|
216
|
-
/**
|
|
217
|
-
* HTTP POST /asset/datapoint/{assetId}/{attributeName}
|
|
218
|
-
* Java method: org.openremote.model.datapoint.AssetDatapointResource.getDatapoints
|
|
219
|
-
*/
|
|
220
|
-
getDatapoints(assetId: string, attributeName: string, query: Model.AssetDatapointQueryUnion, options?: O): RestResponse<Model.ValueDatapoint<any>[]>;
|
|
221
|
-
}
|
|
222
|
-
export declare class AgentResourceClient<O> {
|
|
223
|
-
protected httpClient: HttpClient<O>;
|
|
224
|
-
constructor(httpClient: HttpClient<O>);
|
|
225
|
-
/**
|
|
226
|
-
* HTTP GET /agent/assetDiscovery/{agentId}
|
|
227
|
-
* Java method: org.openremote.model.asset.agent.AgentResource.doProtocolAssetDiscovery
|
|
228
|
-
*/
|
|
229
|
-
doProtocolAssetDiscovery(agentId: string, queryParams?: {
|
|
230
|
-
realm?: string;
|
|
231
|
-
}, options?: O): RestResponse<Model.AssetTreeNode[]>;
|
|
232
|
-
/**
|
|
233
|
-
* HTTP POST /agent/assetImport/{agentId}
|
|
234
|
-
* Java method: org.openremote.model.asset.agent.AgentResource.doProtocolAssetImport
|
|
235
|
-
*/
|
|
236
|
-
doProtocolAssetImport(agentId: string, fileInfo: Model.FileInfo, queryParams?: {
|
|
237
|
-
realm?: string;
|
|
238
|
-
}, options?: O): RestResponse<Model.AssetTreeNode[]>;
|
|
239
|
-
/**
|
|
240
|
-
* HTTP GET /agent/instanceDiscovery/{agentType}
|
|
241
|
-
* Java method: org.openremote.model.asset.agent.AgentResource.doProtocolInstanceDiscovery
|
|
242
|
-
*/
|
|
243
|
-
doProtocolInstanceDiscovery(agentType: string, queryParams?: {
|
|
244
|
-
parentId?: string;
|
|
245
|
-
realm?: string;
|
|
246
|
-
}, options?: O): RestResponse<Model.Agent[]>;
|
|
247
|
-
}
|
|
248
|
-
export declare class MapResourceClient<O> {
|
|
249
|
-
protected httpClient: HttpClient<O>;
|
|
250
|
-
constructor(httpClient: HttpClient<O>);
|
|
251
|
-
/**
|
|
252
|
-
* HTTP GET /map
|
|
253
|
-
* Java method: org.openremote.model.map.MapResource.getSettings
|
|
254
|
-
*/
|
|
255
|
-
getSettings(options?: O): RestResponse<{
|
|
256
|
-
[id: string]: unknown;
|
|
257
|
-
}>;
|
|
258
|
-
/**
|
|
259
|
-
* HTTP PUT /map
|
|
260
|
-
* Java method: org.openremote.model.map.MapResource.saveSettings
|
|
261
|
-
*/
|
|
262
|
-
saveSettings(mapConfig: Model.MapConfig, options?: O): RestResponse<{
|
|
263
|
-
[id: string]: unknown;
|
|
264
|
-
}>;
|
|
265
|
-
/**
|
|
266
|
-
* HTTP DELETE /map/deleteMap
|
|
267
|
-
* Java method: org.openremote.model.map.MapResource.deleteMap
|
|
268
|
-
*/
|
|
269
|
-
deleteMap(options?: O): RestResponse<{
|
|
270
|
-
[id: string]: unknown;
|
|
271
|
-
}>;
|
|
272
|
-
/**
|
|
273
|
-
* HTTP GET /map/getCustomMapInfo
|
|
274
|
-
* Java method: org.openremote.model.map.MapResource.getCustomMapInfo
|
|
275
|
-
*/
|
|
276
|
-
getCustomMapInfo(options?: O): RestResponse<{
|
|
277
|
-
[id: string]: unknown;
|
|
278
|
-
}>;
|
|
279
|
-
/**
|
|
280
|
-
* HTTP GET /map/js
|
|
281
|
-
* Java method: org.openremote.model.map.MapResource.getSettingsJs
|
|
282
|
-
*/
|
|
283
|
-
getSettingsJs(options?: O): RestResponse<{
|
|
284
|
-
[id: string]: unknown;
|
|
285
|
-
}>;
|
|
286
|
-
/**
|
|
287
|
-
* HTTP GET /map/tile/{zoom}/{column}/{row}
|
|
288
|
-
* Java method: org.openremote.model.map.MapResource.getTile
|
|
289
|
-
*/
|
|
290
|
-
getTile(zoom: number, column: number, row: number, options?: O): RestResponse<any>;
|
|
291
|
-
/**
|
|
292
|
-
* HTTP POST /map/upload
|
|
293
|
-
* Java method: org.openremote.model.map.MapResource.uploadMap
|
|
294
|
-
*/
|
|
295
|
-
uploadMap(queryParams?: {
|
|
296
|
-
filename?: string;
|
|
297
|
-
}, options?: O): RestResponse<{
|
|
298
|
-
[id: string]: unknown;
|
|
299
|
-
}>;
|
|
300
|
-
}
|
|
301
|
-
export declare class GatewayClientResourceClient<O> {
|
|
136
|
+
export declare class ConsoleResourceClient<O> {
|
|
302
137
|
protected httpClient: HttpClient<O>;
|
|
303
138
|
constructor(httpClient: HttpClient<O>);
|
|
304
139
|
/**
|
|
305
|
-
* HTTP
|
|
306
|
-
* Java method: org.openremote.model.
|
|
307
|
-
*/
|
|
308
|
-
deleteConnections(queryParams?: {
|
|
309
|
-
realm?: string[];
|
|
310
|
-
}, options?: O): RestResponse<void>;
|
|
311
|
-
/**
|
|
312
|
-
* HTTP GET /gateway/connection
|
|
313
|
-
* Java method: org.openremote.model.gateway.GatewayClientResource.getConnections
|
|
314
|
-
*/
|
|
315
|
-
getConnections(options?: O): RestResponse<Model.GatewayConnection[]>;
|
|
316
|
-
/**
|
|
317
|
-
* HTTP DELETE /gateway/connection/{realm}
|
|
318
|
-
* Java method: org.openremote.model.gateway.GatewayClientResource.deleteConnection
|
|
319
|
-
*/
|
|
320
|
-
deleteConnection(realm: string, options?: O): RestResponse<void>;
|
|
321
|
-
/**
|
|
322
|
-
* HTTP GET /gateway/connection/{realm}
|
|
323
|
-
* Java method: org.openremote.model.gateway.GatewayClientResource.getConnection
|
|
324
|
-
*/
|
|
325
|
-
getConnection(realm: string, options?: O): RestResponse<Model.GatewayConnection>;
|
|
326
|
-
/**
|
|
327
|
-
* HTTP PUT /gateway/connection/{realm}
|
|
328
|
-
* Java method: org.openremote.model.gateway.GatewayClientResource.setConnection
|
|
329
|
-
*/
|
|
330
|
-
setConnection(realm: string, connection: Model.GatewayConnection, options?: O): RestResponse<void>;
|
|
331
|
-
/**
|
|
332
|
-
* HTTP GET /gateway/status/{realm}
|
|
333
|
-
* Java method: org.openremote.model.gateway.GatewayClientResource.getConnectionStatus
|
|
140
|
+
* HTTP POST /console/register
|
|
141
|
+
* Java method: org.openremote.model.console.ConsoleResource.register
|
|
334
142
|
*/
|
|
335
|
-
|
|
143
|
+
register(consoleRegistration: Model.ConsoleRegistration, options?: O): RestResponse<Model.ConsoleRegistration>;
|
|
336
144
|
}
|
|
337
|
-
export declare class
|
|
145
|
+
export declare class FlowResourceClient<O> {
|
|
338
146
|
protected httpClient: HttpClient<O>;
|
|
339
147
|
constructor(httpClient: HttpClient<O>);
|
|
340
148
|
/**
|
|
341
|
-
* HTTP GET /
|
|
342
|
-
* Java method: org.openremote.model.
|
|
343
|
-
*/
|
|
344
|
-
getAssetDescriptors(queryParams?: {
|
|
345
|
-
parentId?: string;
|
|
346
|
-
parentType?: string;
|
|
347
|
-
}, options?: O): RestResponse<Model.AssetDescriptor[]>;
|
|
348
|
-
/**
|
|
349
|
-
* HTTP GET /model/assetInfo/{assetType}
|
|
350
|
-
* Java method: org.openremote.model.asset.AssetModelResource.getAssetInfo
|
|
351
|
-
*/
|
|
352
|
-
getAssetInfo(assetType: string, queryParams?: {
|
|
353
|
-
parentId?: string;
|
|
354
|
-
}, options?: O): RestResponse<Model.AssetTypeInfo>;
|
|
355
|
-
/**
|
|
356
|
-
* HTTP GET /model/assetInfos
|
|
357
|
-
* Java method: org.openremote.model.asset.AssetModelResource.getAssetInfos
|
|
358
|
-
*/
|
|
359
|
-
getAssetInfos(queryParams?: {
|
|
360
|
-
parentId?: string;
|
|
361
|
-
parentType?: string;
|
|
362
|
-
}, options?: O): RestResponse<Model.AssetTypeInfo[]>;
|
|
363
|
-
/**
|
|
364
|
-
* HTTP GET /model/getValueDescriptorSchema
|
|
365
|
-
* Java method: org.openremote.model.asset.AssetModelResource.getValueDescriptorSchema
|
|
149
|
+
* HTTP GET /flow
|
|
150
|
+
* Java method: org.openremote.model.rules.flow.FlowResource.getAllNodeDefinitions
|
|
366
151
|
*/
|
|
367
|
-
|
|
368
|
-
name?: string;
|
|
369
|
-
hash?: string;
|
|
370
|
-
}, options?: O): RestResponse<any>;
|
|
152
|
+
getAllNodeDefinitions(options?: O): RestResponse<Model.Node[]>;
|
|
371
153
|
/**
|
|
372
|
-
* HTTP GET /
|
|
373
|
-
* Java method: org.openremote.model.
|
|
154
|
+
* HTTP GET /flow/{name}
|
|
155
|
+
* Java method: org.openremote.model.rules.flow.FlowResource.getNodeDefinition
|
|
374
156
|
*/
|
|
375
|
-
|
|
376
|
-
parentId?: string;
|
|
377
|
-
}, options?: O): RestResponse<{
|
|
378
|
-
[index: string]: Model.MetaItemDescriptor;
|
|
379
|
-
}>;
|
|
157
|
+
getNodeDefinition(name: string, options?: O): RestResponse<Model.Node>;
|
|
380
158
|
/**
|
|
381
|
-
* HTTP GET /
|
|
382
|
-
* Java method: org.openremote.model.
|
|
159
|
+
* HTTP GET /flow/{type}
|
|
160
|
+
* Java method: org.openremote.model.rules.flow.FlowResource.getAllNodeDefinitionsByType
|
|
383
161
|
*/
|
|
384
|
-
|
|
385
|
-
parentId?: string;
|
|
386
|
-
}, options?: O): RestResponse<{
|
|
387
|
-
[index: string]: Model.ValueDescriptor;
|
|
388
|
-
}>;
|
|
162
|
+
getAllNodeDefinitionsByType(type: Model.NodeType, options?: O): RestResponse<Model.Node[]>;
|
|
389
163
|
}
|
|
390
164
|
export declare class SyslogResourceClient<O> {
|
|
391
165
|
protected httpClient: HttpClient<O>;
|
|
@@ -419,100 +193,60 @@ export declare class SyslogResourceClient<O> {
|
|
|
419
193
|
subCategory?: string[];
|
|
420
194
|
}, options?: O): RestResponse<any>;
|
|
421
195
|
}
|
|
422
|
-
export declare class
|
|
196
|
+
export declare class ExternalServiceResourceClient<O> {
|
|
423
197
|
protected httpClient: HttpClient<O>;
|
|
424
198
|
constructor(httpClient: HttpClient<O>);
|
|
425
199
|
/**
|
|
426
|
-
*
|
|
427
|
-
*
|
|
428
|
-
|
|
429
|
-
createProvisioningConfig(provisioningConfig: Model.ProvisioningConfigUnion<any, any>, options?: O): RestResponse<number>;
|
|
430
|
-
/**
|
|
431
|
-
* HTTP GET /provisioning
|
|
432
|
-
* Java method: org.openremote.model.provisioning.ProvisioningResource.getProvisioningConfigs
|
|
433
|
-
*/
|
|
434
|
-
getProvisioningConfigs(options?: O): RestResponse<Model.ProvisioningConfigUnion<any, any>[]>;
|
|
435
|
-
/**
|
|
436
|
-
* HTTP DELETE /provisioning/{id}
|
|
437
|
-
* Java method: org.openremote.model.provisioning.ProvisioningResource.deleteProvisioningConfig
|
|
438
|
-
*/
|
|
439
|
-
deleteProvisioningConfig(id: number, options?: O): RestResponse<void>;
|
|
440
|
-
/**
|
|
441
|
-
* HTTP PUT /provisioning/{id}
|
|
442
|
-
* Java method: org.openremote.model.provisioning.ProvisioningResource.updateProvisioningConfig
|
|
443
|
-
*/
|
|
444
|
-
updateProvisioningConfig(id: number, provisioningConfig: Model.ProvisioningConfigUnion<any, any>, options?: O): RestResponse<void>;
|
|
445
|
-
}
|
|
446
|
-
export declare class StatusResourceClient<O> {
|
|
447
|
-
protected httpClient: HttpClient<O>;
|
|
448
|
-
constructor(httpClient: HttpClient<O>);
|
|
449
|
-
/**
|
|
450
|
-
* HTTP GET /health
|
|
451
|
-
* Java method: org.openremote.model.system.StatusResource.getHealthStatus
|
|
452
|
-
*/
|
|
453
|
-
getHealthStatus(options?: O): RestResponse<{
|
|
454
|
-
[index: string]: any;
|
|
455
|
-
}>;
|
|
456
|
-
/**
|
|
457
|
-
* HTTP GET /info
|
|
458
|
-
* Java method: org.openremote.model.system.StatusResource.getInfo
|
|
459
|
-
*/
|
|
460
|
-
getInfo(options?: O): RestResponse<{
|
|
461
|
-
[index: string]: any;
|
|
462
|
-
}>;
|
|
463
|
-
}
|
|
464
|
-
export declare class FlowResourceClient<O> {
|
|
465
|
-
protected httpClient: HttpClient<O>;
|
|
466
|
-
constructor(httpClient: HttpClient<O>);
|
|
467
|
-
/**
|
|
468
|
-
* HTTP GET /flow
|
|
469
|
-
* Java method: org.openremote.model.rules.flow.FlowResource.getAllNodeDefinitions
|
|
470
|
-
*/
|
|
471
|
-
getAllNodeDefinitions(options?: O): RestResponse<Model.Node[]>;
|
|
472
|
-
/**
|
|
473
|
-
* HTTP GET /flow/{name}
|
|
474
|
-
* Java method: org.openremote.model.rules.flow.FlowResource.getNodeDefinition
|
|
475
|
-
*/
|
|
476
|
-
getNodeDefinition(name: string, options?: O): RestResponse<Model.Node>;
|
|
477
|
-
/**
|
|
478
|
-
* HTTP GET /flow/{type}
|
|
479
|
-
* Java method: org.openremote.model.rules.flow.FlowResource.getAllNodeDefinitionsByType
|
|
200
|
+
* Response code 200 - List of registered external services
|
|
201
|
+
* HTTP GET /service
|
|
202
|
+
* Java method: org.openremote.model.services.ExternalServiceResource.getServices
|
|
480
203
|
*/
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
protected httpClient: HttpClient<O>;
|
|
485
|
-
constructor(httpClient: HttpClient<O>);
|
|
204
|
+
getServices(queryParams?: {
|
|
205
|
+
realm?: string;
|
|
206
|
+
}, options?: O): RestResponse<Model.ExternalService[]>;
|
|
486
207
|
/**
|
|
487
|
-
*
|
|
488
|
-
*
|
|
208
|
+
* Response code 200 - Service registered successfully
|
|
209
|
+
* Response code 400 - Invalid external service object
|
|
210
|
+
* Response code 409 - ExternalService instance already registered
|
|
211
|
+
* HTTP POST /service
|
|
212
|
+
* Java method: org.openremote.model.services.ExternalServiceResource.registerService
|
|
489
213
|
*/
|
|
490
|
-
|
|
214
|
+
registerService(service: Model.ExternalService, options?: O): RestResponse<Model.ExternalService>;
|
|
491
215
|
/**
|
|
492
|
-
*
|
|
493
|
-
*
|
|
216
|
+
* Response code 200 - List of registered external services
|
|
217
|
+
* HTTP GET /service/global
|
|
218
|
+
* Java method: org.openremote.model.services.ExternalServiceResource.getGlobalServices
|
|
494
219
|
*/
|
|
495
|
-
|
|
220
|
+
getGlobalServices(options?: O): RestResponse<Model.ExternalService[]>;
|
|
496
221
|
/**
|
|
497
|
-
*
|
|
498
|
-
*
|
|
222
|
+
* Response code 200 - Service registered successfully
|
|
223
|
+
* Response code 400 - Invalid external service object
|
|
224
|
+
* Response code 409 - ExternalService instance already registered
|
|
225
|
+
* HTTP POST /service/global
|
|
226
|
+
* Java method: org.openremote.model.services.ExternalServiceResource.registerGlobalService
|
|
499
227
|
*/
|
|
500
|
-
|
|
228
|
+
registerGlobalService(service: Model.ExternalService, options?: O): RestResponse<Model.ExternalService>;
|
|
501
229
|
/**
|
|
502
|
-
*
|
|
503
|
-
*
|
|
230
|
+
* Response code 204 - Service deregistered successfully
|
|
231
|
+
* Response code 404 - Service instance not found
|
|
232
|
+
* HTTP DELETE /service/{serviceId}/{instanceId}
|
|
233
|
+
* Java method: org.openremote.model.services.ExternalServiceResource.deregisterService
|
|
504
234
|
*/
|
|
505
|
-
|
|
235
|
+
deregisterService(serviceId: string, instanceId: number, options?: O): RestResponse<void>;
|
|
506
236
|
/**
|
|
507
|
-
*
|
|
508
|
-
*
|
|
237
|
+
* Response code 200 - ExternalService retrieved successfully
|
|
238
|
+
* Response code 404 - ExternalService not found
|
|
239
|
+
* HTTP GET /service/{serviceId}/{instanceId}
|
|
240
|
+
* Java method: org.openremote.model.services.ExternalServiceResource.getService
|
|
509
241
|
*/
|
|
510
|
-
|
|
242
|
+
getService(serviceId: string, instanceId: number, options?: O): RestResponse<Model.ExternalService>;
|
|
511
243
|
/**
|
|
512
|
-
*
|
|
513
|
-
*
|
|
244
|
+
* Response code 204 - Heartbeat sent successfully
|
|
245
|
+
* Response code 404 - Service instance not found
|
|
246
|
+
* HTTP PUT /service/{serviceId}/{instanceId}
|
|
247
|
+
* Java method: org.openremote.model.services.ExternalServiceResource.heartbeat
|
|
514
248
|
*/
|
|
515
|
-
|
|
249
|
+
heartbeat(serviceId: string, instanceId: number, options?: O): RestResponse<void>;
|
|
516
250
|
}
|
|
517
251
|
export declare class RulesResourceClient<O> {
|
|
518
252
|
protected httpClient: HttpClient<O>;
|
|
@@ -622,98 +356,354 @@ export declare class RulesResourceClient<O> {
|
|
|
622
356
|
*/
|
|
623
357
|
updateGlobalRuleset(id: number, ruleset: Model.GlobalRuleset, options?: O): RestResponse<void>;
|
|
624
358
|
}
|
|
625
|
-
export declare class
|
|
359
|
+
export declare class ConfigurationResourceClient<O> {
|
|
626
360
|
protected httpClient: HttpClient<O>;
|
|
627
361
|
constructor(httpClient: HttpClient<O>);
|
|
628
362
|
/**
|
|
629
|
-
* HTTP
|
|
630
|
-
* Java method: org.openremote.model.
|
|
363
|
+
* HTTP GET /configuration/manager
|
|
364
|
+
* Java method: org.openremote.model.manager.ConfigurationResource.getManagerConfig
|
|
631
365
|
*/
|
|
632
|
-
|
|
366
|
+
getManagerConfig(options?: O): RestResponse<Model.ManagerAppConfig>;
|
|
367
|
+
/**
|
|
368
|
+
* HTTP PUT /configuration/manager
|
|
369
|
+
* Java method: org.openremote.model.manager.ConfigurationResource.update
|
|
370
|
+
*/
|
|
371
|
+
update(managerConfiguration: Model.ManagerAppConfig, options?: O): RestResponse<Model.ManagerAppConfig>;
|
|
372
|
+
/**
|
|
373
|
+
* HTTP POST /configuration/manager/file
|
|
374
|
+
* Java method: org.openremote.model.manager.ConfigurationResource.fileUpload
|
|
375
|
+
*/
|
|
376
|
+
fileUpload(fileInfo: Model.FileInfo, queryParams?: {
|
|
377
|
+
path?: string;
|
|
378
|
+
}, options?: O): RestResponse<string>;
|
|
379
|
+
/**
|
|
380
|
+
* HTTP GET /configuration/manager/image/{filename: .+}
|
|
381
|
+
* Java method: org.openremote.model.manager.ConfigurationResource.getManagerConfigImage
|
|
382
|
+
*/
|
|
383
|
+
getManagerConfigImage(filename: string, options?: O): RestResponse<any>;
|
|
633
384
|
}
|
|
634
|
-
export declare class
|
|
385
|
+
export declare class StatusResourceClient<O> {
|
|
635
386
|
protected httpClient: HttpClient<O>;
|
|
636
387
|
constructor(httpClient: HttpClient<O>);
|
|
637
388
|
/**
|
|
638
|
-
* HTTP
|
|
639
|
-
* Java method: org.openremote.model.
|
|
389
|
+
* HTTP GET /health
|
|
390
|
+
* Java method: org.openremote.model.system.StatusResource.getHealthStatus
|
|
640
391
|
*/
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
}
|
|
392
|
+
getHealthStatus(options?: O): RestResponse<{
|
|
393
|
+
[index: string]: any;
|
|
394
|
+
}>;
|
|
644
395
|
/**
|
|
645
|
-
* HTTP GET /
|
|
646
|
-
* Java method: org.openremote.model.
|
|
396
|
+
* HTTP GET /info
|
|
397
|
+
* Java method: org.openremote.model.system.StatusResource.getInfo
|
|
647
398
|
*/
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
399
|
+
getInfo(options?: O): RestResponse<{
|
|
400
|
+
[index: string]: any;
|
|
401
|
+
}>;
|
|
402
|
+
}
|
|
403
|
+
export declare class MapResourceClient<O> {
|
|
404
|
+
protected httpClient: HttpClient<O>;
|
|
405
|
+
constructor(httpClient: HttpClient<O>);
|
|
654
406
|
/**
|
|
655
|
-
* HTTP
|
|
656
|
-
* Java method: org.openremote.model.
|
|
407
|
+
* HTTP GET /map
|
|
408
|
+
* Java method: org.openremote.model.map.MapResource.getSettings
|
|
657
409
|
*/
|
|
658
|
-
|
|
410
|
+
getSettings(options?: O): RestResponse<{
|
|
411
|
+
[id: string]: unknown;
|
|
412
|
+
}>;
|
|
659
413
|
/**
|
|
660
|
-
* HTTP PUT /
|
|
661
|
-
* Java method: org.openremote.model.
|
|
414
|
+
* HTTP PUT /map
|
|
415
|
+
* Java method: org.openremote.model.map.MapResource.saveSettings
|
|
662
416
|
*/
|
|
663
|
-
|
|
417
|
+
saveSettings(mapConfig: Model.MapConfig, options?: O): RestResponse<{
|
|
418
|
+
[id: string]: unknown;
|
|
419
|
+
}>;
|
|
664
420
|
/**
|
|
665
|
-
* HTTP
|
|
666
|
-
* Java method: org.openremote.model.
|
|
421
|
+
* HTTP DELETE /map/deleteMap
|
|
422
|
+
* Java method: org.openremote.model.map.MapResource.deleteMap
|
|
667
423
|
*/
|
|
668
|
-
|
|
424
|
+
deleteMap(options?: O): RestResponse<{
|
|
425
|
+
[id: string]: unknown;
|
|
426
|
+
}>;
|
|
669
427
|
/**
|
|
670
|
-
* HTTP
|
|
671
|
-
* Java method: org.openremote.model.
|
|
428
|
+
* HTTP GET /map/getCustomMapInfo
|
|
429
|
+
* Java method: org.openremote.model.map.MapResource.getCustomMapInfo
|
|
672
430
|
*/
|
|
673
|
-
|
|
431
|
+
getCustomMapInfo(options?: O): RestResponse<{
|
|
432
|
+
[id: string]: unknown;
|
|
433
|
+
}>;
|
|
674
434
|
/**
|
|
675
|
-
* HTTP
|
|
676
|
-
* Java method: org.openremote.model.
|
|
435
|
+
* HTTP GET /map/js
|
|
436
|
+
* Java method: org.openremote.model.map.MapResource.getSettingsJs
|
|
677
437
|
*/
|
|
678
|
-
|
|
438
|
+
getSettingsJs(options?: O): RestResponse<{
|
|
439
|
+
[id: string]: unknown;
|
|
440
|
+
}>;
|
|
679
441
|
/**
|
|
680
|
-
* HTTP GET /
|
|
681
|
-
* Java method: org.openremote.model.
|
|
442
|
+
* HTTP GET /map/tile/{zoom}/{column}/{row}
|
|
443
|
+
* Java method: org.openremote.model.map.MapResource.getTile
|
|
682
444
|
*/
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
445
|
+
getTile(zoom: number, column: number, row: number, options?: O): RestResponse<any>;
|
|
446
|
+
/**
|
|
447
|
+
* HTTP POST /map/upload
|
|
448
|
+
* Java method: org.openremote.model.map.MapResource.uploadMap
|
|
449
|
+
*/
|
|
450
|
+
uploadMap(queryParams?: {
|
|
451
|
+
filename?: string;
|
|
452
|
+
}, options?: O): RestResponse<{
|
|
453
|
+
[id: string]: unknown;
|
|
454
|
+
}>;
|
|
686
455
|
}
|
|
687
|
-
export declare class
|
|
456
|
+
export declare class AssetPredictedDatapointResourceClient<O> {
|
|
688
457
|
protected httpClient: HttpClient<O>;
|
|
689
458
|
constructor(httpClient: HttpClient<O>);
|
|
690
459
|
/**
|
|
691
|
-
* HTTP
|
|
692
|
-
* Java method: org.openremote.model.
|
|
693
|
-
*/
|
|
694
|
-
getApps(options?: O): RestResponse<string[]>;
|
|
695
|
-
/**
|
|
696
|
-
* HTTP GET /apps/consoleConfig
|
|
697
|
-
* Java method: org.openremote.model.apps.AppResource.getConsoleConfig
|
|
460
|
+
* HTTP POST /asset/predicted/{assetId}/{attributeName}
|
|
461
|
+
* Java method: org.openremote.model.datapoint.AssetPredictedDatapointResource.getPredictedDatapoints
|
|
698
462
|
*/
|
|
699
|
-
|
|
463
|
+
getPredictedDatapoints(assetId: string, attributeName: string, query: Model.AssetDatapointQueryUnion, options?: O): RestResponse<Model.ValueDatapoint<any>[]>;
|
|
700
464
|
/**
|
|
701
|
-
* HTTP
|
|
702
|
-
* Java method: org.openremote.model.
|
|
465
|
+
* HTTP PUT /asset/predicted/{assetId}/{attributeName}
|
|
466
|
+
* Java method: org.openremote.model.datapoint.AssetPredictedDatapointResource.writePredictedDatapoints
|
|
703
467
|
*/
|
|
704
|
-
|
|
468
|
+
writePredictedDatapoints(assetId: string, attributeName: string, predictedDatapoints: Model.ValueDatapoint<any>[], options?: O): RestResponse<void>;
|
|
705
469
|
}
|
|
706
|
-
export declare class
|
|
470
|
+
export declare class DashboardResourceClient<O> {
|
|
707
471
|
protected httpClient: HttpClient<O>;
|
|
708
472
|
constructor(httpClient: HttpClient<O>);
|
|
709
473
|
/**
|
|
710
|
-
* HTTP POST /
|
|
711
|
-
* Java method: org.openremote.model.
|
|
474
|
+
* HTTP POST /dashboard
|
|
475
|
+
* Java method: org.openremote.model.dashboard.DashboardResource.create
|
|
712
476
|
*/
|
|
713
|
-
create(
|
|
477
|
+
create(dashboard: Model.Dashboard, options?: O): RestResponse<Model.Dashboard>;
|
|
714
478
|
/**
|
|
715
|
-
* HTTP
|
|
716
|
-
* Java method: org.openremote.model.
|
|
479
|
+
* HTTP PUT /dashboard
|
|
480
|
+
* Java method: org.openremote.model.dashboard.DashboardResource.update
|
|
481
|
+
*/
|
|
482
|
+
update(dashboard: Model.Dashboard, options?: O): RestResponse<Model.Dashboard>;
|
|
483
|
+
/**
|
|
484
|
+
* HTTP GET /dashboard/all/{realm}
|
|
485
|
+
* Java method: org.openremote.model.dashboard.DashboardResource.getAllRealmDashboards
|
|
486
|
+
*/
|
|
487
|
+
getAllRealmDashboards(realm: string, options?: O): RestResponse<Model.Dashboard[]>;
|
|
488
|
+
/**
|
|
489
|
+
* HTTP POST /dashboard/query
|
|
490
|
+
* Java method: org.openremote.model.dashboard.DashboardResource.query
|
|
491
|
+
*/
|
|
492
|
+
query(dashboardQuery: Model.DashboardQuery, options?: O): RestResponse<Model.Dashboard[]>;
|
|
493
|
+
/**
|
|
494
|
+
* HTTP DELETE /dashboard/{realm}/{dashboardId}
|
|
495
|
+
* Java method: org.openremote.model.dashboard.DashboardResource.delete
|
|
496
|
+
*/
|
|
497
|
+
delete(realm: string, dashboardId: string, options?: O): RestResponse<void>;
|
|
498
|
+
/**
|
|
499
|
+
* HTTP GET /dashboard/{realm}/{dashboardId}
|
|
500
|
+
* Java method: org.openremote.model.dashboard.DashboardResource.get
|
|
501
|
+
*/
|
|
502
|
+
get(realm: string, dashboardId: string, options?: O): RestResponse<Model.Dashboard>;
|
|
503
|
+
}
|
|
504
|
+
export declare class AgentResourceClient<O> {
|
|
505
|
+
protected httpClient: HttpClient<O>;
|
|
506
|
+
constructor(httpClient: HttpClient<O>);
|
|
507
|
+
/**
|
|
508
|
+
* HTTP GET /agent/assetDiscovery/{agentId}
|
|
509
|
+
* Java method: org.openremote.model.asset.agent.AgentResource.doProtocolAssetDiscovery
|
|
510
|
+
*/
|
|
511
|
+
doProtocolAssetDiscovery(agentId: string, queryParams?: {
|
|
512
|
+
realm?: string;
|
|
513
|
+
}, options?: O): RestResponse<Model.AssetTreeNode[]>;
|
|
514
|
+
/**
|
|
515
|
+
* HTTP POST /agent/assetImport/{agentId}
|
|
516
|
+
* Java method: org.openremote.model.asset.agent.AgentResource.doProtocolAssetImport
|
|
517
|
+
*/
|
|
518
|
+
doProtocolAssetImport(agentId: string, fileInfo: Model.FileInfo, queryParams?: {
|
|
519
|
+
realm?: string;
|
|
520
|
+
}, options?: O): RestResponse<Model.AssetTreeNode[]>;
|
|
521
|
+
/**
|
|
522
|
+
* HTTP GET /agent/instanceDiscovery/{agentType}
|
|
523
|
+
* Java method: org.openremote.model.asset.agent.AgentResource.doProtocolInstanceDiscovery
|
|
524
|
+
*/
|
|
525
|
+
doProtocolInstanceDiscovery(agentType: string, queryParams?: {
|
|
526
|
+
parentId?: string;
|
|
527
|
+
realm?: string;
|
|
528
|
+
}, options?: O): RestResponse<Model.Agent[]>;
|
|
529
|
+
}
|
|
530
|
+
export declare class AssetDatapointResourceClient<O> {
|
|
531
|
+
protected httpClient: HttpClient<O>;
|
|
532
|
+
constructor(httpClient: HttpClient<O>);
|
|
533
|
+
/**
|
|
534
|
+
* HTTP GET /asset/datapoint/export
|
|
535
|
+
* Java method: org.openremote.model.datapoint.AssetDatapointResource.getDatapointExport
|
|
536
|
+
*/
|
|
537
|
+
getDatapointExport(queryParams?: {
|
|
538
|
+
attributeRefs?: string;
|
|
539
|
+
fromTimestamp?: number;
|
|
540
|
+
toTimestamp?: number;
|
|
541
|
+
}, options?: O): RestResponse<any>;
|
|
542
|
+
/**
|
|
543
|
+
* HTTP GET /asset/datapoint/periods
|
|
544
|
+
* Java method: org.openremote.model.datapoint.AssetDatapointResource.getDatapointPeriod
|
|
545
|
+
*/
|
|
546
|
+
getDatapointPeriod(queryParams?: {
|
|
547
|
+
assetId?: string;
|
|
548
|
+
attributeName?: string;
|
|
549
|
+
}, options?: O): RestResponse<Model.DatapointPeriod>;
|
|
550
|
+
/**
|
|
551
|
+
* HTTP POST /asset/datapoint/{assetId}/{attributeName}
|
|
552
|
+
* Java method: org.openremote.model.datapoint.AssetDatapointResource.getDatapoints
|
|
553
|
+
*/
|
|
554
|
+
getDatapoints(assetId: string, attributeName: string, query: Model.AssetDatapointQueryUnion, options?: O): RestResponse<Model.ValueDatapoint<any>[]>;
|
|
555
|
+
}
|
|
556
|
+
export declare class AlarmResourceClient<O> {
|
|
557
|
+
protected httpClient: HttpClient<O>;
|
|
558
|
+
constructor(httpClient: HttpClient<O>);
|
|
559
|
+
/**
|
|
560
|
+
* HTTP POST /alarm
|
|
561
|
+
* Java method: org.openremote.model.alarm.AlarmResource.createAlarm
|
|
562
|
+
*/
|
|
563
|
+
createAlarm(alarm: Model.Alarm, queryParams?: {
|
|
564
|
+
assetIds?: string[];
|
|
565
|
+
}, options?: O): RestResponse<Model.SentAlarm>;
|
|
566
|
+
/**
|
|
567
|
+
* HTTP GET /alarm
|
|
568
|
+
* Java method: org.openremote.model.alarm.AlarmResource.getAlarms
|
|
569
|
+
*/
|
|
570
|
+
getAlarms(queryParams?: {
|
|
571
|
+
realm?: string;
|
|
572
|
+
status?: Model.AlarmStatus;
|
|
573
|
+
assetId?: string;
|
|
574
|
+
assigneeId?: string;
|
|
575
|
+
}, options?: O): RestResponse<Model.SentAlarm[]>;
|
|
576
|
+
/**
|
|
577
|
+
* HTTP DELETE /alarm
|
|
578
|
+
* Java method: org.openremote.model.alarm.AlarmResource.removeAlarms
|
|
579
|
+
*/
|
|
580
|
+
removeAlarms(ids: number[], options?: O): RestResponse<void>;
|
|
581
|
+
/**
|
|
582
|
+
* HTTP PUT /alarm/assets
|
|
583
|
+
* Java method: org.openremote.model.alarm.AlarmResource.setAssetLinks
|
|
584
|
+
*/
|
|
585
|
+
setAssetLinks(links: Model.AlarmAssetLink[], options?: O): RestResponse<void>;
|
|
586
|
+
/**
|
|
587
|
+
* HTTP GET /alarm/{alarmId}
|
|
588
|
+
* Java method: org.openremote.model.alarm.AlarmResource.getAlarm
|
|
589
|
+
*/
|
|
590
|
+
getAlarm(alarmId: number, options?: O): RestResponse<Model.SentAlarm>;
|
|
591
|
+
/**
|
|
592
|
+
* HTTP DELETE /alarm/{alarmId}
|
|
593
|
+
* Java method: org.openremote.model.alarm.AlarmResource.removeAlarm
|
|
594
|
+
*/
|
|
595
|
+
removeAlarm(alarmId: number, options?: O): RestResponse<void>;
|
|
596
|
+
/**
|
|
597
|
+
* HTTP PUT /alarm/{alarmId}
|
|
598
|
+
* Java method: org.openremote.model.alarm.AlarmResource.updateAlarm
|
|
599
|
+
*/
|
|
600
|
+
updateAlarm(alarmId: number, alarm: Model.SentAlarm, options?: O): RestResponse<void>;
|
|
601
|
+
/**
|
|
602
|
+
* HTTP GET /alarm/{alarmId}/assets
|
|
603
|
+
* Java method: org.openremote.model.alarm.AlarmResource.getAssetLinks
|
|
604
|
+
*/
|
|
605
|
+
getAssetLinks(alarmId: number, queryParams?: {
|
|
606
|
+
realm?: string;
|
|
607
|
+
}, options?: O): RestResponse<Model.AlarmAssetLink[]>;
|
|
608
|
+
}
|
|
609
|
+
export declare class RealmResourceClient<O> {
|
|
610
|
+
protected httpClient: HttpClient<O>;
|
|
611
|
+
constructor(httpClient: HttpClient<O>);
|
|
612
|
+
/**
|
|
613
|
+
* HTTP POST /realm
|
|
614
|
+
* Java method: org.openremote.model.security.RealmResource.create
|
|
615
|
+
*/
|
|
616
|
+
create(realm: Model.Realm, options?: O): RestResponse<void>;
|
|
617
|
+
/**
|
|
618
|
+
* HTTP GET /realm
|
|
619
|
+
* Java method: org.openremote.model.security.RealmResource.getAll
|
|
620
|
+
*/
|
|
621
|
+
getAll(options?: O): RestResponse<Model.Realm[]>;
|
|
622
|
+
/**
|
|
623
|
+
* HTTP GET /realm/accessible
|
|
624
|
+
* Java method: org.openremote.model.security.RealmResource.getAccessible
|
|
625
|
+
*/
|
|
626
|
+
getAccessible(options?: O): RestResponse<Model.Realm[]>;
|
|
627
|
+
/**
|
|
628
|
+
* HTTP DELETE /realm/{name}
|
|
629
|
+
* Java method: org.openremote.model.security.RealmResource.delete
|
|
630
|
+
*/
|
|
631
|
+
delete(name: string, options?: O): RestResponse<void>;
|
|
632
|
+
/**
|
|
633
|
+
* HTTP GET /realm/{name}
|
|
634
|
+
* Java method: org.openremote.model.security.RealmResource.get
|
|
635
|
+
*/
|
|
636
|
+
get(name: string, options?: O): RestResponse<Model.Realm>;
|
|
637
|
+
/**
|
|
638
|
+
* HTTP PUT /realm/{name}
|
|
639
|
+
* Java method: org.openremote.model.security.RealmResource.update
|
|
640
|
+
*/
|
|
641
|
+
update(name: string, realm: Model.Realm, options?: O): RestResponse<void>;
|
|
642
|
+
}
|
|
643
|
+
export declare class ProvisioningResourceClient<O> {
|
|
644
|
+
protected httpClient: HttpClient<O>;
|
|
645
|
+
constructor(httpClient: HttpClient<O>);
|
|
646
|
+
/**
|
|
647
|
+
* HTTP POST /provisioning
|
|
648
|
+
* Java method: org.openremote.model.provisioning.ProvisioningResource.createProvisioningConfig
|
|
649
|
+
*/
|
|
650
|
+
createProvisioningConfig(provisioningConfig: Model.ProvisioningConfigUnion<any, any>, options?: O): RestResponse<number>;
|
|
651
|
+
/**
|
|
652
|
+
* HTTP GET /provisioning
|
|
653
|
+
* Java method: org.openremote.model.provisioning.ProvisioningResource.getProvisioningConfigs
|
|
654
|
+
*/
|
|
655
|
+
getProvisioningConfigs(options?: O): RestResponse<Model.ProvisioningConfigUnion<any, any>[]>;
|
|
656
|
+
/**
|
|
657
|
+
* HTTP DELETE /provisioning/{id}
|
|
658
|
+
* Java method: org.openremote.model.provisioning.ProvisioningResource.deleteProvisioningConfig
|
|
659
|
+
*/
|
|
660
|
+
deleteProvisioningConfig(id: number, options?: O): RestResponse<void>;
|
|
661
|
+
/**
|
|
662
|
+
* HTTP PUT /provisioning/{id}
|
|
663
|
+
* Java method: org.openremote.model.provisioning.ProvisioningResource.updateProvisioningConfig
|
|
664
|
+
*/
|
|
665
|
+
updateProvisioningConfig(id: number, provisioningConfig: Model.ProvisioningConfigUnion<any, any>, options?: O): RestResponse<void>;
|
|
666
|
+
}
|
|
667
|
+
export declare class GatewayServiceResourceClient<O> {
|
|
668
|
+
protected httpClient: HttpClient<O>;
|
|
669
|
+
constructor(httpClient: HttpClient<O>);
|
|
670
|
+
/**
|
|
671
|
+
* HTTP POST /gateway/tunnel
|
|
672
|
+
* Java method: org.openremote.model.gateway.GatewayServiceResource.startTunnel
|
|
673
|
+
*/
|
|
674
|
+
startTunnel(tunnelInfo: Model.GatewayTunnelInfo, options?: O): RestResponse<Model.GatewayTunnelInfo>;
|
|
675
|
+
/**
|
|
676
|
+
* HTTP DELETE /gateway/tunnel
|
|
677
|
+
* Java method: org.openremote.model.gateway.GatewayServiceResource.stopTunnel
|
|
678
|
+
*/
|
|
679
|
+
stopTunnel(tunnelInfo: Model.GatewayTunnelInfo, options?: O): RestResponse<void>;
|
|
680
|
+
/**
|
|
681
|
+
* HTTP GET /gateway/tunnel/{realm}
|
|
682
|
+
* Java method: org.openremote.model.gateway.GatewayServiceResource.getAllActiveTunnelInfos
|
|
683
|
+
*/
|
|
684
|
+
getAllActiveTunnelInfos(realm: string, options?: O): RestResponse<Model.GatewayTunnelInfo[]>;
|
|
685
|
+
/**
|
|
686
|
+
* HTTP GET /gateway/tunnel/{realm}/{id}
|
|
687
|
+
* Java method: org.openremote.model.gateway.GatewayServiceResource.getGatewayActiveTunnelInfos
|
|
688
|
+
*/
|
|
689
|
+
getGatewayActiveTunnelInfos(realm: string, id: string, options?: O): RestResponse<Model.GatewayTunnelInfo[]>;
|
|
690
|
+
/**
|
|
691
|
+
* HTTP GET /gateway/tunnel/{realm}/{id}/{target}/{targetPort}
|
|
692
|
+
* Java method: org.openremote.model.gateway.GatewayServiceResource.getActiveTunnelInfo
|
|
693
|
+
*/
|
|
694
|
+
getActiveTunnelInfo(realm: string, id: string, target: string, targetPort: number, options?: O): RestResponse<Model.GatewayTunnelInfo>;
|
|
695
|
+
}
|
|
696
|
+
export declare class AssetResourceClient<O> {
|
|
697
|
+
protected httpClient: HttpClient<O>;
|
|
698
|
+
constructor(httpClient: HttpClient<O>);
|
|
699
|
+
/**
|
|
700
|
+
* HTTP POST /asset
|
|
701
|
+
* Java method: org.openremote.model.asset.AssetResource.create
|
|
702
|
+
*/
|
|
703
|
+
create(asset: Model.Asset, options?: O): RestResponse<Model.Asset>;
|
|
704
|
+
/**
|
|
705
|
+
* HTTP DELETE /asset
|
|
706
|
+
* Java method: org.openremote.model.asset.AssetResource.delete
|
|
717
707
|
*/
|
|
718
708
|
delete(queryParams?: {
|
|
719
709
|
assetId?: string[];
|
|
@@ -788,127 +778,48 @@ export declare class AssetResourceClient<O> {
|
|
|
788
778
|
* HTTP GET /asset/{assetId}
|
|
789
779
|
* Java method: org.openremote.model.asset.AssetResource.get
|
|
790
780
|
*/
|
|
791
|
-
get(assetId: string, options?: O): RestResponse<Model.Asset>;
|
|
792
|
-
/**
|
|
793
|
-
* HTTP PUT /asset/{assetId}
|
|
794
|
-
* Java method: org.openremote.model.asset.AssetResource.update
|
|
795
|
-
*/
|
|
796
|
-
update(assetId: string, asset: Model.Asset, options?: O): RestResponse<Model.Asset>;
|
|
797
|
-
/**
|
|
798
|
-
* HTTP PUT /asset/{assetId}/attribute/{attributeName}
|
|
799
|
-
* Java method: org.openremote.model.asset.AssetResource.writeAttributeValue
|
|
800
|
-
*/
|
|
801
|
-
writeAttributeValue$PUT$asset_assetId_attribute_attributeName(assetId: string, attributeName: string, value: any, options?: O): RestResponse<Model.AttributeWriteResult>;
|
|
802
|
-
/**
|
|
803
|
-
* HTTP PUT /asset/{assetId}/attribute/{attributeName}/{timestamp}
|
|
804
|
-
* Java method: org.openremote.model.asset.AssetResource.writeAttributeValue
|
|
805
|
-
*/
|
|
806
|
-
writeAttributeValue$PUT$asset_assetId_attribute_attributeName_timestamp(assetId: string, attributeName: string, timestamp: number, value: any, options?: O): RestResponse<Model.AttributeWriteResult>;
|
|
807
|
-
/**
|
|
808
|
-
* HTTP PUT /asset/{parentAssetId}/child
|
|
809
|
-
* Java method: org.openremote.model.asset.AssetResource.updateParent
|
|
810
|
-
*/
|
|
811
|
-
updateParent(parentAssetId: string, queryParams?: {
|
|
812
|
-
assetIds?: string[];
|
|
813
|
-
}, options?: O): RestResponse<void>;
|
|
814
|
-
}
|
|
815
|
-
export declare class GatewayServiceResourceClient<O> {
|
|
816
|
-
protected httpClient: HttpClient<O>;
|
|
817
|
-
constructor(httpClient: HttpClient<O>);
|
|
818
|
-
/**
|
|
819
|
-
* HTTP POST /gateway/tunnel
|
|
820
|
-
* Java method: org.openremote.model.gateway.GatewayServiceResource.startTunnel
|
|
821
|
-
*/
|
|
822
|
-
startTunnel(tunnelInfo: Model.GatewayTunnelInfo, options?: O): RestResponse<Model.GatewayTunnelInfo>;
|
|
823
|
-
/**
|
|
824
|
-
* HTTP DELETE /gateway/tunnel
|
|
825
|
-
* Java method: org.openremote.model.gateway.GatewayServiceResource.stopTunnel
|
|
826
|
-
*/
|
|
827
|
-
stopTunnel(tunnelInfo: Model.GatewayTunnelInfo, options?: O): RestResponse<void>;
|
|
828
|
-
/**
|
|
829
|
-
* HTTP GET /gateway/tunnel/{realm}
|
|
830
|
-
* Java method: org.openremote.model.gateway.GatewayServiceResource.getAllActiveTunnelInfos
|
|
831
|
-
*/
|
|
832
|
-
getAllActiveTunnelInfos(realm: string, options?: O): RestResponse<Model.GatewayTunnelInfo[]>;
|
|
833
|
-
/**
|
|
834
|
-
* HTTP GET /gateway/tunnel/{realm}/{id}
|
|
835
|
-
* Java method: org.openremote.model.gateway.GatewayServiceResource.getGatewayActiveTunnelInfos
|
|
836
|
-
*/
|
|
837
|
-
getGatewayActiveTunnelInfos(realm: string, id: string, options?: O): RestResponse<Model.GatewayTunnelInfo[]>;
|
|
838
|
-
/**
|
|
839
|
-
* HTTP GET /gateway/tunnel/{realm}/{id}/{target}/{targetPort}
|
|
840
|
-
* Java method: org.openremote.model.gateway.GatewayServiceResource.getActiveTunnelInfo
|
|
841
|
-
*/
|
|
842
|
-
getActiveTunnelInfo(realm: string, id: string, target: string, targetPort: number, options?: O): RestResponse<Model.GatewayTunnelInfo>;
|
|
843
|
-
}
|
|
844
|
-
export declare class AssetPredictedDatapointResourceClient<O> {
|
|
845
|
-
protected httpClient: HttpClient<O>;
|
|
846
|
-
constructor(httpClient: HttpClient<O>);
|
|
847
|
-
/**
|
|
848
|
-
* HTTP POST /asset/predicted/{assetId}/{attributeName}
|
|
849
|
-
* Java method: org.openremote.model.datapoint.AssetPredictedDatapointResource.getPredictedDatapoints
|
|
850
|
-
*/
|
|
851
|
-
getPredictedDatapoints(assetId: string, attributeName: string, query: Model.AssetDatapointQueryUnion, options?: O): RestResponse<Model.ValueDatapoint<any>[]>;
|
|
852
|
-
/**
|
|
853
|
-
* HTTP PUT /asset/predicted/{assetId}/{attributeName}
|
|
854
|
-
* Java method: org.openremote.model.datapoint.AssetPredictedDatapointResource.writePredictedDatapoints
|
|
855
|
-
*/
|
|
856
|
-
writePredictedDatapoints(assetId: string, attributeName: string, predictedDatapoints: Model.ValueDatapoint<any>[], options?: O): RestResponse<void>;
|
|
857
|
-
}
|
|
858
|
-
export declare class ExternalServiceResourceClient<O> {
|
|
859
|
-
protected httpClient: HttpClient<O>;
|
|
860
|
-
constructor(httpClient: HttpClient<O>);
|
|
781
|
+
get(assetId: string, options?: O): RestResponse<Model.Asset>;
|
|
861
782
|
/**
|
|
862
|
-
*
|
|
863
|
-
*
|
|
864
|
-
* Java method: org.openremote.model.services.ExternalServiceResource.getServices
|
|
783
|
+
* HTTP PUT /asset/{assetId}
|
|
784
|
+
* Java method: org.openremote.model.asset.AssetResource.update
|
|
865
785
|
*/
|
|
866
|
-
|
|
867
|
-
realm?: string;
|
|
868
|
-
}, options?: O): RestResponse<Model.ExternalService[]>;
|
|
786
|
+
update(assetId: string, asset: Model.Asset, options?: O): RestResponse<Model.Asset>;
|
|
869
787
|
/**
|
|
870
|
-
*
|
|
871
|
-
*
|
|
872
|
-
* Response code 409 - ExternalService instance already registered
|
|
873
|
-
* HTTP POST /service
|
|
874
|
-
* Java method: org.openremote.model.services.ExternalServiceResource.registerService
|
|
788
|
+
* HTTP PUT /asset/{assetId}/attribute/{attributeName}
|
|
789
|
+
* Java method: org.openremote.model.asset.AssetResource.writeAttributeValue
|
|
875
790
|
*/
|
|
876
|
-
|
|
791
|
+
writeAttributeValue$PUT$asset_assetId_attribute_attributeName(assetId: string, attributeName: string, value: any, options?: O): RestResponse<Model.AttributeWriteResult>;
|
|
877
792
|
/**
|
|
878
|
-
*
|
|
879
|
-
*
|
|
880
|
-
* Java method: org.openremote.model.services.ExternalServiceResource.getGlobalServices
|
|
793
|
+
* HTTP PUT /asset/{assetId}/attribute/{attributeName}/{timestamp}
|
|
794
|
+
* Java method: org.openremote.model.asset.AssetResource.writeAttributeValue
|
|
881
795
|
*/
|
|
882
|
-
|
|
796
|
+
writeAttributeValue$PUT$asset_assetId_attribute_attributeName_timestamp(assetId: string, attributeName: string, timestamp: number, value: any, options?: O): RestResponse<Model.AttributeWriteResult>;
|
|
883
797
|
/**
|
|
884
|
-
*
|
|
885
|
-
*
|
|
886
|
-
* Response code 409 - ExternalService instance already registered
|
|
887
|
-
* HTTP POST /service/global
|
|
888
|
-
* Java method: org.openremote.model.services.ExternalServiceResource.registerGlobalService
|
|
798
|
+
* HTTP PUT /asset/{parentAssetId}/child
|
|
799
|
+
* Java method: org.openremote.model.asset.AssetResource.updateParent
|
|
889
800
|
*/
|
|
890
|
-
|
|
801
|
+
updateParent(parentAssetId: string, queryParams?: {
|
|
802
|
+
assetIds?: string[];
|
|
803
|
+
}, options?: O): RestResponse<void>;
|
|
804
|
+
}
|
|
805
|
+
export declare class AppResourceClient<O> {
|
|
806
|
+
protected httpClient: HttpClient<O>;
|
|
807
|
+
constructor(httpClient: HttpClient<O>);
|
|
891
808
|
/**
|
|
892
|
-
*
|
|
893
|
-
*
|
|
894
|
-
* HTTP DELETE /service/{serviceId}/{instanceId}
|
|
895
|
-
* Java method: org.openremote.model.services.ExternalServiceResource.deregisterService
|
|
809
|
+
* HTTP GET /apps
|
|
810
|
+
* Java method: org.openremote.model.apps.AppResource.getApps
|
|
896
811
|
*/
|
|
897
|
-
|
|
812
|
+
getApps(options?: O): RestResponse<string[]>;
|
|
898
813
|
/**
|
|
899
|
-
*
|
|
900
|
-
*
|
|
901
|
-
* HTTP GET /service/{serviceId}/{instanceId}
|
|
902
|
-
* Java method: org.openremote.model.services.ExternalServiceResource.getService
|
|
814
|
+
* HTTP GET /apps/consoleConfig
|
|
815
|
+
* Java method: org.openremote.model.apps.AppResource.getConsoleConfig
|
|
903
816
|
*/
|
|
904
|
-
|
|
817
|
+
getConsoleConfig(options?: O): RestResponse<any>;
|
|
905
818
|
/**
|
|
906
|
-
*
|
|
907
|
-
*
|
|
908
|
-
* HTTP PUT /service/{serviceId}/{instanceId}
|
|
909
|
-
* Java method: org.openremote.model.services.ExternalServiceResource.heartbeat
|
|
819
|
+
* HTTP GET /apps/info
|
|
820
|
+
* Java method: org.openremote.model.apps.AppResource.getAppInfos
|
|
910
821
|
*/
|
|
911
|
-
|
|
822
|
+
getAppInfos(options?: O): RestResponse<any>;
|
|
912
823
|
}
|
|
913
824
|
export declare class NotificationResourceClient<O> {
|
|
914
825
|
protected httpClient: HttpClient<O>;
|
|
@@ -964,53 +875,142 @@ export declare class NotificationResourceClient<O> {
|
|
|
964
875
|
targetId?: string;
|
|
965
876
|
}, options?: O): RestResponse<void>;
|
|
966
877
|
}
|
|
878
|
+
export declare class AssetModelResourceClient<O> {
|
|
879
|
+
protected httpClient: HttpClient<O>;
|
|
880
|
+
constructor(httpClient: HttpClient<O>);
|
|
881
|
+
/**
|
|
882
|
+
* HTTP GET /model/assetDescriptors
|
|
883
|
+
* Java method: org.openremote.model.asset.AssetModelResource.getAssetDescriptors
|
|
884
|
+
*/
|
|
885
|
+
getAssetDescriptors(queryParams?: {
|
|
886
|
+
parentId?: string;
|
|
887
|
+
parentType?: string;
|
|
888
|
+
}, options?: O): RestResponse<Model.AssetDescriptor[]>;
|
|
889
|
+
/**
|
|
890
|
+
* HTTP GET /model/assetInfo/{assetType}
|
|
891
|
+
* Java method: org.openremote.model.asset.AssetModelResource.getAssetInfo
|
|
892
|
+
*/
|
|
893
|
+
getAssetInfo(assetType: string, queryParams?: {
|
|
894
|
+
parentId?: string;
|
|
895
|
+
}, options?: O): RestResponse<Model.AssetTypeInfo>;
|
|
896
|
+
/**
|
|
897
|
+
* HTTP GET /model/assetInfos
|
|
898
|
+
* Java method: org.openremote.model.asset.AssetModelResource.getAssetInfos
|
|
899
|
+
*/
|
|
900
|
+
getAssetInfos(queryParams?: {
|
|
901
|
+
parentId?: string;
|
|
902
|
+
parentType?: string;
|
|
903
|
+
}, options?: O): RestResponse<Model.AssetTypeInfo[]>;
|
|
904
|
+
/**
|
|
905
|
+
* HTTP GET /model/getValueDescriptorSchema
|
|
906
|
+
* Java method: org.openremote.model.asset.AssetModelResource.getValueDescriptorSchema
|
|
907
|
+
*/
|
|
908
|
+
getValueDescriptorSchema(queryParams?: {
|
|
909
|
+
name?: string;
|
|
910
|
+
hash?: string;
|
|
911
|
+
}, options?: O): RestResponse<any>;
|
|
912
|
+
/**
|
|
913
|
+
* HTTP GET /model/metaItemDescriptors
|
|
914
|
+
* Java method: org.openremote.model.asset.AssetModelResource.getMetaItemDescriptors
|
|
915
|
+
*/
|
|
916
|
+
getMetaItemDescriptors(queryParams?: {
|
|
917
|
+
parentId?: string;
|
|
918
|
+
}, options?: O): RestResponse<{
|
|
919
|
+
[index: string]: Model.MetaItemDescriptor;
|
|
920
|
+
}>;
|
|
921
|
+
/**
|
|
922
|
+
* HTTP GET /model/valueDescriptors
|
|
923
|
+
* Java method: org.openremote.model.asset.AssetModelResource.getValueDescriptors
|
|
924
|
+
*/
|
|
925
|
+
getValueDescriptors(queryParams?: {
|
|
926
|
+
parentId?: string;
|
|
927
|
+
}, options?: O): RestResponse<{
|
|
928
|
+
[index: string]: Model.ValueDescriptor;
|
|
929
|
+
}>;
|
|
930
|
+
}
|
|
931
|
+
export declare class GatewayClientResourceClient<O> {
|
|
932
|
+
protected httpClient: HttpClient<O>;
|
|
933
|
+
constructor(httpClient: HttpClient<O>);
|
|
934
|
+
/**
|
|
935
|
+
* HTTP DELETE /gateway/connection
|
|
936
|
+
* Java method: org.openremote.model.gateway.GatewayClientResource.deleteConnections
|
|
937
|
+
*/
|
|
938
|
+
deleteConnections(queryParams?: {
|
|
939
|
+
realm?: string[];
|
|
940
|
+
}, options?: O): RestResponse<void>;
|
|
941
|
+
/**
|
|
942
|
+
* HTTP GET /gateway/connection
|
|
943
|
+
* Java method: org.openremote.model.gateway.GatewayClientResource.getConnections
|
|
944
|
+
*/
|
|
945
|
+
getConnections(options?: O): RestResponse<Model.GatewayConnection[]>;
|
|
946
|
+
/**
|
|
947
|
+
* HTTP DELETE /gateway/connection/{realm}
|
|
948
|
+
* Java method: org.openremote.model.gateway.GatewayClientResource.deleteConnection
|
|
949
|
+
*/
|
|
950
|
+
deleteConnection(realm: string, options?: O): RestResponse<void>;
|
|
951
|
+
/**
|
|
952
|
+
* HTTP GET /gateway/connection/{realm}
|
|
953
|
+
* Java method: org.openremote.model.gateway.GatewayClientResource.getConnection
|
|
954
|
+
*/
|
|
955
|
+
getConnection(realm: string, options?: O): RestResponse<Model.GatewayConnection>;
|
|
956
|
+
/**
|
|
957
|
+
* HTTP PUT /gateway/connection/{realm}
|
|
958
|
+
* Java method: org.openremote.model.gateway.GatewayClientResource.setConnection
|
|
959
|
+
*/
|
|
960
|
+
setConnection(realm: string, connection: Model.GatewayConnection, options?: O): RestResponse<void>;
|
|
961
|
+
/**
|
|
962
|
+
* HTTP GET /gateway/status/{realm}
|
|
963
|
+
* Java method: org.openremote.model.gateway.GatewayClientResource.getConnectionStatus
|
|
964
|
+
*/
|
|
965
|
+
getConnectionStatus(realm: string, options?: O): RestResponse<Model.ConnectionStatus>;
|
|
966
|
+
}
|
|
967
967
|
export type RestResponse<R> = Promise<Axios.GenericAxiosResponse<R>>;
|
|
968
968
|
export declare class ApiClient {
|
|
969
|
-
protected _configurationResource: AxiosConfigurationResourceClient;
|
|
970
|
-
protected _realmResource: AxiosRealmResourceClient;
|
|
971
969
|
protected _userResource: AxiosUserResourceClient;
|
|
972
|
-
protected
|
|
973
|
-
protected
|
|
974
|
-
protected _mapResource: AxiosMapResourceClient;
|
|
975
|
-
protected _gatewayClientResource: AxiosGatewayClientResourceClient;
|
|
976
|
-
protected _assetModelResource: AxiosAssetModelResourceClient;
|
|
970
|
+
protected _consoleResource: AxiosConsoleResourceClient;
|
|
971
|
+
protected _flowResource: AxiosFlowResourceClient;
|
|
977
972
|
protected _syslogResource: AxiosSyslogResourceClient;
|
|
978
|
-
protected
|
|
973
|
+
protected _externalServiceResource: AxiosExternalServiceResourceClient;
|
|
974
|
+
protected _rulesResource: AxiosRulesResourceClient;
|
|
975
|
+
protected _configurationResource: AxiosConfigurationResourceClient;
|
|
979
976
|
protected _statusResource: AxiosStatusResourceClient;
|
|
980
|
-
protected
|
|
977
|
+
protected _mapResource: AxiosMapResourceClient;
|
|
978
|
+
protected _assetPredictedDatapointResource: AxiosAssetPredictedDatapointResourceClient;
|
|
981
979
|
protected _dashboardResource: AxiosDashboardResourceClient;
|
|
982
|
-
protected
|
|
983
|
-
protected
|
|
980
|
+
protected _agentResource: AxiosAgentResourceClient;
|
|
981
|
+
protected _assetDatapointResource: AxiosAssetDatapointResourceClient;
|
|
984
982
|
protected _alarmResource: AxiosAlarmResourceClient;
|
|
985
|
-
protected
|
|
986
|
-
protected
|
|
983
|
+
protected _realmResource: AxiosRealmResourceClient;
|
|
984
|
+
protected _provisioningResource: AxiosProvisioningResourceClient;
|
|
987
985
|
protected _gatewayServiceResource: AxiosGatewayServiceResourceClient;
|
|
988
|
-
protected
|
|
989
|
-
protected
|
|
986
|
+
protected _assetResource: AxiosAssetResourceClient;
|
|
987
|
+
protected _appResource: AxiosAppResourceClient;
|
|
990
988
|
protected _notificationResource: AxiosNotificationResourceClient;
|
|
989
|
+
protected _assetModelResource: AxiosAssetModelResourceClient;
|
|
990
|
+
protected _gatewayClientResource: AxiosGatewayClientResourceClient;
|
|
991
991
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
992
|
-
get ConfigurationResource(): AxiosConfigurationResourceClient;
|
|
993
|
-
get RealmResource(): AxiosRealmResourceClient;
|
|
994
992
|
get UserResource(): AxiosUserResourceClient;
|
|
995
|
-
get
|
|
996
|
-
get
|
|
997
|
-
get MapResource(): AxiosMapResourceClient;
|
|
998
|
-
get GatewayClientResource(): AxiosGatewayClientResourceClient;
|
|
999
|
-
get AssetModelResource(): AxiosAssetModelResourceClient;
|
|
993
|
+
get ConsoleResource(): AxiosConsoleResourceClient;
|
|
994
|
+
get FlowResource(): AxiosFlowResourceClient;
|
|
1000
995
|
get SyslogResource(): AxiosSyslogResourceClient;
|
|
1001
|
-
get
|
|
996
|
+
get ExternalServiceResource(): AxiosExternalServiceResourceClient;
|
|
997
|
+
get RulesResource(): AxiosRulesResourceClient;
|
|
998
|
+
get ConfigurationResource(): AxiosConfigurationResourceClient;
|
|
1002
999
|
get StatusResource(): AxiosStatusResourceClient;
|
|
1003
|
-
get
|
|
1000
|
+
get MapResource(): AxiosMapResourceClient;
|
|
1001
|
+
get AssetPredictedDatapointResource(): AxiosAssetPredictedDatapointResourceClient;
|
|
1004
1002
|
get DashboardResource(): AxiosDashboardResourceClient;
|
|
1005
|
-
get
|
|
1006
|
-
get
|
|
1003
|
+
get AgentResource(): AxiosAgentResourceClient;
|
|
1004
|
+
get AssetDatapointResource(): AxiosAssetDatapointResourceClient;
|
|
1007
1005
|
get AlarmResource(): AxiosAlarmResourceClient;
|
|
1008
|
-
get
|
|
1009
|
-
get
|
|
1006
|
+
get RealmResource(): AxiosRealmResourceClient;
|
|
1007
|
+
get ProvisioningResource(): AxiosProvisioningResourceClient;
|
|
1010
1008
|
get GatewayServiceResource(): AxiosGatewayServiceResourceClient;
|
|
1011
|
-
get
|
|
1012
|
-
get
|
|
1009
|
+
get AssetResource(): AxiosAssetResourceClient;
|
|
1010
|
+
get AppResource(): AxiosAppResourceClient;
|
|
1013
1011
|
get NotificationResource(): AxiosNotificationResourceClient;
|
|
1012
|
+
get AssetModelResource(): AxiosAssetModelResourceClient;
|
|
1013
|
+
get GatewayClientResource(): AxiosGatewayClientResourceClient;
|
|
1014
1014
|
}
|
|
1015
1015
|
import * as Axios from "axios";
|
|
1016
1016
|
declare module "axios" {
|
|
@@ -1018,69 +1018,69 @@ declare module "axios" {
|
|
|
1018
1018
|
data: R;
|
|
1019
1019
|
}
|
|
1020
1020
|
}
|
|
1021
|
-
export declare class AxiosConfigurationResourceClient extends ConfigurationResourceClient<Axios.AxiosRequestConfig> {
|
|
1022
|
-
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1023
|
-
}
|
|
1024
|
-
export declare class AxiosRealmResourceClient extends RealmResourceClient<Axios.AxiosRequestConfig> {
|
|
1025
|
-
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1026
|
-
}
|
|
1027
1021
|
export declare class AxiosUserResourceClient extends UserResourceClient<Axios.AxiosRequestConfig> {
|
|
1028
1022
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1029
1023
|
}
|
|
1030
|
-
export declare class
|
|
1024
|
+
export declare class AxiosConsoleResourceClient extends ConsoleResourceClient<Axios.AxiosRequestConfig> {
|
|
1031
1025
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1032
1026
|
}
|
|
1033
|
-
export declare class
|
|
1027
|
+
export declare class AxiosFlowResourceClient extends FlowResourceClient<Axios.AxiosRequestConfig> {
|
|
1034
1028
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1035
1029
|
}
|
|
1036
|
-
export declare class
|
|
1030
|
+
export declare class AxiosSyslogResourceClient extends SyslogResourceClient<Axios.AxiosRequestConfig> {
|
|
1037
1031
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1038
1032
|
}
|
|
1039
|
-
export declare class
|
|
1033
|
+
export declare class AxiosExternalServiceResourceClient extends ExternalServiceResourceClient<Axios.AxiosRequestConfig> {
|
|
1040
1034
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1041
1035
|
}
|
|
1042
|
-
export declare class
|
|
1036
|
+
export declare class AxiosRulesResourceClient extends RulesResourceClient<Axios.AxiosRequestConfig> {
|
|
1043
1037
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1044
1038
|
}
|
|
1045
|
-
export declare class
|
|
1039
|
+
export declare class AxiosConfigurationResourceClient extends ConfigurationResourceClient<Axios.AxiosRequestConfig> {
|
|
1046
1040
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1047
1041
|
}
|
|
1048
|
-
export declare class
|
|
1042
|
+
export declare class AxiosStatusResourceClient extends StatusResourceClient<Axios.AxiosRequestConfig> {
|
|
1049
1043
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1050
1044
|
}
|
|
1051
|
-
export declare class
|
|
1045
|
+
export declare class AxiosMapResourceClient extends MapResourceClient<Axios.AxiosRequestConfig> {
|
|
1052
1046
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1053
1047
|
}
|
|
1054
|
-
export declare class
|
|
1048
|
+
export declare class AxiosAssetPredictedDatapointResourceClient extends AssetPredictedDatapointResourceClient<Axios.AxiosRequestConfig> {
|
|
1055
1049
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1056
1050
|
}
|
|
1057
1051
|
export declare class AxiosDashboardResourceClient extends DashboardResourceClient<Axios.AxiosRequestConfig> {
|
|
1058
1052
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1059
1053
|
}
|
|
1060
|
-
export declare class
|
|
1054
|
+
export declare class AxiosAgentResourceClient extends AgentResourceClient<Axios.AxiosRequestConfig> {
|
|
1061
1055
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1062
1056
|
}
|
|
1063
|
-
export declare class
|
|
1057
|
+
export declare class AxiosAssetDatapointResourceClient extends AssetDatapointResourceClient<Axios.AxiosRequestConfig> {
|
|
1064
1058
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1065
1059
|
}
|
|
1066
1060
|
export declare class AxiosAlarmResourceClient extends AlarmResourceClient<Axios.AxiosRequestConfig> {
|
|
1067
1061
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1068
1062
|
}
|
|
1069
|
-
export declare class
|
|
1063
|
+
export declare class AxiosRealmResourceClient extends RealmResourceClient<Axios.AxiosRequestConfig> {
|
|
1070
1064
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1071
1065
|
}
|
|
1072
|
-
export declare class
|
|
1066
|
+
export declare class AxiosProvisioningResourceClient extends ProvisioningResourceClient<Axios.AxiosRequestConfig> {
|
|
1073
1067
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1074
1068
|
}
|
|
1075
1069
|
export declare class AxiosGatewayServiceResourceClient extends GatewayServiceResourceClient<Axios.AxiosRequestConfig> {
|
|
1076
1070
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1077
1071
|
}
|
|
1078
|
-
export declare class
|
|
1072
|
+
export declare class AxiosAssetResourceClient extends AssetResourceClient<Axios.AxiosRequestConfig> {
|
|
1079
1073
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1080
1074
|
}
|
|
1081
|
-
export declare class
|
|
1075
|
+
export declare class AxiosAppResourceClient extends AppResourceClient<Axios.AxiosRequestConfig> {
|
|
1082
1076
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1083
1077
|
}
|
|
1084
1078
|
export declare class AxiosNotificationResourceClient extends NotificationResourceClient<Axios.AxiosRequestConfig> {
|
|
1085
1079
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1086
1080
|
}
|
|
1081
|
+
export declare class AxiosAssetModelResourceClient extends AssetModelResourceClient<Axios.AxiosRequestConfig> {
|
|
1082
|
+
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1083
|
+
}
|
|
1084
|
+
export declare class AxiosGatewayClientResourceClient extends GatewayClientResourceClient<Axios.AxiosRequestConfig> {
|
|
1085
|
+
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1086
|
+
}
|