UNPKG

@opcua/for-node-red

Version:

The Node-RED node to communicate via OPC UA, powered NodeOPCUA and developed by Sterfive's team

27 lines (26 loc) 1.25 kB
import type { UAString } from "node-opcua-basic-types"; import type { ExtensionObject } from "node-opcua-extension-object"; import type { NodeId } from "node-opcua-nodeid"; import type { DTStructure } from "./dt_structure"; import type { EnumMessageSecurityMode } from "./enum_message_security_mode"; /** * | | | * |-----------|------------------------------------------------------------| * | namespace |http://opcfoundation.org/UA/ | * | nodeClass |DataType | * | name |SessionSecurityDiagnosticsDataType | * | isAbstract|false | */ export interface DTSessionSecurityDiagnostics extends DTStructure { sessionId: NodeId; clientUserIdOfSession: UAString; clientUserIdHistory: UAString[]; authenticationMechanism: UAString; encoding: UAString; transportProtocol: UAString; securityMode: EnumMessageSecurityMode; securityPolicyUri: UAString; clientCertificate: Buffer; } export interface UDTSessionSecurityDiagnostics extends ExtensionObject, DTSessionSecurityDiagnostics { }