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