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