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