@opcua/for-node-red
Version:
The Node-RED node to communicate via OPC UA, powered NodeOPCUA and developed by Sterfive's team
40 lines (39 loc) • 1.11 kB
TypeScript
/**
* | | |
* |-----------|------------------------------------------------------------|
* | namespace |http://opcfoundation.org/UA/ |
* | nodeClass |DataType |
* | name |InterfaceOperStatus |
* | isAbstract|false |
*/
export declare enum EnumInterfaceOperStatus {
/**
* Ready to pass packets.
*/
Up = 0,
/**
* The interface does not pass any packets.
*/
Down = 1,
/**
* In some test mode. No operational packets can be
* passed.
*/
Testing = 2,
/**
* Status cannot be determined for some reason.
*/
Unknown = 3,
/**
* Waiting for some external event.
*/
Dormant = 4,
/**
* Some component (typically hardware) is missing.
*/
NotPresent = 5,
/**
* Down due to state of lower-layer interface(s).
*/
LowerLayerDown = 6
}