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