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