@opcua/for-node-red
Version:
The Node-RED node to communicate via OPC UA, powered NodeOPCUA and developed by Sterfive's team
34 lines (31 loc) • 1.93 kB
text/typescript
import type { UAObject, UAProperty } from "node-opcua-address-space-base";
import type { UAString, UInt16, UInt32 } from "node-opcua-basic-types";
import type { DataType } from "node-opcua-variant";
import type { DTRolePermission } from "./dt_role_permission";
import type { EnumId } from "./enum_id";
import type { UAAddressSpaceFile } from "./ua_address_space_file";
// ----- this file has been automatically generated - do not edit
/**
* | | |
* |----------------|------------------------------------------------------------|
* |namespace |http://opcfoundation.org/UA/ |
* |nodeClass |ObjectType |
* |typedDefinition |NamespaceMetadataType i=11616 |
* |isAbstract |false |
*/
export interface UANamespaceMetadata_Base {
"$namespaceUri": UAProperty<UAString, DataType.String>;
namespaceVersion: UAProperty<UAString, DataType.String>;
namespacePublicationDate: UAProperty<Date, DataType.DateTime>;
isNamespaceSubset: UAProperty<boolean, DataType.Boolean>;
staticNodeIdTypes: UAProperty<EnumId[], DataType.Int32>;
staticNumericNodeIdRange: UAProperty<UAString[], DataType.String>;
staticStringNodeIdPattern: UAProperty<UAString, DataType.String>;
namespaceFile?: UAAddressSpaceFile;
defaultRolePermissions?: UAProperty<DTRolePermission[], DataType.ExtensionObject>;
defaultUserRolePermissions?: UAProperty<DTRolePermission[], DataType.ExtensionObject>;
defaultAccessRestrictions?: UAProperty<UInt16, DataType.UInt16>;
configurationVersion?: UAProperty<UInt32, DataType.UInt32>;
modelVersion?: UAProperty<UAString, DataType.String>;
}
export interface UANamespaceMetadata extends UAObject, UANamespaceMetadata_Base {}