@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.31 kB
TypeScript
import type { Byte, UAString } from "node-opcua-basic-types";
import type { ExtensionObject } from "node-opcua-extension-object";
import type { DTApplicationDescription } from "./dt_application_description";
import type { DTStructure } from "./dt_structure";
import type { DTUserTokenPolicy } from "./dt_user_token_policy";
import type { EnumMessageSecurityMode } from "./enum_message_security_mode";
/**
* | | |
* |-----------|------------------------------------------------------------|
* | namespace |http://opcfoundation.org/UA/ |
* | nodeClass |DataType |
* | name |EndpointDescription |
* | isAbstract|false |
*/
export interface DTEndpointDescription extends DTStructure {
endpointUrl: UAString;
server: DTApplicationDescription;
serverCertificate: Buffer;
securityMode: EnumMessageSecurityMode;
securityPolicyUri: UAString;
userIdentityTokens: DTUserTokenPolicy[];
transportProfileUri: UAString;
securityLevel: Byte;
}
export interface UDTEndpointDescription extends ExtensionObject, DTEndpointDescription {
}