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