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