UNPKG

@opcua/for-node-red

Version:

The Node-RED node to communicate via OPC UA, powered NodeOPCUA and developed by Sterfive's team

38 lines (37 loc) 1.76 kB
import type { Byte, UAString, UInt16, UInt32 } from "node-opcua-basic-types"; import type { ExtensionObject } from "node-opcua-extension-object"; import type { DTDataSetWriter } from "./dt_data_set_writer"; import type { DTEndpointDescription } from "./dt_endpoint_description"; import type { DTKeyValuePair } from "./dt_key_value_pair"; import type { DTPubSubGroup } from "./dt_pub_sub_group"; import type { DTWriterGroupMessage } from "./dt_writer_group_message"; import type { DTWriterGroupTransport } from "./dt_writer_group_transport"; import type { EnumMessageSecurityMode } from "./enum_message_security_mode"; /** * | | | * |-----------|------------------------------------------------------------| * | namespace |http://opcfoundation.org/UA/ | * | nodeClass |DataType | * | name |WriterGroupDataType | * | isAbstract|false | */ export interface DTWriterGroup extends DTPubSubGroup { name: UAString; enabled: boolean; securityMode: EnumMessageSecurityMode; securityGroupId: UAString; securityKeyServices: DTEndpointDescription[]; maxNetworkMessageSize: UInt32; groupProperties: DTKeyValuePair[]; writerGroupId: UInt16; publishingInterval: number; keepAliveTime: number; priority: Byte; localeIds: UAString[]; headerLayoutUri: UAString; transportSettings?: DTWriterGroupTransport; messageSettings?: DTWriterGroupMessage; dataSetWriters: DTDataSetWriter[]; } export interface UDTWriterGroup extends ExtensionObject, DTWriterGroup { }