@opcua/for-node-red
Version:
The Node-RED node to communicate via OPC UA, powered NodeOPCUA and developed by Sterfive's team
22 lines (21 loc) • 1.13 kB
TypeScript
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";
/**
* | | |
* |----------------|------------------------------------------------------------|
* |namespace |http://opcfoundation.org/UA/ |
* |nodeClass |ObjectType |
* |typedDefinition |SecurityGroupFolderType i=15452 |
* |isAbstract |false |
*/
export interface UASecurityGroupFolder_Base extends UAFolder_Base {
addSecurityGroup: UAMethod;
removeSecurityGroup: UAMethod;
addSecurityGroupFolder?: UAMethod;
removeSecurityGroupFolder?: UAMethod;
supportedSecurityPolicyUris?: UAProperty<UAString[], DataType.String>;
}
export interface UASecurityGroupFolder extends UAFolder, UASecurityGroupFolder_Base {
}