@opcua/for-node-red
Version:
The Node-RED node to communicate via OPC UA, powered NodeOPCUA and developed by Sterfive's team
25 lines (24 loc) • 1.47 kB
TypeScript
import type { UAObject } from "node-opcua-address-space-base";
import type { UInt16 } from "node-opcua-basic-types";
import type { DataType } from "node-opcua-variant";
import type { UABaseDataVariable } from "./ua_base_data_variable";
import type { UAPubSubDiagnostics, UAPubSubDiagnostics_Base } from "./ua_pub_sub_diagnostics";
export interface UAPubSubDiagnosticsRoot_liveValues extends UAObject {
configuredDataSetWriters: UABaseDataVariable<UInt16, DataType.UInt16>;
configuredDataSetReaders: UABaseDataVariable<UInt16, DataType.UInt16>;
operationalDataSetWriters: UABaseDataVariable<UInt16, DataType.UInt16>;
operationalDataSetReaders: UABaseDataVariable<UInt16, DataType.UInt16>;
}
/**
* | | |
* |----------------|------------------------------------------------------------|
* |namespace |http://opcfoundation.org/UA/ |
* |nodeClass |ObjectType |
* |typedDefinition |PubSubDiagnosticsRootType i=19732 |
* |isAbstract |false |
*/
export interface UAPubSubDiagnosticsRoot_Base extends UAPubSubDiagnostics_Base {
liveValues: UAPubSubDiagnosticsRoot_liveValues;
}
export interface UAPubSubDiagnosticsRoot extends Omit<UAPubSubDiagnostics, "liveValues">, UAPubSubDiagnosticsRoot_Base {
}