@opcua/for-node-red
Version:
The Node-RED node to communicate via OPC UA, powered NodeOPCUA and developed by Sterfive's team
31 lines (30 loc) • 1.45 kB
TypeScript
import type { UAString } from "node-opcua-basic-types";
import type { ExtensionObject } from "node-opcua-extension-object";
import type { Variant } from "node-opcua-variant";
import type { DTConnectionTransport } from "./dt_connection_transport";
import type { DTKeyValuePair } from "./dt_key_value_pair";
import type { DTNetworkAddress } from "./dt_network_address";
import type { DTReaderGroup } from "./dt_reader_group";
import type { DTStructure } from "./dt_structure";
import type { DTWriterGroup } from "./dt_writer_group";
/**
* | | |
* |-----------|------------------------------------------------------------|
* | namespace |http://opcfoundation.org/UA/ |
* | nodeClass |DataType |
* | name |PubSubConnectionDataType |
* | isAbstract|false |
*/
export interface DTPubSubConnection extends DTStructure {
name: UAString;
enabled: boolean;
publisherId: Variant;
transportProfileUri: UAString;
address?: DTNetworkAddress;
connectionProperties: DTKeyValuePair[];
transportSettings?: DTConnectionTransport;
writerGroups: DTWriterGroup[];
readerGroups: DTReaderGroup[];
}
export interface UDTPubSubConnection extends ExtensionObject, DTPubSubConnection {
}