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