UNPKG

@opcua/for-node-red

Version:

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

26 lines (23 loc) 1.29 kB
import type { UAMethod, UAProperty } from "node-opcua-address-space-base"; import type { UAString } from "node-opcua-basic-types"; import type { DataType } from "node-opcua-variant"; import type { UAFolder, UAFolder_Base } from "./ua_folder"; // ----- this file has been automatically generated - do not edit /** * | | | * |----------------|------------------------------------------------------------| * |namespace |http://opcfoundation.org/UA/ | * |nodeClass |ObjectType | * |typedDefinition |SecurityGroupFolderType i=15452 | * |isAbstract |false | */ export interface UASecurityGroupFolder_Base extends UAFolder_Base { // PlaceHolder for $SecurityGroupName$ addSecurityGroup: UAMethod; removeSecurityGroup: UAMethod; addSecurityGroupFolder?: UAMethod; removeSecurityGroupFolder?: UAMethod; supportedSecurityPolicyUris?: UAProperty<UAString[], DataType.String>; // PlaceHolder for $SecurityGroupFolderName$ } export interface UASecurityGroupFolder extends UAFolder, UASecurityGroupFolder_Base {}