@opcua/for-node-red
Version:
The Node-RED node to communicate via OPC UA, powered NodeOPCUA and developed by Sterfive's team
23 lines (22 loc) • 1.15 kB
TypeScript
import type { UAString } from "node-opcua-basic-types";
import type { ExtensionObject } from "node-opcua-extension-object";
import type { DTBaseConfigurationRecord } from "./dt_base_configuration_record";
import type { DTKeyValuePair } from "./dt_key_value_pair";
import type { EnumMessageSecurityMode } from "./enum_message_security_mode";
/**
* | | |
* |-----------|------------------------------------------------------------|
* | namespace |http://opcfoundation.org/UA/ |
* | nodeClass |DataType |
* | name |SecuritySettingsDataType |
* | isAbstract|false |
*/
export interface DTSecuritySettings extends DTBaseConfigurationRecord {
name: UAString;
recordProperties: DTKeyValuePair[];
securityModes: EnumMessageSecurityMode[];
securityPolicyUris: UAString[];
certificateGroupName: UAString;
}
export interface UDTSecuritySettings extends ExtensionObject, DTSecuritySettings {
}