@opcua/for-node-red
Version:
The Node-RED node to communicate via OPC UA, powered NodeOPCUA and developed by Sterfive's team
26 lines (25 loc) • 1.24 kB
TypeScript
import type { UAString, UInt32 } from "node-opcua-basic-types";
import type { ExtensionObject } from "node-opcua-extension-object";
import type { DTEndpointDescription } from "./dt_endpoint_description";
import type { DTKeyValuePair } from "./dt_key_value_pair";
import type { DTStructure } from "./dt_structure";
import type { EnumMessageSecurityMode } from "./enum_message_security_mode";
/**
* | | |
* |-----------|------------------------------------------------------------|
* | namespace |http://opcfoundation.org/UA/ |
* | nodeClass |DataType |
* | name |PubSubGroupDataType |
* | isAbstract|true |
*/
export interface DTPubSubGroup extends DTStructure {
name: UAString;
enabled: boolean;
securityMode: EnumMessageSecurityMode;
securityGroupId: UAString;
securityKeyServices: DTEndpointDescription[];
maxNetworkMessageSize: UInt32;
groupProperties: DTKeyValuePair[];
}
export interface UDTPubSubGroup extends ExtensionObject, DTPubSubGroup {
}