@opcua/for-node-red
Version:
The Node-RED node to communicate via OPC UA, powered NodeOPCUA and developed by Sterfive's team
33 lines (31 loc) • 1.92 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";
// ----- this file has been automatically generated - do not edit
/**
* | | |
* |----------------|------------------------------------------------------------|
* |namespace |http://opcfoundation.org/UA/ |
* |nodeClass |ObjectType |
* |typedDefinition |PubSubCapabilitiesType i=23832 |
* |isAbstract |false |
*/
export interface UAPubSubCapabilities_Base {
maxPubSubConnections: UAProperty<UInt32, DataType.UInt32>;
maxWriterGroups: UAProperty<UInt32, DataType.UInt32>;
maxReaderGroups: UAProperty<UInt32, DataType.UInt32>;
maxDataSetWriters: UAProperty<UInt32, DataType.UInt32>;
maxDataSetReaders: UAProperty<UInt32, DataType.UInt32>;
maxFieldsPerDataSet: UAProperty<UInt32, DataType.UInt32>;
maxDataSetWritersPerGroup?: UAProperty<UInt32, DataType.UInt32>;
maxSecurityGroups?: UAProperty<UInt32, DataType.UInt32>;
maxPushTargets?: UAProperty<UInt32, DataType.UInt32>;
maxPublishedDataSets?: UAProperty<UInt32, DataType.UInt32>;
maxStandaloneSubscribedDataSets?: UAProperty<UInt32, DataType.UInt32>;
maxNetworkMessageSizeDatagram?: UAProperty<UInt32, DataType.UInt32>;
maxNetworkMessageSizeBroker?: UAProperty<UInt32, DataType.UInt32>;
supportSecurityKeyPull?: UAProperty<boolean, DataType.Boolean>;
supportSecurityKeyPush?: UAProperty<boolean, DataType.Boolean>;
supportSecurityKeyServer?: UAProperty<boolean, DataType.Boolean>;
}
export interface UAPubSubCapabilities extends UAObject, UAPubSubCapabilities_Base {}