@opcua/for-node-red
Version:
The Node-RED node to communicate via OPC UA, powered NodeOPCUA and developed by Sterfive's team
27 lines (26 loc) • 1.23 kB
TypeScript
import type { UAString, UInt16 } from "node-opcua-basic-types";
import type { ExtensionObject } from "node-opcua-extension-object";
import type { DTKeyValuePair } from "./dt_key_value_pair";
import type { DTStructure } from "./dt_structure";
import type { DTUserTokenPolicy } from "./dt_user_token_policy";
/**
* | | |
* |-----------|------------------------------------------------------------|
* | namespace |http://opcfoundation.org/UA/ |
* | nodeClass |DataType |
* | name |PubSubKeyPushTargetDataType |
* | isAbstract|false |
*/
export interface DTPubSubKeyPushTarget extends DTStructure {
applicationUri: UAString;
pushTargetFolder: UAString[];
endpointUrl: UAString;
securityPolicyUri: UAString;
userTokenType: DTUserTokenPolicy;
requestedKeyCount: UInt16;
retryInterval: number;
pushTargetProperties: DTKeyValuePair[];
securityGroups: UAString[];
}
export interface UDTPubSubKeyPushTarget extends ExtensionObject, DTPubSubKeyPushTarget {
}