@openremote/rest 1.14.0-snapshot.20260114140743 → 1.14.0-snapshot.20260114164832
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 +507 -507
- package/lib/restclient.d.ts.map +1 -1
- package/lib/restclient.js +1 -1
- package/lib/restclient.js.map +1 -1
- package/package.json +1 -1
package/lib/restclient.d.ts
CHANGED
|
@@ -9,6 +9,38 @@ export interface HttpClient<O> {
|
|
|
9
9
|
options?: O;
|
|
10
10
|
}): RestResponse<R>;
|
|
11
11
|
}
|
|
12
|
+
export declare class SyslogResourceClient<O> {
|
|
13
|
+
protected httpClient: HttpClient<O>;
|
|
14
|
+
constructor(httpClient: HttpClient<O>);
|
|
15
|
+
/**
|
|
16
|
+
* HTTP GET /syslog/config
|
|
17
|
+
* Java method: org.openremote.model.syslog.SyslogResource.getConfig
|
|
18
|
+
*/
|
|
19
|
+
getConfig(options?: O): RestResponse<Model.SyslogConfig>;
|
|
20
|
+
/**
|
|
21
|
+
* HTTP PUT /syslog/config
|
|
22
|
+
* Java method: org.openremote.model.syslog.SyslogResource.updateConfig
|
|
23
|
+
*/
|
|
24
|
+
updateConfig(config: Model.SyslogConfig, options?: O): RestResponse<void>;
|
|
25
|
+
/**
|
|
26
|
+
* HTTP DELETE /syslog/event
|
|
27
|
+
* Java method: org.openremote.model.syslog.SyslogResource.clearEvents
|
|
28
|
+
*/
|
|
29
|
+
clearEvents(options?: O): RestResponse<void>;
|
|
30
|
+
/**
|
|
31
|
+
* HTTP GET /syslog/event
|
|
32
|
+
* Java method: org.openremote.model.syslog.SyslogResource.getEvents
|
|
33
|
+
*/
|
|
34
|
+
getEvents(queryParams?: {
|
|
35
|
+
level?: Model.SyslogLevel;
|
|
36
|
+
per_page?: number;
|
|
37
|
+
page?: number;
|
|
38
|
+
from?: number;
|
|
39
|
+
to?: number;
|
|
40
|
+
category?: Model.SyslogCategory[];
|
|
41
|
+
subCategory?: string[];
|
|
42
|
+
}, options?: O): RestResponse<any>;
|
|
43
|
+
}
|
|
12
44
|
export declare class DashboardResourceClient<O> {
|
|
13
45
|
protected httpClient: HttpClient<O>;
|
|
14
46
|
constructor(httpClient: HttpClient<O>);
|
|
@@ -43,88 +75,6 @@ export declare class DashboardResourceClient<O> {
|
|
|
43
75
|
*/
|
|
44
76
|
get(realm: string, dashboardId: string, options?: O): RestResponse<Model.Dashboard>;
|
|
45
77
|
}
|
|
46
|
-
export declare class ProvisioningResourceClient<O> {
|
|
47
|
-
protected httpClient: HttpClient<O>;
|
|
48
|
-
constructor(httpClient: HttpClient<O>);
|
|
49
|
-
/**
|
|
50
|
-
* HTTP POST /provisioning
|
|
51
|
-
* Java method: org.openremote.model.provisioning.ProvisioningResource.createProvisioningConfig
|
|
52
|
-
*/
|
|
53
|
-
createProvisioningConfig(provisioningConfig: Model.ProvisioningConfigUnion<any, any>, options?: O): RestResponse<number>;
|
|
54
|
-
/**
|
|
55
|
-
* HTTP GET /provisioning
|
|
56
|
-
* Java method: org.openremote.model.provisioning.ProvisioningResource.getProvisioningConfigs
|
|
57
|
-
*/
|
|
58
|
-
getProvisioningConfigs(options?: O): RestResponse<Model.ProvisioningConfigUnion<any, any>[]>;
|
|
59
|
-
/**
|
|
60
|
-
* HTTP DELETE /provisioning/{id}
|
|
61
|
-
* Java method: org.openremote.model.provisioning.ProvisioningResource.deleteProvisioningConfig
|
|
62
|
-
*/
|
|
63
|
-
deleteProvisioningConfig(id: number, options?: O): RestResponse<void>;
|
|
64
|
-
/**
|
|
65
|
-
* HTTP PUT /provisioning/{id}
|
|
66
|
-
* Java method: org.openremote.model.provisioning.ProvisioningResource.updateProvisioningConfig
|
|
67
|
-
*/
|
|
68
|
-
updateProvisioningConfig(id: number, provisioningConfig: Model.ProvisioningConfigUnion<any, any>, options?: O): RestResponse<void>;
|
|
69
|
-
}
|
|
70
|
-
export declare class AssetPredictedDatapointResourceClient<O> {
|
|
71
|
-
protected httpClient: HttpClient<O>;
|
|
72
|
-
constructor(httpClient: HttpClient<O>);
|
|
73
|
-
/**
|
|
74
|
-
* HTTP POST /asset/predicted/{assetId}/{attributeName}
|
|
75
|
-
* Java method: org.openremote.model.datapoint.AssetPredictedDatapointResource.getPredictedDatapoints
|
|
76
|
-
*/
|
|
77
|
-
getPredictedDatapoints(assetId: string, attributeName: string, query: Model.AssetDatapointQueryUnion, options?: O): RestResponse<Model.ValueDatapoint<any>[]>;
|
|
78
|
-
/**
|
|
79
|
-
* HTTP PUT /asset/predicted/{assetId}/{attributeName}
|
|
80
|
-
* Java method: org.openremote.model.datapoint.AssetPredictedDatapointResource.writePredictedDatapoints
|
|
81
|
-
*/
|
|
82
|
-
writePredictedDatapoints(assetId: string, attributeName: string, predictedDatapoints: Model.ValueDatapoint<any>[], options?: O): RestResponse<void>;
|
|
83
|
-
}
|
|
84
|
-
export declare class AgentResourceClient<O> {
|
|
85
|
-
protected httpClient: HttpClient<O>;
|
|
86
|
-
constructor(httpClient: HttpClient<O>);
|
|
87
|
-
/**
|
|
88
|
-
* HTTP GET /agent/assetDiscovery/{agentId}
|
|
89
|
-
* Java method: org.openremote.model.asset.agent.AgentResource.doProtocolAssetDiscovery
|
|
90
|
-
*/
|
|
91
|
-
doProtocolAssetDiscovery(agentId: string, queryParams?: {
|
|
92
|
-
realm?: string;
|
|
93
|
-
}, options?: O): RestResponse<Model.AssetTreeNode[]>;
|
|
94
|
-
/**
|
|
95
|
-
* HTTP POST /agent/assetImport/{agentId}
|
|
96
|
-
* Java method: org.openremote.model.asset.agent.AgentResource.doProtocolAssetImport
|
|
97
|
-
*/
|
|
98
|
-
doProtocolAssetImport(agentId: string, fileInfo: Model.FileInfo, queryParams?: {
|
|
99
|
-
realm?: string;
|
|
100
|
-
}, options?: O): RestResponse<Model.AssetTreeNode[]>;
|
|
101
|
-
/**
|
|
102
|
-
* HTTP GET /agent/instanceDiscovery/{agentType}
|
|
103
|
-
* Java method: org.openremote.model.asset.agent.AgentResource.doProtocolInstanceDiscovery
|
|
104
|
-
*/
|
|
105
|
-
doProtocolInstanceDiscovery(agentType: string, queryParams?: {
|
|
106
|
-
parentId?: string;
|
|
107
|
-
realm?: string;
|
|
108
|
-
}, options?: O): RestResponse<Model.Agent[]>;
|
|
109
|
-
}
|
|
110
|
-
export declare class StatusResourceClient<O> {
|
|
111
|
-
protected httpClient: HttpClient<O>;
|
|
112
|
-
constructor(httpClient: HttpClient<O>);
|
|
113
|
-
/**
|
|
114
|
-
* HTTP GET /health
|
|
115
|
-
* Java method: org.openremote.model.system.StatusResource.getHealthStatus
|
|
116
|
-
*/
|
|
117
|
-
getHealthStatus(options?: O): RestResponse<{
|
|
118
|
-
[index: string]: any;
|
|
119
|
-
}>;
|
|
120
|
-
/**
|
|
121
|
-
* HTTP GET /info
|
|
122
|
-
* Java method: org.openremote.model.system.StatusResource.getInfo
|
|
123
|
-
*/
|
|
124
|
-
getInfo(options?: O): RestResponse<{
|
|
125
|
-
[index: string]: any;
|
|
126
|
-
}>;
|
|
127
|
-
}
|
|
128
78
|
export declare class ExternalServiceResourceClient<O> {
|
|
129
79
|
protected httpClient: HttpClient<O>;
|
|
130
80
|
constructor(httpClient: HttpClient<O>);
|
|
@@ -180,38 +130,6 @@ export declare class ExternalServiceResourceClient<O> {
|
|
|
180
130
|
*/
|
|
181
131
|
heartbeat(serviceId: string, instanceId: number, options?: O): RestResponse<void>;
|
|
182
132
|
}
|
|
183
|
-
export declare class SyslogResourceClient<O> {
|
|
184
|
-
protected httpClient: HttpClient<O>;
|
|
185
|
-
constructor(httpClient: HttpClient<O>);
|
|
186
|
-
/**
|
|
187
|
-
* HTTP GET /syslog/config
|
|
188
|
-
* Java method: org.openremote.model.syslog.SyslogResource.getConfig
|
|
189
|
-
*/
|
|
190
|
-
getConfig(options?: O): RestResponse<Model.SyslogConfig>;
|
|
191
|
-
/**
|
|
192
|
-
* HTTP PUT /syslog/config
|
|
193
|
-
* Java method: org.openremote.model.syslog.SyslogResource.updateConfig
|
|
194
|
-
*/
|
|
195
|
-
updateConfig(config: Model.SyslogConfig, options?: O): RestResponse<void>;
|
|
196
|
-
/**
|
|
197
|
-
* HTTP DELETE /syslog/event
|
|
198
|
-
* Java method: org.openremote.model.syslog.SyslogResource.clearEvents
|
|
199
|
-
*/
|
|
200
|
-
clearEvents(options?: O): RestResponse<void>;
|
|
201
|
-
/**
|
|
202
|
-
* HTTP GET /syslog/event
|
|
203
|
-
* Java method: org.openremote.model.syslog.SyslogResource.getEvents
|
|
204
|
-
*/
|
|
205
|
-
getEvents(queryParams?: {
|
|
206
|
-
level?: Model.SyslogLevel;
|
|
207
|
-
per_page?: number;
|
|
208
|
-
page?: number;
|
|
209
|
-
from?: number;
|
|
210
|
-
to?: number;
|
|
211
|
-
category?: Model.SyslogCategory[];
|
|
212
|
-
subCategory?: string[];
|
|
213
|
-
}, options?: O): RestResponse<any>;
|
|
214
|
-
}
|
|
215
133
|
export declare class AlarmResourceClient<O> {
|
|
216
134
|
protected httpClient: HttpClient<O>;
|
|
217
135
|
constructor(httpClient: HttpClient<O>);
|
|
@@ -265,254 +183,336 @@ export declare class AlarmResourceClient<O> {
|
|
|
265
183
|
realm?: string;
|
|
266
184
|
}, options?: O): RestResponse<Model.AlarmAssetLink[]>;
|
|
267
185
|
}
|
|
268
|
-
export declare class
|
|
186
|
+
export declare class UserResourceClient<O> {
|
|
269
187
|
protected httpClient: HttpClient<O>;
|
|
270
188
|
constructor(httpClient: HttpClient<O>);
|
|
271
189
|
/**
|
|
272
|
-
* HTTP
|
|
273
|
-
* Java method: org.openremote.model.
|
|
190
|
+
* HTTP PUT /user/locale
|
|
191
|
+
* Java method: org.openremote.model.security.UserResource.updateCurrentUserLocale
|
|
274
192
|
*/
|
|
275
|
-
|
|
193
|
+
updateCurrentUserLocale(locale: string, options?: O): RestResponse<void>;
|
|
276
194
|
/**
|
|
277
|
-
* HTTP
|
|
278
|
-
* Java method: org.openremote.model.
|
|
195
|
+
* HTTP POST /user/query
|
|
196
|
+
* Java method: org.openremote.model.security.UserResource.query
|
|
279
197
|
*/
|
|
280
|
-
|
|
198
|
+
query(query: Model.UserQuery, options?: O): RestResponse<Model.User[]>;
|
|
281
199
|
/**
|
|
282
|
-
* HTTP
|
|
283
|
-
* Java method: org.openremote.model.
|
|
200
|
+
* HTTP PUT /user/request-password-reset
|
|
201
|
+
* Java method: org.openremote.model.security.UserResource.requestPasswordResetCurrent
|
|
284
202
|
*/
|
|
285
|
-
|
|
286
|
-
}
|
|
287
|
-
export declare class AssetDatapointResourceClient<O> {
|
|
288
|
-
protected httpClient: HttpClient<O>;
|
|
289
|
-
constructor(httpClient: HttpClient<O>);
|
|
203
|
+
requestPasswordResetCurrent(options?: O): RestResponse<void>;
|
|
290
204
|
/**
|
|
291
|
-
* HTTP
|
|
292
|
-
* Java method: org.openremote.model.
|
|
205
|
+
* HTTP PUT /user/reset-password
|
|
206
|
+
* Java method: org.openremote.model.security.UserResource.updatePasswordCurrent
|
|
293
207
|
*/
|
|
294
|
-
|
|
295
|
-
attributeRefs?: string;
|
|
296
|
-
fromTimestamp?: number;
|
|
297
|
-
toTimestamp?: number;
|
|
298
|
-
}, options?: O): RestResponse<any>;
|
|
208
|
+
updatePasswordCurrent(credential: Model.Credential, options?: O): RestResponse<void>;
|
|
299
209
|
/**
|
|
300
|
-
* HTTP
|
|
301
|
-
* Java method: org.openremote.model.
|
|
210
|
+
* HTTP PUT /user/update
|
|
211
|
+
* Java method: org.openremote.model.security.UserResource.updateCurrent
|
|
302
212
|
*/
|
|
303
|
-
|
|
304
|
-
assetId?: string;
|
|
305
|
-
attributeName?: string;
|
|
306
|
-
}, options?: O): RestResponse<Model.DatapointPeriod>;
|
|
213
|
+
updateCurrent(user: Model.User, options?: O): RestResponse<Model.User>;
|
|
307
214
|
/**
|
|
308
|
-
* HTTP
|
|
309
|
-
* Java method: org.openremote.model.
|
|
215
|
+
* HTTP GET /user/user
|
|
216
|
+
* Java method: org.openremote.model.security.UserResource.getCurrent
|
|
310
217
|
*/
|
|
311
|
-
|
|
312
|
-
}
|
|
313
|
-
export declare class AssetResourceClient<O> {
|
|
314
|
-
protected httpClient: HttpClient<O>;
|
|
315
|
-
constructor(httpClient: HttpClient<O>);
|
|
218
|
+
getCurrent(options?: O): RestResponse<Model.User>;
|
|
316
219
|
/**
|
|
317
|
-
* HTTP
|
|
318
|
-
* Java method: org.openremote.model.
|
|
220
|
+
* HTTP GET /user/userRealmRoles
|
|
221
|
+
* Java method: org.openremote.model.security.UserResource.getCurrentUserRealmRoles
|
|
319
222
|
*/
|
|
320
|
-
|
|
223
|
+
getCurrentUserRealmRoles(options?: O): RestResponse<string[]>;
|
|
321
224
|
/**
|
|
322
|
-
* HTTP
|
|
323
|
-
* Java method: org.openremote.model.
|
|
225
|
+
* HTTP GET /user/userRoles/{clientId}
|
|
226
|
+
* Java method: org.openremote.model.security.UserResource.getCurrentUserClientRoles
|
|
324
227
|
*/
|
|
325
|
-
|
|
326
|
-
assetId?: string[];
|
|
327
|
-
}, options?: O): RestResponse<void>;
|
|
228
|
+
getCurrentUserClientRoles(clientId: string, options?: O): RestResponse<string[]>;
|
|
328
229
|
/**
|
|
329
|
-
* HTTP
|
|
330
|
-
* Java method: org.openremote.model.
|
|
230
|
+
* HTTP GET /user/{realm}/disconnect/{sessionID}
|
|
231
|
+
* Java method: org.openremote.model.security.UserResource.disconnectUserSession
|
|
331
232
|
*/
|
|
332
|
-
|
|
233
|
+
disconnectUserSession(realm: string, sessionID: string, options?: O): RestResponse<void>;
|
|
333
234
|
/**
|
|
334
|
-
* HTTP PUT /
|
|
335
|
-
* Java method: org.openremote.model.
|
|
235
|
+
* HTTP PUT /user/{realm}/request-password-reset/{userId}
|
|
236
|
+
* Java method: org.openremote.model.security.UserResource.requestPasswordReset
|
|
336
237
|
*/
|
|
337
|
-
|
|
238
|
+
requestPasswordReset(realm: string, userId: string, options?: O): RestResponse<void>;
|
|
338
239
|
/**
|
|
339
|
-
* HTTP
|
|
340
|
-
* Java method: org.openremote.model.
|
|
240
|
+
* HTTP PUT /user/{realm}/reset-password/{userId}
|
|
241
|
+
* Java method: org.openremote.model.security.UserResource.updatePassword
|
|
341
242
|
*/
|
|
342
|
-
|
|
243
|
+
updatePassword(realm: string, userId: string, credential: Model.Credential, options?: O): RestResponse<void>;
|
|
343
244
|
/**
|
|
344
|
-
* HTTP
|
|
345
|
-
* Java method: org.openremote.model.
|
|
245
|
+
* HTTP GET /user/{realm}/reset-secret/{userId}
|
|
246
|
+
* Java method: org.openremote.model.security.UserResource.resetSecret
|
|
346
247
|
*/
|
|
347
|
-
|
|
348
|
-
assetIds?: string[];
|
|
349
|
-
}, options?: O): RestResponse<void>;
|
|
248
|
+
resetSecret(realm: string, userId: string, options?: O): RestResponse<string>;
|
|
350
249
|
/**
|
|
351
|
-
* HTTP
|
|
352
|
-
* Java method: org.openremote.model.
|
|
250
|
+
* HTTP PUT /user/{realm}/roles
|
|
251
|
+
* Java method: org.openremote.model.security.UserResource.updateRoles
|
|
353
252
|
*/
|
|
354
|
-
|
|
253
|
+
updateRoles(realm: string, roles: Model.Role[], options?: O): RestResponse<void>;
|
|
355
254
|
/**
|
|
356
|
-
* HTTP
|
|
357
|
-
* Java method: org.openremote.model.
|
|
255
|
+
* HTTP GET /user/{realm}/userRealmRoles/{userId}
|
|
256
|
+
* Java method: org.openremote.model.security.UserResource.getUserRealmRoles
|
|
358
257
|
*/
|
|
359
|
-
|
|
258
|
+
getUserRealmRoles(realm: string, userId: string, options?: O): RestResponse<string[]>;
|
|
360
259
|
/**
|
|
361
|
-
* HTTP
|
|
362
|
-
* Java method: org.openremote.model.
|
|
260
|
+
* HTTP PUT /user/{realm}/userRealmRoles/{userId}
|
|
261
|
+
* Java method: org.openremote.model.security.UserResource.updateUserRealmRoles
|
|
363
262
|
*/
|
|
364
|
-
|
|
263
|
+
updateUserRealmRoles(realm: string, userId: string, roles: string[], options?: O): RestResponse<void>;
|
|
365
264
|
/**
|
|
366
|
-
* HTTP GET /
|
|
367
|
-
* Java method: org.openremote.model.
|
|
265
|
+
* HTTP GET /user/{realm}/userRoles/{userId}/{clientId}
|
|
266
|
+
* Java method: org.openremote.model.security.UserResource.getUserClientRoles
|
|
368
267
|
*/
|
|
369
|
-
|
|
268
|
+
getUserClientRoles(realm: string, userId: string, clientId: string, options?: O): RestResponse<string[]>;
|
|
370
269
|
/**
|
|
371
|
-
* HTTP
|
|
372
|
-
* Java method: org.openremote.model.
|
|
270
|
+
* HTTP PUT /user/{realm}/userRoles/{userId}/{clientId}
|
|
271
|
+
* Java method: org.openremote.model.security.UserResource.updateUserClientRoles
|
|
373
272
|
*/
|
|
374
|
-
|
|
273
|
+
updateUserClientRoles(realm: string, userId: string, clientId: string, roles: string[], options?: O): RestResponse<void>;
|
|
375
274
|
/**
|
|
376
|
-
* HTTP GET /
|
|
377
|
-
* Java method: org.openremote.model.
|
|
275
|
+
* HTTP GET /user/{realm}/userSessions/{userId}
|
|
276
|
+
* Java method: org.openremote.model.security.UserResource.getUserSessions
|
|
378
277
|
*/
|
|
379
|
-
|
|
380
|
-
realm?: string;
|
|
381
|
-
userId?: string;
|
|
382
|
-
assetId?: string;
|
|
383
|
-
}, options?: O): RestResponse<Model.UserAssetLink[]>;
|
|
278
|
+
getUserSessions(realm: string, userId: string, options?: O): RestResponse<Model.UserSession[]>;
|
|
384
279
|
/**
|
|
385
|
-
* HTTP POST /
|
|
386
|
-
* Java method: org.openremote.model.
|
|
280
|
+
* HTTP POST /user/{realm}/users
|
|
281
|
+
* Java method: org.openremote.model.security.UserResource.create
|
|
387
282
|
*/
|
|
388
|
-
|
|
283
|
+
create(realm: string, user: Model.User, options?: O): RestResponse<Model.User>;
|
|
389
284
|
/**
|
|
390
|
-
* HTTP
|
|
391
|
-
* Java method: org.openremote.model.
|
|
285
|
+
* HTTP PUT /user/{realm}/users
|
|
286
|
+
* Java method: org.openremote.model.security.UserResource.update
|
|
392
287
|
*/
|
|
393
|
-
|
|
288
|
+
update(realm: string, user: Model.User, options?: O): RestResponse<Model.User>;
|
|
394
289
|
/**
|
|
395
|
-
* HTTP DELETE /
|
|
396
|
-
* Java method: org.openremote.model.
|
|
290
|
+
* HTTP DELETE /user/{realm}/users/{userId}
|
|
291
|
+
* Java method: org.openremote.model.security.UserResource.delete
|
|
397
292
|
*/
|
|
398
|
-
|
|
293
|
+
delete(realm: string, userId: string, options?: O): RestResponse<void>;
|
|
399
294
|
/**
|
|
400
|
-
* HTTP GET /
|
|
401
|
-
* Java method: org.openremote.model.
|
|
295
|
+
* HTTP GET /user/{realm}/{clientId}/roles
|
|
296
|
+
* Java method: org.openremote.model.security.UserResource.getClientRoles
|
|
402
297
|
*/
|
|
403
|
-
|
|
298
|
+
getClientRoles(realm: string, clientId: string, options?: O): RestResponse<Model.Role[]>;
|
|
404
299
|
/**
|
|
405
|
-
* HTTP PUT /
|
|
406
|
-
* Java method: org.openremote.model.
|
|
300
|
+
* HTTP PUT /user/{realm}/{clientId}/roles
|
|
301
|
+
* Java method: org.openremote.model.security.UserResource.updateClientRoles
|
|
407
302
|
*/
|
|
408
|
-
|
|
303
|
+
updateClientRoles(realm: string, clientId: string, roles: Model.Role[], options?: O): RestResponse<void>;
|
|
409
304
|
/**
|
|
410
|
-
* HTTP
|
|
411
|
-
* Java method: org.openremote.model.
|
|
305
|
+
* HTTP GET /user/{realm}/{userId}
|
|
306
|
+
* Java method: org.openremote.model.security.UserResource.get
|
|
412
307
|
*/
|
|
413
|
-
|
|
308
|
+
get(realm: string, userId: string, options?: O): RestResponse<Model.User>;
|
|
309
|
+
}
|
|
310
|
+
export declare class AssetPredictedDatapointResourceClient<O> {
|
|
311
|
+
protected httpClient: HttpClient<O>;
|
|
312
|
+
constructor(httpClient: HttpClient<O>);
|
|
414
313
|
/**
|
|
415
|
-
* HTTP
|
|
416
|
-
* Java method: org.openremote.model.
|
|
314
|
+
* HTTP POST /asset/predicted/{assetId}/{attributeName}
|
|
315
|
+
* Java method: org.openremote.model.datapoint.AssetPredictedDatapointResource.getPredictedDatapoints
|
|
417
316
|
*/
|
|
418
|
-
|
|
317
|
+
getPredictedDatapoints(assetId: string, attributeName: string, query: Model.AssetDatapointQueryUnion, options?: O): RestResponse<Model.ValueDatapoint<any>[]>;
|
|
419
318
|
/**
|
|
420
|
-
* HTTP PUT /asset/{
|
|
421
|
-
* Java method: org.openremote.model.
|
|
319
|
+
* HTTP PUT /asset/predicted/{assetId}/{attributeName}
|
|
320
|
+
* Java method: org.openremote.model.datapoint.AssetPredictedDatapointResource.writePredictedDatapoints
|
|
422
321
|
*/
|
|
423
|
-
|
|
424
|
-
assetIds?: string[];
|
|
425
|
-
}, options?: O): RestResponse<void>;
|
|
322
|
+
writePredictedDatapoints(assetId: string, attributeName: string, predictedDatapoints: Model.ValueDatapoint<any>[], options?: O): RestResponse<void>;
|
|
426
323
|
}
|
|
427
|
-
export declare class
|
|
324
|
+
export declare class MapResourceClient<O> {
|
|
428
325
|
protected httpClient: HttpClient<O>;
|
|
429
326
|
constructor(httpClient: HttpClient<O>);
|
|
430
327
|
/**
|
|
431
|
-
* HTTP
|
|
432
|
-
* Java method: org.openremote.model.
|
|
328
|
+
* HTTP GET /map
|
|
329
|
+
* Java method: org.openremote.model.map.MapResource.getSettings
|
|
433
330
|
*/
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
}
|
|
331
|
+
getSettings(options?: O): RestResponse<{
|
|
332
|
+
[id: string]: unknown;
|
|
333
|
+
}>;
|
|
437
334
|
/**
|
|
438
|
-
* HTTP
|
|
439
|
-
* Java method: org.openremote.model.
|
|
335
|
+
* HTTP PUT /map
|
|
336
|
+
* Java method: org.openremote.model.map.MapResource.saveSettings
|
|
440
337
|
*/
|
|
441
|
-
|
|
338
|
+
saveSettings(mapConfig: Model.MapConfig, options?: O): RestResponse<{
|
|
339
|
+
[id: string]: unknown;
|
|
340
|
+
}>;
|
|
442
341
|
/**
|
|
443
|
-
* HTTP DELETE /
|
|
444
|
-
* Java method: org.openremote.model.
|
|
342
|
+
* HTTP DELETE /map/deleteMap
|
|
343
|
+
* Java method: org.openremote.model.map.MapResource.deleteMap
|
|
445
344
|
*/
|
|
446
|
-
|
|
345
|
+
deleteMap(options?: O): RestResponse<{
|
|
346
|
+
[id: string]: unknown;
|
|
347
|
+
}>;
|
|
447
348
|
/**
|
|
448
|
-
* HTTP GET /
|
|
449
|
-
* Java method: org.openremote.model.
|
|
349
|
+
* HTTP GET /map/getCustomMapInfo
|
|
350
|
+
* Java method: org.openremote.model.map.MapResource.getCustomMapInfo
|
|
450
351
|
*/
|
|
451
|
-
|
|
352
|
+
getCustomMapInfo(options?: O): RestResponse<{
|
|
353
|
+
[id: string]: unknown;
|
|
354
|
+
}>;
|
|
452
355
|
/**
|
|
453
|
-
* HTTP
|
|
454
|
-
* Java method: org.openremote.model.
|
|
356
|
+
* HTTP GET /map/js
|
|
357
|
+
* Java method: org.openremote.model.map.MapResource.getSettingsJs
|
|
455
358
|
*/
|
|
456
|
-
|
|
359
|
+
getSettingsJs(options?: O): RestResponse<{
|
|
360
|
+
[id: string]: unknown;
|
|
361
|
+
}>;
|
|
457
362
|
/**
|
|
458
|
-
* HTTP GET /
|
|
459
|
-
* Java method: org.openremote.model.
|
|
363
|
+
* HTTP GET /map/tile/{zoom}/{column}/{row}
|
|
364
|
+
* Java method: org.openremote.model.map.MapResource.getTile
|
|
460
365
|
*/
|
|
461
|
-
|
|
366
|
+
getTile(zoom: number, column: number, row: number, options?: O): RestResponse<any>;
|
|
367
|
+
/**
|
|
368
|
+
* HTTP POST /map/upload
|
|
369
|
+
* Java method: org.openremote.model.map.MapResource.uploadMap
|
|
370
|
+
*/
|
|
371
|
+
uploadMap(queryParams?: {
|
|
372
|
+
filename?: string;
|
|
373
|
+
}, options?: O): RestResponse<{
|
|
374
|
+
[id: string]: unknown;
|
|
375
|
+
}>;
|
|
462
376
|
}
|
|
463
|
-
export declare class
|
|
377
|
+
export declare class AgentResourceClient<O> {
|
|
464
378
|
protected httpClient: HttpClient<O>;
|
|
465
379
|
constructor(httpClient: HttpClient<O>);
|
|
466
380
|
/**
|
|
467
|
-
* HTTP GET /
|
|
468
|
-
* Java method: org.openremote.model.asset.
|
|
381
|
+
* HTTP GET /agent/assetDiscovery/{agentId}
|
|
382
|
+
* Java method: org.openremote.model.asset.agent.AgentResource.doProtocolAssetDiscovery
|
|
469
383
|
*/
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
}, options?: O): RestResponse<Model.AssetDescriptor[]>;
|
|
384
|
+
doProtocolAssetDiscovery(agentId: string, queryParams?: {
|
|
385
|
+
realm?: string;
|
|
386
|
+
}, options?: O): RestResponse<Model.AssetTreeNode[]>;
|
|
474
387
|
/**
|
|
475
|
-
* HTTP
|
|
476
|
-
* Java method: org.openremote.model.asset.
|
|
388
|
+
* HTTP POST /agent/assetImport/{agentId}
|
|
389
|
+
* Java method: org.openremote.model.asset.agent.AgentResource.doProtocolAssetImport
|
|
477
390
|
*/
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
}, options?: O): RestResponse<Model.
|
|
391
|
+
doProtocolAssetImport(agentId: string, fileInfo: Model.FileInfo, queryParams?: {
|
|
392
|
+
realm?: string;
|
|
393
|
+
}, options?: O): RestResponse<Model.AssetTreeNode[]>;
|
|
481
394
|
/**
|
|
482
|
-
* HTTP GET /
|
|
483
|
-
* Java method: org.openremote.model.asset.
|
|
395
|
+
* HTTP GET /agent/instanceDiscovery/{agentType}
|
|
396
|
+
* Java method: org.openremote.model.asset.agent.AgentResource.doProtocolInstanceDiscovery
|
|
484
397
|
*/
|
|
485
|
-
|
|
398
|
+
doProtocolInstanceDiscovery(agentType: string, queryParams?: {
|
|
486
399
|
parentId?: string;
|
|
487
|
-
|
|
488
|
-
}, options?: O): RestResponse<Model.
|
|
400
|
+
realm?: string;
|
|
401
|
+
}, options?: O): RestResponse<Model.Agent[]>;
|
|
402
|
+
}
|
|
403
|
+
export declare class AssetDatapointResourceClient<O> {
|
|
404
|
+
protected httpClient: HttpClient<O>;
|
|
405
|
+
constructor(httpClient: HttpClient<O>);
|
|
489
406
|
/**
|
|
490
|
-
* HTTP GET /
|
|
491
|
-
* Java method: org.openremote.model.
|
|
407
|
+
* HTTP GET /asset/datapoint/export
|
|
408
|
+
* Java method: org.openremote.model.datapoint.AssetDatapointResource.getDatapointExport
|
|
492
409
|
*/
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
410
|
+
getDatapointExport(queryParams?: {
|
|
411
|
+
attributeRefs?: string;
|
|
412
|
+
fromTimestamp?: number;
|
|
413
|
+
toTimestamp?: number;
|
|
496
414
|
}, options?: O): RestResponse<any>;
|
|
497
415
|
/**
|
|
498
|
-
* HTTP GET /
|
|
499
|
-
* Java method: org.openremote.model.
|
|
416
|
+
* HTTP GET /asset/datapoint/periods
|
|
417
|
+
* Java method: org.openremote.model.datapoint.AssetDatapointResource.getDatapointPeriod
|
|
500
418
|
*/
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
419
|
+
getDatapointPeriod(queryParams?: {
|
|
420
|
+
assetId?: string;
|
|
421
|
+
attributeName?: string;
|
|
422
|
+
}, options?: O): RestResponse<Model.DatapointPeriod>;
|
|
423
|
+
/**
|
|
424
|
+
* HTTP POST /asset/datapoint/{assetId}/{attributeName}
|
|
425
|
+
* Java method: org.openremote.model.datapoint.AssetDatapointResource.getDatapoints
|
|
426
|
+
*/
|
|
427
|
+
getDatapoints(assetId: string, attributeName: string, query: Model.AssetDatapointQueryUnion, options?: O): RestResponse<Model.ValueDatapoint<any>[]>;
|
|
428
|
+
}
|
|
429
|
+
export declare class ConfigurationResourceClient<O> {
|
|
430
|
+
protected httpClient: HttpClient<O>;
|
|
431
|
+
constructor(httpClient: HttpClient<O>);
|
|
432
|
+
/**
|
|
433
|
+
* HTTP GET /configuration/manager
|
|
434
|
+
* Java method: org.openremote.model.manager.ConfigurationResource.getManagerConfig
|
|
435
|
+
*/
|
|
436
|
+
getManagerConfig(options?: O): RestResponse<Model.ManagerAppConfig>;
|
|
437
|
+
/**
|
|
438
|
+
* HTTP PUT /configuration/manager
|
|
439
|
+
* Java method: org.openremote.model.manager.ConfigurationResource.update
|
|
440
|
+
*/
|
|
441
|
+
update(managerConfiguration: Model.ManagerAppConfig, options?: O): RestResponse<Model.ManagerAppConfig>;
|
|
442
|
+
/**
|
|
443
|
+
* HTTP POST /configuration/manager/file
|
|
444
|
+
* Java method: org.openremote.model.manager.ConfigurationResource.fileUpload
|
|
445
|
+
*/
|
|
446
|
+
fileUpload(fileInfo: Model.FileInfo, queryParams?: {
|
|
447
|
+
path?: string;
|
|
448
|
+
}, options?: O): RestResponse<string>;
|
|
449
|
+
/**
|
|
450
|
+
* HTTP GET /configuration/manager/image/{filename: .+}
|
|
451
|
+
* Java method: org.openremote.model.manager.ConfigurationResource.getManagerConfigImage
|
|
452
|
+
*/
|
|
453
|
+
getManagerConfigImage(filename: string, options?: O): RestResponse<any>;
|
|
454
|
+
}
|
|
455
|
+
export declare class AppResourceClient<O> {
|
|
456
|
+
protected httpClient: HttpClient<O>;
|
|
457
|
+
constructor(httpClient: HttpClient<O>);
|
|
458
|
+
/**
|
|
459
|
+
* HTTP GET /apps
|
|
460
|
+
* Java method: org.openremote.model.apps.AppResource.getApps
|
|
461
|
+
*/
|
|
462
|
+
getApps(options?: O): RestResponse<string[]>;
|
|
463
|
+
/**
|
|
464
|
+
* HTTP GET /apps/consoleConfig
|
|
465
|
+
* Java method: org.openremote.model.apps.AppResource.getConsoleConfig
|
|
466
|
+
*/
|
|
467
|
+
getConsoleConfig(options?: O): RestResponse<any>;
|
|
468
|
+
/**
|
|
469
|
+
* HTTP GET /apps/info
|
|
470
|
+
* Java method: org.openremote.model.apps.AppResource.getAppInfos
|
|
471
|
+
*/
|
|
472
|
+
getAppInfos(options?: O): RestResponse<any>;
|
|
473
|
+
}
|
|
474
|
+
export declare class StatusResourceClient<O> {
|
|
475
|
+
protected httpClient: HttpClient<O>;
|
|
476
|
+
constructor(httpClient: HttpClient<O>);
|
|
477
|
+
/**
|
|
478
|
+
* HTTP GET /health
|
|
479
|
+
* Java method: org.openremote.model.system.StatusResource.getHealthStatus
|
|
480
|
+
*/
|
|
481
|
+
getHealthStatus(options?: O): RestResponse<{
|
|
482
|
+
[index: string]: any;
|
|
505
483
|
}>;
|
|
506
484
|
/**
|
|
507
|
-
* HTTP GET /
|
|
508
|
-
* Java method: org.openremote.model.
|
|
485
|
+
* HTTP GET /info
|
|
486
|
+
* Java method: org.openremote.model.system.StatusResource.getInfo
|
|
509
487
|
*/
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
}, options?: O): RestResponse<{
|
|
513
|
-
[index: string]: Model.ValueDescriptor;
|
|
488
|
+
getInfo(options?: O): RestResponse<{
|
|
489
|
+
[index: string]: any;
|
|
514
490
|
}>;
|
|
515
491
|
}
|
|
492
|
+
export declare class ProvisioningResourceClient<O> {
|
|
493
|
+
protected httpClient: HttpClient<O>;
|
|
494
|
+
constructor(httpClient: HttpClient<O>);
|
|
495
|
+
/**
|
|
496
|
+
* HTTP POST /provisioning
|
|
497
|
+
* Java method: org.openremote.model.provisioning.ProvisioningResource.createProvisioningConfig
|
|
498
|
+
*/
|
|
499
|
+
createProvisioningConfig(provisioningConfig: Model.ProvisioningConfigUnion<any, any>, options?: O): RestResponse<number>;
|
|
500
|
+
/**
|
|
501
|
+
* HTTP GET /provisioning
|
|
502
|
+
* Java method: org.openremote.model.provisioning.ProvisioningResource.getProvisioningConfigs
|
|
503
|
+
*/
|
|
504
|
+
getProvisioningConfigs(options?: O): RestResponse<Model.ProvisioningConfigUnion<any, any>[]>;
|
|
505
|
+
/**
|
|
506
|
+
* HTTP DELETE /provisioning/{id}
|
|
507
|
+
* Java method: org.openremote.model.provisioning.ProvisioningResource.deleteProvisioningConfig
|
|
508
|
+
*/
|
|
509
|
+
deleteProvisioningConfig(id: number, options?: O): RestResponse<void>;
|
|
510
|
+
/**
|
|
511
|
+
* HTTP PUT /provisioning/{id}
|
|
512
|
+
* Java method: org.openremote.model.provisioning.ProvisioningResource.updateProvisioningConfig
|
|
513
|
+
*/
|
|
514
|
+
updateProvisioningConfig(id: number, provisioningConfig: Model.ProvisioningConfigUnion<any, any>, options?: O): RestResponse<void>;
|
|
515
|
+
}
|
|
516
516
|
export declare class NotificationResourceClient<O> {
|
|
517
517
|
protected httpClient: HttpClient<O>;
|
|
518
518
|
constructor(httpClient: HttpClient<O>);
|
|
@@ -567,85 +567,6 @@ export declare class NotificationResourceClient<O> {
|
|
|
567
567
|
targetId?: string;
|
|
568
568
|
}, options?: O): RestResponse<void>;
|
|
569
569
|
}
|
|
570
|
-
export declare class MapResourceClient<O> {
|
|
571
|
-
protected httpClient: HttpClient<O>;
|
|
572
|
-
constructor(httpClient: HttpClient<O>);
|
|
573
|
-
/**
|
|
574
|
-
* HTTP GET /map
|
|
575
|
-
* Java method: org.openremote.model.map.MapResource.getSettings
|
|
576
|
-
*/
|
|
577
|
-
getSettings(options?: O): RestResponse<{
|
|
578
|
-
[id: string]: unknown;
|
|
579
|
-
}>;
|
|
580
|
-
/**
|
|
581
|
-
* HTTP PUT /map
|
|
582
|
-
* Java method: org.openremote.model.map.MapResource.saveSettings
|
|
583
|
-
*/
|
|
584
|
-
saveSettings(mapConfig: Model.MapConfig, options?: O): RestResponse<{
|
|
585
|
-
[id: string]: unknown;
|
|
586
|
-
}>;
|
|
587
|
-
/**
|
|
588
|
-
* HTTP DELETE /map/deleteMap
|
|
589
|
-
* Java method: org.openremote.model.map.MapResource.deleteMap
|
|
590
|
-
*/
|
|
591
|
-
deleteMap(options?: O): RestResponse<{
|
|
592
|
-
[id: string]: unknown;
|
|
593
|
-
}>;
|
|
594
|
-
/**
|
|
595
|
-
* HTTP GET /map/getCustomMapInfo
|
|
596
|
-
* Java method: org.openremote.model.map.MapResource.getCustomMapInfo
|
|
597
|
-
*/
|
|
598
|
-
getCustomMapInfo(options?: O): RestResponse<{
|
|
599
|
-
[id: string]: unknown;
|
|
600
|
-
}>;
|
|
601
|
-
/**
|
|
602
|
-
* HTTP GET /map/js
|
|
603
|
-
* Java method: org.openremote.model.map.MapResource.getSettingsJs
|
|
604
|
-
*/
|
|
605
|
-
getSettingsJs(options?: O): RestResponse<{
|
|
606
|
-
[id: string]: unknown;
|
|
607
|
-
}>;
|
|
608
|
-
/**
|
|
609
|
-
* HTTP GET /map/tile/{zoom}/{column}/{row}
|
|
610
|
-
* Java method: org.openremote.model.map.MapResource.getTile
|
|
611
|
-
*/
|
|
612
|
-
getTile(zoom: number, column: number, row: number, options?: O): RestResponse<any>;
|
|
613
|
-
/**
|
|
614
|
-
* HTTP POST /map/upload
|
|
615
|
-
* Java method: org.openremote.model.map.MapResource.uploadMap
|
|
616
|
-
*/
|
|
617
|
-
uploadMap(queryParams?: {
|
|
618
|
-
filename?: string;
|
|
619
|
-
}, options?: O): RestResponse<{
|
|
620
|
-
[id: string]: unknown;
|
|
621
|
-
}>;
|
|
622
|
-
}
|
|
623
|
-
export declare class ConfigurationResourceClient<O> {
|
|
624
|
-
protected httpClient: HttpClient<O>;
|
|
625
|
-
constructor(httpClient: HttpClient<O>);
|
|
626
|
-
/**
|
|
627
|
-
* HTTP GET /configuration/manager
|
|
628
|
-
* Java method: org.openremote.model.manager.ConfigurationResource.getManagerConfig
|
|
629
|
-
*/
|
|
630
|
-
getManagerConfig(options?: O): RestResponse<Model.ManagerAppConfig>;
|
|
631
|
-
/**
|
|
632
|
-
* HTTP PUT /configuration/manager
|
|
633
|
-
* Java method: org.openremote.model.manager.ConfigurationResource.update
|
|
634
|
-
*/
|
|
635
|
-
update(managerConfiguration: Model.ManagerAppConfig, options?: O): RestResponse<Model.ManagerAppConfig>;
|
|
636
|
-
/**
|
|
637
|
-
* HTTP POST /configuration/manager/file
|
|
638
|
-
* Java method: org.openremote.model.manager.ConfigurationResource.fileUpload
|
|
639
|
-
*/
|
|
640
|
-
fileUpload(fileInfo: Model.FileInfo, queryParams?: {
|
|
641
|
-
path?: string;
|
|
642
|
-
}, options?: O): RestResponse<string>;
|
|
643
|
-
/**
|
|
644
|
-
* HTTP GET /configuration/manager/image/{filename: .+}
|
|
645
|
-
* Java method: org.openremote.model.manager.ConfigurationResource.getManagerConfigImage
|
|
646
|
-
*/
|
|
647
|
-
getManagerConfigImage(filename: string, options?: O): RestResponse<any>;
|
|
648
|
-
}
|
|
649
570
|
export declare class RealmResourceClient<O> {
|
|
650
571
|
protected httpClient: HttpClient<O>;
|
|
651
572
|
constructor(httpClient: HttpClient<O>);
|
|
@@ -680,138 +601,203 @@ export declare class RealmResourceClient<O> {
|
|
|
680
601
|
*/
|
|
681
602
|
update(name: string, realm: Model.Realm, options?: O): RestResponse<void>;
|
|
682
603
|
}
|
|
683
|
-
export declare class
|
|
604
|
+
export declare class FlowResourceClient<O> {
|
|
684
605
|
protected httpClient: HttpClient<O>;
|
|
685
606
|
constructor(httpClient: HttpClient<O>);
|
|
686
607
|
/**
|
|
687
|
-
* HTTP
|
|
688
|
-
* Java method: org.openremote.model.
|
|
608
|
+
* HTTP GET /flow
|
|
609
|
+
* Java method: org.openremote.model.rules.flow.FlowResource.getAllNodeDefinitions
|
|
689
610
|
*/
|
|
690
|
-
|
|
611
|
+
getAllNodeDefinitions(options?: O): RestResponse<Model.Node[]>;
|
|
612
|
+
/**
|
|
613
|
+
* HTTP GET /flow/{name}
|
|
614
|
+
* Java method: org.openremote.model.rules.flow.FlowResource.getNodeDefinition
|
|
615
|
+
*/
|
|
616
|
+
getNodeDefinition(name: string, options?: O): RestResponse<Model.Node>;
|
|
617
|
+
/**
|
|
618
|
+
* HTTP GET /flow/{type}
|
|
619
|
+
* Java method: org.openremote.model.rules.flow.FlowResource.getAllNodeDefinitionsByType
|
|
620
|
+
*/
|
|
621
|
+
getAllNodeDefinitionsByType(type: Model.NodeType, options?: O): RestResponse<Model.Node[]>;
|
|
691
622
|
}
|
|
692
|
-
export declare class
|
|
623
|
+
export declare class GatewayServiceResourceClient<O> {
|
|
693
624
|
protected httpClient: HttpClient<O>;
|
|
694
625
|
constructor(httpClient: HttpClient<O>);
|
|
695
626
|
/**
|
|
696
|
-
* HTTP
|
|
697
|
-
* Java method: org.openremote.model.
|
|
627
|
+
* HTTP POST /gateway/tunnel
|
|
628
|
+
* Java method: org.openremote.model.gateway.GatewayServiceResource.startTunnel
|
|
698
629
|
*/
|
|
699
|
-
|
|
630
|
+
startTunnel(tunnelInfo: Model.GatewayTunnelInfo, options?: O): RestResponse<Model.GatewayTunnelInfo>;
|
|
700
631
|
/**
|
|
701
|
-
* HTTP
|
|
702
|
-
* Java method: org.openremote.model.
|
|
632
|
+
* HTTP DELETE /gateway/tunnel
|
|
633
|
+
* Java method: org.openremote.model.gateway.GatewayServiceResource.stopTunnel
|
|
703
634
|
*/
|
|
704
|
-
|
|
635
|
+
stopTunnel(tunnelInfo: Model.GatewayTunnelInfo, options?: O): RestResponse<void>;
|
|
705
636
|
/**
|
|
706
|
-
* HTTP
|
|
707
|
-
* Java method: org.openremote.model.
|
|
637
|
+
* HTTP GET /gateway/tunnel/{realm}
|
|
638
|
+
* Java method: org.openremote.model.gateway.GatewayServiceResource.getAllActiveTunnelInfos
|
|
708
639
|
*/
|
|
709
|
-
|
|
640
|
+
getAllActiveTunnelInfos(realm: string, options?: O): RestResponse<Model.GatewayTunnelInfo[]>;
|
|
710
641
|
/**
|
|
711
|
-
* HTTP
|
|
712
|
-
* Java method: org.openremote.model.
|
|
642
|
+
* HTTP GET /gateway/tunnel/{realm}/{id}
|
|
643
|
+
* Java method: org.openremote.model.gateway.GatewayServiceResource.getGatewayActiveTunnelInfos
|
|
713
644
|
*/
|
|
714
|
-
|
|
645
|
+
getGatewayActiveTunnelInfos(realm: string, id: string, options?: O): RestResponse<Model.GatewayTunnelInfo[]>;
|
|
715
646
|
/**
|
|
716
|
-
* HTTP
|
|
717
|
-
* Java method: org.openremote.model.
|
|
647
|
+
* HTTP GET /gateway/tunnel/{realm}/{id}/{target}/{targetPort}
|
|
648
|
+
* Java method: org.openremote.model.gateway.GatewayServiceResource.getActiveTunnelInfo
|
|
718
649
|
*/
|
|
719
|
-
|
|
650
|
+
getActiveTunnelInfo(realm: string, id: string, target: string, targetPort: number, options?: O): RestResponse<Model.GatewayTunnelInfo>;
|
|
651
|
+
}
|
|
652
|
+
export declare class AssetResourceClient<O> {
|
|
653
|
+
protected httpClient: HttpClient<O>;
|
|
654
|
+
constructor(httpClient: HttpClient<O>);
|
|
720
655
|
/**
|
|
721
|
-
* HTTP
|
|
722
|
-
* Java method: org.openremote.model.
|
|
656
|
+
* HTTP POST /asset
|
|
657
|
+
* Java method: org.openremote.model.asset.AssetResource.create
|
|
723
658
|
*/
|
|
724
|
-
|
|
659
|
+
create(asset: Model.Asset, options?: O): RestResponse<Model.Asset>;
|
|
725
660
|
/**
|
|
726
|
-
* HTTP
|
|
727
|
-
* Java method: org.openremote.model.
|
|
661
|
+
* HTTP DELETE /asset
|
|
662
|
+
* Java method: org.openremote.model.asset.AssetResource.delete
|
|
728
663
|
*/
|
|
729
|
-
|
|
664
|
+
delete(queryParams?: {
|
|
665
|
+
assetId?: string[];
|
|
666
|
+
}, options?: O): RestResponse<void>;
|
|
730
667
|
/**
|
|
731
|
-
* HTTP
|
|
732
|
-
* Java method: org.openremote.model.
|
|
668
|
+
* HTTP PUT /asset/attributes
|
|
669
|
+
* Java method: org.openremote.model.asset.AssetResource.writeAttributeValues
|
|
733
670
|
*/
|
|
734
|
-
|
|
671
|
+
writeAttributeValues(attributeStates: Model.AttributeState[], options?: O): RestResponse<Model.AttributeWriteResult[]>;
|
|
735
672
|
/**
|
|
736
|
-
* HTTP
|
|
737
|
-
* Java method: org.openremote.model.
|
|
673
|
+
* HTTP PUT /asset/attributes/timestamp
|
|
674
|
+
* Java method: org.openremote.model.asset.AssetResource.writeAttributeEvents
|
|
738
675
|
*/
|
|
739
|
-
|
|
676
|
+
writeAttributeEvents(attributeEvents: Model.AttributeEvent[], options?: O): RestResponse<Model.AttributeWriteResult[]>;
|
|
740
677
|
/**
|
|
741
|
-
* HTTP
|
|
742
|
-
* Java method: org.openremote.model.
|
|
678
|
+
* HTTP POST /asset/count
|
|
679
|
+
* Java method: org.openremote.model.asset.AssetResource.queryCount
|
|
743
680
|
*/
|
|
744
|
-
|
|
681
|
+
queryCount(query: Model.AssetQuery, options?: O): RestResponse<number>;
|
|
745
682
|
/**
|
|
746
|
-
* HTTP
|
|
747
|
-
* Java method: org.openremote.model.
|
|
683
|
+
* HTTP DELETE /asset/parent
|
|
684
|
+
* Java method: org.openremote.model.asset.AssetResource.updateNoneParent
|
|
748
685
|
*/
|
|
749
|
-
|
|
686
|
+
updateNoneParent(queryParams?: {
|
|
687
|
+
assetIds?: string[];
|
|
688
|
+
}, options?: O): RestResponse<void>;
|
|
689
|
+
/**
|
|
690
|
+
* HTTP GET /asset/partial/{assetId}
|
|
691
|
+
* Java method: org.openremote.model.asset.AssetResource.getPartial
|
|
692
|
+
*/
|
|
693
|
+
getPartial(assetId: string, options?: O): RestResponse<Model.Asset>;
|
|
694
|
+
/**
|
|
695
|
+
* HTTP POST /asset/query
|
|
696
|
+
* Java method: org.openremote.model.asset.AssetResource.queryAssets
|
|
697
|
+
*/
|
|
698
|
+
queryAssets(query: Model.AssetQuery, options?: O): RestResponse<Model.Asset[]>;
|
|
699
|
+
/**
|
|
700
|
+
* HTTP POST /asset/tree
|
|
701
|
+
* Java method: org.openremote.model.asset.AssetResource.queryAssetTree
|
|
702
|
+
*/
|
|
703
|
+
queryAssetTree(query: Model.AssetQuery, options?: O): RestResponse<Model.AssetTree>;
|
|
704
|
+
/**
|
|
705
|
+
* HTTP GET /asset/user/current
|
|
706
|
+
* Java method: org.openremote.model.asset.AssetResource.getCurrentUserAssets
|
|
707
|
+
*/
|
|
708
|
+
getCurrentUserAssets(options?: O): RestResponse<Model.Asset[]>;
|
|
709
|
+
/**
|
|
710
|
+
* HTTP POST /asset/user/link
|
|
711
|
+
* Java method: org.openremote.model.asset.AssetResource.createUserAssetLinks
|
|
712
|
+
*/
|
|
713
|
+
createUserAssetLinks(userAssets: Model.UserAssetLink[], options?: O): RestResponse<void>;
|
|
714
|
+
/**
|
|
715
|
+
* HTTP GET /asset/user/link
|
|
716
|
+
* Java method: org.openremote.model.asset.AssetResource.getUserAssetLinks
|
|
717
|
+
*/
|
|
718
|
+
getUserAssetLinks(queryParams?: {
|
|
719
|
+
realm?: string;
|
|
720
|
+
userId?: string;
|
|
721
|
+
assetId?: string;
|
|
722
|
+
}, options?: O): RestResponse<Model.UserAssetLink[]>;
|
|
723
|
+
/**
|
|
724
|
+
* HTTP POST /asset/user/link/delete
|
|
725
|
+
* Java method: org.openremote.model.asset.AssetResource.deleteUserAssetLinks
|
|
726
|
+
*/
|
|
727
|
+
deleteUserAssetLinks(userAssets: Model.UserAssetLink[], options?: O): RestResponse<void>;
|
|
750
728
|
/**
|
|
751
|
-
* HTTP
|
|
752
|
-
* Java method: org.openremote.model.
|
|
729
|
+
* HTTP DELETE /asset/user/link/{realm}/{userId}
|
|
730
|
+
* Java method: org.openremote.model.asset.AssetResource.deleteAllUserAssetLinks
|
|
753
731
|
*/
|
|
754
|
-
|
|
732
|
+
deleteAllUserAssetLinks(realm: string, userId: string, options?: O): RestResponse<void>;
|
|
755
733
|
/**
|
|
756
|
-
* HTTP
|
|
757
|
-
* Java method: org.openremote.model.
|
|
734
|
+
* HTTP DELETE /asset/user/link/{realm}/{userId}/{assetId}
|
|
735
|
+
* Java method: org.openremote.model.asset.AssetResource.deleteUserAssetLink
|
|
758
736
|
*/
|
|
759
|
-
|
|
737
|
+
deleteUserAssetLink(realm: string, userId: string, assetId: string, options?: O): RestResponse<void>;
|
|
760
738
|
/**
|
|
761
|
-
* HTTP GET /
|
|
762
|
-
* Java method: org.openremote.model.
|
|
739
|
+
* HTTP GET /asset/{assetId}
|
|
740
|
+
* Java method: org.openremote.model.asset.AssetResource.get
|
|
763
741
|
*/
|
|
764
|
-
|
|
742
|
+
get(assetId: string, options?: O): RestResponse<Model.Asset>;
|
|
765
743
|
/**
|
|
766
|
-
* HTTP PUT /
|
|
767
|
-
* Java method: org.openremote.model.
|
|
744
|
+
* HTTP PUT /asset/{assetId}
|
|
745
|
+
* Java method: org.openremote.model.asset.AssetResource.update
|
|
768
746
|
*/
|
|
769
|
-
|
|
747
|
+
update(assetId: string, asset: Model.Asset, options?: O): RestResponse<Model.Asset>;
|
|
770
748
|
/**
|
|
771
|
-
* HTTP
|
|
772
|
-
* Java method: org.openremote.model.
|
|
749
|
+
* HTTP PUT /asset/{assetId}/attribute/{attributeName}
|
|
750
|
+
* Java method: org.openremote.model.asset.AssetResource.writeAttributeValue
|
|
773
751
|
*/
|
|
774
|
-
|
|
752
|
+
writeAttributeValue$PUT$asset_assetId_attribute_attributeName(assetId: string, attributeName: string, value: any, options?: O): RestResponse<Model.AttributeWriteResult>;
|
|
775
753
|
/**
|
|
776
|
-
* HTTP PUT /
|
|
777
|
-
* Java method: org.openremote.model.
|
|
754
|
+
* HTTP PUT /asset/{assetId}/attribute/{attributeName}/{timestamp}
|
|
755
|
+
* Java method: org.openremote.model.asset.AssetResource.writeAttributeValue
|
|
778
756
|
*/
|
|
779
|
-
|
|
757
|
+
writeAttributeValue$PUT$asset_assetId_attribute_attributeName_timestamp(assetId: string, attributeName: string, timestamp: number, value: any, options?: O): RestResponse<Model.AttributeWriteResult>;
|
|
780
758
|
/**
|
|
781
|
-
* HTTP
|
|
782
|
-
* Java method: org.openremote.model.
|
|
759
|
+
* HTTP PUT /asset/{parentAssetId}/child
|
|
760
|
+
* Java method: org.openremote.model.asset.AssetResource.updateParent
|
|
783
761
|
*/
|
|
784
|
-
|
|
762
|
+
updateParent(parentAssetId: string, queryParams?: {
|
|
763
|
+
assetIds?: string[];
|
|
764
|
+
}, options?: O): RestResponse<void>;
|
|
765
|
+
}
|
|
766
|
+
export declare class GatewayClientResourceClient<O> {
|
|
767
|
+
protected httpClient: HttpClient<O>;
|
|
768
|
+
constructor(httpClient: HttpClient<O>);
|
|
785
769
|
/**
|
|
786
|
-
* HTTP
|
|
787
|
-
* Java method: org.openremote.model.
|
|
770
|
+
* HTTP DELETE /gateway/connection
|
|
771
|
+
* Java method: org.openremote.model.gateway.GatewayClientResource.deleteConnections
|
|
788
772
|
*/
|
|
789
|
-
|
|
773
|
+
deleteConnections(queryParams?: {
|
|
774
|
+
realm?: string[];
|
|
775
|
+
}, options?: O): RestResponse<void>;
|
|
790
776
|
/**
|
|
791
|
-
* HTTP
|
|
792
|
-
* Java method: org.openremote.model.
|
|
777
|
+
* HTTP GET /gateway/connection
|
|
778
|
+
* Java method: org.openremote.model.gateway.GatewayClientResource.getConnections
|
|
793
779
|
*/
|
|
794
|
-
|
|
780
|
+
getConnections(options?: O): RestResponse<Model.GatewayConnection[]>;
|
|
795
781
|
/**
|
|
796
|
-
* HTTP DELETE /
|
|
797
|
-
* Java method: org.openremote.model.
|
|
782
|
+
* HTTP DELETE /gateway/connection/{realm}
|
|
783
|
+
* Java method: org.openremote.model.gateway.GatewayClientResource.deleteConnection
|
|
798
784
|
*/
|
|
799
|
-
|
|
785
|
+
deleteConnection(realm: string, options?: O): RestResponse<void>;
|
|
800
786
|
/**
|
|
801
|
-
* HTTP GET /
|
|
802
|
-
* Java method: org.openremote.model.
|
|
787
|
+
* HTTP GET /gateway/connection/{realm}
|
|
788
|
+
* Java method: org.openremote.model.gateway.GatewayClientResource.getConnection
|
|
803
789
|
*/
|
|
804
|
-
|
|
790
|
+
getConnection(realm: string, options?: O): RestResponse<Model.GatewayConnection>;
|
|
805
791
|
/**
|
|
806
|
-
* HTTP PUT /
|
|
807
|
-
* Java method: org.openremote.model.
|
|
792
|
+
* HTTP PUT /gateway/connection/{realm}
|
|
793
|
+
* Java method: org.openremote.model.gateway.GatewayClientResource.setConnection
|
|
808
794
|
*/
|
|
809
|
-
|
|
795
|
+
setConnection(realm: string, connection: Model.GatewayConnection, options?: O): RestResponse<void>;
|
|
810
796
|
/**
|
|
811
|
-
* HTTP GET /
|
|
812
|
-
* Java method: org.openremote.model.
|
|
797
|
+
* HTTP GET /gateway/status/{realm}
|
|
798
|
+
* Java method: org.openremote.model.gateway.GatewayClientResource.getConnectionStatus
|
|
813
799
|
*/
|
|
814
|
-
|
|
800
|
+
getConnectionStatus(realm: string, options?: O): RestResponse<Model.ConnectionStatus>;
|
|
815
801
|
}
|
|
816
802
|
export declare class RulesResourceClient<O> {
|
|
817
803
|
protected httpClient: HttpClient<O>;
|
|
@@ -921,101 +907,115 @@ export declare class RulesResourceClient<O> {
|
|
|
921
907
|
*/
|
|
922
908
|
updateGlobalRuleset(id: number, ruleset: Model.GlobalRuleset, options?: O): RestResponse<void>;
|
|
923
909
|
}
|
|
924
|
-
export declare class
|
|
910
|
+
export declare class ConsoleResourceClient<O> {
|
|
925
911
|
protected httpClient: HttpClient<O>;
|
|
926
912
|
constructor(httpClient: HttpClient<O>);
|
|
927
913
|
/**
|
|
928
|
-
* HTTP
|
|
929
|
-
* Java method: org.openremote.model.
|
|
930
|
-
*/
|
|
931
|
-
getApps(options?: O): RestResponse<string[]>;
|
|
932
|
-
/**
|
|
933
|
-
* HTTP GET /apps/consoleConfig
|
|
934
|
-
* Java method: org.openremote.model.apps.AppResource.getConsoleConfig
|
|
935
|
-
*/
|
|
936
|
-
getConsoleConfig(options?: O): RestResponse<any>;
|
|
937
|
-
/**
|
|
938
|
-
* HTTP GET /apps/info
|
|
939
|
-
* Java method: org.openremote.model.apps.AppResource.getAppInfos
|
|
914
|
+
* HTTP POST /console/register
|
|
915
|
+
* Java method: org.openremote.model.console.ConsoleResource.register
|
|
940
916
|
*/
|
|
941
|
-
|
|
917
|
+
register(consoleRegistration: Model.ConsoleRegistration, options?: O): RestResponse<Model.ConsoleRegistration>;
|
|
942
918
|
}
|
|
943
|
-
export declare class
|
|
919
|
+
export declare class AssetModelResourceClient<O> {
|
|
944
920
|
protected httpClient: HttpClient<O>;
|
|
945
921
|
constructor(httpClient: HttpClient<O>);
|
|
946
922
|
/**
|
|
947
|
-
* HTTP
|
|
948
|
-
* Java method: org.openremote.model.
|
|
923
|
+
* HTTP GET /model/assetDescriptors
|
|
924
|
+
* Java method: org.openremote.model.asset.AssetModelResource.getAssetDescriptors
|
|
949
925
|
*/
|
|
950
|
-
|
|
926
|
+
getAssetDescriptors(queryParams?: {
|
|
927
|
+
parentId?: string;
|
|
928
|
+
parentType?: string;
|
|
929
|
+
}, options?: O): RestResponse<Model.AssetDescriptor[]>;
|
|
951
930
|
/**
|
|
952
|
-
* HTTP
|
|
953
|
-
* Java method: org.openremote.model.
|
|
931
|
+
* HTTP GET /model/assetInfo/{assetType}
|
|
932
|
+
* Java method: org.openremote.model.asset.AssetModelResource.getAssetInfo
|
|
954
933
|
*/
|
|
955
|
-
|
|
934
|
+
getAssetInfo(assetType: string, queryParams?: {
|
|
935
|
+
parentId?: string;
|
|
936
|
+
}, options?: O): RestResponse<Model.AssetTypeInfo>;
|
|
956
937
|
/**
|
|
957
|
-
* HTTP GET /
|
|
958
|
-
* Java method: org.openremote.model.
|
|
938
|
+
* HTTP GET /model/assetInfos
|
|
939
|
+
* Java method: org.openremote.model.asset.AssetModelResource.getAssetInfos
|
|
959
940
|
*/
|
|
960
|
-
|
|
941
|
+
getAssetInfos(queryParams?: {
|
|
942
|
+
parentId?: string;
|
|
943
|
+
parentType?: string;
|
|
944
|
+
}, options?: O): RestResponse<Model.AssetTypeInfo[]>;
|
|
961
945
|
/**
|
|
962
|
-
* HTTP GET /
|
|
963
|
-
* Java method: org.openremote.model.
|
|
946
|
+
* HTTP GET /model/getValueDescriptorSchema
|
|
947
|
+
* Java method: org.openremote.model.asset.AssetModelResource.getValueDescriptorSchema
|
|
964
948
|
*/
|
|
965
|
-
|
|
949
|
+
getValueDescriptorSchema(queryParams?: {
|
|
950
|
+
name?: string;
|
|
951
|
+
hash?: string;
|
|
952
|
+
}, options?: O): RestResponse<any>;
|
|
966
953
|
/**
|
|
967
|
-
* HTTP GET /
|
|
968
|
-
* Java method: org.openremote.model.
|
|
954
|
+
* HTTP GET /model/metaItemDescriptors
|
|
955
|
+
* Java method: org.openremote.model.asset.AssetModelResource.getMetaItemDescriptors
|
|
969
956
|
*/
|
|
970
|
-
|
|
957
|
+
getMetaItemDescriptors(queryParams?: {
|
|
958
|
+
parentId?: string;
|
|
959
|
+
}, options?: O): RestResponse<{
|
|
960
|
+
[index: string]: Model.MetaItemDescriptor;
|
|
961
|
+
}>;
|
|
962
|
+
/**
|
|
963
|
+
* HTTP GET /model/valueDescriptors
|
|
964
|
+
* Java method: org.openremote.model.asset.AssetModelResource.getValueDescriptors
|
|
965
|
+
*/
|
|
966
|
+
getValueDescriptors(queryParams?: {
|
|
967
|
+
parentId?: string;
|
|
968
|
+
}, options?: O): RestResponse<{
|
|
969
|
+
[index: string]: Model.ValueDescriptor;
|
|
970
|
+
}>;
|
|
971
971
|
}
|
|
972
972
|
export type RestResponse<R> = Promise<Axios.GenericAxiosResponse<R>>;
|
|
973
973
|
export declare class ApiClient {
|
|
974
|
+
protected _syslogResource: AxiosSyslogResourceClient;
|
|
974
975
|
protected _dashboardResource: AxiosDashboardResourceClient;
|
|
975
|
-
protected
|
|
976
|
+
protected _externalServiceResource: AxiosExternalServiceResourceClient;
|
|
977
|
+
protected _alarmResource: AxiosAlarmResourceClient;
|
|
978
|
+
protected _userResource: AxiosUserResourceClient;
|
|
976
979
|
protected _assetPredictedDatapointResource: AxiosAssetPredictedDatapointResourceClient;
|
|
980
|
+
protected _mapResource: AxiosMapResourceClient;
|
|
977
981
|
protected _agentResource: AxiosAgentResourceClient;
|
|
982
|
+
protected _assetDatapointResource: AxiosAssetDatapointResourceClient;
|
|
983
|
+
protected _configurationResource: AxiosConfigurationResourceClient;
|
|
984
|
+
protected _appResource: AxiosAppResourceClient;
|
|
978
985
|
protected _statusResource: AxiosStatusResourceClient;
|
|
979
|
-
protected
|
|
980
|
-
protected
|
|
981
|
-
protected
|
|
986
|
+
protected _provisioningResource: AxiosProvisioningResourceClient;
|
|
987
|
+
protected _notificationResource: AxiosNotificationResourceClient;
|
|
988
|
+
protected _realmResource: AxiosRealmResourceClient;
|
|
982
989
|
protected _flowResource: AxiosFlowResourceClient;
|
|
983
|
-
protected
|
|
990
|
+
protected _gatewayServiceResource: AxiosGatewayServiceResourceClient;
|
|
984
991
|
protected _assetResource: AxiosAssetResourceClient;
|
|
985
992
|
protected _gatewayClientResource: AxiosGatewayClientResourceClient;
|
|
986
|
-
protected _assetModelResource: AxiosAssetModelResourceClient;
|
|
987
|
-
protected _notificationResource: AxiosNotificationResourceClient;
|
|
988
|
-
protected _mapResource: AxiosMapResourceClient;
|
|
989
|
-
protected _configurationResource: AxiosConfigurationResourceClient;
|
|
990
|
-
protected _realmResource: AxiosRealmResourceClient;
|
|
991
|
-
protected _consoleResource: AxiosConsoleResourceClient;
|
|
992
|
-
protected _userResource: AxiosUserResourceClient;
|
|
993
993
|
protected _rulesResource: AxiosRulesResourceClient;
|
|
994
|
-
protected
|
|
995
|
-
protected
|
|
994
|
+
protected _consoleResource: AxiosConsoleResourceClient;
|
|
995
|
+
protected _assetModelResource: AxiosAssetModelResourceClient;
|
|
996
996
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
997
|
+
get SyslogResource(): AxiosSyslogResourceClient;
|
|
997
998
|
get DashboardResource(): AxiosDashboardResourceClient;
|
|
998
|
-
get
|
|
999
|
+
get ExternalServiceResource(): AxiosExternalServiceResourceClient;
|
|
1000
|
+
get AlarmResource(): AxiosAlarmResourceClient;
|
|
1001
|
+
get UserResource(): AxiosUserResourceClient;
|
|
999
1002
|
get AssetPredictedDatapointResource(): AxiosAssetPredictedDatapointResourceClient;
|
|
1003
|
+
get MapResource(): AxiosMapResourceClient;
|
|
1000
1004
|
get AgentResource(): AxiosAgentResourceClient;
|
|
1005
|
+
get AssetDatapointResource(): AxiosAssetDatapointResourceClient;
|
|
1006
|
+
get ConfigurationResource(): AxiosConfigurationResourceClient;
|
|
1007
|
+
get AppResource(): AxiosAppResourceClient;
|
|
1001
1008
|
get StatusResource(): AxiosStatusResourceClient;
|
|
1002
|
-
get
|
|
1003
|
-
get
|
|
1004
|
-
get
|
|
1009
|
+
get ProvisioningResource(): AxiosProvisioningResourceClient;
|
|
1010
|
+
get NotificationResource(): AxiosNotificationResourceClient;
|
|
1011
|
+
get RealmResource(): AxiosRealmResourceClient;
|
|
1005
1012
|
get FlowResource(): AxiosFlowResourceClient;
|
|
1006
|
-
get
|
|
1013
|
+
get GatewayServiceResource(): AxiosGatewayServiceResourceClient;
|
|
1007
1014
|
get AssetResource(): AxiosAssetResourceClient;
|
|
1008
1015
|
get GatewayClientResource(): AxiosGatewayClientResourceClient;
|
|
1009
|
-
get AssetModelResource(): AxiosAssetModelResourceClient;
|
|
1010
|
-
get NotificationResource(): AxiosNotificationResourceClient;
|
|
1011
|
-
get MapResource(): AxiosMapResourceClient;
|
|
1012
|
-
get ConfigurationResource(): AxiosConfigurationResourceClient;
|
|
1013
|
-
get RealmResource(): AxiosRealmResourceClient;
|
|
1014
|
-
get ConsoleResource(): AxiosConsoleResourceClient;
|
|
1015
|
-
get UserResource(): AxiosUserResourceClient;
|
|
1016
1016
|
get RulesResource(): AxiosRulesResourceClient;
|
|
1017
|
-
get
|
|
1018
|
-
get
|
|
1017
|
+
get ConsoleResource(): AxiosConsoleResourceClient;
|
|
1018
|
+
get AssetModelResource(): AxiosAssetModelResourceClient;
|
|
1019
1019
|
}
|
|
1020
1020
|
import * as Axios from "axios";
|
|
1021
1021
|
declare module "axios" {
|
|
@@ -1023,70 +1023,70 @@ declare module "axios" {
|
|
|
1023
1023
|
data: R;
|
|
1024
1024
|
}
|
|
1025
1025
|
}
|
|
1026
|
-
export declare class
|
|
1026
|
+
export declare class AxiosSyslogResourceClient extends SyslogResourceClient<Axios.AxiosRequestConfig> {
|
|
1027
1027
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1028
1028
|
}
|
|
1029
|
-
export declare class
|
|
1029
|
+
export declare class AxiosDashboardResourceClient extends DashboardResourceClient<Axios.AxiosRequestConfig> {
|
|
1030
1030
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1031
1031
|
}
|
|
1032
|
-
export declare class
|
|
1032
|
+
export declare class AxiosExternalServiceResourceClient extends ExternalServiceResourceClient<Axios.AxiosRequestConfig> {
|
|
1033
1033
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1034
1034
|
}
|
|
1035
|
-
export declare class
|
|
1035
|
+
export declare class AxiosAlarmResourceClient extends AlarmResourceClient<Axios.AxiosRequestConfig> {
|
|
1036
1036
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1037
1037
|
}
|
|
1038
|
-
export declare class
|
|
1038
|
+
export declare class AxiosUserResourceClient extends UserResourceClient<Axios.AxiosRequestConfig> {
|
|
1039
1039
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1040
1040
|
}
|
|
1041
|
-
export declare class
|
|
1041
|
+
export declare class AxiosAssetPredictedDatapointResourceClient extends AssetPredictedDatapointResourceClient<Axios.AxiosRequestConfig> {
|
|
1042
1042
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1043
1043
|
}
|
|
1044
|
-
export declare class
|
|
1044
|
+
export declare class AxiosMapResourceClient extends MapResourceClient<Axios.AxiosRequestConfig> {
|
|
1045
1045
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1046
1046
|
}
|
|
1047
|
-
export declare class
|
|
1047
|
+
export declare class AxiosAgentResourceClient extends AgentResourceClient<Axios.AxiosRequestConfig> {
|
|
1048
1048
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1049
1049
|
}
|
|
1050
|
-
export declare class
|
|
1050
|
+
export declare class AxiosAssetDatapointResourceClient extends AssetDatapointResourceClient<Axios.AxiosRequestConfig> {
|
|
1051
1051
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1052
1052
|
}
|
|
1053
|
-
export declare class
|
|
1053
|
+
export declare class AxiosConfigurationResourceClient extends ConfigurationResourceClient<Axios.AxiosRequestConfig> {
|
|
1054
1054
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1055
1055
|
}
|
|
1056
|
-
export declare class
|
|
1056
|
+
export declare class AxiosAppResourceClient extends AppResourceClient<Axios.AxiosRequestConfig> {
|
|
1057
1057
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1058
1058
|
}
|
|
1059
|
-
export declare class
|
|
1059
|
+
export declare class AxiosStatusResourceClient extends StatusResourceClient<Axios.AxiosRequestConfig> {
|
|
1060
1060
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1061
1061
|
}
|
|
1062
|
-
export declare class
|
|
1062
|
+
export declare class AxiosProvisioningResourceClient extends ProvisioningResourceClient<Axios.AxiosRequestConfig> {
|
|
1063
1063
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1064
1064
|
}
|
|
1065
1065
|
export declare class AxiosNotificationResourceClient extends NotificationResourceClient<Axios.AxiosRequestConfig> {
|
|
1066
1066
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1067
1067
|
}
|
|
1068
|
-
export declare class
|
|
1068
|
+
export declare class AxiosRealmResourceClient extends RealmResourceClient<Axios.AxiosRequestConfig> {
|
|
1069
1069
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1070
1070
|
}
|
|
1071
|
-
export declare class
|
|
1071
|
+
export declare class AxiosFlowResourceClient extends FlowResourceClient<Axios.AxiosRequestConfig> {
|
|
1072
1072
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1073
1073
|
}
|
|
1074
|
-
export declare class
|
|
1074
|
+
export declare class AxiosGatewayServiceResourceClient extends GatewayServiceResourceClient<Axios.AxiosRequestConfig> {
|
|
1075
1075
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1076
1076
|
}
|
|
1077
|
-
export declare class
|
|
1077
|
+
export declare class AxiosAssetResourceClient extends AssetResourceClient<Axios.AxiosRequestConfig> {
|
|
1078
1078
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1079
1079
|
}
|
|
1080
|
-
export declare class
|
|
1080
|
+
export declare class AxiosGatewayClientResourceClient extends GatewayClientResourceClient<Axios.AxiosRequestConfig> {
|
|
1081
1081
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1082
1082
|
}
|
|
1083
1083
|
export declare class AxiosRulesResourceClient extends RulesResourceClient<Axios.AxiosRequestConfig> {
|
|
1084
1084
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1085
1085
|
}
|
|
1086
|
-
export declare class
|
|
1086
|
+
export declare class AxiosConsoleResourceClient extends ConsoleResourceClient<Axios.AxiosRequestConfig> {
|
|
1087
1087
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1088
1088
|
}
|
|
1089
|
-
export declare class
|
|
1089
|
+
export declare class AxiosAssetModelResourceClient extends AssetModelResourceClient<Axios.AxiosRequestConfig> {
|
|
1090
1090
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1091
1091
|
}
|
|
1092
1092
|
//# sourceMappingURL=restclient.d.ts.map
|