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