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