@openremote/rest 1.3.0-snapshot.20250203163248 → 1.3.0-snapshot.20250206081341
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/umd/index.bundle.js +1 -1
- package/dist/umd/index.js +1 -1
- package/lib/restclient.d.ts +485 -485
- 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,115 +9,38 @@ export interface HttpClient<O> {
|
|
|
9
9
|
options?: O;
|
|
10
10
|
}): RestResponse<R>;
|
|
11
11
|
}
|
|
12
|
-
export declare class
|
|
12
|
+
export declare class AssetPredictedDatapointResourceClient<O> {
|
|
13
13
|
protected httpClient: HttpClient<O>;
|
|
14
14
|
constructor(httpClient: HttpClient<O>);
|
|
15
15
|
/**
|
|
16
|
-
* HTTP
|
|
17
|
-
* Java method: org.openremote.model.
|
|
18
|
-
*/
|
|
19
|
-
getAllNodeDefinitions(options?: O): RestResponse<Model.Node[]>;
|
|
20
|
-
/**
|
|
21
|
-
* HTTP GET /flow/{name}
|
|
22
|
-
* Java method: org.openremote.model.rules.flow.FlowResource.getNodeDefinition
|
|
16
|
+
* HTTP POST /asset/predicted/{assetId}/{attributeName}
|
|
17
|
+
* Java method: org.openremote.model.datapoint.AssetPredictedDatapointResource.getPredictedDatapoints
|
|
23
18
|
*/
|
|
24
|
-
|
|
19
|
+
getPredictedDatapoints(assetId: any, attributeName: any, query: Model.AssetDatapointQueryUnion, options?: O): RestResponse<Model.ValueDatapoint<any>[]>;
|
|
25
20
|
/**
|
|
26
|
-
* HTTP
|
|
27
|
-
* Java method: org.openremote.model.
|
|
21
|
+
* HTTP PUT /asset/predicted/{assetId}/{attributeName}
|
|
22
|
+
* Java method: org.openremote.model.datapoint.AssetPredictedDatapointResource.writePredictedDatapoints
|
|
28
23
|
*/
|
|
29
|
-
|
|
24
|
+
writePredictedDatapoints(assetId: any, attributeName: any, predictedDatapoints: Model.ValueDatapoint<any>[], options?: O): RestResponse<void>;
|
|
30
25
|
}
|
|
31
|
-
export declare class
|
|
26
|
+
export declare class StatusResourceClient<O> {
|
|
32
27
|
protected httpClient: HttpClient<O>;
|
|
33
28
|
constructor(httpClient: HttpClient<O>);
|
|
34
29
|
/**
|
|
35
|
-
* HTTP GET /
|
|
36
|
-
* Java method: org.openremote.model.
|
|
37
|
-
*/
|
|
38
|
-
getAssetDescriptors(queryParams?: {
|
|
39
|
-
parentId?: any;
|
|
40
|
-
parentType?: any;
|
|
41
|
-
}, options?: O): RestResponse<Model.AssetDescriptor[]>;
|
|
42
|
-
/**
|
|
43
|
-
* HTTP GET /model/assetInfo/{assetType}
|
|
44
|
-
* Java method: org.openremote.model.asset.AssetModelResource.getAssetInfo
|
|
45
|
-
*/
|
|
46
|
-
getAssetInfo(assetType: any, queryParams?: {
|
|
47
|
-
parentId?: any;
|
|
48
|
-
}, options?: O): RestResponse<Model.AssetTypeInfo>;
|
|
49
|
-
/**
|
|
50
|
-
* HTTP GET /model/assetInfos
|
|
51
|
-
* Java method: org.openremote.model.asset.AssetModelResource.getAssetInfos
|
|
52
|
-
*/
|
|
53
|
-
getAssetInfos(queryParams?: {
|
|
54
|
-
parentId?: any;
|
|
55
|
-
parentType?: any;
|
|
56
|
-
}, options?: O): RestResponse<Model.AssetTypeInfo[]>;
|
|
57
|
-
/**
|
|
58
|
-
* HTTP GET /model/metaItemDescriptors
|
|
59
|
-
* Java method: org.openremote.model.asset.AssetModelResource.getMetaItemDescriptors
|
|
30
|
+
* HTTP GET /health
|
|
31
|
+
* Java method: org.openremote.model.system.StatusResource.getHealthStatus
|
|
60
32
|
*/
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
}, options?: O): RestResponse<{
|
|
64
|
-
[index: string]: Model.MetaItemDescriptor;
|
|
33
|
+
getHealthStatus(options?: O): RestResponse<{
|
|
34
|
+
[index: string]: any;
|
|
65
35
|
}>;
|
|
66
36
|
/**
|
|
67
|
-
* HTTP GET /
|
|
68
|
-
* Java method: org.openremote.model.
|
|
37
|
+
* HTTP GET /info
|
|
38
|
+
* Java method: org.openremote.model.system.StatusResource.getInfo
|
|
69
39
|
*/
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
}, options?: O): RestResponse<{
|
|
73
|
-
[index: string]: Model.ValueDescriptor;
|
|
40
|
+
getInfo(options?: O): RestResponse<{
|
|
41
|
+
[index: string]: any;
|
|
74
42
|
}>;
|
|
75
43
|
}
|
|
76
|
-
export declare class AssetDatapointResourceClient<O> {
|
|
77
|
-
protected httpClient: HttpClient<O>;
|
|
78
|
-
constructor(httpClient: HttpClient<O>);
|
|
79
|
-
/**
|
|
80
|
-
* HTTP GET /asset/datapoint/export
|
|
81
|
-
* Java method: org.openremote.model.datapoint.AssetDatapointResource.getDatapointExport
|
|
82
|
-
*/
|
|
83
|
-
getDatapointExport(queryParams?: {
|
|
84
|
-
attributeRefs?: any;
|
|
85
|
-
fromTimestamp?: number;
|
|
86
|
-
toTimestamp?: number;
|
|
87
|
-
}, options?: O): RestResponse<any>;
|
|
88
|
-
/**
|
|
89
|
-
* HTTP GET /asset/datapoint/periods
|
|
90
|
-
* Java method: org.openremote.model.datapoint.AssetDatapointResource.getDatapointPeriod
|
|
91
|
-
*/
|
|
92
|
-
getDatapointPeriod(queryParams?: {
|
|
93
|
-
assetId?: any;
|
|
94
|
-
attributeName?: any;
|
|
95
|
-
}, options?: O): RestResponse<Model.DatapointPeriod>;
|
|
96
|
-
/**
|
|
97
|
-
* HTTP POST /asset/datapoint/{assetId}/{attributeName}
|
|
98
|
-
* Java method: org.openremote.model.datapoint.AssetDatapointResource.getDatapoints
|
|
99
|
-
*/
|
|
100
|
-
getDatapoints(assetId: any, attributeName: any, query: Model.AssetDatapointQueryUnion, options?: O): RestResponse<Model.ValueDatapoint<any>[]>;
|
|
101
|
-
}
|
|
102
|
-
export declare class AppResourceClient<O> {
|
|
103
|
-
protected httpClient: HttpClient<O>;
|
|
104
|
-
constructor(httpClient: HttpClient<O>);
|
|
105
|
-
/**
|
|
106
|
-
* HTTP GET /apps
|
|
107
|
-
* Java method: org.openremote.model.apps.AppResource.getApps
|
|
108
|
-
*/
|
|
109
|
-
getApps(options?: O): RestResponse<any[]>;
|
|
110
|
-
/**
|
|
111
|
-
* HTTP GET /apps/consoleConfig
|
|
112
|
-
* Java method: org.openremote.model.apps.AppResource.getConsoleConfig
|
|
113
|
-
*/
|
|
114
|
-
getConsoleConfig(options?: O): RestResponse<any>;
|
|
115
|
-
/**
|
|
116
|
-
* HTTP GET /apps/info
|
|
117
|
-
* Java method: org.openremote.model.apps.AppResource.getAppInfos
|
|
118
|
-
*/
|
|
119
|
-
getAppInfos(options?: O): RestResponse<any>;
|
|
120
|
-
}
|
|
121
44
|
export declare class RealmResourceClient<O> {
|
|
122
45
|
protected httpClient: HttpClient<O>;
|
|
123
46
|
constructor(httpClient: HttpClient<O>);
|
|
@@ -181,208 +104,226 @@ export declare class GatewayServiceResourceClient<O> {
|
|
|
181
104
|
*/
|
|
182
105
|
getActiveTunnelInfo(realm: any, id: any, target: any, targetPort: number, options?: O): RestResponse<Model.GatewayTunnelInfo>;
|
|
183
106
|
}
|
|
184
|
-
export declare class
|
|
107
|
+
export declare class UserResourceClient<O> {
|
|
185
108
|
protected httpClient: HttpClient<O>;
|
|
186
109
|
constructor(httpClient: HttpClient<O>);
|
|
187
110
|
/**
|
|
188
|
-
* HTTP
|
|
189
|
-
* Java method: org.openremote.model.
|
|
111
|
+
* HTTP PUT /user/locale
|
|
112
|
+
* Java method: org.openremote.model.security.UserResource.updateCurrentUserLocale
|
|
190
113
|
*/
|
|
191
|
-
|
|
114
|
+
updateCurrentUserLocale(locale: any, options?: O): RestResponse<void>;
|
|
192
115
|
/**
|
|
193
|
-
* HTTP
|
|
194
|
-
* Java method: org.openremote.model.
|
|
116
|
+
* HTTP POST /user/query
|
|
117
|
+
* Java method: org.openremote.model.security.UserResource.query
|
|
195
118
|
*/
|
|
196
|
-
|
|
197
|
-
assetId?: any[];
|
|
198
|
-
}, options?: O): RestResponse<void>;
|
|
119
|
+
query(query: Model.UserQuery, options?: O): RestResponse<Model.User[]>;
|
|
199
120
|
/**
|
|
200
|
-
* HTTP
|
|
201
|
-
* Java method: org.openremote.model.
|
|
121
|
+
* HTTP GET /user/user
|
|
122
|
+
* Java method: org.openremote.model.security.UserResource.getCurrent
|
|
202
123
|
*/
|
|
203
|
-
|
|
124
|
+
getCurrent(options?: O): RestResponse<Model.User>;
|
|
204
125
|
/**
|
|
205
|
-
* HTTP
|
|
206
|
-
* Java method: org.openremote.model.
|
|
126
|
+
* HTTP GET /user/userRealmRoles
|
|
127
|
+
* Java method: org.openremote.model.security.UserResource.getCurrentUserRealmRoles
|
|
207
128
|
*/
|
|
208
|
-
|
|
129
|
+
getCurrentUserRealmRoles(options?: O): RestResponse<Model.Role[]>;
|
|
209
130
|
/**
|
|
210
|
-
* HTTP
|
|
211
|
-
* Java method: org.openremote.model.
|
|
131
|
+
* HTTP GET /user/userRoles
|
|
132
|
+
* Java method: org.openremote.model.security.UserResource.getCurrentUserRoles
|
|
212
133
|
*/
|
|
213
|
-
|
|
214
|
-
assetIds?: any[];
|
|
215
|
-
}, options?: O): RestResponse<void>;
|
|
134
|
+
getCurrentUserRoles(options?: O): RestResponse<Model.Role[]>;
|
|
216
135
|
/**
|
|
217
|
-
* HTTP GET /
|
|
218
|
-
* Java method: org.openremote.model.
|
|
136
|
+
* HTTP GET /user/userRoles/{clientId}
|
|
137
|
+
* Java method: org.openremote.model.security.UserResource.getCurrentUserClientRoles
|
|
219
138
|
*/
|
|
220
|
-
|
|
139
|
+
getCurrentUserClientRoles(clientId: any, options?: O): RestResponse<Model.Role[]>;
|
|
221
140
|
/**
|
|
222
|
-
* HTTP
|
|
223
|
-
* Java method: org.openremote.model.
|
|
141
|
+
* HTTP GET /user/{realm}/disconnect/{sessionID}
|
|
142
|
+
* Java method: org.openremote.model.security.UserResource.disconnectUserSession
|
|
224
143
|
*/
|
|
225
|
-
|
|
144
|
+
disconnectUserSession(realm: any, sessionID: any, options?: O): RestResponse<void>;
|
|
226
145
|
/**
|
|
227
|
-
* HTTP
|
|
228
|
-
* Java method: org.openremote.model.
|
|
146
|
+
* HTTP PUT /user/{realm}/reset-password/{userId}
|
|
147
|
+
* Java method: org.openremote.model.security.UserResource.resetPassword
|
|
229
148
|
*/
|
|
230
|
-
|
|
149
|
+
resetPassword(realm: any, userId: any, credential: Model.Credential, options?: O): RestResponse<void>;
|
|
231
150
|
/**
|
|
232
|
-
* HTTP
|
|
233
|
-
* Java method: org.openremote.model.
|
|
151
|
+
* HTTP GET /user/{realm}/reset-secret/{userId}
|
|
152
|
+
* Java method: org.openremote.model.security.UserResource.resetSecret
|
|
234
153
|
*/
|
|
235
|
-
|
|
154
|
+
resetSecret(realm: any, userId: any, options?: O): RestResponse<any>;
|
|
236
155
|
/**
|
|
237
|
-
* HTTP GET /
|
|
238
|
-
* Java method: org.openremote.model.
|
|
156
|
+
* HTTP GET /user/{realm}/roles
|
|
157
|
+
* Java method: org.openremote.model.security.UserResource.getRoles
|
|
239
158
|
*/
|
|
240
|
-
|
|
241
|
-
realm?: any;
|
|
242
|
-
userId?: any;
|
|
243
|
-
assetId?: any;
|
|
244
|
-
}, options?: O): RestResponse<Model.UserAssetLink[]>;
|
|
159
|
+
getRoles(realm: any, options?: O): RestResponse<Model.Role[]>;
|
|
245
160
|
/**
|
|
246
|
-
* HTTP
|
|
247
|
-
* Java method: org.openremote.model.
|
|
161
|
+
* HTTP PUT /user/{realm}/roles
|
|
162
|
+
* Java method: org.openremote.model.security.UserResource.updateRoles
|
|
248
163
|
*/
|
|
249
|
-
|
|
164
|
+
updateRoles(realm: any, roles: Model.Role[], options?: O): RestResponse<void>;
|
|
250
165
|
/**
|
|
251
|
-
* HTTP
|
|
252
|
-
* Java method: org.openremote.model.
|
|
166
|
+
* HTTP GET /user/{realm}/userRealmRoles/{userId}
|
|
167
|
+
* Java method: org.openremote.model.security.UserResource.getUserRealmRoles
|
|
253
168
|
*/
|
|
254
|
-
|
|
169
|
+
getUserRealmRoles(realm: any, userId: any, options?: O): RestResponse<Model.Role[]>;
|
|
255
170
|
/**
|
|
256
|
-
* HTTP
|
|
257
|
-
* Java method: org.openremote.model.
|
|
171
|
+
* HTTP PUT /user/{realm}/userRealmRoles/{userId}
|
|
172
|
+
* Java method: org.openremote.model.security.UserResource.updateUserRealmRoles
|
|
258
173
|
*/
|
|
259
|
-
|
|
174
|
+
updateUserRealmRoles(realm: any, userId: any, roles: Model.Role[], options?: O): RestResponse<void>;
|
|
260
175
|
/**
|
|
261
|
-
* HTTP GET /
|
|
262
|
-
* Java method: org.openremote.model.
|
|
176
|
+
* HTTP GET /user/{realm}/userRoles/{userId}
|
|
177
|
+
* Java method: org.openremote.model.security.UserResource.getUserRoles
|
|
263
178
|
*/
|
|
264
|
-
|
|
179
|
+
getUserRoles(realm: any, userId: any, options?: O): RestResponse<Model.Role[]>;
|
|
265
180
|
/**
|
|
266
|
-
* HTTP PUT /
|
|
267
|
-
* Java method: org.openremote.model.
|
|
181
|
+
* HTTP PUT /user/{realm}/userRoles/{userId}
|
|
182
|
+
* Java method: org.openremote.model.security.UserResource.updateUserRoles
|
|
268
183
|
*/
|
|
269
|
-
|
|
184
|
+
updateUserRoles(realm: any, userId: any, roles: Model.Role[], options?: O): RestResponse<void>;
|
|
270
185
|
/**
|
|
271
|
-
* HTTP
|
|
272
|
-
* Java method: org.openremote.model.
|
|
186
|
+
* HTTP GET /user/{realm}/userRoles/{userId}/{clientId}
|
|
187
|
+
* Java method: org.openremote.model.security.UserResource.getUserClientRoles
|
|
273
188
|
*/
|
|
274
|
-
|
|
189
|
+
getUserClientRoles(realm: any, userId: any, clientId: any, options?: O): RestResponse<Model.Role[]>;
|
|
275
190
|
/**
|
|
276
|
-
* HTTP PUT /
|
|
277
|
-
* Java method: org.openremote.model.
|
|
191
|
+
* HTTP PUT /user/{realm}/userRoles/{userId}/{clientId}
|
|
192
|
+
* Java method: org.openremote.model.security.UserResource.updateUserClientRoles
|
|
278
193
|
*/
|
|
279
|
-
|
|
194
|
+
updateUserClientRoles(realm: any, userId: any, clientId: any, roles: Model.Role[], options?: O): RestResponse<void>;
|
|
280
195
|
/**
|
|
281
|
-
* HTTP
|
|
282
|
-
* Java method: org.openremote.model.
|
|
196
|
+
* HTTP GET /user/{realm}/userSessions/{userId}
|
|
197
|
+
* Java method: org.openremote.model.security.UserResource.getUserSessions
|
|
283
198
|
*/
|
|
284
|
-
|
|
285
|
-
assetIds?: any[];
|
|
286
|
-
}, options?: O): RestResponse<void>;
|
|
287
|
-
}
|
|
288
|
-
export declare class ConsoleResourceClient<O> {
|
|
289
|
-
protected httpClient: HttpClient<O>;
|
|
290
|
-
constructor(httpClient: HttpClient<O>);
|
|
199
|
+
getUserSessions(realm: any, userId: any, options?: O): RestResponse<Model.UserSession[]>;
|
|
291
200
|
/**
|
|
292
|
-
* HTTP POST /
|
|
293
|
-
* Java method: org.openremote.model.
|
|
201
|
+
* HTTP POST /user/{realm}/users
|
|
202
|
+
* Java method: org.openremote.model.security.UserResource.create
|
|
294
203
|
*/
|
|
295
|
-
|
|
296
|
-
}
|
|
297
|
-
export declare class ConfigurationResourceClient<O> {
|
|
298
|
-
protected httpClient: HttpClient<O>;
|
|
299
|
-
constructor(httpClient: HttpClient<O>);
|
|
204
|
+
create(realm: any, user: Model.User, options?: O): RestResponse<Model.User>;
|
|
300
205
|
/**
|
|
301
|
-
* HTTP
|
|
302
|
-
* Java method: org.openremote.model.
|
|
206
|
+
* HTTP PUT /user/{realm}/users
|
|
207
|
+
* Java method: org.openremote.model.security.UserResource.update
|
|
303
208
|
*/
|
|
304
|
-
|
|
209
|
+
update(realm: any, user: Model.User, options?: O): RestResponse<Model.User>;
|
|
305
210
|
/**
|
|
306
|
-
* HTTP
|
|
307
|
-
* Java method: org.openremote.model.
|
|
211
|
+
* HTTP DELETE /user/{realm}/users/{userId}
|
|
212
|
+
* Java method: org.openremote.model.security.UserResource.delete
|
|
308
213
|
*/
|
|
309
|
-
|
|
214
|
+
delete(realm: any, userId: any, options?: O): RestResponse<void>;
|
|
310
215
|
/**
|
|
311
|
-
* HTTP
|
|
312
|
-
* Java method: org.openremote.model.
|
|
216
|
+
* HTTP GET /user/{realm}/{clientId}/roles
|
|
217
|
+
* Java method: org.openremote.model.security.UserResource.getClientRoles
|
|
313
218
|
*/
|
|
314
|
-
|
|
315
|
-
path?: any;
|
|
316
|
-
}, options?: O): RestResponse<any>;
|
|
219
|
+
getClientRoles(realm: any, clientId: any, options?: O): RestResponse<Model.Role[]>;
|
|
317
220
|
/**
|
|
318
|
-
* HTTP
|
|
319
|
-
* Java method: org.openremote.model.
|
|
221
|
+
* HTTP PUT /user/{realm}/{clientId}/roles
|
|
222
|
+
* Java method: org.openremote.model.security.UserResource.updateClientRoles
|
|
320
223
|
*/
|
|
321
|
-
|
|
224
|
+
updateClientRoles(realm: any, clientId: any, roles: Model.Role[], options?: O): RestResponse<void>;
|
|
225
|
+
/**
|
|
226
|
+
* HTTP GET /user/{realm}/{userId}
|
|
227
|
+
* Java method: org.openremote.model.security.UserResource.get
|
|
228
|
+
*/
|
|
229
|
+
get(realm: any, userId: any, options?: O): RestResponse<Model.User>;
|
|
322
230
|
}
|
|
323
|
-
export declare class
|
|
231
|
+
export declare class AssetDatapointResourceClient<O> {
|
|
324
232
|
protected httpClient: HttpClient<O>;
|
|
325
233
|
constructor(httpClient: HttpClient<O>);
|
|
326
234
|
/**
|
|
327
|
-
* HTTP GET /
|
|
328
|
-
* Java method: org.openremote.model.
|
|
235
|
+
* HTTP GET /asset/datapoint/export
|
|
236
|
+
* Java method: org.openremote.model.datapoint.AssetDatapointResource.getDatapointExport
|
|
329
237
|
*/
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
238
|
+
getDatapointExport(queryParams?: {
|
|
239
|
+
attributeRefs?: any;
|
|
240
|
+
fromTimestamp?: number;
|
|
241
|
+
toTimestamp?: number;
|
|
242
|
+
}, options?: O): RestResponse<any>;
|
|
333
243
|
/**
|
|
334
|
-
* HTTP
|
|
335
|
-
* Java method: org.openremote.model.
|
|
244
|
+
* HTTP GET /asset/datapoint/periods
|
|
245
|
+
* Java method: org.openremote.model.datapoint.AssetDatapointResource.getDatapointPeriod
|
|
336
246
|
*/
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
247
|
+
getDatapointPeriod(queryParams?: {
|
|
248
|
+
assetId?: any;
|
|
249
|
+
attributeName?: any;
|
|
250
|
+
}, options?: O): RestResponse<Model.DatapointPeriod>;
|
|
340
251
|
/**
|
|
341
|
-
* HTTP
|
|
342
|
-
* Java method: org.openremote.model.
|
|
252
|
+
* HTTP POST /asset/datapoint/{assetId}/{attributeName}
|
|
253
|
+
* Java method: org.openremote.model.datapoint.AssetDatapointResource.getDatapoints
|
|
343
254
|
*/
|
|
344
|
-
|
|
345
|
-
parentId?: any;
|
|
346
|
-
realm?: any;
|
|
347
|
-
}, options?: O): RestResponse<Model.Agent[]>;
|
|
255
|
+
getDatapoints(assetId: any, attributeName: any, query: Model.AssetDatapointQueryUnion, options?: O): RestResponse<Model.ValueDatapoint<any>[]>;
|
|
348
256
|
}
|
|
349
|
-
export declare class
|
|
257
|
+
export declare class ConfigurationResourceClient<O> {
|
|
350
258
|
protected httpClient: HttpClient<O>;
|
|
351
259
|
constructor(httpClient: HttpClient<O>);
|
|
352
260
|
/**
|
|
353
|
-
* HTTP
|
|
354
|
-
* Java method: org.openremote.model.
|
|
261
|
+
* HTTP GET /configuration/manager
|
|
262
|
+
* Java method: org.openremote.model.manager.ConfigurationResource.getManagerConfig
|
|
355
263
|
*/
|
|
356
|
-
|
|
264
|
+
getManagerConfig(options?: O): RestResponse<Model.ManagerAppConfig>;
|
|
357
265
|
/**
|
|
358
|
-
* HTTP
|
|
359
|
-
* Java method: org.openremote.model.
|
|
266
|
+
* HTTP PUT /configuration/manager
|
|
267
|
+
* Java method: org.openremote.model.manager.ConfigurationResource.update
|
|
360
268
|
*/
|
|
361
|
-
|
|
269
|
+
update(managerConfiguration: Model.ManagerAppConfig, options?: O): RestResponse<Model.ManagerAppConfig>;
|
|
362
270
|
/**
|
|
363
|
-
* HTTP
|
|
364
|
-
* Java method: org.openremote.model.
|
|
271
|
+
* HTTP POST /configuration/manager/file
|
|
272
|
+
* Java method: org.openremote.model.manager.ConfigurationResource.fileUpload
|
|
365
273
|
*/
|
|
366
|
-
|
|
274
|
+
fileUpload(fileInfo: Model.FileInfo, queryParams?: {
|
|
275
|
+
path?: any;
|
|
276
|
+
}, options?: O): RestResponse<any>;
|
|
367
277
|
/**
|
|
368
|
-
* HTTP
|
|
369
|
-
* Java method: org.openremote.model.
|
|
278
|
+
* HTTP GET /configuration/manager/image/{filename: .+}
|
|
279
|
+
* Java method: org.openremote.model.manager.ConfigurationResource.getManagerConfigImage
|
|
370
280
|
*/
|
|
371
|
-
|
|
281
|
+
getManagerConfigImage(filename: any, options?: O): RestResponse<any>;
|
|
372
282
|
}
|
|
373
|
-
export declare class
|
|
283
|
+
export declare class AssetModelResourceClient<O> {
|
|
374
284
|
protected httpClient: HttpClient<O>;
|
|
375
285
|
constructor(httpClient: HttpClient<O>);
|
|
376
286
|
/**
|
|
377
|
-
* HTTP
|
|
378
|
-
* Java method: org.openremote.model.
|
|
287
|
+
* HTTP GET /model/assetDescriptors
|
|
288
|
+
* Java method: org.openremote.model.asset.AssetModelResource.getAssetDescriptors
|
|
379
289
|
*/
|
|
380
|
-
|
|
290
|
+
getAssetDescriptors(queryParams?: {
|
|
291
|
+
parentId?: any;
|
|
292
|
+
parentType?: any;
|
|
293
|
+
}, options?: O): RestResponse<Model.AssetDescriptor[]>;
|
|
381
294
|
/**
|
|
382
|
-
* HTTP
|
|
383
|
-
* Java method: org.openremote.model.
|
|
295
|
+
* HTTP GET /model/assetInfo/{assetType}
|
|
296
|
+
* Java method: org.openremote.model.asset.AssetModelResource.getAssetInfo
|
|
384
297
|
*/
|
|
385
|
-
|
|
298
|
+
getAssetInfo(assetType: any, queryParams?: {
|
|
299
|
+
parentId?: any;
|
|
300
|
+
}, options?: O): RestResponse<Model.AssetTypeInfo>;
|
|
301
|
+
/**
|
|
302
|
+
* HTTP GET /model/assetInfos
|
|
303
|
+
* Java method: org.openremote.model.asset.AssetModelResource.getAssetInfos
|
|
304
|
+
*/
|
|
305
|
+
getAssetInfos(queryParams?: {
|
|
306
|
+
parentId?: any;
|
|
307
|
+
parentType?: any;
|
|
308
|
+
}, options?: O): RestResponse<Model.AssetTypeInfo[]>;
|
|
309
|
+
/**
|
|
310
|
+
* HTTP GET /model/metaItemDescriptors
|
|
311
|
+
* Java method: org.openremote.model.asset.AssetModelResource.getMetaItemDescriptors
|
|
312
|
+
*/
|
|
313
|
+
getMetaItemDescriptors(queryParams?: {
|
|
314
|
+
parentId?: any;
|
|
315
|
+
}, options?: O): RestResponse<{
|
|
316
|
+
[index: string]: Model.MetaItemDescriptor;
|
|
317
|
+
}>;
|
|
318
|
+
/**
|
|
319
|
+
* HTTP GET /model/valueDescriptors
|
|
320
|
+
* Java method: org.openremote.model.asset.AssetModelResource.getValueDescriptors
|
|
321
|
+
*/
|
|
322
|
+
getValueDescriptors(queryParams?: {
|
|
323
|
+
parentId?: any;
|
|
324
|
+
}, options?: O): RestResponse<{
|
|
325
|
+
[index: string]: Model.ValueDescriptor;
|
|
326
|
+
}>;
|
|
386
327
|
}
|
|
387
328
|
export declare class NotificationResourceClient<O> {
|
|
388
329
|
protected httpClient: HttpClient<O>;
|
|
@@ -468,131 +409,195 @@ export declare class MapResourceClient<O> {
|
|
|
468
409
|
*/
|
|
469
410
|
getTile(zoom: number, column: number, row: number, options?: O): RestResponse<any>;
|
|
470
411
|
}
|
|
471
|
-
export declare class
|
|
412
|
+
export declare class ProvisioningResourceClient<O> {
|
|
472
413
|
protected httpClient: HttpClient<O>;
|
|
473
414
|
constructor(httpClient: HttpClient<O>);
|
|
474
415
|
/**
|
|
475
|
-
* HTTP POST /
|
|
476
|
-
* Java method: org.openremote.model.
|
|
416
|
+
* HTTP POST /provisioning
|
|
417
|
+
* Java method: org.openremote.model.provisioning.ProvisioningResource.createProvisioningConfig
|
|
477
418
|
*/
|
|
478
|
-
|
|
419
|
+
createProvisioningConfig(provisioningConfig: Model.ProvisioningConfigUnion<any, any>, options?: O): RestResponse<number>;
|
|
479
420
|
/**
|
|
480
|
-
* HTTP GET /
|
|
481
|
-
* Java method: org.openremote.model.
|
|
421
|
+
* HTTP GET /provisioning
|
|
422
|
+
* Java method: org.openremote.model.provisioning.ProvisioningResource.getProvisioningConfigs
|
|
482
423
|
*/
|
|
483
|
-
|
|
484
|
-
language?: Model.RulesetLang[];
|
|
485
|
-
fullyPopulate?: boolean;
|
|
486
|
-
}, options?: O): RestResponse<Model.GlobalRuleset[]>;
|
|
424
|
+
getProvisioningConfigs(options?: O): RestResponse<Model.ProvisioningConfigUnion<any, any>[]>;
|
|
487
425
|
/**
|
|
488
|
-
* HTTP
|
|
489
|
-
* Java method: org.openremote.model.
|
|
426
|
+
* HTTP DELETE /provisioning/{id}
|
|
427
|
+
* Java method: org.openremote.model.provisioning.ProvisioningResource.deleteProvisioningConfig
|
|
490
428
|
*/
|
|
491
|
-
|
|
429
|
+
deleteProvisioningConfig(id: any, options?: O): RestResponse<void>;
|
|
492
430
|
/**
|
|
493
|
-
* HTTP
|
|
494
|
-
* Java method: org.openremote.model.
|
|
431
|
+
* HTTP PUT /provisioning/{id}
|
|
432
|
+
* Java method: org.openremote.model.provisioning.ProvisioningResource.updateProvisioningConfig
|
|
495
433
|
*/
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
434
|
+
updateProvisioningConfig(id: any, provisioningConfig: Model.ProvisioningConfigUnion<any, any>, options?: O): RestResponse<void>;
|
|
435
|
+
}
|
|
436
|
+
export declare class DashboardResourceClient<O> {
|
|
437
|
+
protected httpClient: HttpClient<O>;
|
|
438
|
+
constructor(httpClient: HttpClient<O>);
|
|
500
439
|
/**
|
|
501
|
-
* HTTP
|
|
502
|
-
* Java method: org.openremote.model.
|
|
440
|
+
* HTTP POST /dashboard
|
|
441
|
+
* Java method: org.openremote.model.dashboard.DashboardResource.create
|
|
503
442
|
*/
|
|
504
|
-
|
|
443
|
+
create(dashboard: Model.Dashboard, options?: O): RestResponse<Model.Dashboard>;
|
|
505
444
|
/**
|
|
506
|
-
* HTTP
|
|
507
|
-
* Java method: org.openremote.model.
|
|
445
|
+
* HTTP PUT /dashboard
|
|
446
|
+
* Java method: org.openremote.model.dashboard.DashboardResource.update
|
|
508
447
|
*/
|
|
509
|
-
|
|
448
|
+
update(dashboard: Model.Dashboard, options?: O): RestResponse<Model.Dashboard>;
|
|
510
449
|
/**
|
|
511
|
-
* HTTP
|
|
512
|
-
* Java method: org.openremote.model.
|
|
450
|
+
* HTTP GET /dashboard/all/{realm}
|
|
451
|
+
* Java method: org.openremote.model.dashboard.DashboardResource.getAllRealmDashboards
|
|
513
452
|
*/
|
|
514
|
-
|
|
453
|
+
getAllRealmDashboards(realm: any, options?: O): RestResponse<Model.Dashboard[]>;
|
|
515
454
|
/**
|
|
516
|
-
* HTTP
|
|
517
|
-
* Java method: org.openremote.model.
|
|
455
|
+
* HTTP POST /dashboard/query
|
|
456
|
+
* Java method: org.openremote.model.dashboard.DashboardResource.query
|
|
518
457
|
*/
|
|
519
|
-
|
|
458
|
+
query(dashboardQuery: Model.DashboardQuery, options?: O): RestResponse<Model.Dashboard[]>;
|
|
520
459
|
/**
|
|
521
|
-
* HTTP
|
|
522
|
-
* Java method: org.openremote.model.
|
|
460
|
+
* HTTP DELETE /dashboard/{realm}/{dashboardId}
|
|
461
|
+
* Java method: org.openremote.model.dashboard.DashboardResource.delete
|
|
523
462
|
*/
|
|
524
|
-
|
|
463
|
+
delete(realm: any, dashboardId: any, options?: O): RestResponse<void>;
|
|
525
464
|
/**
|
|
526
|
-
* HTTP GET /
|
|
527
|
-
* Java method: org.openremote.model.
|
|
465
|
+
* HTTP GET /dashboard/{realm}/{dashboardId}
|
|
466
|
+
* Java method: org.openremote.model.dashboard.DashboardResource.get
|
|
528
467
|
*/
|
|
529
|
-
|
|
468
|
+
get(realm: any, dashboardId: any, options?: O): RestResponse<Model.Dashboard>;
|
|
469
|
+
}
|
|
470
|
+
export declare class FlowResourceClient<O> {
|
|
471
|
+
protected httpClient: HttpClient<O>;
|
|
472
|
+
constructor(httpClient: HttpClient<O>);
|
|
530
473
|
/**
|
|
531
|
-
* HTTP GET /
|
|
532
|
-
* Java method: org.openremote.model.rules.
|
|
474
|
+
* HTTP GET /flow
|
|
475
|
+
* Java method: org.openremote.model.rules.flow.FlowResource.getAllNodeDefinitions
|
|
533
476
|
*/
|
|
534
|
-
|
|
477
|
+
getAllNodeDefinitions(options?: O): RestResponse<Model.Node[]>;
|
|
535
478
|
/**
|
|
536
|
-
* HTTP
|
|
537
|
-
* Java method: org.openremote.model.rules.
|
|
479
|
+
* HTTP GET /flow/{name}
|
|
480
|
+
* Java method: org.openremote.model.rules.flow.FlowResource.getNodeDefinition
|
|
538
481
|
*/
|
|
539
|
-
|
|
482
|
+
getNodeDefinition(name: any, options?: O): RestResponse<Model.Node>;
|
|
540
483
|
/**
|
|
541
|
-
* HTTP GET /
|
|
542
|
-
* Java method: org.openremote.model.rules.
|
|
484
|
+
* HTTP GET /flow/{type}
|
|
485
|
+
* Java method: org.openremote.model.rules.flow.FlowResource.getAllNodeDefinitionsByType
|
|
543
486
|
*/
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
487
|
+
getAllNodeDefinitionsByType(type: Model.NodeType, options?: O): RestResponse<Model.Node[]>;
|
|
488
|
+
}
|
|
489
|
+
export declare class AssetResourceClient<O> {
|
|
490
|
+
protected httpClient: HttpClient<O>;
|
|
491
|
+
constructor(httpClient: HttpClient<O>);
|
|
548
492
|
/**
|
|
549
|
-
* HTTP
|
|
550
|
-
* Java method: org.openremote.model.
|
|
493
|
+
* HTTP POST /asset
|
|
494
|
+
* Java method: org.openremote.model.asset.AssetResource.create
|
|
551
495
|
*/
|
|
552
|
-
|
|
496
|
+
create(asset: Model.Asset, options?: O): RestResponse<Model.Asset>;
|
|
553
497
|
/**
|
|
554
|
-
* HTTP
|
|
555
|
-
* Java method: org.openremote.model.
|
|
498
|
+
* HTTP DELETE /asset
|
|
499
|
+
* Java method: org.openremote.model.asset.AssetResource.delete
|
|
556
500
|
*/
|
|
557
|
-
|
|
501
|
+
delete(queryParams?: {
|
|
502
|
+
assetId?: any[];
|
|
503
|
+
}, options?: O): RestResponse<void>;
|
|
558
504
|
/**
|
|
559
|
-
* HTTP PUT /
|
|
560
|
-
* Java method: org.openremote.model.
|
|
505
|
+
* HTTP PUT /asset/attributes
|
|
506
|
+
* Java method: org.openremote.model.asset.AssetResource.writeAttributeValues
|
|
561
507
|
*/
|
|
562
|
-
|
|
508
|
+
writeAttributeValues(attributeStates: Model.AttributeState[], options?: O): RestResponse<Model.AttributeWriteResult[]>;
|
|
563
509
|
/**
|
|
564
|
-
* HTTP
|
|
565
|
-
* Java method: org.openremote.model.
|
|
510
|
+
* HTTP PUT /asset/attributes/timestamp
|
|
511
|
+
* Java method: org.openremote.model.asset.AssetResource.writeAttributeEvents
|
|
566
512
|
*/
|
|
567
|
-
|
|
513
|
+
writeAttributeEvents(attributeEvents: Model.AttributeEvent[], options?: O): RestResponse<Model.AttributeWriteResult[]>;
|
|
568
514
|
/**
|
|
569
|
-
* HTTP
|
|
570
|
-
* Java method: org.openremote.model.
|
|
515
|
+
* HTTP DELETE /asset/parent
|
|
516
|
+
* Java method: org.openremote.model.asset.AssetResource.updateNoneParent
|
|
571
517
|
*/
|
|
572
|
-
|
|
518
|
+
updateNoneParent(queryParams?: {
|
|
519
|
+
assetIds?: any[];
|
|
520
|
+
}, options?: O): RestResponse<void>;
|
|
573
521
|
/**
|
|
574
|
-
* HTTP
|
|
575
|
-
* Java method: org.openremote.model.
|
|
522
|
+
* HTTP GET /asset/partial/{assetId}
|
|
523
|
+
* Java method: org.openremote.model.asset.AssetResource.getPartial
|
|
576
524
|
*/
|
|
577
|
-
|
|
525
|
+
getPartial(assetId: any, options?: O): RestResponse<Model.Asset>;
|
|
526
|
+
/**
|
|
527
|
+
* HTTP POST /asset/query
|
|
528
|
+
* Java method: org.openremote.model.asset.AssetResource.queryAssets
|
|
529
|
+
*/
|
|
530
|
+
queryAssets(query: Model.AssetQuery, options?: O): RestResponse<Model.Asset[]>;
|
|
531
|
+
/**
|
|
532
|
+
* HTTP GET /asset/user/current
|
|
533
|
+
* Java method: org.openremote.model.asset.AssetResource.getCurrentUserAssets
|
|
534
|
+
*/
|
|
535
|
+
getCurrentUserAssets(options?: O): RestResponse<Model.Asset[]>;
|
|
536
|
+
/**
|
|
537
|
+
* HTTP POST /asset/user/link
|
|
538
|
+
* Java method: org.openremote.model.asset.AssetResource.createUserAssetLinks
|
|
539
|
+
*/
|
|
540
|
+
createUserAssetLinks(userAssets: Model.UserAssetLink[], options?: O): RestResponse<void>;
|
|
541
|
+
/**
|
|
542
|
+
* HTTP GET /asset/user/link
|
|
543
|
+
* Java method: org.openremote.model.asset.AssetResource.getUserAssetLinks
|
|
544
|
+
*/
|
|
545
|
+
getUserAssetLinks(queryParams?: {
|
|
546
|
+
realm?: any;
|
|
547
|
+
userId?: any;
|
|
548
|
+
assetId?: any;
|
|
549
|
+
}, options?: O): RestResponse<Model.UserAssetLink[]>;
|
|
550
|
+
/**
|
|
551
|
+
* HTTP POST /asset/user/link/delete
|
|
552
|
+
* Java method: org.openremote.model.asset.AssetResource.deleteUserAssetLinks
|
|
553
|
+
*/
|
|
554
|
+
deleteUserAssetLinks(userAssets: Model.UserAssetLink[], options?: O): RestResponse<void>;
|
|
555
|
+
/**
|
|
556
|
+
* HTTP DELETE /asset/user/link/{realm}/{userId}
|
|
557
|
+
* Java method: org.openremote.model.asset.AssetResource.deleteAllUserAssetLinks
|
|
558
|
+
*/
|
|
559
|
+
deleteAllUserAssetLinks(realm: any, userId: any, options?: O): RestResponse<void>;
|
|
560
|
+
/**
|
|
561
|
+
* HTTP DELETE /asset/user/link/{realm}/{userId}/{assetId}
|
|
562
|
+
* Java method: org.openremote.model.asset.AssetResource.deleteUserAssetLink
|
|
563
|
+
*/
|
|
564
|
+
deleteUserAssetLink(realm: any, userId: any, assetId: any, options?: O): RestResponse<void>;
|
|
565
|
+
/**
|
|
566
|
+
* HTTP GET /asset/{assetId}
|
|
567
|
+
* Java method: org.openremote.model.asset.AssetResource.get
|
|
568
|
+
*/
|
|
569
|
+
get(assetId: any, options?: O): RestResponse<Model.Asset>;
|
|
570
|
+
/**
|
|
571
|
+
* HTTP PUT /asset/{assetId}
|
|
572
|
+
* Java method: org.openremote.model.asset.AssetResource.update
|
|
573
|
+
*/
|
|
574
|
+
update(assetId: any, asset: Model.Asset, options?: O): RestResponse<Model.Asset>;
|
|
575
|
+
/**
|
|
576
|
+
* HTTP PUT /asset/{assetId}/attribute/{attributeName}
|
|
577
|
+
* Java method: org.openremote.model.asset.AssetResource.writeAttributeValue
|
|
578
|
+
*/
|
|
579
|
+
writeAttributeValue$PUT$asset_assetId_attribute_attributeName(assetId: any, attributeName: any, value: any, options?: O): RestResponse<Model.AttributeWriteResult>;
|
|
580
|
+
/**
|
|
581
|
+
* HTTP PUT /asset/{assetId}/attribute/{attributeName}/{timestamp}
|
|
582
|
+
* Java method: org.openremote.model.asset.AssetResource.writeAttributeValue
|
|
583
|
+
*/
|
|
584
|
+
writeAttributeValue$PUT$asset_assetId_attribute_attributeName_timestamp(assetId: any, attributeName: any, timestamp: any, value: any, options?: O): RestResponse<Model.AttributeWriteResult>;
|
|
585
|
+
/**
|
|
586
|
+
* HTTP PUT /asset/{parentAssetId}/child
|
|
587
|
+
* Java method: org.openremote.model.asset.AssetResource.updateParent
|
|
588
|
+
*/
|
|
589
|
+
updateParent(parentAssetId: any, queryParams?: {
|
|
590
|
+
assetIds?: any[];
|
|
591
|
+
}, options?: O): RestResponse<void>;
|
|
578
592
|
}
|
|
579
|
-
export declare class
|
|
593
|
+
export declare class ConsoleResourceClient<O> {
|
|
580
594
|
protected httpClient: HttpClient<O>;
|
|
581
595
|
constructor(httpClient: HttpClient<O>);
|
|
582
596
|
/**
|
|
583
|
-
* HTTP
|
|
584
|
-
* Java method: org.openremote.model.
|
|
585
|
-
*/
|
|
586
|
-
getHealthStatus(options?: O): RestResponse<{
|
|
587
|
-
[index: string]: any;
|
|
588
|
-
}>;
|
|
589
|
-
/**
|
|
590
|
-
* HTTP GET /info
|
|
591
|
-
* Java method: org.openremote.model.system.StatusResource.getInfo
|
|
597
|
+
* HTTP POST /console/register
|
|
598
|
+
* Java method: org.openremote.model.console.ConsoleResource.register
|
|
592
599
|
*/
|
|
593
|
-
|
|
594
|
-
[index: string]: any;
|
|
595
|
-
}>;
|
|
600
|
+
register(consoleRegistration: Model.ConsoleRegistration, options?: O): RestResponse<Model.ConsoleRegistration>;
|
|
596
601
|
}
|
|
597
602
|
export declare class GatewayClientResourceClient<O> {
|
|
598
603
|
protected httpClient: HttpClient<O>;
|
|
@@ -630,195 +635,158 @@ export declare class GatewayClientResourceClient<O> {
|
|
|
630
635
|
*/
|
|
631
636
|
getConnectionStatus(realm: any, options?: O): RestResponse<Model.ConnectionStatus>;
|
|
632
637
|
}
|
|
633
|
-
export declare class
|
|
638
|
+
export declare class AppResourceClient<O> {
|
|
634
639
|
protected httpClient: HttpClient<O>;
|
|
635
640
|
constructor(httpClient: HttpClient<O>);
|
|
636
641
|
/**
|
|
637
|
-
* HTTP
|
|
638
|
-
* Java method: org.openremote.model.
|
|
639
|
-
*/
|
|
640
|
-
updateCurrentUserLocale(locale: any, options?: O): RestResponse<void>;
|
|
641
|
-
/**
|
|
642
|
-
* HTTP POST /user/query
|
|
643
|
-
* Java method: org.openremote.model.security.UserResource.query
|
|
644
|
-
*/
|
|
645
|
-
query(query: Model.UserQuery, options?: O): RestResponse<Model.User[]>;
|
|
646
|
-
/**
|
|
647
|
-
* HTTP GET /user/user
|
|
648
|
-
* Java method: org.openremote.model.security.UserResource.getCurrent
|
|
649
|
-
*/
|
|
650
|
-
getCurrent(options?: O): RestResponse<Model.User>;
|
|
651
|
-
/**
|
|
652
|
-
* HTTP GET /user/userRealmRoles
|
|
653
|
-
* Java method: org.openremote.model.security.UserResource.getCurrentUserRealmRoles
|
|
654
|
-
*/
|
|
655
|
-
getCurrentUserRealmRoles(options?: O): RestResponse<Model.Role[]>;
|
|
656
|
-
/**
|
|
657
|
-
* HTTP GET /user/userRoles
|
|
658
|
-
* Java method: org.openremote.model.security.UserResource.getCurrentUserRoles
|
|
659
|
-
*/
|
|
660
|
-
getCurrentUserRoles(options?: O): RestResponse<Model.Role[]>;
|
|
661
|
-
/**
|
|
662
|
-
* HTTP GET /user/userRoles/{clientId}
|
|
663
|
-
* Java method: org.openremote.model.security.UserResource.getCurrentUserClientRoles
|
|
664
|
-
*/
|
|
665
|
-
getCurrentUserClientRoles(clientId: any, options?: O): RestResponse<Model.Role[]>;
|
|
666
|
-
/**
|
|
667
|
-
* HTTP GET /user/{realm}/disconnect/{sessionID}
|
|
668
|
-
* Java method: org.openremote.model.security.UserResource.disconnectUserSession
|
|
669
|
-
*/
|
|
670
|
-
disconnectUserSession(realm: any, sessionID: any, options?: O): RestResponse<void>;
|
|
671
|
-
/**
|
|
672
|
-
* HTTP PUT /user/{realm}/reset-password/{userId}
|
|
673
|
-
* Java method: org.openremote.model.security.UserResource.resetPassword
|
|
674
|
-
*/
|
|
675
|
-
resetPassword(realm: any, userId: any, credential: Model.Credential, options?: O): RestResponse<void>;
|
|
676
|
-
/**
|
|
677
|
-
* HTTP GET /user/{realm}/reset-secret/{userId}
|
|
678
|
-
* Java method: org.openremote.model.security.UserResource.resetSecret
|
|
679
|
-
*/
|
|
680
|
-
resetSecret(realm: any, userId: any, options?: O): RestResponse<any>;
|
|
681
|
-
/**
|
|
682
|
-
* HTTP GET /user/{realm}/roles
|
|
683
|
-
* Java method: org.openremote.model.security.UserResource.getRoles
|
|
642
|
+
* HTTP GET /apps
|
|
643
|
+
* Java method: org.openremote.model.apps.AppResource.getApps
|
|
684
644
|
*/
|
|
685
|
-
|
|
645
|
+
getApps(options?: O): RestResponse<any[]>;
|
|
686
646
|
/**
|
|
687
|
-
* HTTP
|
|
688
|
-
* Java method: org.openremote.model.
|
|
647
|
+
* HTTP GET /apps/consoleConfig
|
|
648
|
+
* Java method: org.openremote.model.apps.AppResource.getConsoleConfig
|
|
689
649
|
*/
|
|
690
|
-
|
|
650
|
+
getConsoleConfig(options?: O): RestResponse<any>;
|
|
691
651
|
/**
|
|
692
|
-
* HTTP GET /
|
|
693
|
-
* Java method: org.openremote.model.
|
|
652
|
+
* HTTP GET /apps/info
|
|
653
|
+
* Java method: org.openremote.model.apps.AppResource.getAppInfos
|
|
694
654
|
*/
|
|
695
|
-
|
|
655
|
+
getAppInfos(options?: O): RestResponse<any>;
|
|
656
|
+
}
|
|
657
|
+
export declare class AgentResourceClient<O> {
|
|
658
|
+
protected httpClient: HttpClient<O>;
|
|
659
|
+
constructor(httpClient: HttpClient<O>);
|
|
696
660
|
/**
|
|
697
|
-
* HTTP
|
|
698
|
-
* Java method: org.openremote.model.
|
|
661
|
+
* HTTP GET /agent/assetDiscovery/{agentId}
|
|
662
|
+
* Java method: org.openremote.model.asset.agent.AgentResource.doProtocolAssetDiscovery
|
|
699
663
|
*/
|
|
700
|
-
|
|
664
|
+
doProtocolAssetDiscovery(agentId: any, queryParams?: {
|
|
665
|
+
realm?: any;
|
|
666
|
+
}, options?: O): RestResponse<Model.AssetTreeNode[]>;
|
|
701
667
|
/**
|
|
702
|
-
* HTTP
|
|
703
|
-
* Java method: org.openremote.model.
|
|
668
|
+
* HTTP POST /agent/assetImport/{agentId}
|
|
669
|
+
* Java method: org.openremote.model.asset.agent.AgentResource.doProtocolAssetImport
|
|
704
670
|
*/
|
|
705
|
-
|
|
671
|
+
doProtocolAssetImport(agentId: any, fileInfo: Model.FileInfo, queryParams?: {
|
|
672
|
+
realm?: any;
|
|
673
|
+
}, options?: O): RestResponse<Model.AssetTreeNode[]>;
|
|
706
674
|
/**
|
|
707
|
-
* HTTP
|
|
708
|
-
* Java method: org.openremote.model.
|
|
675
|
+
* HTTP GET /agent/instanceDiscovery/{agentType}
|
|
676
|
+
* Java method: org.openremote.model.asset.agent.AgentResource.doProtocolInstanceDiscovery
|
|
709
677
|
*/
|
|
710
|
-
|
|
678
|
+
doProtocolInstanceDiscovery(agentType: any, queryParams?: {
|
|
679
|
+
parentId?: any;
|
|
680
|
+
realm?: any;
|
|
681
|
+
}, options?: O): RestResponse<Model.Agent[]>;
|
|
682
|
+
}
|
|
683
|
+
export declare class RulesResourceClient<O> {
|
|
684
|
+
protected httpClient: HttpClient<O>;
|
|
685
|
+
constructor(httpClient: HttpClient<O>);
|
|
711
686
|
/**
|
|
712
|
-
* HTTP
|
|
713
|
-
* Java method: org.openremote.model.
|
|
687
|
+
* HTTP POST /rules
|
|
688
|
+
* Java method: org.openremote.model.rules.RulesResource.createGlobalRuleset
|
|
714
689
|
*/
|
|
715
|
-
|
|
690
|
+
createGlobalRuleset(ruleset: Model.GlobalRuleset, options?: O): RestResponse<number>;
|
|
716
691
|
/**
|
|
717
|
-
* HTTP
|
|
718
|
-
* Java method: org.openremote.model.
|
|
692
|
+
* HTTP GET /rules
|
|
693
|
+
* Java method: org.openremote.model.rules.RulesResource.getGlobalRulesets
|
|
719
694
|
*/
|
|
720
|
-
|
|
695
|
+
getGlobalRulesets(queryParams?: {
|
|
696
|
+
language?: Model.RulesetLang[];
|
|
697
|
+
fullyPopulate?: boolean;
|
|
698
|
+
}, options?: O): RestResponse<Model.GlobalRuleset[]>;
|
|
721
699
|
/**
|
|
722
|
-
* HTTP
|
|
723
|
-
* Java method: org.openremote.model.
|
|
700
|
+
* HTTP POST /rules/asset
|
|
701
|
+
* Java method: org.openremote.model.rules.RulesResource.createAssetRuleset
|
|
724
702
|
*/
|
|
725
|
-
|
|
703
|
+
createAssetRuleset(ruleset: Model.AssetRuleset, options?: O): RestResponse<number>;
|
|
726
704
|
/**
|
|
727
|
-
* HTTP
|
|
728
|
-
* Java method: org.openremote.model.
|
|
705
|
+
* HTTP GET /rules/asset/for/{assetId}
|
|
706
|
+
* Java method: org.openremote.model.rules.RulesResource.getAssetRulesets
|
|
729
707
|
*/
|
|
730
|
-
|
|
708
|
+
getAssetRulesets(assetId: any, queryParams?: {
|
|
709
|
+
language?: Model.RulesetLang[];
|
|
710
|
+
fullyPopulate?: boolean;
|
|
711
|
+
}, options?: O): RestResponse<Model.AssetRuleset[]>;
|
|
731
712
|
/**
|
|
732
|
-
* HTTP
|
|
733
|
-
* Java method: org.openremote.model.
|
|
713
|
+
* HTTP DELETE /rules/asset/{id}
|
|
714
|
+
* Java method: org.openremote.model.rules.RulesResource.deleteAssetRuleset
|
|
734
715
|
*/
|
|
735
|
-
|
|
716
|
+
deleteAssetRuleset(id: any, options?: O): RestResponse<void>;
|
|
736
717
|
/**
|
|
737
|
-
* HTTP
|
|
738
|
-
* Java method: org.openremote.model.
|
|
718
|
+
* HTTP GET /rules/asset/{id}
|
|
719
|
+
* Java method: org.openremote.model.rules.RulesResource.getAssetRuleset
|
|
739
720
|
*/
|
|
740
|
-
|
|
721
|
+
getAssetRuleset(id: any, options?: O): RestResponse<Model.AssetRuleset>;
|
|
741
722
|
/**
|
|
742
|
-
* HTTP
|
|
743
|
-
* Java method: org.openremote.model.
|
|
723
|
+
* HTTP PUT /rules/asset/{id}
|
|
724
|
+
* Java method: org.openremote.model.rules.RulesResource.updateAssetRuleset
|
|
744
725
|
*/
|
|
745
|
-
|
|
726
|
+
updateAssetRuleset(id: any, ruleset: Model.AssetRuleset, options?: O): RestResponse<void>;
|
|
746
727
|
/**
|
|
747
|
-
* HTTP
|
|
748
|
-
* Java method: org.openremote.model.
|
|
728
|
+
* HTTP GET /rules/geofences/{assetId}
|
|
729
|
+
* Java method: org.openremote.model.rules.RulesResource.getAssetGeofences
|
|
749
730
|
*/
|
|
750
|
-
|
|
731
|
+
getAssetGeofences(assetId: any, options?: O): RestResponse<Model.GeofenceDefinition[]>;
|
|
751
732
|
/**
|
|
752
|
-
* HTTP GET /
|
|
753
|
-
* Java method: org.openremote.model.
|
|
733
|
+
* HTTP GET /rules/info/asset/{assetId}
|
|
734
|
+
* Java method: org.openremote.model.rules.RulesResource.getAssetEngineInfo
|
|
754
735
|
*/
|
|
755
|
-
|
|
756
|
-
}
|
|
757
|
-
export declare class SyslogResourceClient<O> {
|
|
758
|
-
protected httpClient: HttpClient<O>;
|
|
759
|
-
constructor(httpClient: HttpClient<O>);
|
|
736
|
+
getAssetEngineInfo(assetId: any, options?: O): RestResponse<Model.RulesEngineInfo>;
|
|
760
737
|
/**
|
|
761
|
-
* HTTP GET /
|
|
762
|
-
* Java method: org.openremote.model.
|
|
738
|
+
* HTTP GET /rules/info/global
|
|
739
|
+
* Java method: org.openremote.model.rules.RulesResource.getGlobalEngineInfo
|
|
763
740
|
*/
|
|
764
|
-
|
|
741
|
+
getGlobalEngineInfo(options?: O): RestResponse<Model.RulesEngineInfo>;
|
|
765
742
|
/**
|
|
766
|
-
* HTTP
|
|
767
|
-
* Java method: org.openremote.model.
|
|
743
|
+
* HTTP GET /rules/info/realm/{realm}
|
|
744
|
+
* Java method: org.openremote.model.rules.RulesResource.getRealmEngineInfo
|
|
768
745
|
*/
|
|
769
|
-
|
|
746
|
+
getRealmEngineInfo(realm: any, options?: O): RestResponse<Model.RulesEngineInfo>;
|
|
770
747
|
/**
|
|
771
|
-
* HTTP
|
|
772
|
-
* Java method: org.openremote.model.
|
|
748
|
+
* HTTP POST /rules/realm
|
|
749
|
+
* Java method: org.openremote.model.rules.RulesResource.createRealmRuleset
|
|
773
750
|
*/
|
|
774
|
-
|
|
751
|
+
createRealmRuleset(ruleset: Model.RealmRuleset, options?: O): RestResponse<number>;
|
|
775
752
|
/**
|
|
776
|
-
* HTTP GET /
|
|
777
|
-
* Java method: org.openremote.model.
|
|
753
|
+
* HTTP GET /rules/realm/for/{realm}
|
|
754
|
+
* Java method: org.openremote.model.rules.RulesResource.getRealmRulesets
|
|
778
755
|
*/
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
from?: any;
|
|
784
|
-
to?: any;
|
|
785
|
-
category?: Model.SyslogCategory[];
|
|
786
|
-
subCategory?: any[];
|
|
787
|
-
}, options?: O): RestResponse<any>;
|
|
788
|
-
}
|
|
789
|
-
export declare class DashboardResourceClient<O> {
|
|
790
|
-
protected httpClient: HttpClient<O>;
|
|
791
|
-
constructor(httpClient: HttpClient<O>);
|
|
756
|
+
getRealmRulesets(realm: any, queryParams?: {
|
|
757
|
+
language?: Model.RulesetLang[];
|
|
758
|
+
fullyPopulate?: boolean;
|
|
759
|
+
}, options?: O): RestResponse<Model.RealmRuleset[]>;
|
|
792
760
|
/**
|
|
793
|
-
* HTTP
|
|
794
|
-
* Java method: org.openremote.model.
|
|
761
|
+
* HTTP DELETE /rules/realm/{id}
|
|
762
|
+
* Java method: org.openremote.model.rules.RulesResource.deleteRealmRuleset
|
|
795
763
|
*/
|
|
796
|
-
|
|
764
|
+
deleteRealmRuleset(id: any, options?: O): RestResponse<void>;
|
|
797
765
|
/**
|
|
798
|
-
* HTTP
|
|
799
|
-
* Java method: org.openremote.model.
|
|
766
|
+
* HTTP GET /rules/realm/{id}
|
|
767
|
+
* Java method: org.openremote.model.rules.RulesResource.getRealmRuleset
|
|
800
768
|
*/
|
|
801
|
-
|
|
769
|
+
getRealmRuleset(id: any, options?: O): RestResponse<Model.RealmRuleset>;
|
|
802
770
|
/**
|
|
803
|
-
* HTTP
|
|
804
|
-
* Java method: org.openremote.model.
|
|
771
|
+
* HTTP PUT /rules/realm/{id}
|
|
772
|
+
* Java method: org.openremote.model.rules.RulesResource.updateRealmRuleset
|
|
805
773
|
*/
|
|
806
|
-
|
|
774
|
+
updateRealmRuleset(id: any, ruleset: Model.RealmRuleset, options?: O): RestResponse<void>;
|
|
807
775
|
/**
|
|
808
|
-
* HTTP
|
|
809
|
-
* Java method: org.openremote.model.
|
|
776
|
+
* HTTP DELETE /rules/{id}
|
|
777
|
+
* Java method: org.openremote.model.rules.RulesResource.deleteGlobalRuleset
|
|
810
778
|
*/
|
|
811
|
-
|
|
779
|
+
deleteGlobalRuleset(id: any, options?: O): RestResponse<void>;
|
|
812
780
|
/**
|
|
813
|
-
* HTTP
|
|
814
|
-
* Java method: org.openremote.model.
|
|
781
|
+
* HTTP GET /rules/{id}
|
|
782
|
+
* Java method: org.openremote.model.rules.RulesResource.getGlobalRuleset
|
|
815
783
|
*/
|
|
816
|
-
|
|
784
|
+
getGlobalRuleset(id: any, options?: O): RestResponse<Model.GlobalRuleset>;
|
|
817
785
|
/**
|
|
818
|
-
* HTTP
|
|
819
|
-
* Java method: org.openremote.model.
|
|
786
|
+
* HTTP PUT /rules/{id}
|
|
787
|
+
* Java method: org.openremote.model.rules.RulesResource.updateGlobalRuleset
|
|
820
788
|
*/
|
|
821
|
-
|
|
789
|
+
updateGlobalRuleset(id: any, ruleset: Model.GlobalRuleset, options?: O): RestResponse<void>;
|
|
822
790
|
}
|
|
823
791
|
export declare class AlarmResourceClient<O> {
|
|
824
792
|
protected httpClient: HttpClient<O>;
|
|
@@ -873,51 +841,83 @@ export declare class AlarmResourceClient<O> {
|
|
|
873
841
|
realm?: any;
|
|
874
842
|
}, options?: O): RestResponse<Model.AlarmAssetLink[]>;
|
|
875
843
|
}
|
|
844
|
+
export declare class SyslogResourceClient<O> {
|
|
845
|
+
protected httpClient: HttpClient<O>;
|
|
846
|
+
constructor(httpClient: HttpClient<O>);
|
|
847
|
+
/**
|
|
848
|
+
* HTTP GET /syslog/config
|
|
849
|
+
* Java method: org.openremote.model.syslog.SyslogResource.getConfig
|
|
850
|
+
*/
|
|
851
|
+
getConfig(options?: O): RestResponse<Model.SyslogConfig>;
|
|
852
|
+
/**
|
|
853
|
+
* HTTP PUT /syslog/config
|
|
854
|
+
* Java method: org.openremote.model.syslog.SyslogResource.updateConfig
|
|
855
|
+
*/
|
|
856
|
+
updateConfig(config: Model.SyslogConfig, options?: O): RestResponse<void>;
|
|
857
|
+
/**
|
|
858
|
+
* HTTP DELETE /syslog/event
|
|
859
|
+
* Java method: org.openremote.model.syslog.SyslogResource.clearEvents
|
|
860
|
+
*/
|
|
861
|
+
clearEvents(options?: O): RestResponse<void>;
|
|
862
|
+
/**
|
|
863
|
+
* HTTP GET /syslog/event
|
|
864
|
+
* Java method: org.openremote.model.syslog.SyslogResource.getEvents
|
|
865
|
+
*/
|
|
866
|
+
getEvents(queryParams?: {
|
|
867
|
+
level?: Model.SyslogLevel;
|
|
868
|
+
per_page?: any;
|
|
869
|
+
page?: any;
|
|
870
|
+
from?: any;
|
|
871
|
+
to?: any;
|
|
872
|
+
category?: Model.SyslogCategory[];
|
|
873
|
+
subCategory?: any[];
|
|
874
|
+
}, options?: O): RestResponse<any>;
|
|
875
|
+
}
|
|
876
876
|
export type RestResponse<R> = Promise<Axios.GenericAxiosResponse<R>>;
|
|
877
877
|
export declare class ApiClient {
|
|
878
|
-
protected
|
|
879
|
-
protected
|
|
880
|
-
protected _assetDatapointResource: AxiosAssetDatapointResourceClient;
|
|
881
|
-
protected _appResource: AxiosAppResourceClient;
|
|
878
|
+
protected _assetPredictedDatapointResource: AxiosAssetPredictedDatapointResourceClient;
|
|
879
|
+
protected _statusResource: AxiosStatusResourceClient;
|
|
882
880
|
protected _realmResource: AxiosRealmResourceClient;
|
|
883
881
|
protected _gatewayServiceResource: AxiosGatewayServiceResourceClient;
|
|
884
|
-
protected
|
|
885
|
-
protected
|
|
882
|
+
protected _userResource: AxiosUserResourceClient;
|
|
883
|
+
protected _assetDatapointResource: AxiosAssetDatapointResourceClient;
|
|
886
884
|
protected _configurationResource: AxiosConfigurationResourceClient;
|
|
887
|
-
protected
|
|
888
|
-
protected _provisioningResource: AxiosProvisioningResourceClient;
|
|
889
|
-
protected _assetPredictedDatapointResource: AxiosAssetPredictedDatapointResourceClient;
|
|
885
|
+
protected _assetModelResource: AxiosAssetModelResourceClient;
|
|
890
886
|
protected _notificationResource: AxiosNotificationResourceClient;
|
|
891
887
|
protected _mapResource: AxiosMapResourceClient;
|
|
892
|
-
protected
|
|
893
|
-
protected _statusResource: AxiosStatusResourceClient;
|
|
894
|
-
protected _gatewayClientResource: AxiosGatewayClientResourceClient;
|
|
895
|
-
protected _userResource: AxiosUserResourceClient;
|
|
896
|
-
protected _syslogResource: AxiosSyslogResourceClient;
|
|
888
|
+
protected _provisioningResource: AxiosProvisioningResourceClient;
|
|
897
889
|
protected _dashboardResource: AxiosDashboardResourceClient;
|
|
890
|
+
protected _flowResource: AxiosFlowResourceClient;
|
|
891
|
+
protected _assetResource: AxiosAssetResourceClient;
|
|
892
|
+
protected _consoleResource: AxiosConsoleResourceClient;
|
|
893
|
+
protected _gatewayClientResource: AxiosGatewayClientResourceClient;
|
|
894
|
+
protected _appResource: AxiosAppResourceClient;
|
|
895
|
+
protected _agentResource: AxiosAgentResourceClient;
|
|
896
|
+
protected _rulesResource: AxiosRulesResourceClient;
|
|
898
897
|
protected _alarmResource: AxiosAlarmResourceClient;
|
|
898
|
+
protected _syslogResource: AxiosSyslogResourceClient;
|
|
899
899
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
900
|
-
get
|
|
901
|
-
get
|
|
902
|
-
get AssetDatapointResource(): AxiosAssetDatapointResourceClient;
|
|
903
|
-
get AppResource(): AxiosAppResourceClient;
|
|
900
|
+
get AssetPredictedDatapointResource(): AxiosAssetPredictedDatapointResourceClient;
|
|
901
|
+
get StatusResource(): AxiosStatusResourceClient;
|
|
904
902
|
get RealmResource(): AxiosRealmResourceClient;
|
|
905
903
|
get GatewayServiceResource(): AxiosGatewayServiceResourceClient;
|
|
906
|
-
get
|
|
907
|
-
get
|
|
904
|
+
get UserResource(): AxiosUserResourceClient;
|
|
905
|
+
get AssetDatapointResource(): AxiosAssetDatapointResourceClient;
|
|
908
906
|
get ConfigurationResource(): AxiosConfigurationResourceClient;
|
|
909
|
-
get
|
|
910
|
-
get ProvisioningResource(): AxiosProvisioningResourceClient;
|
|
911
|
-
get AssetPredictedDatapointResource(): AxiosAssetPredictedDatapointResourceClient;
|
|
907
|
+
get AssetModelResource(): AxiosAssetModelResourceClient;
|
|
912
908
|
get NotificationResource(): AxiosNotificationResourceClient;
|
|
913
909
|
get MapResource(): AxiosMapResourceClient;
|
|
914
|
-
get
|
|
915
|
-
get StatusResource(): AxiosStatusResourceClient;
|
|
916
|
-
get GatewayClientResource(): AxiosGatewayClientResourceClient;
|
|
917
|
-
get UserResource(): AxiosUserResourceClient;
|
|
918
|
-
get SyslogResource(): AxiosSyslogResourceClient;
|
|
910
|
+
get ProvisioningResource(): AxiosProvisioningResourceClient;
|
|
919
911
|
get DashboardResource(): AxiosDashboardResourceClient;
|
|
912
|
+
get FlowResource(): AxiosFlowResourceClient;
|
|
913
|
+
get AssetResource(): AxiosAssetResourceClient;
|
|
914
|
+
get ConsoleResource(): AxiosConsoleResourceClient;
|
|
915
|
+
get GatewayClientResource(): AxiosGatewayClientResourceClient;
|
|
916
|
+
get AppResource(): AxiosAppResourceClient;
|
|
917
|
+
get AgentResource(): AxiosAgentResourceClient;
|
|
918
|
+
get RulesResource(): AxiosRulesResourceClient;
|
|
920
919
|
get AlarmResource(): AxiosAlarmResourceClient;
|
|
920
|
+
get SyslogResource(): AxiosSyslogResourceClient;
|
|
921
921
|
}
|
|
922
922
|
import * as Axios from "axios";
|
|
923
923
|
declare module "axios" {
|
|
@@ -925,16 +925,10 @@ declare module "axios" {
|
|
|
925
925
|
data: R;
|
|
926
926
|
}
|
|
927
927
|
}
|
|
928
|
-
export declare class
|
|
929
|
-
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
930
|
-
}
|
|
931
|
-
export declare class AxiosAssetModelResourceClient extends AssetModelResourceClient<Axios.AxiosRequestConfig> {
|
|
932
|
-
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
933
|
-
}
|
|
934
|
-
export declare class AxiosAssetDatapointResourceClient extends AssetDatapointResourceClient<Axios.AxiosRequestConfig> {
|
|
928
|
+
export declare class AxiosAssetPredictedDatapointResourceClient extends AssetPredictedDatapointResourceClient<Axios.AxiosRequestConfig> {
|
|
935
929
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
936
930
|
}
|
|
937
|
-
export declare class
|
|
931
|
+
export declare class AxiosStatusResourceClient extends StatusResourceClient<Axios.AxiosRequestConfig> {
|
|
938
932
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
939
933
|
}
|
|
940
934
|
export declare class AxiosRealmResourceClient extends RealmResourceClient<Axios.AxiosRequestConfig> {
|
|
@@ -943,48 +937,54 @@ export declare class AxiosRealmResourceClient extends RealmResourceClient<Axios.
|
|
|
943
937
|
export declare class AxiosGatewayServiceResourceClient extends GatewayServiceResourceClient<Axios.AxiosRequestConfig> {
|
|
944
938
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
945
939
|
}
|
|
946
|
-
export declare class
|
|
940
|
+
export declare class AxiosUserResourceClient extends UserResourceClient<Axios.AxiosRequestConfig> {
|
|
947
941
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
948
942
|
}
|
|
949
|
-
export declare class
|
|
943
|
+
export declare class AxiosAssetDatapointResourceClient extends AssetDatapointResourceClient<Axios.AxiosRequestConfig> {
|
|
950
944
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
951
945
|
}
|
|
952
946
|
export declare class AxiosConfigurationResourceClient extends ConfigurationResourceClient<Axios.AxiosRequestConfig> {
|
|
953
947
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
954
948
|
}
|
|
955
|
-
export declare class
|
|
949
|
+
export declare class AxiosAssetModelResourceClient extends AssetModelResourceClient<Axios.AxiosRequestConfig> {
|
|
956
950
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
957
951
|
}
|
|
958
|
-
export declare class
|
|
952
|
+
export declare class AxiosNotificationResourceClient extends NotificationResourceClient<Axios.AxiosRequestConfig> {
|
|
959
953
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
960
954
|
}
|
|
961
|
-
export declare class
|
|
955
|
+
export declare class AxiosMapResourceClient extends MapResourceClient<Axios.AxiosRequestConfig> {
|
|
962
956
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
963
957
|
}
|
|
964
|
-
export declare class
|
|
958
|
+
export declare class AxiosProvisioningResourceClient extends ProvisioningResourceClient<Axios.AxiosRequestConfig> {
|
|
965
959
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
966
960
|
}
|
|
967
|
-
export declare class
|
|
961
|
+
export declare class AxiosDashboardResourceClient extends DashboardResourceClient<Axios.AxiosRequestConfig> {
|
|
968
962
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
969
963
|
}
|
|
970
|
-
export declare class
|
|
964
|
+
export declare class AxiosFlowResourceClient extends FlowResourceClient<Axios.AxiosRequestConfig> {
|
|
971
965
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
972
966
|
}
|
|
973
|
-
export declare class
|
|
967
|
+
export declare class AxiosAssetResourceClient extends AssetResourceClient<Axios.AxiosRequestConfig> {
|
|
968
|
+
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
969
|
+
}
|
|
970
|
+
export declare class AxiosConsoleResourceClient extends ConsoleResourceClient<Axios.AxiosRequestConfig> {
|
|
974
971
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
975
972
|
}
|
|
976
973
|
export declare class AxiosGatewayClientResourceClient extends GatewayClientResourceClient<Axios.AxiosRequestConfig> {
|
|
977
974
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
978
975
|
}
|
|
979
|
-
export declare class
|
|
976
|
+
export declare class AxiosAppResourceClient extends AppResourceClient<Axios.AxiosRequestConfig> {
|
|
980
977
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
981
978
|
}
|
|
982
|
-
export declare class
|
|
979
|
+
export declare class AxiosAgentResourceClient extends AgentResourceClient<Axios.AxiosRequestConfig> {
|
|
983
980
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
984
981
|
}
|
|
985
|
-
export declare class
|
|
982
|
+
export declare class AxiosRulesResourceClient extends RulesResourceClient<Axios.AxiosRequestConfig> {
|
|
986
983
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
987
984
|
}
|
|
988
985
|
export declare class AxiosAlarmResourceClient extends AlarmResourceClient<Axios.AxiosRequestConfig> {
|
|
989
986
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
990
987
|
}
|
|
988
|
+
export declare class AxiosSyslogResourceClient extends SyslogResourceClient<Axios.AxiosRequestConfig> {
|
|
989
|
+
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
990
|
+
}
|