@opcua/for-node-red
Version:
The Node-RED node to communicate via OPC UA, powered NodeOPCUA and developed by Sterfive's team
23 lines (20 loc) • 1.39 kB
text/typescript
import type { UAMethod, UAProperty } from "node-opcua-address-space-base";
import type { DataType } from "node-opcua-variant";
import type { DTRedundantServer } from "./dt_redundant_server";
import type { EnumRedundantServerMode } from "./enum_redundant_server_mode";
import type { UANonTransparentRedundancy, UANonTransparentRedundancy_Base } from "./ua_non_transparent_redundancy";
// ----- this file has been automatically generated - do not edit
/**
* | | |
* |----------------|------------------------------------------------------------|
* |namespace |http://opcfoundation.org/UA/ |
* |nodeClass |ObjectType |
* |typedDefinition |NonTransparentBackupRedundancyType i=32411 |
* |isAbstract |false |
*/
export interface UANonTransparentBackupRedundancy_Base extends UANonTransparentRedundancy_Base {
redundantServerArray: UAProperty<DTRedundantServer[], DataType.ExtensionObject>;
mode: UAProperty<EnumRedundantServerMode, DataType.Int32>;
failover: UAMethod;
}
export interface UANonTransparentBackupRedundancy extends Omit<UANonTransparentRedundancy, "redundantServerArray">, UANonTransparentBackupRedundancy_Base {}