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