UNPKG

@opcua/for-node-red

Version:

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

30 lines (27 loc) 1.58 kB
import type { UAMethod, UAObject, UAProperty } from "node-opcua-address-space-base"; import type { UAString, UInt16 } from "node-opcua-basic-types"; import type { DataType } from "node-opcua-variant"; import type { DTUserTokenPolicy } from "./dt_user_token_policy"; // ----- this file has been automatically generated - do not edit /** * | | | * |----------------|------------------------------------------------------------| * |namespace |http://opcfoundation.org/UA/ | * |nodeClass |ObjectType | * |typedDefinition |PubSubKeyPushTargetType i=25337 | * |isAbstract |false | */ export interface UAPubSubKeyPushTarget_Base { applicationUri: UAProperty<UAString, DataType.String>; endpointUrl: UAProperty<UAString, DataType.String>; securityPolicyUri: UAProperty<UAString, DataType.String>; userTokenType: UAProperty<DTUserTokenPolicy, DataType.ExtensionObject>; requestedKeyCount: UAProperty<UInt16, DataType.UInt16>; retryInterval: UAProperty<number, DataType.Double>; lastPushExecutionTime: UAProperty<Date, DataType.DateTime>; lastPushErrorTime: UAProperty<Date, DataType.DateTime>; connectSecurityGroups: UAMethod; disconnectSecurityGroups: UAMethod; triggerKeyUpdate: UAMethod; } export interface UAPubSubKeyPushTarget extends UAObject, UAPubSubKeyPushTarget_Base {}