UNPKG

@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.18 kB
import type { UAMethod, UAObject, UAProperty } from "node-opcua-address-space-base"; import type { UAString, UInt32 } from "node-opcua-basic-types"; import type { DataType } from "node-opcua-variant"; /** * | | | * |----------------|------------------------------------------------------------| * |namespace |http://opcfoundation.org/UA/ | * |nodeClass |ObjectType | * |typedDefinition |SecurityGroupType i=15471 | * |isAbstract |false | */ export interface UASecurityGroup_Base { securityGroupId: UAProperty<UAString, DataType.String>; keyLifetime: UAProperty<number, DataType.Double>; securityPolicyUri: UAProperty<UAString, DataType.String>; maxFutureKeyCount: UAProperty<UInt32, DataType.UInt32>; maxPastKeyCount: UAProperty<UInt32, DataType.UInt32>; invalidateKeys?: UAMethod; forceKeyRotation?: UAMethod; } export interface UASecurityGroup extends UAObject, UASecurityGroup_Base { }