UNPKG

@opcua/for-node-red

Version:

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

36 lines 1.68 kB
"use strict"; // ----- this file has been automatically generated - do not edit Object.defineProperty(exports, "__esModule", { value: true }); exports.EnumConfigurationUpdate = void 0; /** * | | | * |-----------|------------------------------------------------------------| * | namespace |http://opcfoundation.org/UA/ | * | nodeClass |DataType | * | name |ConfigurationUpdateType | * | isAbstract|false | */ var EnumConfigurationUpdate; (function (EnumConfigurationUpdate) { /** * The target is added. An error occurs if a name * conflict occurs. */ EnumConfigurationUpdate[EnumConfigurationUpdate["Insert"] = 1] = "Insert"; /** * Existing records are updated. An error occurs if * a name cannot be matched to an existing record. */ EnumConfigurationUpdate[EnumConfigurationUpdate["Replace"] = 2] = "Replace"; /** * Existing records are updated. New records are * created if no match to an exising record. */ EnumConfigurationUpdate[EnumConfigurationUpdate["InsertOrReplace"] = 3] = "InsertOrReplace"; /** * Existing records are deleted. An error occurs if * a name cannot be matched to an existing record. */ EnumConfigurationUpdate[EnumConfigurationUpdate["Delete"] = 4] = "Delete"; })(EnumConfigurationUpdate || (exports.EnumConfigurationUpdate = EnumConfigurationUpdate = {})); //# sourceMappingURL=enum_configuration_update.js.map