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