@opcua/for-node-red
Version:
The Node-RED node to communicate via OPC UA, powered NodeOPCUA and developed by Sterfive's team
35 lines (32 loc) • 1.99 kB
text/typescript
import type { UAObject, UAProperty } from "node-opcua-address-space-base";
import type { UInt32 } from "node-opcua-basic-types";
import type { DataType } from "node-opcua-variant";
import type { UAFolder } from "./ua_folder";
// ----- this file has been automatically generated - do not edit
/**
* | | |
* |----------------|------------------------------------------------------------|
* |namespace |http://opcfoundation.org/UA/ |
* |nodeClass |ObjectType |
* |typedDefinition |HistoryServerCapabilitiesType i=2330 |
* |isAbstract |false |
*/
export interface UAHistoryServerCapabilities_Base {
accessHistoryDataCapability: UAProperty<boolean, DataType.Boolean>;
accessHistoryEventsCapability: UAProperty<boolean, DataType.Boolean>;
maxReturnDataValues: UAProperty<UInt32, DataType.UInt32>;
maxReturnEventValues: UAProperty<UInt32, DataType.UInt32>;
insertDataCapability: UAProperty<boolean, DataType.Boolean>;
replaceDataCapability: UAProperty<boolean, DataType.Boolean>;
updateDataCapability: UAProperty<boolean, DataType.Boolean>;
deleteRawCapability: UAProperty<boolean, DataType.Boolean>;
deleteAtTimeCapability: UAProperty<boolean, DataType.Boolean>;
insertEventCapability: UAProperty<boolean, DataType.Boolean>;
replaceEventCapability: UAProperty<boolean, DataType.Boolean>;
updateEventCapability: UAProperty<boolean, DataType.Boolean>;
deleteEventCapability: UAProperty<boolean, DataType.Boolean>;
insertAnnotationCapability: UAProperty<boolean, DataType.Boolean>;
aggregateFunctions: UAFolder;
serverTimestampSupported?: UAProperty<boolean, DataType.Boolean>;
}
export interface UAHistoryServerCapabilities extends UAObject, UAHistoryServerCapabilities_Base {}