@opcua/for-node-red
Version:
The Node-RED node to communicate via OPC UA, powered NodeOPCUA and developed by Sterfive's team
32 lines (31 loc) • 1.85 kB
TypeScript
import type { UAObject, UAProperty } from "node-opcua-address-space-base";
import type { UAString, UInt32 } from "node-opcua-basic-types";
import type { DataType } from "node-opcua-variant";
import type { EnumExceptionDeviationFormat } from "./enum_exception_deviation_format";
import type { UAAggregateConfiguration } from "./ua_aggregate_configuration";
import type { UAFolder } from "./ua_folder";
/**
* | | |
* |----------------|------------------------------------------------------------|
* |namespace |http://opcfoundation.org/UA/ |
* |nodeClass |ObjectType |
* |typedDefinition |HistoricalDataConfigurationType i=2318 |
* |isAbstract |false |
*/
export interface UAHistoricalDataConfiguration_Base {
aggregateConfiguration: UAAggregateConfiguration;
aggregateFunctions?: UAFolder;
stepped: UAProperty<boolean, DataType.Boolean>;
definition?: UAProperty<UAString, DataType.String>;
maxTimeInterval?: UAProperty<number, DataType.Double>;
minTimeInterval?: UAProperty<number, DataType.Double>;
exceptionDeviation?: UAProperty<number, DataType.Double>;
exceptionDeviationFormat?: UAProperty<EnumExceptionDeviationFormat, DataType.Int32>;
startOfArchive?: UAProperty<Date, DataType.DateTime>;
startOfOnlineArchive?: UAProperty<Date, DataType.DateTime>;
serverTimestampSupported?: UAProperty<boolean, DataType.Boolean>;
maxTimeStoredValues?: UAProperty<number, DataType.Double>;
maxCountStoredValues?: UAProperty<UInt32, DataType.UInt32>;
}
export interface UAHistoricalDataConfiguration extends UAObject, UAHistoricalDataConfiguration_Base {
}