@opcua/for-node-red
Version:
The Node-RED node to communicate via OPC UA, powered NodeOPCUA and developed by Sterfive's team
29 lines (26 loc) • 1.49 kB
text/typescript
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";
// ----- this file has been automatically generated - do not edit
/**
* | | |
* |-----------|------------------------------------------------------------|
* | namespace |http://opcfoundation.org/UA/ |
* | nodeClass |DataType |
* | name |SessionSecurityDiagnosticsDataType |
* | isAbstract|false |
*/
export interface DTSessionSecurityDiagnostics extends DTStructure {
sessionId: NodeId; // NodeId ns=0;i=17
clientUserIdOfSession: UAString; // String ns=0;i=12
clientUserIdHistory: UAString[]; // String ns=0;i=12
authenticationMechanism: UAString; // String ns=0;i=12
encoding: UAString; // String ns=0;i=12
transportProtocol: UAString; // String ns=0;i=12
securityMode: EnumMessageSecurityMode; // Int32 ns=0;i=302
securityPolicyUri: UAString; // String ns=0;i=12
clientCertificate: Buffer; // ByteString ns=0;i=15
}
export interface UDTSessionSecurityDiagnostics extends ExtensionObject, DTSessionSecurityDiagnostics {};