Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
opcua-asyncio
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Nikola Balog
opcua-asyncio
Commits
95aab64e
Commit
95aab64e
authored
Sep 10, 2016
by
olivier R-D
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
commit generated code
parent
98cda158
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
262 additions
and
108 deletions
+262
-108
opcua/server/standard_address_space/standard_address_space_part3.py
...er/standard_address_space/standard_address_space_part3.py
+24
-0
opcua/server/standard_address_space/standard_address_space_part4.py
...er/standard_address_space/standard_address_space_part4.py
+118
-0
opcua/server/standard_address_space/standard_address_space_part5.py
...er/standard_address_space/standard_address_space_part5.py
+96
-96
opcua/server/standard_address_space/standard_address_space_part9.py
...er/standard_address_space/standard_address_space_part9.py
+24
-12
No files found.
opcua/server/standard_address_space/standard_address_space_part3.py
View file @
95aab64e
...
...
@@ -631,12 +631,18 @@ def create_standard_address_space_Part3(server):
attrs
.
DataType
=
ua
.
NodeId
.
from_string
(
"i=7594"
)
value
=
[]
extobj
=
ua
.
EnumValueType
()
extobj
.
Description
.
Text
=
b'The BrowseName must appear in all instances of the type.'
extobj
.
DisplayName
.
Text
=
b'Mandatory'
extobj
.
Value
=
1
value
.
append
(
extobj
)
extobj
=
ua
.
EnumValueType
()
extobj
.
Description
.
Text
=
b'The BrowseName may appear in an instance of the type.'
extobj
.
DisplayName
.
Text
=
b'Optional'
extobj
.
Value
=
2
value
.
append
(
extobj
)
extobj
=
ua
.
EnumValueType
()
extobj
.
Description
.
Text
=
b'The modelling rule defines a constraint and the BrowseName is not used in an instance of the type.'
extobj
.
DisplayName
.
Text
=
b'Constraint'
extobj
.
Value
=
3
value
.
append
(
extobj
)
attrs
.
Value
=
ua
.
Variant
(
value
,
ua
.
VariantType
.
ExtensionObject
)
...
...
@@ -974,30 +980,48 @@ def create_standard_address_space_Part3(server):
attrs
.
DataType
=
ua
.
NodeId
.
from_string
(
"i=7594"
)
value
=
[]
extobj
=
ua
.
EnumValueType
()
extobj
.
Description
.
Text
=
b'No classes are selected.'
extobj
.
DisplayName
.
Text
=
b'Unspecified'
extobj
.
Value
=
0
value
.
append
(
extobj
)
extobj
=
ua
.
EnumValueType
()
extobj
.
Description
.
Text
=
b'The node is an object.'
extobj
.
DisplayName
.
Text
=
b'Object'
extobj
.
Value
=
1
value
.
append
(
extobj
)
extobj
=
ua
.
EnumValueType
()
extobj
.
Description
.
Text
=
b'The node is a variable.'
extobj
.
DisplayName
.
Text
=
b'Variable'
extobj
.
Value
=
2
value
.
append
(
extobj
)
extobj
=
ua
.
EnumValueType
()
extobj
.
Description
.
Text
=
b'The node is a method.'
extobj
.
DisplayName
.
Text
=
b'Method'
extobj
.
Value
=
4
value
.
append
(
extobj
)
extobj
=
ua
.
EnumValueType
()
extobj
.
Description
.
Text
=
b'The node is an object type.'
extobj
.
DisplayName
.
Text
=
b'ObjectType'
extobj
.
Value
=
8
value
.
append
(
extobj
)
extobj
=
ua
.
EnumValueType
()
extobj
.
Description
.
Text
=
b'The node is an variable type.'
extobj
.
DisplayName
.
Text
=
b'VariableType'
extobj
.
Value
=
16
value
.
append
(
extobj
)
extobj
=
ua
.
EnumValueType
()
extobj
.
Description
.
Text
=
b'The node is a reference type.'
extobj
.
DisplayName
.
Text
=
b'ReferenceType'
extobj
.
Value
=
32
value
.
append
(
extobj
)
extobj
=
ua
.
EnumValueType
()
extobj
.
Description
.
Text
=
b'The node is a data type.'
extobj
.
DisplayName
.
Text
=
b'DataType'
extobj
.
Value
=
64
value
.
append
(
extobj
)
extobj
=
ua
.
EnumValueType
()
extobj
.
Description
.
Text
=
b'The node is a view.'
extobj
.
DisplayName
.
Text
=
b'View'
extobj
.
Value
=
128
value
.
append
(
extobj
)
attrs
.
Value
=
ua
.
Variant
(
value
,
ua
.
VariantType
.
ExtensionObject
)
...
...
opcua/server/standard_address_space/standard_address_space_part4.py
View file @
95aab64e
...
...
@@ -473,99 +473,163 @@ def create_standard_address_space_Part4(server):
attrs
.
DataType
=
ua
.
NodeId
.
from_string
(
"i=7594"
)
value
=
[]
extobj
=
ua
.
EnumValueType
()
extobj
.
Description
.
Text
=
b'No attribuites provided.'
extobj
.
DisplayName
.
Text
=
b'None'
extobj
.
Value
=
0
value
.
append
(
extobj
)
extobj
=
ua
.
EnumValueType
()
extobj
.
Description
.
Text
=
b'The access level attribute is specified.'
extobj
.
DisplayName
.
Text
=
b'AccessLevel'
extobj
.
Value
=
1
value
.
append
(
extobj
)
extobj
=
ua
.
EnumValueType
()
extobj
.
Description
.
Text
=
b'The array dimensions attribute is specified.'
extobj
.
DisplayName
.
Text
=
b'ArrayDimensions'
extobj
.
Value
=
2
value
.
append
(
extobj
)
extobj
=
ua
.
EnumValueType
()
extobj
.
Description
.
Text
=
b'The browse name attribute is specified.'
extobj
.
DisplayName
.
Text
=
b'BrowseName'
extobj
.
Value
=
4
value
.
append
(
extobj
)
extobj
=
ua
.
EnumValueType
()
extobj
.
Description
.
Text
=
b'The contains no loops attribute is specified.'
extobj
.
DisplayName
.
Text
=
b'ContainsNoLoops'
extobj
.
Value
=
8
value
.
append
(
extobj
)
extobj
=
ua
.
EnumValueType
()
extobj
.
Description
.
Text
=
b'The data type attribute is specified.'
extobj
.
DisplayName
.
Text
=
b'DataType'
extobj
.
Value
=
16
value
.
append
(
extobj
)
extobj
=
ua
.
EnumValueType
()
extobj
.
Description
.
Text
=
b'The description attribute is specified.'
extobj
.
DisplayName
.
Text
=
b'Description'
extobj
.
Value
=
32
value
.
append
(
extobj
)
extobj
=
ua
.
EnumValueType
()
extobj
.
Description
.
Text
=
b'The display name attribute is specified.'
extobj
.
DisplayName
.
Text
=
b'DisplayName'
extobj
.
Value
=
64
value
.
append
(
extobj
)
extobj
=
ua
.
EnumValueType
()
extobj
.
Description
.
Text
=
b'The event notifier attribute is specified.'
extobj
.
DisplayName
.
Text
=
b'EventNotifier'
extobj
.
Value
=
128
value
.
append
(
extobj
)
extobj
=
ua
.
EnumValueType
()
extobj
.
Description
.
Text
=
b'The executable attribute is specified.'
extobj
.
DisplayName
.
Text
=
b'Executable'
extobj
.
Value
=
256
value
.
append
(
extobj
)
extobj
=
ua
.
EnumValueType
()
extobj
.
Description
.
Text
=
b'The historizing attribute is specified.'
extobj
.
DisplayName
.
Text
=
b'Historizing'
extobj
.
Value
=
512
value
.
append
(
extobj
)
extobj
=
ua
.
EnumValueType
()
extobj
.
Description
.
Text
=
b'The inverse name attribute is specified.'
extobj
.
DisplayName
.
Text
=
b'InverseName'
extobj
.
Value
=
1024
value
.
append
(
extobj
)
extobj
=
ua
.
EnumValueType
()
extobj
.
Description
.
Text
=
b'The is abstract attribute is specified.'
extobj
.
DisplayName
.
Text
=
b'IsAbstract'
extobj
.
Value
=
2048
value
.
append
(
extobj
)
extobj
=
ua
.
EnumValueType
()
extobj
.
Description
.
Text
=
b'The minimum sampling interval attribute is specified.'
extobj
.
DisplayName
.
Text
=
b'MinimumSamplingInterval'
extobj
.
Value
=
4096
value
.
append
(
extobj
)
extobj
=
ua
.
EnumValueType
()
extobj
.
Description
.
Text
=
b'The node class attribute is specified.'
extobj
.
DisplayName
.
Text
=
b'NodeClass'
extobj
.
Value
=
8192
value
.
append
(
extobj
)
extobj
=
ua
.
EnumValueType
()
extobj
.
Description
.
Text
=
b'The node id attribute is specified.'
extobj
.
DisplayName
.
Text
=
b'NodeId'
extobj
.
Value
=
16384
value
.
append
(
extobj
)
extobj
=
ua
.
EnumValueType
()
extobj
.
Description
.
Text
=
b'The symmetric attribute is specified.'
extobj
.
DisplayName
.
Text
=
b'Symmetric'
extobj
.
Value
=
32768
value
.
append
(
extobj
)
extobj
=
ua
.
EnumValueType
()
extobj
.
Description
.
Text
=
b'The user access level attribute is specified.'
extobj
.
DisplayName
.
Text
=
b'UserAccessLevel'
extobj
.
Value
=
65536
value
.
append
(
extobj
)
extobj
=
ua
.
EnumValueType
()
extobj
.
Description
.
Text
=
b'The user executable attribute is specified.'
extobj
.
DisplayName
.
Text
=
b'UserExecutable'
extobj
.
Value
=
131072
value
.
append
(
extobj
)
extobj
=
ua
.
EnumValueType
()
extobj
.
Description
.
Text
=
b'The user write mask attribute is specified.'
extobj
.
DisplayName
.
Text
=
b'UserWriteMask'
extobj
.
Value
=
262144
value
.
append
(
extobj
)
extobj
=
ua
.
EnumValueType
()
extobj
.
Description
.
Text
=
b'The value rank attribute is specified.'
extobj
.
DisplayName
.
Text
=
b'ValueRank'
extobj
.
Value
=
524288
value
.
append
(
extobj
)
extobj
=
ua
.
EnumValueType
()
extobj
.
Description
.
Text
=
b'The write mask attribute is specified.'
extobj
.
DisplayName
.
Text
=
b'WriteMask'
extobj
.
Value
=
1048576
value
.
append
(
extobj
)
extobj
=
ua
.
EnumValueType
()
extobj
.
Description
.
Text
=
b'The value attribute is specified.'
extobj
.
DisplayName
.
Text
=
b'Value'
extobj
.
Value
=
2097152
value
.
append
(
extobj
)
extobj
=
ua
.
EnumValueType
()
extobj
.
Description
.
Text
=
b'All attributes are specified.'
extobj
.
DisplayName
.
Text
=
b'All'
extobj
.
Value
=
4194303
value
.
append
(
extobj
)
extobj
=
ua
.
EnumValueType
()
extobj
.
Description
.
Text
=
b'All base attributes are specified.'
extobj
.
DisplayName
.
Text
=
b'BaseNode'
extobj
.
Value
=
1335396
value
.
append
(
extobj
)
extobj
=
ua
.
EnumValueType
()
extobj
.
Description
.
Text
=
b'All object attributes are specified.'
extobj
.
DisplayName
.
Text
=
b'Object'
extobj
.
Value
=
1335524
value
.
append
(
extobj
)
extobj
=
ua
.
EnumValueType
()
extobj
.
Description
.
Text
=
b'All object type or data type attributes are specified.'
extobj
.
DisplayName
.
Text
=
b'ObjectTypeOrDataType'
extobj
.
Value
=
1337444
value
.
append
(
extobj
)
extobj
=
ua
.
EnumValueType
()
extobj
.
Description
.
Text
=
b'All variable attributes are specified.'
extobj
.
DisplayName
.
Text
=
b'Variable'
extobj
.
Value
=
4026999
value
.
append
(
extobj
)
extobj
=
ua
.
EnumValueType
()
extobj
.
Description
.
Text
=
b'All variable type attributes are specified.'
extobj
.
DisplayName
.
Text
=
b'VariableType'
extobj
.
Value
=
3958902
value
.
append
(
extobj
)
extobj
=
ua
.
EnumValueType
()
extobj
.
Description
.
Text
=
b'All method attributes are specified.'
extobj
.
DisplayName
.
Text
=
b'Method'
extobj
.
Value
=
1466724
value
.
append
(
extobj
)
extobj
=
ua
.
EnumValueType
()
extobj
.
Description
.
Text
=
b'All reference type attributes are specified.'
extobj
.
DisplayName
.
Text
=
b'ReferenceType'
extobj
.
Value
=
1371236
value
.
append
(
extobj
)
extobj
=
ua
.
EnumValueType
()
extobj
.
Description
.
Text
=
b'All view attributes are specified.'
extobj
.
DisplayName
.
Text
=
b'View'
extobj
.
Value
=
1335532
value
.
append
(
extobj
)
attrs
.
Value
=
ua
.
Variant
(
value
,
ua
.
VariantType
.
ExtensionObject
)
...
...
@@ -663,72 +727,118 @@ def create_standard_address_space_Part4(server):
attrs
.
DataType
=
ua
.
NodeId
.
from_string
(
"i=7594"
)
value
=
[]
extobj
=
ua
.
EnumValueType
()
extobj
.
Description
.
Text
=
b'No attributes are writable.'
extobj
.
DisplayName
.
Text
=
b'None'
extobj
.
Value
=
0
value
.
append
(
extobj
)
extobj
=
ua
.
EnumValueType
()
extobj
.
Description
.
Text
=
b'The access level attribute is writable.'
extobj
.
DisplayName
.
Text
=
b'AccessLevel'
extobj
.
Value
=
1
value
.
append
(
extobj
)
extobj
=
ua
.
EnumValueType
()
extobj
.
Description
.
Text
=
b'The array dimensions attribute is writable.'
extobj
.
DisplayName
.
Text
=
b'ArrayDimensions'
extobj
.
Value
=
2
value
.
append
(
extobj
)
extobj
=
ua
.
EnumValueType
()
extobj
.
Description
.
Text
=
b'The browse name attribute is writable.'
extobj
.
DisplayName
.
Text
=
b'BrowseName'
extobj
.
Value
=
4
value
.
append
(
extobj
)
extobj
=
ua
.
EnumValueType
()
extobj
.
Description
.
Text
=
b'The contains no loops attribute is writable.'
extobj
.
DisplayName
.
Text
=
b'ContainsNoLoops'
extobj
.
Value
=
8
value
.
append
(
extobj
)
extobj
=
ua
.
EnumValueType
()
extobj
.
Description
.
Text
=
b'The data type attribute is writable.'
extobj
.
DisplayName
.
Text
=
b'DataType'
extobj
.
Value
=
16
value
.
append
(
extobj
)
extobj
=
ua
.
EnumValueType
()
extobj
.
Description
.
Text
=
b'The description attribute is writable.'
extobj
.
DisplayName
.
Text
=
b'Description'
extobj
.
Value
=
32
value
.
append
(
extobj
)
extobj
=
ua
.
EnumValueType
()
extobj
.
Description
.
Text
=
b'The display name attribute is writable.'
extobj
.
DisplayName
.
Text
=
b'DisplayName'
extobj
.
Value
=
64
value
.
append
(
extobj
)
extobj
=
ua
.
EnumValueType
()
extobj
.
Description
.
Text
=
b'The event notifier attribute is writable.'
extobj
.
DisplayName
.
Text
=
b'EventNotifier'
extobj
.
Value
=
128
value
.
append
(
extobj
)
extobj
=
ua
.
EnumValueType
()
extobj
.
Description
.
Text
=
b'The executable attribute is writable.'
extobj
.
DisplayName
.
Text
=
b'Executable'
extobj
.
Value
=
256
value
.
append
(
extobj
)
extobj
=
ua
.
EnumValueType
()
extobj
.
Description
.
Text
=
b'The historizing attribute is writable.'
extobj
.
DisplayName
.
Text
=
b'Historizing'
extobj
.
Value
=
512
value
.
append
(
extobj
)
extobj
=
ua
.
EnumValueType
()
extobj
.
Description
.
Text
=
b'The inverse name attribute is writable.'
extobj
.
DisplayName
.
Text
=
b'InverseName'
extobj
.
Value
=
1024
value
.
append
(
extobj
)
extobj
=
ua
.
EnumValueType
()
extobj
.
Description
.
Text
=
b'The is abstract attribute is writable.'
extobj
.
DisplayName
.
Text
=
b'IsAbstract'
extobj
.
Value
=
2048
value
.
append
(
extobj
)
extobj
=
ua
.
EnumValueType
()
extobj
.
Description
.
Text
=
b'The minimum sampling interval attribute is writable.'
extobj
.
DisplayName
.
Text
=
b'MinimumSamplingInterval'
extobj
.
Value
=
4096
value
.
append
(
extobj
)
extobj
=
ua
.
EnumValueType
()
extobj
.
Description
.
Text
=
b'The node class attribute is writable.'
extobj
.
DisplayName
.
Text
=
b'NodeClass'
extobj
.
Value
=
8192
value
.
append
(
extobj
)
extobj
=
ua
.
EnumValueType
()
extobj
.
Description
.
Text
=
b'The node id attribute is writable.'
extobj
.
DisplayName
.
Text
=
b'NodeId'
extobj
.
Value
=
16384
value
.
append
(
extobj
)
extobj
=
ua
.
EnumValueType
()
extobj
.
Description
.
Text
=
b'The symmetric attribute is writable.'
extobj
.
DisplayName
.
Text
=
b'Symmetric'
extobj
.
Value
=
32768
value
.
append
(
extobj
)
extobj
=
ua
.
EnumValueType
()
extobj
.
Description
.
Text
=
b'The user access level attribute is writable.'
extobj
.
DisplayName
.
Text
=
b'UserAccessLevel'
extobj
.
Value
=
65536
value
.
append
(
extobj
)
extobj
=
ua
.
EnumValueType
()
extobj
.
Description
.
Text
=
b'The user executable attribute is writable.'
extobj
.
DisplayName
.
Text
=
b'UserExecutable'
extobj
.
Value
=
131072
value
.
append
(
extobj
)
extobj
=
ua
.
EnumValueType
()
extobj
.
Description
.
Text
=
b'The user write mask attribute is writable.'
extobj
.
DisplayName
.
Text
=
b'UserWriteMask'
extobj
.
Value
=
262144
value
.
append
(
extobj
)
extobj
=
ua
.
EnumValueType
()
extobj
.
Description
.
Text
=
b'The value rank attribute is writable.'
extobj
.
DisplayName
.
Text
=
b'ValueRank'
extobj
.
Value
=
524288
value
.
append
(
extobj
)
extobj
=
ua
.
EnumValueType
()
extobj
.
Description
.
Text
=
b'The write mask attribute is writable.'
extobj
.
DisplayName
.
Text
=
b'WriteMask'
extobj
.
Value
=
1048576
value
.
append
(
extobj
)
extobj
=
ua
.
EnumValueType
()
extobj
.
Description
.
Text
=
b'The value attribute is writable.'
extobj
.
DisplayName
.
Text
=
b'ValueForVariableType'
extobj
.
Value
=
2097152
value
.
append
(
extobj
)
attrs
.
Value
=
ua
.
Variant
(
value
,
ua
.
VariantType
.
ExtensionObject
)
...
...
@@ -1070,15 +1180,19 @@ def create_standard_address_space_Part4(server):
attrs
.
DataType
=
ua
.
NodeId
.
from_string
(
"i=7594"
)
value
=
[]
extobj
=
ua
.
EnumValueType
()
extobj
.
DisplayName
.
Text
=
b'Insert'
extobj
.
Value
=
1
value
.
append
(
extobj
)
extobj
=
ua
.
EnumValueType
()
extobj
.
DisplayName
.
Text
=
b'Replace'
extobj
.
Value
=
2
value
.
append
(
extobj
)
extobj
=
ua
.
EnumValueType
()
extobj
.
DisplayName
.
Text
=
b'Update'
extobj
.
Value
=
3
value
.
append
(
extobj
)
extobj
=
ua
.
EnumValueType
()
extobj
.
DisplayName
.
Text
=
b'Delete'
extobj
.
Value
=
4
value
.
append
(
extobj
)
attrs
.
Value
=
ua
.
Variant
(
value
,
ua
.
VariantType
.
ExtensionObject
)
...
...
@@ -1127,15 +1241,19 @@ def create_standard_address_space_Part4(server):
attrs
.
DataType
=
ua
.
NodeId
.
from_string
(
"i=7594"
)
value
=
[]
extobj
=
ua
.
EnumValueType
()
extobj
.
DisplayName
.
Text
=
b'Insert'
extobj
.
Value
=
1
value
.
append
(
extobj
)
extobj
=
ua
.
EnumValueType
()
extobj
.
DisplayName
.
Text
=
b'Replace'
extobj
.
Value
=
2
value
.
append
(
extobj
)
extobj
=
ua
.
EnumValueType
()
extobj
.
DisplayName
.
Text
=
b'Update'
extobj
.
Value
=
3
value
.
append
(
extobj
)
extobj
=
ua
.
EnumValueType
()
extobj
.
DisplayName
.
Text
=
b'Remove'
extobj
.
Value
=
4
value
.
append
(
extobj
)
attrs
.
Value
=
ua
.
Variant
(
value
,
ua
.
VariantType
.
ExtensionObject
)
...
...
opcua/server/standard_address_space/standard_address_space_part5.py
View file @
95aab64e
...
...
@@ -2425,9 +2425,9 @@ def create_standard_address_space_Part5(server):
attrs.DataType = ua.NodeId.from_string("i=296")
value = []
extobj = ua.Argument()
extobj.DataType = ua.NodeId.from_string("i=7")
extobj.Name = 'SubscriptionId'
extobj.ValueRank = -1
extobj.DataType = ua.NodeId.from_string("i=7")
value.append(extobj)
attrs.Value = ua.Variant(value, ua.VariantType.ExtensionObject)
attrs.ValueRank = 1
...
...
@@ -2455,14 +2455,14 @@ def create_standard_address_space_Part5(server):
attrs.DataType = ua.NodeId.from_string("i=296")
value = []
extobj = ua.Argument()
extobj.DataType = ua.NodeId.from_string("i=7")
extobj.Name = 'ServerHandles'
extobj.ValueRank = 1
extobj.DataType = ua.NodeId.from_string("i=7")
value.append(extobj)
extobj = ua.Argument()
extobj.DataType = ua.NodeId.from_string("i=7")
extobj.Name = 'ClientHandles'
extobj.ValueRank = 1
extobj.DataType = ua.NodeId.from_string("i=7")
value.append(extobj)
attrs.Value = ua.Variant(value, ua.VariantType.ExtensionObject)
attrs.ValueRank = 1
...
...
@@ -2517,9 +2517,9 @@ def create_standard_address_space_Part5(server):
attrs.DataType = ua.NodeId.from_string("i=296")
value = []
extobj = ua.Argument()
extobj.DataType = ua.NodeId.from_string("i=7")
extobj.Name = 'SubscriptionId'
extobj.ValueRank = -1
extobj.DataType = ua.NodeId.from_string("i=7")
value.append(extobj)
attrs.Value = ua.Variant(value, ua.VariantType.ExtensionObject)
attrs.ValueRank = 1
...
...
@@ -2581,14 +2581,14 @@ def create_standard_address_space_Part5(server):
attrs.DataType = ua.NodeId.from_string("i=296")
value = []
extobj = ua.Argument()
extobj.DataType = ua.NodeId.from_string("i=7")
extobj.Name = 'SubscriptionId'
extobj.ValueRank = -1
extobj.DataType = ua.NodeId.from_string("i=7")
value.append(extobj)
extobj = ua.Argument()
extobj.DataType = ua.NodeId.from_string("i=7")
extobj.Name = 'LifetimeInHours'
extobj.ValueRank = -1
extobj.DataType = ua.NodeId.from_string("i=7")
value.append(extobj)
attrs.Value = ua.Variant(value, ua.VariantType.ExtensionObject)
attrs.ValueRank = 1
...
...
@@ -2616,9 +2616,9 @@ def create_standard_address_space_Part5(server):
attrs.DataType = ua.NodeId.from_string("i=296")
value = []
extobj = ua.Argument()
extobj.DataType = ua.NodeId.from_string("i=7")
extobj.Name = 'RevisedLifetimeInHours'
extobj.ValueRank = -1
extobj.DataType = ua.NodeId.from_string("i=7")
value.append(extobj)
attrs.Value = ua.Variant(value, ua.VariantType.ExtensionObject)
attrs.ValueRank = 1
...
...
@@ -2673,29 +2673,29 @@ def create_standard_address_space_Part5(server):
attrs.DataType = ua.NodeId.from_string("i=296")
value = []
extobj = ua.Argument()
extobj.DataType = ua.NodeId.from_string("i=852")
extobj.Name = 'State'
extobj.ValueRank = -1
extobj.DataType = ua.NodeId.from_string("i=852")
value.append(extobj)
extobj = ua.Argument()
extobj.DataType = ua.NodeId.from_string("i=13")
extobj.Name = 'EstimatedReturnTime'
extobj.ValueRank = -1
extobj.DataType = ua.NodeId.from_string("i=13")
value.append(extobj)
extobj = ua.Argument()
extobj.DataType = ua.NodeId.from_string("i=7")
extobj.Name = 'SecondsTillShutdown'
extobj.ValueRank = -1
extobj.DataType = ua.NodeId.from_string("i=7")
value.append(extobj)
extobj = ua.Argument()
extobj.DataType = ua.NodeId.from_string("i=21")
extobj.Name = 'Reason'
extobj.ValueRank = -1
extobj.DataType = ua.NodeId.from_string("i=21")
value.append(extobj)
extobj = ua.Argument()
extobj.DataType = ua.NodeId.from_string("i=1")
extobj.Name = 'Restart'
extobj.ValueRank = -1
extobj.DataType = ua.NodeId.from_string("i=1")
value.append(extobj)
attrs.Value = ua.Variant(value, ua.VariantType.ExtensionObject)
attrs.ValueRank = 1
...
...
@@ -8047,9 +8047,9 @@ def create_standard_address_space_Part5(server):
attrs.DataType = ua.NodeId.from_string("i=296")
value = []
extobj = ua.Argument()
extobj.DataType = ua.NodeId.from_string("i=3")
extobj.Name = 'Mode'
extobj.ValueRank = -1
extobj.DataType = ua.NodeId.from_string("i=3")
value.append(extobj)
attrs.Value = ua.Variant(value, ua.VariantType.ExtensionObject)
attrs.ValueRank = 1
...
...
@@ -8077,9 +8077,9 @@ def create_standard_address_space_Part5(server):
attrs.DataType = ua.NodeId.from_string("i=296")
value = []
extobj = ua.Argument()
extobj.DataType = ua.NodeId.from_string("i=7")
extobj.Name = 'FileHandle'
extobj.ValueRank = -1
extobj.DataType = ua.NodeId.from_string("i=7")
value.append(extobj)
attrs.Value = ua.Variant(value, ua.VariantType.ExtensionObject)
attrs.ValueRank = 1
...
...
@@ -8134,9 +8134,9 @@ def create_standard_address_space_Part5(server):
attrs.DataType = ua.NodeId.from_string("i=296")
value = []
extobj = ua.Argument()
extobj.DataType = ua.NodeId.from_string("i=7")
extobj.Name = 'FileHandle'
extobj.ValueRank = -1
extobj.DataType = ua.NodeId.from_string("i=7")
value.append(extobj)
attrs.Value = ua.Variant(value, ua.VariantType.ExtensionObject)
attrs.ValueRank = 1
...
...
@@ -8198,14 +8198,14 @@ def create_standard_address_space_Part5(server):
attrs.DataType = ua.NodeId.from_string("i=296")
value = []
extobj = ua.Argument()
extobj.DataType = ua.NodeId.from_string("i=7")
extobj.Name = 'FileHandle'
extobj.ValueRank = -1
extobj.DataType = ua.NodeId.from_string("i=7")
value.append(extobj)
extobj = ua.Argument()
extobj.DataType = ua.NodeId.from_string("i=6")
extobj.Name = 'Length'
extobj.ValueRank = -1
extobj.DataType = ua.NodeId.from_string("i=6")
value.append(extobj)
attrs.Value = ua.Variant(value, ua.VariantType.ExtensionObject)
attrs.ValueRank = 1
...
...
@@ -8233,9 +8233,9 @@ def create_standard_address_space_Part5(server):
attrs.DataType = ua.NodeId.from_string("i=296")
value = []
extobj = ua.Argument()
extobj.DataType = ua.NodeId.from_string("i=15")
extobj.Name = 'Data'
extobj.ValueRank = -1
extobj.DataType = ua.NodeId.from_string("i=15")
value.append(extobj)
attrs.Value = ua.Variant(value, ua.VariantType.ExtensionObject)
attrs.ValueRank = 1
...
...
@@ -8290,14 +8290,14 @@ def create_standard_address_space_Part5(server):
attrs.DataType = ua.NodeId.from_string("i=296")
value = []
extobj = ua.Argument()
extobj.DataType = ua.NodeId.from_string("i=7")
extobj.Name = 'FileHandle'
extobj.ValueRank = -1
extobj.DataType = ua.NodeId.from_string("i=7")
value.append(extobj)
extobj = ua.Argument()
extobj.DataType = ua.NodeId.from_string("i=15")
extobj.Name = 'Data'
extobj.ValueRank = -1
extobj.DataType = ua.NodeId.from_string("i=15")
value.append(extobj)
attrs.Value = ua.Variant(value, ua.VariantType.ExtensionObject)
attrs.ValueRank = 1
...
...
@@ -8359,9 +8359,9 @@ def create_standard_address_space_Part5(server):
attrs.DataType = ua.NodeId.from_string("i=296")
value = []
extobj = ua.Argument()
extobj.DataType = ua.NodeId.from_string("i=7")
extobj.Name = 'FileHandle'
extobj.ValueRank = -1
extobj.DataType = ua.NodeId.from_string("i=7")
value.append(extobj)
attrs.Value = ua.Variant(value, ua.VariantType.ExtensionObject)
attrs.ValueRank = 1
...
...
@@ -8389,9 +8389,9 @@ def create_standard_address_space_Part5(server):
attrs.DataType = ua.NodeId.from_string("i=296")
value = []
extobj = ua.Argument()
extobj.DataType = ua.NodeId.from_string("i=9")
extobj.Name = 'Position'
extobj.ValueRank = -1
extobj.DataType = ua.NodeId.from_string("i=9")
value.append(extobj)
attrs.Value = ua.Variant(value, ua.VariantType.ExtensionObject)
attrs.ValueRank = 1
...
...
@@ -8446,14 +8446,14 @@ def create_standard_address_space_Part5(server):
attrs.DataType = ua.NodeId.from_string("i=296")
value = []
extobj = ua.Argument()
extobj.DataType = ua.NodeId.from_string("i=7")
extobj.Name = 'FileHandle'
extobj.ValueRank = -1
extobj.DataType = ua.NodeId.from_string("i=7")
value.append(extobj)
extobj = ua.Argument()
extobj.DataType = ua.NodeId.from_string("i=9")
extobj.Name = 'Position'
extobj.ValueRank = -1
extobj.DataType = ua.NodeId.from_string("i=9")
value.append(extobj)
attrs.Value = ua.Variant(value, ua.VariantType.ExtensionObject)
attrs.ValueRank = 1
...
...
@@ -8621,9 +8621,9 @@ def create_standard_address_space_Part5(server):
attrs.DataType = ua.NodeId.from_string("i=296")
value = []
extobj = ua.Argument()
extobj.DataType = ua.NodeId.from_string("i=12")
extobj.Name = 'DirectoryName'
extobj.ValueRank = -1
extobj.DataType = ua.NodeId.from_string("i=12")
value.append(extobj)
attrs.Value = ua.Variant(value, ua.VariantType.ExtensionObject)
attrs.ValueRank = 1
...
...
@@ -8651,9 +8651,9 @@ def create_standard_address_space_Part5(server):
attrs.DataType = ua.NodeId.from_string("i=296")
value = []
extobj = ua.Argument()
extobj.DataType = ua.NodeId.from_string("i=17")
extobj.Name = 'DirectoryNodeId'
extobj.ValueRank = -1
extobj.DataType = ua.NodeId.from_string("i=17")
value.append(extobj)
attrs.Value = ua.Variant(value, ua.VariantType.ExtensionObject)
attrs.ValueRank = 1
...
...
@@ -8715,14 +8715,14 @@ def create_standard_address_space_Part5(server):
attrs.DataType = ua.NodeId.from_string("i=296")
value = []
extobj = ua.Argument()
extobj.DataType = ua.NodeId.from_string("i=12")
extobj.Name = 'FileName'
extobj.ValueRank = -1
extobj.DataType = ua.NodeId.from_string("i=12")
value.append(extobj)
extobj = ua.Argument()
extobj.DataType = ua.NodeId.from_string("i=1")
extobj.Name = 'RequestFileOpen'
extobj.ValueRank = -1
extobj.DataType = ua.NodeId.from_string("i=1")
value.append(extobj)
attrs.Value = ua.Variant(value, ua.VariantType.ExtensionObject)
attrs.ValueRank = 1
...
...
@@ -8750,14 +8750,14 @@ def create_standard_address_space_Part5(server):
attrs.DataType = ua.NodeId.from_string("i=296")
value = []
extobj = ua.Argument()
extobj.DataType = ua.NodeId.from_string("i=17")
extobj.Name = 'FileNodeId'
extobj.ValueRank = -1
extobj.DataType = ua.NodeId.from_string("i=17")
value.append(extobj)
extobj = ua.Argument()
extobj.DataType = ua.NodeId.from_string("i=7")
extobj.Name = 'FileHandle'
extobj.ValueRank = -1
extobj.DataType = ua.NodeId.from_string("i=7")
value.append(extobj)
attrs.Value = ua.Variant(value, ua.VariantType.ExtensionObject)
attrs.ValueRank = 1
...
...
@@ -8812,9 +8812,9 @@ def create_standard_address_space_Part5(server):
attrs.DataType = ua.NodeId.from_string("i=296")
value = []
extobj = ua.Argument()
extobj.DataType = ua.NodeId.from_string("i=17")
extobj.Name = 'ObjectToDelete'
extobj.ValueRank = -1
extobj.DataType = ua.NodeId.from_string("i=17")
value.append(extobj)
attrs.Value = ua.Variant(value, ua.VariantType.ExtensionObject)
attrs.ValueRank = 1
...
...
@@ -8876,24 +8876,24 @@ def create_standard_address_space_Part5(server):
attrs.DataType = ua.NodeId.from_string("i=296")
value = []
extobj = ua.Argument()
extobj.DataType = ua.NodeId.from_string("i=17")
extobj.Name = 'ObjectToMoveOrCopy'
extobj.ValueRank = -1
extobj.DataType = ua.NodeId.from_string("i=17")
value.append(extobj)
extobj = ua.Argument()
extobj.DataType = ua.NodeId.from_string("i=17")
extobj.Name = 'TargetDirectory'
extobj.ValueRank = -1
extobj.DataType = ua.NodeId.from_string("i=17")
value.append(extobj)
extobj = ua.Argument()
extobj.DataType = ua.NodeId.from_string("i=1")
extobj.Name = 'CreateCopy'
extobj.ValueRank = -1
extobj.DataType = ua.NodeId.from_string("i=1")
value.append(extobj)
extobj = ua.Argument()
extobj.DataType = ua.NodeId.from_string("i=12")
extobj.Name = 'NewName'
extobj.ValueRank = -1
extobj.DataType = ua.NodeId.from_string("i=12")
value.append(extobj)
attrs.Value = ua.Variant(value, ua.VariantType.ExtensionObject)
attrs.ValueRank = 1
...
...
@@ -8921,9 +8921,9 @@ def create_standard_address_space_Part5(server):
attrs.DataType = ua.NodeId.from_string("i=296")
value = []
extobj = ua.Argument()
extobj.DataType = ua.NodeId.from_string("i=17")
extobj.Name = 'NewNodeId'
extobj.ValueRank = -1
extobj.DataType = ua.NodeId.from_string("i=17")
value.append(extobj)
attrs.Value = ua.Variant(value, ua.VariantType.ExtensionObject)
attrs.ValueRank = 1
...
...
@@ -9173,9 +9173,9 @@ def create_standard_address_space_Part5(server):
attrs.DataType = ua.NodeId.from_string("i=296")
value = []
extobj = ua.Argument()
extobj.DataType = ua.NodeId.from_string("i=3")
extobj.Name = 'Mode'
extobj.ValueRank = -1
extobj.DataType = ua.NodeId.from_string("i=3")
value.append(extobj)
attrs.Value = ua.Variant(value, ua.VariantType.ExtensionObject)
attrs.ValueRank = 1
...
...
@@ -9203,9 +9203,9 @@ def create_standard_address_space_Part5(server):
attrs.DataType = ua.NodeId.from_string("i=296")
value = []
extobj = ua.Argument()
extobj.DataType = ua.NodeId.from_string("i=7")
extobj.Name = 'FileHandle'
extobj.ValueRank = -1
extobj.DataType = ua.NodeId.from_string("i=7")
value.append(extobj)
attrs.Value = ua.Variant(value, ua.VariantType.ExtensionObject)
attrs.ValueRank = 1
...
...
@@ -9260,9 +9260,9 @@ def create_standard_address_space_Part5(server):
attrs.DataType = ua.NodeId.from_string("i=296")
value = []
extobj = ua.Argument()
extobj.DataType = ua.NodeId.from_string("i=7")
extobj.Name = 'FileHandle'
extobj.ValueRank = -1
extobj.DataType = ua.NodeId.from_string("i=7")
value.append(extobj)
attrs.Value = ua.Variant(value, ua.VariantType.ExtensionObject)
attrs.ValueRank = 1
...
...
@@ -9324,14 +9324,14 @@ def create_standard_address_space_Part5(server):
attrs.DataType = ua.NodeId.from_string("i=296")
value = []
extobj = ua.Argument()
extobj.DataType = ua.NodeId.from_string("i=7")
extobj.Name = 'FileHandle'
extobj.ValueRank = -1
extobj.DataType = ua.NodeId.from_string("i=7")
value.append(extobj)
extobj = ua.Argument()
extobj.DataType = ua.NodeId.from_string("i=6")
extobj.Name = 'Length'
extobj.ValueRank = -1
extobj.DataType = ua.NodeId.from_string("i=6")
value.append(extobj)
attrs.Value = ua.Variant(value, ua.VariantType.ExtensionObject)
attrs.ValueRank = 1
...
...
@@ -9359,9 +9359,9 @@ def create_standard_address_space_Part5(server):
attrs.DataType = ua.NodeId.from_string("i=296")
value = []
extobj = ua.Argument()
extobj.DataType = ua.NodeId.from_string("i=15")
extobj.Name = 'Data'
extobj.ValueRank = -1
extobj.DataType = ua.NodeId.from_string("i=15")
value.append(extobj)
attrs.Value = ua.Variant(value, ua.VariantType.ExtensionObject)
attrs.ValueRank = 1
...
...
@@ -9416,14 +9416,14 @@ def create_standard_address_space_Part5(server):
attrs.DataType = ua.NodeId.from_string("i=296")
value = []
extobj = ua.Argument()
extobj.DataType = ua.NodeId.from_string("i=7")
extobj.Name = 'FileHandle'
extobj.ValueRank = -1
extobj.DataType = ua.NodeId.from_string("i=7")
value.append(extobj)
extobj = ua.Argument()
extobj.DataType = ua.NodeId.from_string("i=15")
extobj.Name = 'Data'
extobj.ValueRank = -1
extobj.DataType = ua.NodeId.from_string("i=15")
value.append(extobj)
attrs.Value = ua.Variant(value, ua.VariantType.ExtensionObject)
attrs.ValueRank = 1
...
...
@@ -9485,9 +9485,9 @@ def create_standard_address_space_Part5(server):
attrs.DataType = ua.NodeId.from_string("i=296")
value = []
extobj = ua.Argument()
extobj.DataType = ua.NodeId.from_string("i=7")
extobj.Name = 'FileHandle'
extobj.ValueRank = -1
extobj.DataType = ua.NodeId.from_string("i=7")
value.append(extobj)
attrs.Value = ua.Variant(value, ua.VariantType.ExtensionObject)
attrs.ValueRank = 1
...
...
@@ -9515,9 +9515,9 @@ def create_standard_address_space_Part5(server):
attrs.DataType = ua.NodeId.from_string("i=296")
value = []
extobj = ua.Argument()
extobj.DataType = ua.NodeId.from_string("i=9")
extobj.Name = 'Position'
extobj.ValueRank = -1
extobj.DataType = ua.NodeId.from_string("i=9")
value.append(extobj)
attrs.Value = ua.Variant(value, ua.VariantType.ExtensionObject)
attrs.ValueRank = 1
...
...
@@ -9572,14 +9572,14 @@ def create_standard_address_space_Part5(server):
attrs.DataType = ua.NodeId.from_string("i=296")
value = []
extobj = ua.Argument()
extobj.DataType = ua.NodeId.from_string("i=7")
extobj.Name = 'FileHandle'
extobj.ValueRank = -1
extobj.DataType = ua.NodeId.from_string("i=7")
value.append(extobj)
extobj = ua.Argument()
extobj.DataType = ua.NodeId.from_string("i=9")
extobj.Name = 'Position'
extobj.ValueRank = -1
extobj.DataType = ua.NodeId.from_string("i=9")
value.append(extobj)
attrs.Value = ua.Variant(value, ua.VariantType.ExtensionObject)
attrs.ValueRank = 1
...
...
@@ -9641,9 +9641,9 @@ def create_standard_address_space_Part5(server):
attrs.DataType = ua.NodeId.from_string("i=296")
value = []
extobj = ua.Argument()
extobj.DataType = ua.NodeId.from_string("i=12")
extobj.Name = 'DirectoryName'
extobj.ValueRank = -1
extobj.DataType = ua.NodeId.from_string("i=12")
value.append(extobj)
attrs.Value = ua.Variant(value, ua.VariantType.ExtensionObject)
attrs.ValueRank = 1
...
...
@@ -9671,9 +9671,9 @@ def create_standard_address_space_Part5(server):
attrs.DataType = ua.NodeId.from_string("i=296")
value = []
extobj = ua.Argument()
extobj.DataType = ua.NodeId.from_string("i=17")
extobj.Name = 'DirectoryNodeId'
extobj.ValueRank = -1
extobj.DataType = ua.NodeId.from_string("i=17")
value.append(extobj)
attrs.Value = ua.Variant(value, ua.VariantType.ExtensionObject)
attrs.ValueRank = 1
...
...
@@ -9735,14 +9735,14 @@ def create_standard_address_space_Part5(server):
attrs.DataType = ua.NodeId.from_string("i=296")
value = []
extobj = ua.Argument()
extobj.DataType = ua.NodeId.from_string("i=12")
extobj.Name = 'FileName'
extobj.ValueRank = -1
extobj.DataType = ua.NodeId.from_string("i=12")
value.append(extobj)
extobj = ua.Argument()
extobj.DataType = ua.NodeId.from_string("i=1")
extobj.Name = 'RequestFileOpen'
extobj.ValueRank = -1
extobj.DataType = ua.NodeId.from_string("i=1")
value.append(extobj)
attrs.Value = ua.Variant(value, ua.VariantType.ExtensionObject)
attrs.ValueRank = 1
...
...
@@ -9770,14 +9770,14 @@ def create_standard_address_space_Part5(server):
attrs.DataType = ua.NodeId.from_string("i=296")
value = []
extobj = ua.Argument()
extobj.DataType = ua.NodeId.from_string("i=17")
extobj.Name = 'FileNodeId'
extobj.ValueRank = -1
extobj.DataType = ua.NodeId.from_string("i=17")
value.append(extobj)
extobj = ua.Argument()
extobj.DataType = ua.NodeId.from_string("i=7")
extobj.Name = 'FileHandle'
extobj.ValueRank = -1
extobj.DataType = ua.NodeId.from_string("i=7")
value.append(extobj)
attrs.Value = ua.Variant(value, ua.VariantType.ExtensionObject)
attrs.ValueRank = 1
...
...
@@ -9832,9 +9832,9 @@ def create_standard_address_space_Part5(server):
attrs.DataType = ua.NodeId.from_string("i=296")
value = []
extobj = ua.Argument()
extobj.DataType = ua.NodeId.from_string("i=17")
extobj.Name = 'ObjectToDelete'
extobj.ValueRank = -1
extobj.DataType = ua.NodeId.from_string("i=17")
value.append(extobj)
attrs.Value = ua.Variant(value, ua.VariantType.ExtensionObject)
attrs.ValueRank = 1
...
...
@@ -9896,24 +9896,24 @@ def create_standard_address_space_Part5(server):
attrs.DataType = ua.NodeId.from_string("i=296")
value = []
extobj = ua.Argument()
extobj.DataType = ua.NodeId.from_string("i=17")
extobj.Name = 'ObjectToMoveOrCopy'
extobj.ValueRank = -1
extobj.DataType = ua.NodeId.from_string("i=17")
value.append(extobj)
extobj = ua.Argument()
extobj.DataType = ua.NodeId.from_string("i=17")
extobj.Name = 'TargetDirectory'
extobj.ValueRank = -1
extobj.DataType = ua.NodeId.from_string("i=17")
value.append(extobj)
extobj = ua.Argument()
extobj.DataType = ua.NodeId.from_string("i=1")
extobj.Name = 'CreateCopy'
extobj.ValueRank = -1
extobj.DataType = ua.NodeId.from_string("i=1")
value.append(extobj)
extobj = ua.Argument()
extobj.DataType = ua.NodeId.from_string("i=12")
extobj.Name = 'NewName'
extobj.ValueRank = -1
extobj.DataType = ua.NodeId.from_string("i=12")
value.append(extobj)
attrs.Value = ua.Variant(value, ua.VariantType.ExtensionObject)
attrs.ValueRank = 1
...
...
@@ -9941,9 +9941,9 @@ def create_standard_address_space_Part5(server):
attrs.DataType = ua.NodeId.from_string("i=296")
value = []
extobj = ua.Argument()
extobj.DataType = ua.NodeId.from_string("i=17")
extobj.Name = 'NewNodeId'
extobj.ValueRank = -1
extobj.DataType = ua.NodeId.from_string("i=17")
value.append(extobj)
attrs.Value = ua.Variant(value, ua.VariantType.ExtensionObject)
attrs.ValueRank = 1
...
...
@@ -10476,9 +10476,9 @@ def create_standard_address_space_Part5(server):
attrs.DataType = ua.NodeId.from_string("i=296")
value = []
extobj = ua.Argument()
extobj.DataType = ua.NodeId.from_string("i=3")
extobj.Name = 'Mode'
extobj.ValueRank = -1
extobj.DataType = ua.NodeId.from_string("i=3")
value.append(extobj)
attrs.Value = ua.Variant(value, ua.VariantType.ExtensionObject)
attrs.ValueRank = 1
...
...
@@ -10506,9 +10506,9 @@ def create_standard_address_space_Part5(server):
attrs.DataType = ua.NodeId.from_string("i=296")
value = []
extobj = ua.Argument()
extobj.DataType = ua.NodeId.from_string("i=7")
extobj.Name = 'FileHandle'
extobj.ValueRank = -1
extobj.DataType = ua.NodeId.from_string("i=7")
value.append(extobj)
attrs.Value = ua.Variant(value, ua.VariantType.ExtensionObject)
attrs.ValueRank = 1
...
...
@@ -10563,9 +10563,9 @@ def create_standard_address_space_Part5(server):
attrs.DataType = ua.NodeId.from_string("i=296")
value = []
extobj = ua.Argument()
extobj.DataType = ua.NodeId.from_string("i=7")
extobj.Name = 'FileHandle'
extobj.ValueRank = -1
extobj.DataType = ua.NodeId.from_string("i=7")
value.append(extobj)
attrs.Value = ua.Variant(value, ua.VariantType.ExtensionObject)
attrs.ValueRank = 1
...
...
@@ -10627,14 +10627,14 @@ def create_standard_address_space_Part5(server):
attrs.DataType = ua.NodeId.from_string("i=296")
value = []
extobj = ua.Argument()
extobj.DataType = ua.NodeId.from_string("i=7")
extobj.Name = 'FileHandle'
extobj.ValueRank = -1
extobj.DataType = ua.NodeId.from_string("i=7")
value.append(extobj)
extobj = ua.Argument()
extobj.DataType = ua.NodeId.from_string("i=6")
extobj.Name = 'Length'
extobj.ValueRank = -1
extobj.DataType = ua.NodeId.from_string("i=6")
value.append(extobj)
attrs.Value = ua.Variant(value, ua.VariantType.ExtensionObject)
attrs.ValueRank = 1
...
...
@@ -10662,9 +10662,9 @@ def create_standard_address_space_Part5(server):
attrs.DataType = ua.NodeId.from_string("i=296")
value = []
extobj = ua.Argument()
extobj.DataType = ua.NodeId.from_string("i=15")
extobj.Name = 'Data'
extobj.ValueRank = -1
extobj.DataType = ua.NodeId.from_string("i=15")
value.append(extobj)
attrs.Value = ua.Variant(value, ua.VariantType.ExtensionObject)
attrs.ValueRank = 1
...
...
@@ -10719,14 +10719,14 @@ def create_standard_address_space_Part5(server):
attrs.DataType = ua.NodeId.from_string("i=296")
value = []
extobj = ua.Argument()
extobj.DataType = ua.NodeId.from_string("i=7")
extobj.Name = 'FileHandle'
extobj.ValueRank = -1
extobj.DataType = ua.NodeId.from_string("i=7")
value.append(extobj)
extobj = ua.Argument()
extobj.DataType = ua.NodeId.from_string("i=15")
extobj.Name = 'Data'
extobj.ValueRank = -1
extobj.DataType = ua.NodeId.from_string("i=15")
value.append(extobj)
attrs.Value = ua.Variant(value, ua.VariantType.ExtensionObject)
attrs.ValueRank = 1
...
...
@@ -10788,9 +10788,9 @@ def create_standard_address_space_Part5(server):
attrs.DataType = ua.NodeId.from_string("i=296")
value = []
extobj = ua.Argument()
extobj.DataType = ua.NodeId.from_string("i=7")
extobj.Name = 'FileHandle'
extobj.ValueRank = -1
extobj.DataType = ua.NodeId.from_string("i=7")
value.append(extobj)
attrs.Value = ua.Variant(value, ua.VariantType.ExtensionObject)
attrs.ValueRank = 1
...
...
@@ -10818,9 +10818,9 @@ def create_standard_address_space_Part5(server):
attrs.DataType = ua.NodeId.from_string("i=296")
value = []
extobj = ua.Argument()
extobj.DataType = ua.NodeId.from_string("i=9")
extobj.Name = 'Position'
extobj.ValueRank = -1
extobj.DataType = ua.NodeId.from_string("i=9")
value.append(extobj)
attrs.Value = ua.Variant(value, ua.VariantType.ExtensionObject)
attrs.ValueRank = 1
...
...
@@ -10875,14 +10875,14 @@ def create_standard_address_space_Part5(server):
attrs.DataType = ua.NodeId.from_string("i=296")
value = []
extobj = ua.Argument()
extobj.DataType = ua.NodeId.from_string("i=7")
extobj.Name = 'FileHandle'
extobj.ValueRank = -1
extobj.DataType = ua.NodeId.from_string("i=7")
value.append(extobj)
extobj = ua.Argument()
extobj.DataType = ua.NodeId.from_string("i=9")
extobj.Name = 'Position'
extobj.ValueRank = -1
extobj.DataType = ua.NodeId.from_string("i=9")
value.append(extobj)
attrs.Value = ua.Variant(value, ua.VariantType.ExtensionObject)
attrs.ValueRank = 1
...
...
@@ -11401,9 +11401,9 @@ def create_standard_address_space_Part5(server):
attrs.DataType = ua.NodeId.from_string("i=296")
value = []
extobj = ua.Argument()
extobj.DataType = ua.NodeId.from_string("i=3")
extobj.Name = 'Mode'
extobj.ValueRank = -1
extobj.DataType = ua.NodeId.from_string("i=3")
value.append(extobj)
attrs.Value = ua.Variant(value, ua.VariantType.ExtensionObject)
attrs.ValueRank = 1
...
...
@@ -11431,9 +11431,9 @@ def create_standard_address_space_Part5(server):
attrs.DataType = ua.NodeId.from_string("i=296")
value = []
extobj = ua.Argument()
extobj.DataType = ua.NodeId.from_string("i=7")
extobj.Name = 'FileHandle'
extobj.ValueRank = -1
extobj.DataType = ua.NodeId.from_string("i=7")
value.append(extobj)
attrs.Value = ua.Variant(value, ua.VariantType.ExtensionObject)
attrs.ValueRank = 1
...
...
@@ -11488,9 +11488,9 @@ def create_standard_address_space_Part5(server):
attrs.DataType = ua.NodeId.from_string("i=296")
value = []
extobj = ua.Argument()
extobj.DataType = ua.NodeId.from_string("i=7")
extobj.Name = 'FileHandle'
extobj.ValueRank = -1
extobj.DataType = ua.NodeId.from_string("i=7")
value.append(extobj)
attrs.Value = ua.Variant(value, ua.VariantType.ExtensionObject)
attrs.ValueRank = 1
...
...
@@ -11552,14 +11552,14 @@ def create_standard_address_space_Part5(server):
attrs.DataType = ua.NodeId.from_string("i=296")
value = []
extobj = ua.Argument()
extobj.DataType = ua.NodeId.from_string("i=7")
extobj.Name = 'FileHandle'
extobj.ValueRank = -1
extobj.DataType = ua.NodeId.from_string("i=7")
value.append(extobj)
extobj = ua.Argument()
extobj.DataType = ua.NodeId.from_string("i=6")
extobj.Name = 'Length'
extobj.ValueRank = -1
extobj.DataType = ua.NodeId.from_string("i=6")
value.append(extobj)
attrs.Value = ua.Variant(value, ua.VariantType.ExtensionObject)
attrs.ValueRank = 1
...
...
@@ -11587,9 +11587,9 @@ def create_standard_address_space_Part5(server):
attrs.DataType = ua.NodeId.from_string("i=296")
value = []
extobj = ua.Argument()
extobj.DataType = ua.NodeId.from_string("i=15")
extobj.Name = 'Data'
extobj.ValueRank = -1
extobj.DataType = ua.NodeId.from_string("i=15")
value.append(extobj)
attrs.Value = ua.Variant(value, ua.VariantType.ExtensionObject)
attrs.ValueRank = 1
...
...
@@ -11644,14 +11644,14 @@ def create_standard_address_space_Part5(server):
attrs.DataType = ua.NodeId.from_string("i=296")
value = []
extobj = ua.Argument()
extobj.DataType = ua.NodeId.from_string("i=7")
extobj.Name = 'FileHandle'
extobj.ValueRank = -1
extobj.DataType = ua.NodeId.from_string("i=7")
value.append(extobj)
extobj = ua.Argument()
extobj.DataType = ua.NodeId.from_string("i=15")
extobj.Name = 'Data'
extobj.ValueRank = -1
extobj.DataType = ua.NodeId.from_string("i=15")
value.append(extobj)
attrs.Value = ua.Variant(value, ua.VariantType.ExtensionObject)
attrs.ValueRank = 1
...
...
@@ -11713,9 +11713,9 @@ def create_standard_address_space_Part5(server):
attrs.DataType = ua.NodeId.from_string("i=296")
value = []
extobj = ua.Argument()
extobj.DataType = ua.NodeId.from_string("i=7")
extobj.Name = 'FileHandle'
extobj.ValueRank = -1
extobj.DataType = ua.NodeId.from_string("i=7")
value.append(extobj)
attrs.Value = ua.Variant(value, ua.VariantType.ExtensionObject)
attrs.ValueRank = 1
...
...
@@ -11743,9 +11743,9 @@ def create_standard_address_space_Part5(server):
attrs.DataType = ua.NodeId.from_string("i=296")
value = []
extobj = ua.Argument()
extobj.DataType = ua.NodeId.from_string("i=9")
extobj.Name = 'Position'
extobj.ValueRank = -1
extobj.DataType = ua.NodeId.from_string("i=9")
value.append(extobj)
attrs.Value = ua.Variant(value, ua.VariantType.ExtensionObject)
attrs.ValueRank = 1
...
...
@@ -11800,14 +11800,14 @@ def create_standard_address_space_Part5(server):
attrs.DataType = ua.NodeId.from_string("i=296")
value = []
extobj = ua.Argument()
extobj.DataType = ua.NodeId.from_string("i=7")
extobj.Name = 'FileHandle'
extobj.ValueRank = -1
extobj.DataType = ua.NodeId.from_string("i=7")
value.append(extobj)
extobj = ua.Argument()
extobj.DataType = ua.NodeId.from_string("i=9")
extobj.Name = 'Position'
extobj.ValueRank = -1
extobj.DataType = ua.NodeId.from_string("i=9")
value.append(extobj)
attrs.Value = ua.Variant(value, ua.VariantType.ExtensionObject)
attrs.ValueRank = 1
...
...
@@ -22020,9 +22020,9 @@ def create_standard_address_space_Part5(server):
attrs.DataType = ua.NodeId.from_string("i=296")
value = []
extobj = ua.Argument()
extobj.DataType = ua.NodeId.from_string("i=7")
extobj.Name = 'SubscriptionId'
extobj.ValueRank = -1
extobj.DataType = ua.NodeId.from_string("i=7")
value.append(extobj)
attrs.Value = ua.Variant(value, ua.VariantType.ExtensionObject)
attrs.ValueRank = 1
...
...
@@ -22041,14 +22041,14 @@ def create_standard_address_space_Part5(server):
attrs.DataType = ua.NodeId.from_string("i=296")
value = []
extobj = ua.Argument()
extobj.DataType = ua.NodeId.from_string("i=7")
extobj.Name = 'ServerHandles'
extobj.ValueRank = 1
extobj.DataType = ua.NodeId.from_string("i=7")
value.append(extobj)
extobj = ua.Argument()
extobj.DataType = ua.NodeId.from_string("i=7")
extobj.Name = 'ClientHandles'
extobj.ValueRank = 1
extobj.DataType = ua.NodeId.from_string("i=7")
value.append(extobj)
attrs.Value = ua.Variant(value, ua.VariantType.ExtensionObject)
attrs.ValueRank = 1
...
...
@@ -22087,9 +22087,9 @@ def create_standard_address_space_Part5(server):
attrs.DataType = ua.NodeId.from_string("i=296")
value = []
extobj = ua.Argument()
extobj.DataType = ua.NodeId.from_string("i=7")
extobj.Name = 'SubscriptionId'
extobj.ValueRank = -1
extobj.DataType = ua.NodeId.from_string("i=7")
value.append(extobj)
attrs.Value = ua.Variant(value, ua.VariantType.ExtensionObject)
attrs.ValueRank = 1
...
...
@@ -22135,14 +22135,14 @@ def create_standard_address_space_Part5(server):
attrs.DataType = ua.NodeId.from_string("i=296")
value = []
extobj = ua.Argument()
extobj.DataType = ua.NodeId.from_string("i=7")
extobj.Name = 'SubscriptionId'
extobj.ValueRank = -1
extobj.DataType = ua.NodeId.from_string("i=7")
value.append(extobj)
extobj = ua.Argument()
extobj.DataType = ua.NodeId.from_string("i=7")
extobj.Name = 'LifetimeInHours'
extobj.ValueRank = -1
extobj.DataType = ua.NodeId.from_string("i=7")
value.append(extobj)
attrs.Value = ua.Variant(value, ua.VariantType.ExtensionObject)
attrs.ValueRank = 1
...
...
@@ -22161,9 +22161,9 @@ def create_standard_address_space_Part5(server):
attrs.DataType = ua.NodeId.from_string("i=296")
value = []
extobj = ua.Argument()
extobj.DataType = ua.NodeId.from_string("i=7")
extobj.Name = 'RevisedLifetimeInHours'
extobj.ValueRank = -1
extobj.DataType = ua.NodeId.from_string("i=7")
value.append(extobj)
attrs.Value = ua.Variant(value, ua.VariantType.ExtensionObject)
attrs.ValueRank = 1
...
...
@@ -22202,29 +22202,29 @@ def create_standard_address_space_Part5(server):
attrs.DataType = ua.NodeId.from_string("i=296")
value = []
extobj = ua.Argument()
extobj.DataType = ua.NodeId.from_string("i=852")
extobj.Name = 'State'
extobj.ValueRank = -1
extobj.DataType = ua.NodeId.from_string("i=852")
value.append(extobj)
extobj = ua.Argument()
extobj.DataType = ua.NodeId.from_string("i=13")
extobj.Name = 'EstimatedReturnTime'
extobj.ValueRank = -1
extobj.DataType = ua.NodeId.from_string("i=13")
value.append(extobj)
extobj = ua.Argument()
extobj.DataType = ua.NodeId.from_string("i=7")
extobj.Name = 'SecondsTillShutdown'
extobj.ValueRank = -1
extobj.DataType = ua.NodeId.from_string("i=7")
value.append(extobj)
extobj = ua.Argument()
extobj.DataType = ua.NodeId.from_string("i=21")
extobj.Name = 'Reason'
extobj.ValueRank = -1
extobj.DataType = ua.NodeId.from_string("i=21")
value.append(extobj)
extobj = ua.Argument()
extobj.DataType = ua.NodeId.from_string("i=1")
extobj.Name = 'Restart'
extobj.ValueRank = -1
extobj.DataType = ua.NodeId.from_string("i=1")
value.append(extobj)
attrs.Value = ua.Variant(value, ua.VariantType.ExtensionObject)
attrs.ValueRank = 1
opcua/server/standard_address_space/standard_address_space_part9.py
View file @
95aab64e
...
...
@@ -905,14 +905,16 @@ def create_standard_address_space_Part9(server):
attrs
.
DataType
=
ua
.
NodeId
.
from_string
(
"i=296"
)
value
=
[]
extobj
=
ua
.
Argument
()
extobj
.
Description
.
Text
=
b'The identifier for the event to comment.'
extobj
.
DataType
=
ua
.
NodeId
.
from_string
(
"i=15"
)
extobj
.
Name
=
'EventId'
extobj
.
ValueRank
=
-
1
extobj
.
DataType
=
ua
.
NodeId
.
from_string
(
"i=15"
)
value
.
append
(
extobj
)
extobj
=
ua
.
Argument
()
extobj
.
Description
.
Text
=
b'The comment to add to the condition.'
extobj
.
DataType
=
ua
.
NodeId
.
from_string
(
"i=21"
)
extobj
.
Name
=
'Comment'
extobj
.
ValueRank
=
-
1
extobj
.
DataType
=
ua
.
NodeId
.
from_string
(
"i=21"
)
value
.
append
(
extobj
)
attrs
.
Value
=
ua
.
Variant
(
value
,
ua
.
VariantType
.
ExtensionObject
)
attrs
.
ValueRank
=
1
...
...
@@ -974,9 +976,10 @@ def create_standard_address_space_Part9(server):
attrs
.
DataType
=
ua
.
NodeId
.
from_string
(
"i=296"
)
value
=
[]
extobj
=
ua
.
Argument
()
extobj
.
Description
.
Text
=
b'The identifier for the suscription to refresh.'
extobj
.
DataType
=
ua
.
NodeId
.
from_string
(
"i=288"
)
extobj
.
Name
=
'SubscriptionId'
extobj
.
ValueRank
=
-
1
extobj
.
DataType
=
ua
.
NodeId
.
from_string
(
"i=288"
)
value
.
append
(
extobj
)
attrs
.
Value
=
ua
.
Variant
(
value
,
ua
.
VariantType
.
ExtensionObject
)
attrs
.
ValueRank
=
1
...
...
@@ -1038,14 +1041,16 @@ def create_standard_address_space_Part9(server):
attrs
.
DataType
=
ua
.
NodeId
.
from_string
(
"i=296"
)
value
=
[]
extobj
=
ua
.
Argument
()
extobj
.
Description
.
Text
=
b'The identifier for the suscription to refresh.'
extobj
.
DataType
=
ua
.
NodeId
.
from_string
(
"i=288"
)
extobj
.
Name
=
'SubscriptionId'
extobj
.
ValueRank
=
-
1
extobj
.
DataType
=
ua
.
NodeId
.
from_string
(
"i=288"
)
value
.
append
(
extobj
)
extobj
=
ua
.
Argument
()
extobj
.
Description
.
Text
=
b'The identifier for the monitored item to refresh.'
extobj
.
DataType
=
ua
.
NodeId
.
from_string
(
"i=288"
)
extobj
.
Name
=
'MonitoredItemId'
extobj
.
ValueRank
=
-
1
extobj
.
DataType
=
ua
.
NodeId
.
from_string
(
"i=288"
)
value
.
append
(
extobj
)
attrs
.
Value
=
ua
.
Variant
(
value
,
ua
.
VariantType
.
ExtensionObject
)
attrs
.
ValueRank
=
1
...
...
@@ -1465,9 +1470,10 @@ def create_standard_address_space_Part9(server):
attrs
.
DataType
=
ua
.
NodeId
.
from_string
(
"i=296"
)
value
=
[]
extobj
=
ua
.
Argument
()
extobj
.
Description
.
Text
=
b'The response to the dialog condition.'
extobj
.
DataType
=
ua
.
NodeId
.
from_string
(
"i=6"
)
extobj
.
Name
=
'SelectedResponse'
extobj
.
ValueRank
=
-
1
extobj
.
DataType
=
ua
.
NodeId
.
from_string
(
"i=6"
)
value
.
append
(
extobj
)
attrs
.
Value
=
ua
.
Variant
(
value
,
ua
.
VariantType
.
ExtensionObject
)
attrs
.
ValueRank
=
1
...
...
@@ -1811,14 +1817,16 @@ def create_standard_address_space_Part9(server):
attrs
.
DataType
=
ua
.
NodeId
.
from_string
(
"i=296"
)
value
=
[]
extobj
=
ua
.
Argument
()
extobj
.
Description
.
Text
=
b'The identifier for the event to comment.'
extobj
.
DataType
=
ua
.
NodeId
.
from_string
(
"i=15"
)
extobj
.
Name
=
'EventId'
extobj
.
ValueRank
=
-
1
extobj
.
DataType
=
ua
.
NodeId
.
from_string
(
"i=15"
)
value
.
append
(
extobj
)
extobj
=
ua
.
Argument
()
extobj
.
Description
.
Text
=
b'The comment to add to the condition.'
extobj
.
DataType
=
ua
.
NodeId
.
from_string
(
"i=21"
)
extobj
.
Name
=
'Comment'
extobj
.
ValueRank
=
-
1
extobj
.
DataType
=
ua
.
NodeId
.
from_string
(
"i=21"
)
value
.
append
(
extobj
)
attrs
.
Value
=
ua
.
Variant
(
value
,
ua
.
VariantType
.
ExtensionObject
)
attrs
.
ValueRank
=
1
...
...
@@ -1880,14 +1888,16 @@ def create_standard_address_space_Part9(server):
attrs
.
DataType
=
ua
.
NodeId
.
from_string
(
"i=296"
)
value
=
[]
extobj
=
ua
.
Argument
()
extobj
.
Description
.
Text
=
b'The identifier for the event to comment.'
extobj
.
DataType
=
ua
.
NodeId
.
from_string
(
"i=15"
)
extobj
.
Name
=
'EventId'
extobj
.
ValueRank
=
-
1
extobj
.
DataType
=
ua
.
NodeId
.
from_string
(
"i=15"
)
value
.
append
(
extobj
)
extobj
=
ua
.
Argument
()
extobj
.
Description
.
Text
=
b'The comment to add to the condition.'
extobj
.
DataType
=
ua
.
NodeId
.
from_string
(
"i=21"
)
extobj
.
Name
=
'Comment'
extobj
.
ValueRank
=
-
1
extobj
.
DataType
=
ua
.
NodeId
.
from_string
(
"i=21"
)
value
.
append
(
extobj
)
attrs
.
Value
=
ua
.
Variant
(
value
,
ua
.
VariantType
.
ExtensionObject
)
attrs
.
ValueRank
=
1
...
...
@@ -2612,9 +2622,10 @@ def create_standard_address_space_Part9(server):
attrs
.
DataType
=
ua
.
NodeId
.
from_string
(
"i=296"
)
value
=
[]
extobj
=
ua
.
Argument
()
extobj
.
Description
.
Text
=
b'If not 0, this parameter specifies a fixed time for which the Alarm is to be shelved.'
extobj
.
DataType
=
ua
.
NodeId
.
from_string
(
"i=290"
)
extobj
.
Name
=
'ShelvingTime'
extobj
.
ValueRank
=
-
1
extobj
.
DataType
=
ua
.
NodeId
.
from_string
(
"i=290"
)
value
.
append
(
extobj
)
attrs
.
Value
=
ua
.
Variant
(
value
,
ua
.
VariantType
.
ExtensionObject
)
attrs
.
ValueRank
=
1
...
...
@@ -3477,9 +3488,10 @@ def create_standard_address_space_Part9(server):
attrs
.
DataType
=
ua
.
NodeId
.
from_string
(
"i=296"
)
value
=
[]
extobj
=
ua
.
Argument
()
extobj
.
Description
.
Text
=
b'If not 0, this parameter specifies a fixed time for which the Alarm is to be shelved.'
extobj
.
DataType
=
ua
.
NodeId
.
from_string
(
"i=290"
)
extobj
.
Name
=
'ShelvingTime'
extobj
.
ValueRank
=
-
1
extobj
.
DataType
=
ua
.
NodeId
.
from_string
(
"i=290"
)
value
.
append
(
extobj
)
attrs
.
Value
=
ua
.
Variant
(
value
,
ua
.
VariantType
.
ExtensionObject
)
attrs
.
ValueRank
=
1
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment