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