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