@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.36 kB
TypeScript
import type { UAMethod, UAObject, UAProperty } from "node-opcua-address-space-base";
import type { UInt32 } from "node-opcua-basic-types";
import type { LocalizedText } from "node-opcua-data-model";
import type { DataType } from "node-opcua-variant";
import type { DTRange } from "./dt_range";
import type { DTUserManagement } from "./dt_user_management";
/**
* | | |
* |----------------|------------------------------------------------------------|
* |namespace |http://opcfoundation.org/UA/ |
* |nodeClass |ObjectType |
* |typedDefinition |UserManagementType i=24264 |
* |isAbstract |false |
*/
export interface UAUserManagement_Base {
users: UAProperty<DTUserManagement[], DataType.ExtensionObject>;
passwordLength: UAProperty<DTRange, DataType.ExtensionObject>;
passwordOptions: UAProperty<UInt32, DataType.UInt32>;
passwordRestrictions?: UAProperty<LocalizedText, DataType.LocalizedText>;
addUser: UAMethod;
modifyUser: UAMethod;
removeUser: UAMethod;
changePassword: UAMethod;
}
export interface UAUserManagement extends UAObject, UAUserManagement_Base {
}