@t0a5tbr0t/node-red-contrib-opcua 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/LICENSE +20 -0
- package/Readme.md +239 -0
- package/images/PROSYS-OPC-UA-EXAMPLE2.png +0 -0
- package/images/nodeopcua64.png +0 -0
- package/images/opcuanode.png +0 -0
- package/images/opcuanodeLogo64.png +0 -0
- package/opcua/101-opcuaitem.html +106 -0
- package/opcua/101-opcuaitem.js +82 -0
- package/opcua/102-opcuaclient.html +274 -0
- package/opcua/102-opcuaclient.js +2741 -0
- package/opcua/103-opcuabrowser.html +71 -0
- package/opcua/103-opcuabrowser.js +230 -0
- package/opcua/104-opcuaserver.html +261 -0
- package/opcua/104-opcuaserver.js +1844 -0
- package/opcua/105-opcuaendpoint.html +224 -0
- package/opcua/105-opcuaendpoint.js +64 -0
- package/opcua/106-opcuaevent.html +110 -0
- package/opcua/106-opcuaevent.js +50 -0
- package/opcua/107-opcuamethod.html +244 -0
- package/opcua/107-opcuamethod.js +521 -0
- package/opcua/108-opcuarights.html +223 -0
- package/opcua/108-opcuarights.js +156 -0
- package/opcua/109-opcuadiscovery.html +51 -0
- package/opcua/109-opcuadiscovery.js +180 -0
- package/opcua/dump_certificates.js +55 -0
- package/opcua/icons/opcuanode.png +0 -0
- package/opcua/icons/opcuanodeLogo.png +0 -0
- package/opcua/opcua-basics.js +1061 -0
- package/opcua/public/vendor/opc-foundation/binary/OPC.ISA95.Types.bsd.xml +141 -0
- package/opcua/public/vendor/opc-foundation/binary/Opc.Ua.Adi.Types.bsd.xml +76 -0
- package/opcua/public/vendor/opc-foundation/binary/Opc.Ua.Di.Types.bsd.xml +11 -0
- package/opcua/public/vendor/opc-foundation/binary/Opc.Ua.Gds.Types.bsd.xml +25 -0
- package/opcua/public/vendor/opc-foundation/binary/Opc.Ua.Types.bsd.xml +2391 -0
- package/opcua/public/vendor/opc-foundation/csv/AttributeIds.csv +22 -0
- package/opcua/public/vendor/opc-foundation/csv/NodeIds.csv +5746 -0
- package/opcua/public/vendor/opc-foundation/csv/Opc.Ua.StatusCodes.csv +227 -0
- package/opcua/public/vendor/opc-foundation/csv/OpcUaDiModel.csv +1523 -0
- package/opcua/public/vendor/opc-foundation/csv/OpcUaGdsModel.csv +400 -0
- package/opcua/public/vendor/opc-foundation/csv/ServerCapabilities.csv +13 -0
- package/opcua/public/vendor/opc-foundation/csv/ServerCapabilityIdentifiers.csv +13 -0
- package/opcua/public/vendor/opc-foundation/csv/StatusCode.csv +227 -0
- package/opcua/public/vendor/opc-foundation/csv/StatusCodes.csv +227 -0
- package/opcua/public/vendor/opc-foundation/schema/OPC.ISA95.Types.xsd +163 -0
- package/opcua/public/vendor/opc-foundation/schema/OPCBinarySchema.xsd +119 -0
- package/opcua/public/vendor/opc-foundation/schema/Opc.Ua.Types.xsd +3938 -0
- package/opcua/public/vendor/opc-foundation/schema/SecuredApplication.xsd +106 -0
- package/opcua/public/vendor/opc-foundation/schema/UANodeSet.xsd +420 -0
- package/opcua/public/vendor/opc-foundation/xml/OPC.ISA95.NodeSet2.Nov52013.xml +3293 -0
- package/opcua/public/vendor/opc-foundation/xml/Opc.ISA95.NodeSet2.xml +3589 -0
- package/opcua/public/vendor/opc-foundation/xml/Opc.Ua.Adi.NodeSet2.xml +8301 -0
- package/opcua/public/vendor/opc-foundation/xml/Opc.Ua.Adi.Types.bsd.xml +76 -0
- package/opcua/public/vendor/opc-foundation/xml/Opc.Ua.Adi.Types.xsd +157 -0
- package/opcua/public/vendor/opc-foundation/xml/Opc.Ua.AutoID.NodeSet2.xml +6062 -0
- package/opcua/public/vendor/opc-foundation/xml/Opc.Ua.Di.NodeSet2.xml +5066 -0
- package/opcua/public/vendor/opc-foundation/xml/Opc.Ua.Di.PredefinedNodes.xml +11495 -0
- package/opcua/public/vendor/opc-foundation/xml/Opc.Ua.Di.Types.bsd +86 -0
- package/opcua/public/vendor/opc-foundation/xml/Opc.Ua.Di.Types.bsd.xml +11 -0
- package/opcua/public/vendor/opc-foundation/xml/Opc.Ua.Di.Types.xsd +155 -0
- package/opcua/public/vendor/opc-foundation/xml/Opc.Ua.Gds.NodeSet.xml +15226 -0
- package/opcua/public/vendor/opc-foundation/xml/Opc.Ua.Gds.NodeSet2.xml +6214 -0
- package/opcua/public/vendor/opc-foundation/xml/Opc.Ua.Gds.Types.bsd.xml +25 -0
- package/opcua/public/vendor/opc-foundation/xml/Opc.Ua.Gds.Types.xsd +30 -0
- package/opcua/public/vendor/opc-foundation/xml/Opc.Ua.NodeSet-2.xml +134881 -0
- package/opcua/public/vendor/opc-foundation/xml/Opc.Ua.NodeSet-3.xml +134881 -0
- package/opcua/public/vendor/opc-foundation/xml/Opc.Ua.NodeSet.xml +134881 -0
- package/opcua/public/vendor/opc-foundation/xml/Opc.Ua.NodeSet2.Part10.xml +832 -0
- package/opcua/public/vendor/opc-foundation/xml/Opc.Ua.NodeSet2.Part11.xml +793 -0
- package/opcua/public/vendor/opc-foundation/xml/Opc.Ua.NodeSet2.Part12.xml +3877 -0
- package/opcua/public/vendor/opc-foundation/xml/Opc.Ua.NodeSet2.Part13.xml +344 -0
- package/opcua/public/vendor/opc-foundation/xml/Opc.Ua.NodeSet2.Part3.xml +1103 -0
- package/opcua/public/vendor/opc-foundation/xml/Opc.Ua.NodeSet2.Part4.xml +3091 -0
- package/opcua/public/vendor/opc-foundation/xml/Opc.Ua.NodeSet2.Part5.xml +17092 -0
- package/opcua/public/vendor/opc-foundation/xml/Opc.Ua.NodeSet2.Part8.xml +525 -0
- package/opcua/public/vendor/opc-foundation/xml/Opc.Ua.NodeSet2.Part9.xml +2049 -0
- package/opcua/public/vendor/opc-foundation/xml/Opc.Ua.NodeSet2.Part999.xml +134 -0
- package/opcua/public/vendor/opc-foundation/xml/Opc.Ua.NodeSet2.xml +67169 -0
- package/opcua/public/vendor/opc-foundation/xml/Opc.Ua.PredefinedNodes.xml +64500 -0
- package/opcua/public/vendor/opc-foundation/xml/OpcUaDiModel.xml +1239 -0
- package/opcua/utils.js +55 -0
- package/package.json +68 -0
- package/users.json +22 -0
|
@@ -0,0 +1,3091 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<UANodeSet xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" LastModified="2015-08-18T00:23:00Z" xmlns="http://opcfoundation.org/UA/2011/03/UANodeSet.xsd">
|
|
3
|
+
<Models>
|
|
4
|
+
<Model ModelUri="http://opcfoundation.org/UA/" Version="1.02" PublicationDate="2015-08-17T17:23:51.6181753-07:00" />
|
|
5
|
+
</Models>
|
|
6
|
+
<Aliases>
|
|
7
|
+
<Alias Alias="Boolean">i=1</Alias>
|
|
8
|
+
<Alias Alias="SByte">i=2</Alias>
|
|
9
|
+
<Alias Alias="Byte">i=3</Alias>
|
|
10
|
+
<Alias Alias="Int16">i=4</Alias>
|
|
11
|
+
<Alias Alias="UInt16">i=5</Alias>
|
|
12
|
+
<Alias Alias="Int32">i=6</Alias>
|
|
13
|
+
<Alias Alias="UInt32">i=7</Alias>
|
|
14
|
+
<Alias Alias="Int64">i=8</Alias>
|
|
15
|
+
<Alias Alias="UInt64">i=9</Alias>
|
|
16
|
+
<Alias Alias="Float">i=10</Alias>
|
|
17
|
+
<Alias Alias="Double">i=11</Alias>
|
|
18
|
+
<Alias Alias="DateTime">i=13</Alias>
|
|
19
|
+
<Alias Alias="String">i=12</Alias>
|
|
20
|
+
<Alias Alias="ByteString">i=15</Alias>
|
|
21
|
+
<Alias Alias="Guid">i=14</Alias>
|
|
22
|
+
<Alias Alias="XmlElement">i=16</Alias>
|
|
23
|
+
<Alias Alias="NodeId">i=17</Alias>
|
|
24
|
+
<Alias Alias="ExpandedNodeId">i=18</Alias>
|
|
25
|
+
<Alias Alias="QualifiedName">i=20</Alias>
|
|
26
|
+
<Alias Alias="LocalizedText">i=21</Alias>
|
|
27
|
+
<Alias Alias="StatusCode">i=19</Alias>
|
|
28
|
+
<Alias Alias="Structure">i=22</Alias>
|
|
29
|
+
<Alias Alias="Number">i=26</Alias>
|
|
30
|
+
<Alias Alias="Integer">i=27</Alias>
|
|
31
|
+
<Alias Alias="UInteger">i=28</Alias>
|
|
32
|
+
<Alias Alias="HasComponent">i=47</Alias>
|
|
33
|
+
<Alias Alias="HasProperty">i=46</Alias>
|
|
34
|
+
<Alias Alias="Organizes">i=35</Alias>
|
|
35
|
+
<Alias Alias="HasEventSource">i=36</Alias>
|
|
36
|
+
<Alias Alias="HasNotifier">i=48</Alias>
|
|
37
|
+
<Alias Alias="HasSubtype">i=45</Alias>
|
|
38
|
+
<Alias Alias="HasTypeDefinition">i=40</Alias>
|
|
39
|
+
<Alias Alias="HasModellingRule">i=37</Alias>
|
|
40
|
+
<Alias Alias="HasEncoding">i=38</Alias>
|
|
41
|
+
<Alias Alias="HasDescription">i=39</Alias>
|
|
42
|
+
</Aliases>
|
|
43
|
+
<UADataType NodeId="i=18" BrowseName="ExpandedNodeId">
|
|
44
|
+
<DisplayName>ExpandedNodeId</DisplayName>
|
|
45
|
+
<Description>Describes a value that is an absolute identifier for a node.</Description>
|
|
46
|
+
<References>
|
|
47
|
+
<Reference ReferenceType="HasSubtype" IsForward="false">i=24</Reference>
|
|
48
|
+
</References>
|
|
49
|
+
</UADataType>
|
|
50
|
+
<UADataType NodeId="i=19" BrowseName="StatusCode">
|
|
51
|
+
<DisplayName>StatusCode</DisplayName>
|
|
52
|
+
<Description>Describes a value that is a code representing the outcome of an operation by a Server.</Description>
|
|
53
|
+
<References>
|
|
54
|
+
<Reference ReferenceType="HasSubtype" IsForward="false">i=24</Reference>
|
|
55
|
+
</References>
|
|
56
|
+
</UADataType>
|
|
57
|
+
<UADataType NodeId="i=23" BrowseName="DataValue">
|
|
58
|
+
<DisplayName>DataValue</DisplayName>
|
|
59
|
+
<Description>Describes a value that is a structure containing a value, a status code and timestamps.</Description>
|
|
60
|
+
<References>
|
|
61
|
+
<Reference ReferenceType="HasSubtype" IsForward="false">i=24</Reference>
|
|
62
|
+
</References>
|
|
63
|
+
</UADataType>
|
|
64
|
+
<UADataType NodeId="i=25" BrowseName="DiagnosticInfo">
|
|
65
|
+
<DisplayName>DiagnosticInfo</DisplayName>
|
|
66
|
+
<Description>Describes a value that is a structure containing diagnostics associated with a StatusCode.</Description>
|
|
67
|
+
<References>
|
|
68
|
+
<Reference ReferenceType="HasSubtype" IsForward="false">i=24</Reference>
|
|
69
|
+
</References>
|
|
70
|
+
</UADataType>
|
|
71
|
+
<UADataType NodeId="i=288" BrowseName="IntegerId">
|
|
72
|
+
<DisplayName>IntegerId</DisplayName>
|
|
73
|
+
<Description>A numeric identifier for an object.</Description>
|
|
74
|
+
<References>
|
|
75
|
+
<Reference ReferenceType="HasSubtype" IsForward="false">i=7</Reference>
|
|
76
|
+
</References>
|
|
77
|
+
</UADataType>
|
|
78
|
+
<UADataType NodeId="i=307" BrowseName="ApplicationType">
|
|
79
|
+
<DisplayName>ApplicationType</DisplayName>
|
|
80
|
+
<Description>The types of applications.</Description>
|
|
81
|
+
<References>
|
|
82
|
+
<Reference ReferenceType="HasProperty">i=7597</Reference>
|
|
83
|
+
<Reference ReferenceType="HasSubtype" IsForward="false">i=29</Reference>
|
|
84
|
+
</References>
|
|
85
|
+
<Definition Name="ApplicationType">
|
|
86
|
+
<Field Name="Server" Value="0">
|
|
87
|
+
<Description>The application is a server.</Description>
|
|
88
|
+
</Field>
|
|
89
|
+
<Field Name="Client" Value="1">
|
|
90
|
+
<Description>The application is a client.</Description>
|
|
91
|
+
</Field>
|
|
92
|
+
<Field Name="ClientAndServer" Value="2">
|
|
93
|
+
<Description>The application is a client and a server.</Description>
|
|
94
|
+
</Field>
|
|
95
|
+
<Field Name="DiscoveryServer" Value="3">
|
|
96
|
+
<Description>The application is a discovery server.</Description>
|
|
97
|
+
</Field>
|
|
98
|
+
</Definition>
|
|
99
|
+
</UADataType>
|
|
100
|
+
<UAVariable NodeId="i=7597" BrowseName="EnumStrings" ParentNodeId="i=307" DataType="LocalizedText" ValueRank="1">
|
|
101
|
+
<DisplayName>EnumStrings</DisplayName>
|
|
102
|
+
<References>
|
|
103
|
+
<Reference ReferenceType="HasTypeDefinition">i=68</Reference>
|
|
104
|
+
<Reference ReferenceType="HasModellingRule">i=78</Reference>
|
|
105
|
+
<Reference ReferenceType="HasProperty" IsForward="false">i=307</Reference>
|
|
106
|
+
</References>
|
|
107
|
+
<Value>
|
|
108
|
+
<ListOfLocalizedText xmlns="http://opcfoundation.org/UA/2008/02/Types.xsd">
|
|
109
|
+
<LocalizedText>
|
|
110
|
+
<Locale>
|
|
111
|
+
</Locale>
|
|
112
|
+
<Text>Server</Text>
|
|
113
|
+
</LocalizedText>
|
|
114
|
+
<LocalizedText>
|
|
115
|
+
<Locale>
|
|
116
|
+
</Locale>
|
|
117
|
+
<Text>Client</Text>
|
|
118
|
+
</LocalizedText>
|
|
119
|
+
<LocalizedText>
|
|
120
|
+
<Locale>
|
|
121
|
+
</Locale>
|
|
122
|
+
<Text>ClientAndServer</Text>
|
|
123
|
+
</LocalizedText>
|
|
124
|
+
<LocalizedText>
|
|
125
|
+
<Locale>
|
|
126
|
+
</Locale>
|
|
127
|
+
<Text>DiscoveryServer</Text>
|
|
128
|
+
</LocalizedText>
|
|
129
|
+
</ListOfLocalizedText>
|
|
130
|
+
</Value>
|
|
131
|
+
</UAVariable>
|
|
132
|
+
<UADataType NodeId="i=308" BrowseName="ApplicationDescription">
|
|
133
|
+
<DisplayName>ApplicationDescription</DisplayName>
|
|
134
|
+
<Description>Describes an application and how to find it.</Description>
|
|
135
|
+
<References>
|
|
136
|
+
<Reference ReferenceType="HasSubtype" IsForward="false">i=22</Reference>
|
|
137
|
+
</References>
|
|
138
|
+
<Definition Name="ApplicationDescription">
|
|
139
|
+
<Field Name="ApplicationUri" DataType="i=12">
|
|
140
|
+
<Description>The globally unique identifier for the application.</Description>
|
|
141
|
+
</Field>
|
|
142
|
+
<Field Name="ProductUri" DataType="i=12">
|
|
143
|
+
<Description>The globally unique identifier for the product.</Description>
|
|
144
|
+
</Field>
|
|
145
|
+
<Field Name="ApplicationName" DataType="i=21">
|
|
146
|
+
<Description>The name of application.</Description>
|
|
147
|
+
</Field>
|
|
148
|
+
<Field Name="ApplicationType" DataType="i=307">
|
|
149
|
+
<Description>The type of application.</Description>
|
|
150
|
+
</Field>
|
|
151
|
+
<Field Name="GatewayServerUri" DataType="i=12">
|
|
152
|
+
<Description>The globally unique identifier for the server that is acting as a gateway for the server.</Description>
|
|
153
|
+
</Field>
|
|
154
|
+
<Field Name="DiscoveryProfileUri" DataType="i=12">
|
|
155
|
+
<Description>The globally unique identifier for the discovery profile supported by the server.</Description>
|
|
156
|
+
</Field>
|
|
157
|
+
<Field Name="DiscoveryUrls" DataType="i=12" ValueRank="1">
|
|
158
|
+
<Description>The URLs for the server's discovery endpoints.</Description>
|
|
159
|
+
</Field>
|
|
160
|
+
</Definition>
|
|
161
|
+
</UADataType>
|
|
162
|
+
<UADataType NodeId="i=12189" BrowseName="ServerOnNetwork">
|
|
163
|
+
<DisplayName>ServerOnNetwork</DisplayName>
|
|
164
|
+
<References>
|
|
165
|
+
<Reference ReferenceType="HasSubtype" IsForward="false">i=22</Reference>
|
|
166
|
+
</References>
|
|
167
|
+
<Definition Name="ServerOnNetwork">
|
|
168
|
+
<Field Name="RecordId" DataType="i=7" />
|
|
169
|
+
<Field Name="ServerName" DataType="i=12" />
|
|
170
|
+
<Field Name="DiscoveryUrl" DataType="i=12" />
|
|
171
|
+
<Field Name="ServerCapabilities" DataType="i=12" ValueRank="1" />
|
|
172
|
+
</Definition>
|
|
173
|
+
</UADataType>
|
|
174
|
+
<UADataType NodeId="i=311" BrowseName="ApplicationInstanceCertificate">
|
|
175
|
+
<DisplayName>ApplicationInstanceCertificate</DisplayName>
|
|
176
|
+
<Description>A certificate for an instance of an application.</Description>
|
|
177
|
+
<References>
|
|
178
|
+
<Reference ReferenceType="HasSubtype" IsForward="false">i=15</Reference>
|
|
179
|
+
</References>
|
|
180
|
+
</UADataType>
|
|
181
|
+
<UADataType NodeId="i=302" BrowseName="MessageSecurityMode">
|
|
182
|
+
<DisplayName>MessageSecurityMode</DisplayName>
|
|
183
|
+
<Description>The type of security to use on a message.</Description>
|
|
184
|
+
<References>
|
|
185
|
+
<Reference ReferenceType="HasProperty">i=7595</Reference>
|
|
186
|
+
<Reference ReferenceType="HasSubtype" IsForward="false">i=29</Reference>
|
|
187
|
+
</References>
|
|
188
|
+
<Definition Name="MessageSecurityMode">
|
|
189
|
+
<Field Name="Invalid" Value="0">
|
|
190
|
+
<Description>An invalid mode.</Description>
|
|
191
|
+
</Field>
|
|
192
|
+
<Field Name="None" Value="1">
|
|
193
|
+
<Description>No security is used.</Description>
|
|
194
|
+
</Field>
|
|
195
|
+
<Field Name="Sign" Value="2">
|
|
196
|
+
<Description>The message is signed.</Description>
|
|
197
|
+
</Field>
|
|
198
|
+
<Field Name="SignAndEncrypt" Value="3">
|
|
199
|
+
<Description>The message is signed and encrypted.</Description>
|
|
200
|
+
</Field>
|
|
201
|
+
</Definition>
|
|
202
|
+
</UADataType>
|
|
203
|
+
<UAVariable NodeId="i=7595" BrowseName="EnumStrings" ParentNodeId="i=302" DataType="LocalizedText" ValueRank="1">
|
|
204
|
+
<DisplayName>EnumStrings</DisplayName>
|
|
205
|
+
<References>
|
|
206
|
+
<Reference ReferenceType="HasTypeDefinition">i=68</Reference>
|
|
207
|
+
<Reference ReferenceType="HasModellingRule">i=78</Reference>
|
|
208
|
+
<Reference ReferenceType="HasProperty" IsForward="false">i=302</Reference>
|
|
209
|
+
</References>
|
|
210
|
+
<Value>
|
|
211
|
+
<ListOfLocalizedText xmlns="http://opcfoundation.org/UA/2008/02/Types.xsd">
|
|
212
|
+
<LocalizedText>
|
|
213
|
+
<Locale>
|
|
214
|
+
</Locale>
|
|
215
|
+
<Text>Invalid</Text>
|
|
216
|
+
</LocalizedText>
|
|
217
|
+
<LocalizedText>
|
|
218
|
+
<Locale>
|
|
219
|
+
</Locale>
|
|
220
|
+
<Text>None</Text>
|
|
221
|
+
</LocalizedText>
|
|
222
|
+
<LocalizedText>
|
|
223
|
+
<Locale>
|
|
224
|
+
</Locale>
|
|
225
|
+
<Text>Sign</Text>
|
|
226
|
+
</LocalizedText>
|
|
227
|
+
<LocalizedText>
|
|
228
|
+
<Locale>
|
|
229
|
+
</Locale>
|
|
230
|
+
<Text>SignAndEncrypt</Text>
|
|
231
|
+
</LocalizedText>
|
|
232
|
+
</ListOfLocalizedText>
|
|
233
|
+
</Value>
|
|
234
|
+
</UAVariable>
|
|
235
|
+
<UADataType NodeId="i=303" BrowseName="UserTokenType">
|
|
236
|
+
<DisplayName>UserTokenType</DisplayName>
|
|
237
|
+
<Description>The possible user token types.</Description>
|
|
238
|
+
<References>
|
|
239
|
+
<Reference ReferenceType="HasProperty">i=7596</Reference>
|
|
240
|
+
<Reference ReferenceType="HasSubtype" IsForward="false">i=29</Reference>
|
|
241
|
+
</References>
|
|
242
|
+
<Definition Name="UserTokenType">
|
|
243
|
+
<Field Name="Anonymous" Value="0">
|
|
244
|
+
<Description>An anonymous user.</Description>
|
|
245
|
+
</Field>
|
|
246
|
+
<Field Name="UserName" Value="1">
|
|
247
|
+
<Description>A user identified by a user name and password.</Description>
|
|
248
|
+
</Field>
|
|
249
|
+
<Field Name="Certificate" Value="2">
|
|
250
|
+
<Description>A user identified by an X509 certificate.</Description>
|
|
251
|
+
</Field>
|
|
252
|
+
<Field Name="IssuedToken" Value="3">
|
|
253
|
+
<Description>A user identified by WS-Security XML token.</Description>
|
|
254
|
+
</Field>
|
|
255
|
+
<Field Name="Kerberos" Value="4">
|
|
256
|
+
<Description>A user identified by Kerberos ticket.</Description>
|
|
257
|
+
</Field>
|
|
258
|
+
</Definition>
|
|
259
|
+
</UADataType>
|
|
260
|
+
<UAVariable NodeId="i=7596" BrowseName="EnumStrings" ParentNodeId="i=303" DataType="LocalizedText" ValueRank="1">
|
|
261
|
+
<DisplayName>EnumStrings</DisplayName>
|
|
262
|
+
<References>
|
|
263
|
+
<Reference ReferenceType="HasTypeDefinition">i=68</Reference>
|
|
264
|
+
<Reference ReferenceType="HasModellingRule">i=78</Reference>
|
|
265
|
+
<Reference ReferenceType="HasProperty" IsForward="false">i=303</Reference>
|
|
266
|
+
</References>
|
|
267
|
+
<Value>
|
|
268
|
+
<ListOfLocalizedText xmlns="http://opcfoundation.org/UA/2008/02/Types.xsd">
|
|
269
|
+
<LocalizedText>
|
|
270
|
+
<Locale>
|
|
271
|
+
</Locale>
|
|
272
|
+
<Text>Anonymous</Text>
|
|
273
|
+
</LocalizedText>
|
|
274
|
+
<LocalizedText>
|
|
275
|
+
<Locale>
|
|
276
|
+
</Locale>
|
|
277
|
+
<Text>UserName</Text>
|
|
278
|
+
</LocalizedText>
|
|
279
|
+
<LocalizedText>
|
|
280
|
+
<Locale>
|
|
281
|
+
</Locale>
|
|
282
|
+
<Text>Certificate</Text>
|
|
283
|
+
</LocalizedText>
|
|
284
|
+
<LocalizedText>
|
|
285
|
+
<Locale>
|
|
286
|
+
</Locale>
|
|
287
|
+
<Text>IssuedToken</Text>
|
|
288
|
+
</LocalizedText>
|
|
289
|
+
<LocalizedText>
|
|
290
|
+
<Locale>
|
|
291
|
+
</Locale>
|
|
292
|
+
<Text>Kerberos</Text>
|
|
293
|
+
</LocalizedText>
|
|
294
|
+
</ListOfLocalizedText>
|
|
295
|
+
</Value>
|
|
296
|
+
</UAVariable>
|
|
297
|
+
<UADataType NodeId="i=304" BrowseName="UserTokenPolicy">
|
|
298
|
+
<DisplayName>UserTokenPolicy</DisplayName>
|
|
299
|
+
<Description>Describes a user token that can be used with a server.</Description>
|
|
300
|
+
<References>
|
|
301
|
+
<Reference ReferenceType="HasSubtype" IsForward="false">i=22</Reference>
|
|
302
|
+
</References>
|
|
303
|
+
<Definition Name="UserTokenPolicy">
|
|
304
|
+
<Field Name="PolicyId" DataType="i=12">
|
|
305
|
+
<Description>A identifier for the policy assigned by the server.</Description>
|
|
306
|
+
</Field>
|
|
307
|
+
<Field Name="TokenType" DataType="i=303">
|
|
308
|
+
<Description>The type of user token.</Description>
|
|
309
|
+
</Field>
|
|
310
|
+
<Field Name="IssuedTokenType" DataType="i=12">
|
|
311
|
+
<Description>The type of issued token.</Description>
|
|
312
|
+
</Field>
|
|
313
|
+
<Field Name="IssuerEndpointUrl" DataType="i=12">
|
|
314
|
+
<Description>The endpoint or any other information need to contruct an issued token URL.</Description>
|
|
315
|
+
</Field>
|
|
316
|
+
<Field Name="SecurityPolicyUri" DataType="i=12">
|
|
317
|
+
<Description>The security policy to use when encrypting or signing the user token.</Description>
|
|
318
|
+
</Field>
|
|
319
|
+
</Definition>
|
|
320
|
+
</UADataType>
|
|
321
|
+
<UADataType NodeId="i=312" BrowseName="EndpointDescription">
|
|
322
|
+
<DisplayName>EndpointDescription</DisplayName>
|
|
323
|
+
<Description>The description of a endpoint that can be used to access a server.</Description>
|
|
324
|
+
<References>
|
|
325
|
+
<Reference ReferenceType="HasSubtype" IsForward="false">i=22</Reference>
|
|
326
|
+
</References>
|
|
327
|
+
<Definition Name="EndpointDescription">
|
|
328
|
+
<Field Name="EndpointUrl" DataType="i=12">
|
|
329
|
+
<Description>The network endpoint to use when connecting to the server.</Description>
|
|
330
|
+
</Field>
|
|
331
|
+
<Field Name="Server" DataType="i=308">
|
|
332
|
+
<Description>The description of the server.</Description>
|
|
333
|
+
</Field>
|
|
334
|
+
<Field Name="ServerCertificate" DataType="i=311">
|
|
335
|
+
<Description>The server's application certificate.</Description>
|
|
336
|
+
</Field>
|
|
337
|
+
<Field Name="SecurityMode" DataType="i=302">
|
|
338
|
+
<Description>The security mode that must be used when connecting to the endpoint.</Description>
|
|
339
|
+
</Field>
|
|
340
|
+
<Field Name="SecurityPolicyUri" DataType="i=12">
|
|
341
|
+
<Description>The security policy to use when connecting to the endpoint.</Description>
|
|
342
|
+
</Field>
|
|
343
|
+
<Field Name="UserIdentityTokens" DataType="i=304" ValueRank="1">
|
|
344
|
+
<Description>The user identity tokens that can be used with this endpoint.</Description>
|
|
345
|
+
</Field>
|
|
346
|
+
<Field Name="TransportProfileUri" DataType="i=12">
|
|
347
|
+
<Description>The transport profile to use when connecting to the endpoint.</Description>
|
|
348
|
+
</Field>
|
|
349
|
+
<Field Name="SecurityLevel" DataType="i=3">
|
|
350
|
+
<Description>A server assigned value that indicates how secure the endpoint is relative to other server endpoints.</Description>
|
|
351
|
+
</Field>
|
|
352
|
+
</Definition>
|
|
353
|
+
</UADataType>
|
|
354
|
+
<UADataType NodeId="i=432" BrowseName="RegisteredServer">
|
|
355
|
+
<DisplayName>RegisteredServer</DisplayName>
|
|
356
|
+
<Description>The information required to register a server with a discovery server.</Description>
|
|
357
|
+
<References>
|
|
358
|
+
<Reference ReferenceType="HasSubtype" IsForward="false">i=22</Reference>
|
|
359
|
+
</References>
|
|
360
|
+
<Definition Name="RegisteredServer">
|
|
361
|
+
<Field Name="ServerUri" DataType="i=12">
|
|
362
|
+
<Description>The globally unique identifier for the server.</Description>
|
|
363
|
+
</Field>
|
|
364
|
+
<Field Name="ProductUri" DataType="i=12">
|
|
365
|
+
<Description>The globally unique identifier for the product.</Description>
|
|
366
|
+
</Field>
|
|
367
|
+
<Field Name="ServerNames" DataType="i=21" ValueRank="1">
|
|
368
|
+
<Description>The name of server in multiple lcoales.</Description>
|
|
369
|
+
</Field>
|
|
370
|
+
<Field Name="ServerType" DataType="i=307">
|
|
371
|
+
<Description>The type of server.</Description>
|
|
372
|
+
</Field>
|
|
373
|
+
<Field Name="GatewayServerUri" DataType="i=12">
|
|
374
|
+
<Description>The globally unique identifier for the server that is acting as a gateway for the server.</Description>
|
|
375
|
+
</Field>
|
|
376
|
+
<Field Name="DiscoveryUrls" DataType="i=12" ValueRank="1">
|
|
377
|
+
<Description>The URLs for the server's discovery endpoints.</Description>
|
|
378
|
+
</Field>
|
|
379
|
+
<Field Name="SemaphoreFilePath" DataType="i=12">
|
|
380
|
+
<Description>A path to a file that is deleted when the server is no longer accepting connections.</Description>
|
|
381
|
+
</Field>
|
|
382
|
+
<Field Name="IsOnline" DataType="i=1">
|
|
383
|
+
<Description>If FALSE the server will save the registration information to a persistent datastore.</Description>
|
|
384
|
+
</Field>
|
|
385
|
+
</Definition>
|
|
386
|
+
</UADataType>
|
|
387
|
+
<UADataType NodeId="i=12890" BrowseName="DiscoveryConfiguration">
|
|
388
|
+
<DisplayName>DiscoveryConfiguration</DisplayName>
|
|
389
|
+
<Description>A base type for discovery configuration information.</Description>
|
|
390
|
+
<References>
|
|
391
|
+
<Reference ReferenceType="HasSubtype" IsForward="false">i=22</Reference>
|
|
392
|
+
</References>
|
|
393
|
+
</UADataType>
|
|
394
|
+
<UADataType NodeId="i=12891" BrowseName="MdnsDiscoveryConfiguration">
|
|
395
|
+
<DisplayName>MdnsDiscoveryConfiguration</DisplayName>
|
|
396
|
+
<Description>The discovery information needed for mDNS registration.</Description>
|
|
397
|
+
<References>
|
|
398
|
+
<Reference ReferenceType="HasSubtype" IsForward="false">i=12890</Reference>
|
|
399
|
+
</References>
|
|
400
|
+
<Definition Name="MdnsDiscoveryConfiguration" BaseType="MdnsDiscoveryConfiguration">
|
|
401
|
+
<Field Name="MdnsServerName" DataType="i=12">
|
|
402
|
+
<Description>The name for server that is broadcast via mDNS.</Description>
|
|
403
|
+
</Field>
|
|
404
|
+
<Field Name="ServerCapabilities" DataType="i=12" ValueRank="1">
|
|
405
|
+
<Description>The server capabilities that are broadcast via mDNS.</Description>
|
|
406
|
+
</Field>
|
|
407
|
+
</Definition>
|
|
408
|
+
</UADataType>
|
|
409
|
+
<UADataType NodeId="i=315" BrowseName="SecurityTokenRequestType">
|
|
410
|
+
<DisplayName>SecurityTokenRequestType</DisplayName>
|
|
411
|
+
<Description>Indicates whether a token if being created or renewed.</Description>
|
|
412
|
+
<References>
|
|
413
|
+
<Reference ReferenceType="HasProperty">i=7598</Reference>
|
|
414
|
+
<Reference ReferenceType="HasSubtype" IsForward="false">i=29</Reference>
|
|
415
|
+
</References>
|
|
416
|
+
<Definition Name="SecurityTokenRequestType">
|
|
417
|
+
<Field Name="Issue" Value="0">
|
|
418
|
+
<Description>The channel is being created.</Description>
|
|
419
|
+
</Field>
|
|
420
|
+
<Field Name="Renew" Value="1">
|
|
421
|
+
<Description>The channel is being renewed.</Description>
|
|
422
|
+
</Field>
|
|
423
|
+
</Definition>
|
|
424
|
+
</UADataType>
|
|
425
|
+
<UAVariable NodeId="i=7598" BrowseName="EnumStrings" ParentNodeId="i=315" DataType="LocalizedText" ValueRank="1">
|
|
426
|
+
<DisplayName>EnumStrings</DisplayName>
|
|
427
|
+
<References>
|
|
428
|
+
<Reference ReferenceType="HasTypeDefinition">i=68</Reference>
|
|
429
|
+
<Reference ReferenceType="HasModellingRule">i=78</Reference>
|
|
430
|
+
<Reference ReferenceType="HasProperty" IsForward="false">i=315</Reference>
|
|
431
|
+
</References>
|
|
432
|
+
<Value>
|
|
433
|
+
<ListOfLocalizedText xmlns="http://opcfoundation.org/UA/2008/02/Types.xsd">
|
|
434
|
+
<LocalizedText>
|
|
435
|
+
<Locale>
|
|
436
|
+
</Locale>
|
|
437
|
+
<Text>Issue</Text>
|
|
438
|
+
</LocalizedText>
|
|
439
|
+
<LocalizedText>
|
|
440
|
+
<Locale>
|
|
441
|
+
</Locale>
|
|
442
|
+
<Text>Renew</Text>
|
|
443
|
+
</LocalizedText>
|
|
444
|
+
</ListOfLocalizedText>
|
|
445
|
+
</Value>
|
|
446
|
+
</UAVariable>
|
|
447
|
+
<UADataType NodeId="i=344" BrowseName="SignedSoftwareCertificate">
|
|
448
|
+
<DisplayName>SignedSoftwareCertificate</DisplayName>
|
|
449
|
+
<Description>A software certificate with a digital signature.</Description>
|
|
450
|
+
<References>
|
|
451
|
+
<Reference ReferenceType="HasSubtype" IsForward="false">i=22</Reference>
|
|
452
|
+
</References>
|
|
453
|
+
<Definition Name="SignedSoftwareCertificate">
|
|
454
|
+
<Field Name="CertificateData" DataType="i=15">
|
|
455
|
+
<Description>The data of the certificate.</Description>
|
|
456
|
+
</Field>
|
|
457
|
+
<Field Name="Signature" DataType="i=15">
|
|
458
|
+
<Description>The digital signature.</Description>
|
|
459
|
+
</Field>
|
|
460
|
+
</Definition>
|
|
461
|
+
</UADataType>
|
|
462
|
+
<UADataType NodeId="i=388" BrowseName="SessionAuthenticationToken">
|
|
463
|
+
<DisplayName>SessionAuthenticationToken</DisplayName>
|
|
464
|
+
<Description>A unique identifier for a session used to authenticate requests.</Description>
|
|
465
|
+
<References>
|
|
466
|
+
<Reference ReferenceType="HasSubtype" IsForward="false">i=17</Reference>
|
|
467
|
+
</References>
|
|
468
|
+
</UADataType>
|
|
469
|
+
<UADataType NodeId="i=316" BrowseName="UserIdentityToken">
|
|
470
|
+
<DisplayName>UserIdentityToken</DisplayName>
|
|
471
|
+
<Description>A base type for a user identity token.</Description>
|
|
472
|
+
<References>
|
|
473
|
+
<Reference ReferenceType="HasSubtype" IsForward="false">i=22</Reference>
|
|
474
|
+
</References>
|
|
475
|
+
<Definition Name="UserIdentityToken">
|
|
476
|
+
<Field Name="PolicyId" DataType="i=12">
|
|
477
|
+
<Description>The policy id specified in a user token policy for the endpoint being used.</Description>
|
|
478
|
+
</Field>
|
|
479
|
+
</Definition>
|
|
480
|
+
</UADataType>
|
|
481
|
+
<UADataType NodeId="i=319" BrowseName="AnonymousIdentityToken">
|
|
482
|
+
<DisplayName>AnonymousIdentityToken</DisplayName>
|
|
483
|
+
<Description>A token representing an anonymous user.</Description>
|
|
484
|
+
<References>
|
|
485
|
+
<Reference ReferenceType="HasSubtype" IsForward="false">i=316</Reference>
|
|
486
|
+
</References>
|
|
487
|
+
</UADataType>
|
|
488
|
+
<UADataType NodeId="i=322" BrowseName="UserNameIdentityToken">
|
|
489
|
+
<DisplayName>UserNameIdentityToken</DisplayName>
|
|
490
|
+
<Description>A token representing a user identified by a user name and password.</Description>
|
|
491
|
+
<References>
|
|
492
|
+
<Reference ReferenceType="HasSubtype" IsForward="false">i=316</Reference>
|
|
493
|
+
</References>
|
|
494
|
+
<Definition Name="UserNameIdentityToken" BaseType="UserNameIdentityToken">
|
|
495
|
+
<Field Name="UserName" DataType="i=12">
|
|
496
|
+
<Description>The user name.</Description>
|
|
497
|
+
</Field>
|
|
498
|
+
<Field Name="Password" DataType="i=15">
|
|
499
|
+
<Description>The password encrypted with the server certificate.</Description>
|
|
500
|
+
</Field>
|
|
501
|
+
<Field Name="EncryptionAlgorithm" DataType="i=12">
|
|
502
|
+
<Description>The algorithm used to encrypt the password.</Description>
|
|
503
|
+
</Field>
|
|
504
|
+
</Definition>
|
|
505
|
+
</UADataType>
|
|
506
|
+
<UADataType NodeId="i=325" BrowseName="X509IdentityToken">
|
|
507
|
+
<DisplayName>X509IdentityToken</DisplayName>
|
|
508
|
+
<Description>A token representing a user identified by an X509 certificate.</Description>
|
|
509
|
+
<References>
|
|
510
|
+
<Reference ReferenceType="HasSubtype" IsForward="false">i=316</Reference>
|
|
511
|
+
</References>
|
|
512
|
+
<Definition Name="X509IdentityToken" BaseType="X509IdentityToken">
|
|
513
|
+
<Field Name="CertificateData" DataType="i=15">
|
|
514
|
+
<Description>The certificate.</Description>
|
|
515
|
+
</Field>
|
|
516
|
+
</Definition>
|
|
517
|
+
</UADataType>
|
|
518
|
+
<UADataType NodeId="i=12504" BrowseName="KerberosIdentityToken">
|
|
519
|
+
<DisplayName>KerberosIdentityToken</DisplayName>
|
|
520
|
+
<References>
|
|
521
|
+
<Reference ReferenceType="HasSubtype" IsForward="false">i=316</Reference>
|
|
522
|
+
</References>
|
|
523
|
+
<Definition Name="KerberosIdentityToken" BaseType="KerberosIdentityToken">
|
|
524
|
+
<Field Name="TicketData" DataType="i=15" />
|
|
525
|
+
</Definition>
|
|
526
|
+
</UADataType>
|
|
527
|
+
<UADataType NodeId="i=938" BrowseName="IssuedIdentityToken">
|
|
528
|
+
<DisplayName>IssuedIdentityToken</DisplayName>
|
|
529
|
+
<Description>A token representing a user identified by a WS-Security XML token.</Description>
|
|
530
|
+
<References>
|
|
531
|
+
<Reference ReferenceType="HasSubtype" IsForward="false">i=316</Reference>
|
|
532
|
+
</References>
|
|
533
|
+
<Definition Name="IssuedIdentityToken" BaseType="IssuedIdentityToken">
|
|
534
|
+
<Field Name="TokenData" DataType="i=15">
|
|
535
|
+
<Description>The XML token encrypted with the server certificate.</Description>
|
|
536
|
+
</Field>
|
|
537
|
+
<Field Name="EncryptionAlgorithm" DataType="i=12">
|
|
538
|
+
<Description>The algorithm used to encrypt the certificate.</Description>
|
|
539
|
+
</Field>
|
|
540
|
+
</Definition>
|
|
541
|
+
</UADataType>
|
|
542
|
+
<UADataType NodeId="i=348" BrowseName="NodeAttributesMask">
|
|
543
|
+
<DisplayName>NodeAttributesMask</DisplayName>
|
|
544
|
+
<Description>The bits used to specify default attributes for a new node.</Description>
|
|
545
|
+
<References>
|
|
546
|
+
<Reference ReferenceType="HasProperty">i=11881</Reference>
|
|
547
|
+
<Reference ReferenceType="HasSubtype" IsForward="false">i=29</Reference>
|
|
548
|
+
</References>
|
|
549
|
+
<Definition Name="NodeAttributesMask">
|
|
550
|
+
<Field Name="None" Value="0">
|
|
551
|
+
<Description>No attribuites provided.</Description>
|
|
552
|
+
</Field>
|
|
553
|
+
<Field Name="AccessLevel" Value="1">
|
|
554
|
+
<Description>The access level attribute is specified.</Description>
|
|
555
|
+
</Field>
|
|
556
|
+
<Field Name="ArrayDimensions" Value="2">
|
|
557
|
+
<Description>The array dimensions attribute is specified.</Description>
|
|
558
|
+
</Field>
|
|
559
|
+
<Field Name="BrowseName" Value="4">
|
|
560
|
+
<Description>The browse name attribute is specified.</Description>
|
|
561
|
+
</Field>
|
|
562
|
+
<Field Name="ContainsNoLoops" Value="8">
|
|
563
|
+
<Description>The contains no loops attribute is specified.</Description>
|
|
564
|
+
</Field>
|
|
565
|
+
<Field Name="DataType" Value="16">
|
|
566
|
+
<Description>The data type attribute is specified.</Description>
|
|
567
|
+
</Field>
|
|
568
|
+
<Field Name="Description" Value="32">
|
|
569
|
+
<Description>The description attribute is specified.</Description>
|
|
570
|
+
</Field>
|
|
571
|
+
<Field Name="DisplayName" Value="64">
|
|
572
|
+
<Description>The display name attribute is specified.</Description>
|
|
573
|
+
</Field>
|
|
574
|
+
<Field Name="EventNotifier" Value="128">
|
|
575
|
+
<Description>The event notifier attribute is specified.</Description>
|
|
576
|
+
</Field>
|
|
577
|
+
<Field Name="Executable" Value="256">
|
|
578
|
+
<Description>The executable attribute is specified.</Description>
|
|
579
|
+
</Field>
|
|
580
|
+
<Field Name="Historizing" Value="512">
|
|
581
|
+
<Description>The historizing attribute is specified.</Description>
|
|
582
|
+
</Field>
|
|
583
|
+
<Field Name="InverseName" Value="1024">
|
|
584
|
+
<Description>The inverse name attribute is specified.</Description>
|
|
585
|
+
</Field>
|
|
586
|
+
<Field Name="IsAbstract" Value="2048">
|
|
587
|
+
<Description>The is abstract attribute is specified.</Description>
|
|
588
|
+
</Field>
|
|
589
|
+
<Field Name="MinimumSamplingInterval" Value="4096">
|
|
590
|
+
<Description>The minimum sampling interval attribute is specified.</Description>
|
|
591
|
+
</Field>
|
|
592
|
+
<Field Name="NodeClass" Value="8192">
|
|
593
|
+
<Description>The node class attribute is specified.</Description>
|
|
594
|
+
</Field>
|
|
595
|
+
<Field Name="NodeId" Value="16384">
|
|
596
|
+
<Description>The node id attribute is specified.</Description>
|
|
597
|
+
</Field>
|
|
598
|
+
<Field Name="Symmetric" Value="32768">
|
|
599
|
+
<Description>The symmetric attribute is specified.</Description>
|
|
600
|
+
</Field>
|
|
601
|
+
<Field Name="UserAccessLevel" Value="65536">
|
|
602
|
+
<Description>The user access level attribute is specified.</Description>
|
|
603
|
+
</Field>
|
|
604
|
+
<Field Name="UserExecutable" Value="131072">
|
|
605
|
+
<Description>The user executable attribute is specified.</Description>
|
|
606
|
+
</Field>
|
|
607
|
+
<Field Name="UserWriteMask" Value="262144">
|
|
608
|
+
<Description>The user write mask attribute is specified.</Description>
|
|
609
|
+
</Field>
|
|
610
|
+
<Field Name="ValueRank" Value="524288">
|
|
611
|
+
<Description>The value rank attribute is specified.</Description>
|
|
612
|
+
</Field>
|
|
613
|
+
<Field Name="WriteMask" Value="1048576">
|
|
614
|
+
<Description>The write mask attribute is specified.</Description>
|
|
615
|
+
</Field>
|
|
616
|
+
<Field Name="Value" Value="2097152">
|
|
617
|
+
<Description>The value attribute is specified.</Description>
|
|
618
|
+
</Field>
|
|
619
|
+
<Field Name="All" Value="4194303">
|
|
620
|
+
<Description>All attributes are specified.</Description>
|
|
621
|
+
</Field>
|
|
622
|
+
<Field Name="BaseNode" Value="1335396">
|
|
623
|
+
<Description>All base attributes are specified.</Description>
|
|
624
|
+
</Field>
|
|
625
|
+
<Field Name="Object" Value="1335524">
|
|
626
|
+
<Description>All object attributes are specified.</Description>
|
|
627
|
+
</Field>
|
|
628
|
+
<Field Name="ObjectTypeOrDataType" Value="1337444">
|
|
629
|
+
<Description>All object type or data type attributes are specified.</Description>
|
|
630
|
+
</Field>
|
|
631
|
+
<Field Name="Variable" Value="4026999">
|
|
632
|
+
<Description>All variable attributes are specified.</Description>
|
|
633
|
+
</Field>
|
|
634
|
+
<Field Name="VariableType" Value="3958902">
|
|
635
|
+
<Description>All variable type attributes are specified.</Description>
|
|
636
|
+
</Field>
|
|
637
|
+
<Field Name="Method" Value="1466724">
|
|
638
|
+
<Description>All method attributes are specified.</Description>
|
|
639
|
+
</Field>
|
|
640
|
+
<Field Name="ReferenceType" Value="1371236">
|
|
641
|
+
<Description>All reference type attributes are specified.</Description>
|
|
642
|
+
</Field>
|
|
643
|
+
<Field Name="View" Value="1335532">
|
|
644
|
+
<Description>All view attributes are specified.</Description>
|
|
645
|
+
</Field>
|
|
646
|
+
</Definition>
|
|
647
|
+
</UADataType>
|
|
648
|
+
<UAVariable NodeId="i=11881" BrowseName="EnumValues" ParentNodeId="i=348" DataType="i=7594" ValueRank="1">
|
|
649
|
+
<DisplayName>EnumValues</DisplayName>
|
|
650
|
+
<References>
|
|
651
|
+
<Reference ReferenceType="HasTypeDefinition">i=68</Reference>
|
|
652
|
+
<Reference ReferenceType="HasModellingRule">i=78</Reference>
|
|
653
|
+
<Reference ReferenceType="HasProperty" IsForward="false">i=348</Reference>
|
|
654
|
+
</References>
|
|
655
|
+
<Value>
|
|
656
|
+
<ListOfExtensionObject xmlns="http://opcfoundation.org/UA/2008/02/Types.xsd">
|
|
657
|
+
<ExtensionObject>
|
|
658
|
+
<TypeId>
|
|
659
|
+
<Identifier>i=7616</Identifier>
|
|
660
|
+
</TypeId>
|
|
661
|
+
<Body>
|
|
662
|
+
<EnumValueType>
|
|
663
|
+
<Value>0</Value>
|
|
664
|
+
<DisplayName>
|
|
665
|
+
<Locale>
|
|
666
|
+
</Locale>
|
|
667
|
+
<Text>None</Text>
|
|
668
|
+
</DisplayName>
|
|
669
|
+
<Description>
|
|
670
|
+
<Locale>
|
|
671
|
+
</Locale>
|
|
672
|
+
<Text>No attribuites provided.</Text>
|
|
673
|
+
</Description>
|
|
674
|
+
</EnumValueType>
|
|
675
|
+
</Body>
|
|
676
|
+
</ExtensionObject>
|
|
677
|
+
<ExtensionObject>
|
|
678
|
+
<TypeId>
|
|
679
|
+
<Identifier>i=7616</Identifier>
|
|
680
|
+
</TypeId>
|
|
681
|
+
<Body>
|
|
682
|
+
<EnumValueType>
|
|
683
|
+
<Value>1</Value>
|
|
684
|
+
<DisplayName>
|
|
685
|
+
<Locale>
|
|
686
|
+
</Locale>
|
|
687
|
+
<Text>AccessLevel</Text>
|
|
688
|
+
</DisplayName>
|
|
689
|
+
<Description>
|
|
690
|
+
<Locale>
|
|
691
|
+
</Locale>
|
|
692
|
+
<Text>The access level attribute is specified.</Text>
|
|
693
|
+
</Description>
|
|
694
|
+
</EnumValueType>
|
|
695
|
+
</Body>
|
|
696
|
+
</ExtensionObject>
|
|
697
|
+
<ExtensionObject>
|
|
698
|
+
<TypeId>
|
|
699
|
+
<Identifier>i=7616</Identifier>
|
|
700
|
+
</TypeId>
|
|
701
|
+
<Body>
|
|
702
|
+
<EnumValueType>
|
|
703
|
+
<Value>2</Value>
|
|
704
|
+
<DisplayName>
|
|
705
|
+
<Locale>
|
|
706
|
+
</Locale>
|
|
707
|
+
<Text>ArrayDimensions</Text>
|
|
708
|
+
</DisplayName>
|
|
709
|
+
<Description>
|
|
710
|
+
<Locale>
|
|
711
|
+
</Locale>
|
|
712
|
+
<Text>The array dimensions attribute is specified.</Text>
|
|
713
|
+
</Description>
|
|
714
|
+
</EnumValueType>
|
|
715
|
+
</Body>
|
|
716
|
+
</ExtensionObject>
|
|
717
|
+
<ExtensionObject>
|
|
718
|
+
<TypeId>
|
|
719
|
+
<Identifier>i=7616</Identifier>
|
|
720
|
+
</TypeId>
|
|
721
|
+
<Body>
|
|
722
|
+
<EnumValueType>
|
|
723
|
+
<Value>4</Value>
|
|
724
|
+
<DisplayName>
|
|
725
|
+
<Locale>
|
|
726
|
+
</Locale>
|
|
727
|
+
<Text>BrowseName</Text>
|
|
728
|
+
</DisplayName>
|
|
729
|
+
<Description>
|
|
730
|
+
<Locale>
|
|
731
|
+
</Locale>
|
|
732
|
+
<Text>The browse name attribute is specified.</Text>
|
|
733
|
+
</Description>
|
|
734
|
+
</EnumValueType>
|
|
735
|
+
</Body>
|
|
736
|
+
</ExtensionObject>
|
|
737
|
+
<ExtensionObject>
|
|
738
|
+
<TypeId>
|
|
739
|
+
<Identifier>i=7616</Identifier>
|
|
740
|
+
</TypeId>
|
|
741
|
+
<Body>
|
|
742
|
+
<EnumValueType>
|
|
743
|
+
<Value>8</Value>
|
|
744
|
+
<DisplayName>
|
|
745
|
+
<Locale>
|
|
746
|
+
</Locale>
|
|
747
|
+
<Text>ContainsNoLoops</Text>
|
|
748
|
+
</DisplayName>
|
|
749
|
+
<Description>
|
|
750
|
+
<Locale>
|
|
751
|
+
</Locale>
|
|
752
|
+
<Text>The contains no loops attribute is specified.</Text>
|
|
753
|
+
</Description>
|
|
754
|
+
</EnumValueType>
|
|
755
|
+
</Body>
|
|
756
|
+
</ExtensionObject>
|
|
757
|
+
<ExtensionObject>
|
|
758
|
+
<TypeId>
|
|
759
|
+
<Identifier>i=7616</Identifier>
|
|
760
|
+
</TypeId>
|
|
761
|
+
<Body>
|
|
762
|
+
<EnumValueType>
|
|
763
|
+
<Value>16</Value>
|
|
764
|
+
<DisplayName>
|
|
765
|
+
<Locale>
|
|
766
|
+
</Locale>
|
|
767
|
+
<Text>DataType</Text>
|
|
768
|
+
</DisplayName>
|
|
769
|
+
<Description>
|
|
770
|
+
<Locale>
|
|
771
|
+
</Locale>
|
|
772
|
+
<Text>The data type attribute is specified.</Text>
|
|
773
|
+
</Description>
|
|
774
|
+
</EnumValueType>
|
|
775
|
+
</Body>
|
|
776
|
+
</ExtensionObject>
|
|
777
|
+
<ExtensionObject>
|
|
778
|
+
<TypeId>
|
|
779
|
+
<Identifier>i=7616</Identifier>
|
|
780
|
+
</TypeId>
|
|
781
|
+
<Body>
|
|
782
|
+
<EnumValueType>
|
|
783
|
+
<Value>32</Value>
|
|
784
|
+
<DisplayName>
|
|
785
|
+
<Locale>
|
|
786
|
+
</Locale>
|
|
787
|
+
<Text>Description</Text>
|
|
788
|
+
</DisplayName>
|
|
789
|
+
<Description>
|
|
790
|
+
<Locale>
|
|
791
|
+
</Locale>
|
|
792
|
+
<Text>The description attribute is specified.</Text>
|
|
793
|
+
</Description>
|
|
794
|
+
</EnumValueType>
|
|
795
|
+
</Body>
|
|
796
|
+
</ExtensionObject>
|
|
797
|
+
<ExtensionObject>
|
|
798
|
+
<TypeId>
|
|
799
|
+
<Identifier>i=7616</Identifier>
|
|
800
|
+
</TypeId>
|
|
801
|
+
<Body>
|
|
802
|
+
<EnumValueType>
|
|
803
|
+
<Value>64</Value>
|
|
804
|
+
<DisplayName>
|
|
805
|
+
<Locale>
|
|
806
|
+
</Locale>
|
|
807
|
+
<Text>DisplayName</Text>
|
|
808
|
+
</DisplayName>
|
|
809
|
+
<Description>
|
|
810
|
+
<Locale>
|
|
811
|
+
</Locale>
|
|
812
|
+
<Text>The display name attribute is specified.</Text>
|
|
813
|
+
</Description>
|
|
814
|
+
</EnumValueType>
|
|
815
|
+
</Body>
|
|
816
|
+
</ExtensionObject>
|
|
817
|
+
<ExtensionObject>
|
|
818
|
+
<TypeId>
|
|
819
|
+
<Identifier>i=7616</Identifier>
|
|
820
|
+
</TypeId>
|
|
821
|
+
<Body>
|
|
822
|
+
<EnumValueType>
|
|
823
|
+
<Value>128</Value>
|
|
824
|
+
<DisplayName>
|
|
825
|
+
<Locale>
|
|
826
|
+
</Locale>
|
|
827
|
+
<Text>EventNotifier</Text>
|
|
828
|
+
</DisplayName>
|
|
829
|
+
<Description>
|
|
830
|
+
<Locale>
|
|
831
|
+
</Locale>
|
|
832
|
+
<Text>The event notifier attribute is specified.</Text>
|
|
833
|
+
</Description>
|
|
834
|
+
</EnumValueType>
|
|
835
|
+
</Body>
|
|
836
|
+
</ExtensionObject>
|
|
837
|
+
<ExtensionObject>
|
|
838
|
+
<TypeId>
|
|
839
|
+
<Identifier>i=7616</Identifier>
|
|
840
|
+
</TypeId>
|
|
841
|
+
<Body>
|
|
842
|
+
<EnumValueType>
|
|
843
|
+
<Value>256</Value>
|
|
844
|
+
<DisplayName>
|
|
845
|
+
<Locale>
|
|
846
|
+
</Locale>
|
|
847
|
+
<Text>Executable</Text>
|
|
848
|
+
</DisplayName>
|
|
849
|
+
<Description>
|
|
850
|
+
<Locale>
|
|
851
|
+
</Locale>
|
|
852
|
+
<Text>The executable attribute is specified.</Text>
|
|
853
|
+
</Description>
|
|
854
|
+
</EnumValueType>
|
|
855
|
+
</Body>
|
|
856
|
+
</ExtensionObject>
|
|
857
|
+
<ExtensionObject>
|
|
858
|
+
<TypeId>
|
|
859
|
+
<Identifier>i=7616</Identifier>
|
|
860
|
+
</TypeId>
|
|
861
|
+
<Body>
|
|
862
|
+
<EnumValueType>
|
|
863
|
+
<Value>512</Value>
|
|
864
|
+
<DisplayName>
|
|
865
|
+
<Locale>
|
|
866
|
+
</Locale>
|
|
867
|
+
<Text>Historizing</Text>
|
|
868
|
+
</DisplayName>
|
|
869
|
+
<Description>
|
|
870
|
+
<Locale>
|
|
871
|
+
</Locale>
|
|
872
|
+
<Text>The historizing attribute is specified.</Text>
|
|
873
|
+
</Description>
|
|
874
|
+
</EnumValueType>
|
|
875
|
+
</Body>
|
|
876
|
+
</ExtensionObject>
|
|
877
|
+
<ExtensionObject>
|
|
878
|
+
<TypeId>
|
|
879
|
+
<Identifier>i=7616</Identifier>
|
|
880
|
+
</TypeId>
|
|
881
|
+
<Body>
|
|
882
|
+
<EnumValueType>
|
|
883
|
+
<Value>1024</Value>
|
|
884
|
+
<DisplayName>
|
|
885
|
+
<Locale>
|
|
886
|
+
</Locale>
|
|
887
|
+
<Text>InverseName</Text>
|
|
888
|
+
</DisplayName>
|
|
889
|
+
<Description>
|
|
890
|
+
<Locale>
|
|
891
|
+
</Locale>
|
|
892
|
+
<Text>The inverse name attribute is specified.</Text>
|
|
893
|
+
</Description>
|
|
894
|
+
</EnumValueType>
|
|
895
|
+
</Body>
|
|
896
|
+
</ExtensionObject>
|
|
897
|
+
<ExtensionObject>
|
|
898
|
+
<TypeId>
|
|
899
|
+
<Identifier>i=7616</Identifier>
|
|
900
|
+
</TypeId>
|
|
901
|
+
<Body>
|
|
902
|
+
<EnumValueType>
|
|
903
|
+
<Value>2048</Value>
|
|
904
|
+
<DisplayName>
|
|
905
|
+
<Locale>
|
|
906
|
+
</Locale>
|
|
907
|
+
<Text>IsAbstract</Text>
|
|
908
|
+
</DisplayName>
|
|
909
|
+
<Description>
|
|
910
|
+
<Locale>
|
|
911
|
+
</Locale>
|
|
912
|
+
<Text>The is abstract attribute is specified.</Text>
|
|
913
|
+
</Description>
|
|
914
|
+
</EnumValueType>
|
|
915
|
+
</Body>
|
|
916
|
+
</ExtensionObject>
|
|
917
|
+
<ExtensionObject>
|
|
918
|
+
<TypeId>
|
|
919
|
+
<Identifier>i=7616</Identifier>
|
|
920
|
+
</TypeId>
|
|
921
|
+
<Body>
|
|
922
|
+
<EnumValueType>
|
|
923
|
+
<Value>4096</Value>
|
|
924
|
+
<DisplayName>
|
|
925
|
+
<Locale>
|
|
926
|
+
</Locale>
|
|
927
|
+
<Text>MinimumSamplingInterval</Text>
|
|
928
|
+
</DisplayName>
|
|
929
|
+
<Description>
|
|
930
|
+
<Locale>
|
|
931
|
+
</Locale>
|
|
932
|
+
<Text>The minimum sampling interval attribute is specified.</Text>
|
|
933
|
+
</Description>
|
|
934
|
+
</EnumValueType>
|
|
935
|
+
</Body>
|
|
936
|
+
</ExtensionObject>
|
|
937
|
+
<ExtensionObject>
|
|
938
|
+
<TypeId>
|
|
939
|
+
<Identifier>i=7616</Identifier>
|
|
940
|
+
</TypeId>
|
|
941
|
+
<Body>
|
|
942
|
+
<EnumValueType>
|
|
943
|
+
<Value>8192</Value>
|
|
944
|
+
<DisplayName>
|
|
945
|
+
<Locale>
|
|
946
|
+
</Locale>
|
|
947
|
+
<Text>NodeClass</Text>
|
|
948
|
+
</DisplayName>
|
|
949
|
+
<Description>
|
|
950
|
+
<Locale>
|
|
951
|
+
</Locale>
|
|
952
|
+
<Text>The node class attribute is specified.</Text>
|
|
953
|
+
</Description>
|
|
954
|
+
</EnumValueType>
|
|
955
|
+
</Body>
|
|
956
|
+
</ExtensionObject>
|
|
957
|
+
<ExtensionObject>
|
|
958
|
+
<TypeId>
|
|
959
|
+
<Identifier>i=7616</Identifier>
|
|
960
|
+
</TypeId>
|
|
961
|
+
<Body>
|
|
962
|
+
<EnumValueType>
|
|
963
|
+
<Value>16384</Value>
|
|
964
|
+
<DisplayName>
|
|
965
|
+
<Locale>
|
|
966
|
+
</Locale>
|
|
967
|
+
<Text>NodeId</Text>
|
|
968
|
+
</DisplayName>
|
|
969
|
+
<Description>
|
|
970
|
+
<Locale>
|
|
971
|
+
</Locale>
|
|
972
|
+
<Text>The node id attribute is specified.</Text>
|
|
973
|
+
</Description>
|
|
974
|
+
</EnumValueType>
|
|
975
|
+
</Body>
|
|
976
|
+
</ExtensionObject>
|
|
977
|
+
<ExtensionObject>
|
|
978
|
+
<TypeId>
|
|
979
|
+
<Identifier>i=7616</Identifier>
|
|
980
|
+
</TypeId>
|
|
981
|
+
<Body>
|
|
982
|
+
<EnumValueType>
|
|
983
|
+
<Value>32768</Value>
|
|
984
|
+
<DisplayName>
|
|
985
|
+
<Locale>
|
|
986
|
+
</Locale>
|
|
987
|
+
<Text>Symmetric</Text>
|
|
988
|
+
</DisplayName>
|
|
989
|
+
<Description>
|
|
990
|
+
<Locale>
|
|
991
|
+
</Locale>
|
|
992
|
+
<Text>The symmetric attribute is specified.</Text>
|
|
993
|
+
</Description>
|
|
994
|
+
</EnumValueType>
|
|
995
|
+
</Body>
|
|
996
|
+
</ExtensionObject>
|
|
997
|
+
<ExtensionObject>
|
|
998
|
+
<TypeId>
|
|
999
|
+
<Identifier>i=7616</Identifier>
|
|
1000
|
+
</TypeId>
|
|
1001
|
+
<Body>
|
|
1002
|
+
<EnumValueType>
|
|
1003
|
+
<Value>65536</Value>
|
|
1004
|
+
<DisplayName>
|
|
1005
|
+
<Locale>
|
|
1006
|
+
</Locale>
|
|
1007
|
+
<Text>UserAccessLevel</Text>
|
|
1008
|
+
</DisplayName>
|
|
1009
|
+
<Description>
|
|
1010
|
+
<Locale>
|
|
1011
|
+
</Locale>
|
|
1012
|
+
<Text>The user access level attribute is specified.</Text>
|
|
1013
|
+
</Description>
|
|
1014
|
+
</EnumValueType>
|
|
1015
|
+
</Body>
|
|
1016
|
+
</ExtensionObject>
|
|
1017
|
+
<ExtensionObject>
|
|
1018
|
+
<TypeId>
|
|
1019
|
+
<Identifier>i=7616</Identifier>
|
|
1020
|
+
</TypeId>
|
|
1021
|
+
<Body>
|
|
1022
|
+
<EnumValueType>
|
|
1023
|
+
<Value>131072</Value>
|
|
1024
|
+
<DisplayName>
|
|
1025
|
+
<Locale>
|
|
1026
|
+
</Locale>
|
|
1027
|
+
<Text>UserExecutable</Text>
|
|
1028
|
+
</DisplayName>
|
|
1029
|
+
<Description>
|
|
1030
|
+
<Locale>
|
|
1031
|
+
</Locale>
|
|
1032
|
+
<Text>The user executable attribute is specified.</Text>
|
|
1033
|
+
</Description>
|
|
1034
|
+
</EnumValueType>
|
|
1035
|
+
</Body>
|
|
1036
|
+
</ExtensionObject>
|
|
1037
|
+
<ExtensionObject>
|
|
1038
|
+
<TypeId>
|
|
1039
|
+
<Identifier>i=7616</Identifier>
|
|
1040
|
+
</TypeId>
|
|
1041
|
+
<Body>
|
|
1042
|
+
<EnumValueType>
|
|
1043
|
+
<Value>262144</Value>
|
|
1044
|
+
<DisplayName>
|
|
1045
|
+
<Locale>
|
|
1046
|
+
</Locale>
|
|
1047
|
+
<Text>UserWriteMask</Text>
|
|
1048
|
+
</DisplayName>
|
|
1049
|
+
<Description>
|
|
1050
|
+
<Locale>
|
|
1051
|
+
</Locale>
|
|
1052
|
+
<Text>The user write mask attribute is specified.</Text>
|
|
1053
|
+
</Description>
|
|
1054
|
+
</EnumValueType>
|
|
1055
|
+
</Body>
|
|
1056
|
+
</ExtensionObject>
|
|
1057
|
+
<ExtensionObject>
|
|
1058
|
+
<TypeId>
|
|
1059
|
+
<Identifier>i=7616</Identifier>
|
|
1060
|
+
</TypeId>
|
|
1061
|
+
<Body>
|
|
1062
|
+
<EnumValueType>
|
|
1063
|
+
<Value>524288</Value>
|
|
1064
|
+
<DisplayName>
|
|
1065
|
+
<Locale>
|
|
1066
|
+
</Locale>
|
|
1067
|
+
<Text>ValueRank</Text>
|
|
1068
|
+
</DisplayName>
|
|
1069
|
+
<Description>
|
|
1070
|
+
<Locale>
|
|
1071
|
+
</Locale>
|
|
1072
|
+
<Text>The value rank attribute is specified.</Text>
|
|
1073
|
+
</Description>
|
|
1074
|
+
</EnumValueType>
|
|
1075
|
+
</Body>
|
|
1076
|
+
</ExtensionObject>
|
|
1077
|
+
<ExtensionObject>
|
|
1078
|
+
<TypeId>
|
|
1079
|
+
<Identifier>i=7616</Identifier>
|
|
1080
|
+
</TypeId>
|
|
1081
|
+
<Body>
|
|
1082
|
+
<EnumValueType>
|
|
1083
|
+
<Value>1048576</Value>
|
|
1084
|
+
<DisplayName>
|
|
1085
|
+
<Locale>
|
|
1086
|
+
</Locale>
|
|
1087
|
+
<Text>WriteMask</Text>
|
|
1088
|
+
</DisplayName>
|
|
1089
|
+
<Description>
|
|
1090
|
+
<Locale>
|
|
1091
|
+
</Locale>
|
|
1092
|
+
<Text>The write mask attribute is specified.</Text>
|
|
1093
|
+
</Description>
|
|
1094
|
+
</EnumValueType>
|
|
1095
|
+
</Body>
|
|
1096
|
+
</ExtensionObject>
|
|
1097
|
+
<ExtensionObject>
|
|
1098
|
+
<TypeId>
|
|
1099
|
+
<Identifier>i=7616</Identifier>
|
|
1100
|
+
</TypeId>
|
|
1101
|
+
<Body>
|
|
1102
|
+
<EnumValueType>
|
|
1103
|
+
<Value>2097152</Value>
|
|
1104
|
+
<DisplayName>
|
|
1105
|
+
<Locale>
|
|
1106
|
+
</Locale>
|
|
1107
|
+
<Text>Value</Text>
|
|
1108
|
+
</DisplayName>
|
|
1109
|
+
<Description>
|
|
1110
|
+
<Locale>
|
|
1111
|
+
</Locale>
|
|
1112
|
+
<Text>The value attribute is specified.</Text>
|
|
1113
|
+
</Description>
|
|
1114
|
+
</EnumValueType>
|
|
1115
|
+
</Body>
|
|
1116
|
+
</ExtensionObject>
|
|
1117
|
+
<ExtensionObject>
|
|
1118
|
+
<TypeId>
|
|
1119
|
+
<Identifier>i=7616</Identifier>
|
|
1120
|
+
</TypeId>
|
|
1121
|
+
<Body>
|
|
1122
|
+
<EnumValueType>
|
|
1123
|
+
<Value>4194303</Value>
|
|
1124
|
+
<DisplayName>
|
|
1125
|
+
<Locale>
|
|
1126
|
+
</Locale>
|
|
1127
|
+
<Text>All</Text>
|
|
1128
|
+
</DisplayName>
|
|
1129
|
+
<Description>
|
|
1130
|
+
<Locale>
|
|
1131
|
+
</Locale>
|
|
1132
|
+
<Text>All attributes are specified.</Text>
|
|
1133
|
+
</Description>
|
|
1134
|
+
</EnumValueType>
|
|
1135
|
+
</Body>
|
|
1136
|
+
</ExtensionObject>
|
|
1137
|
+
<ExtensionObject>
|
|
1138
|
+
<TypeId>
|
|
1139
|
+
<Identifier>i=7616</Identifier>
|
|
1140
|
+
</TypeId>
|
|
1141
|
+
<Body>
|
|
1142
|
+
<EnumValueType>
|
|
1143
|
+
<Value>1335396</Value>
|
|
1144
|
+
<DisplayName>
|
|
1145
|
+
<Locale>
|
|
1146
|
+
</Locale>
|
|
1147
|
+
<Text>BaseNode</Text>
|
|
1148
|
+
</DisplayName>
|
|
1149
|
+
<Description>
|
|
1150
|
+
<Locale>
|
|
1151
|
+
</Locale>
|
|
1152
|
+
<Text>All base attributes are specified.</Text>
|
|
1153
|
+
</Description>
|
|
1154
|
+
</EnumValueType>
|
|
1155
|
+
</Body>
|
|
1156
|
+
</ExtensionObject>
|
|
1157
|
+
<ExtensionObject>
|
|
1158
|
+
<TypeId>
|
|
1159
|
+
<Identifier>i=7616</Identifier>
|
|
1160
|
+
</TypeId>
|
|
1161
|
+
<Body>
|
|
1162
|
+
<EnumValueType>
|
|
1163
|
+
<Value>1335524</Value>
|
|
1164
|
+
<DisplayName>
|
|
1165
|
+
<Locale>
|
|
1166
|
+
</Locale>
|
|
1167
|
+
<Text>Object</Text>
|
|
1168
|
+
</DisplayName>
|
|
1169
|
+
<Description>
|
|
1170
|
+
<Locale>
|
|
1171
|
+
</Locale>
|
|
1172
|
+
<Text>All object attributes are specified.</Text>
|
|
1173
|
+
</Description>
|
|
1174
|
+
</EnumValueType>
|
|
1175
|
+
</Body>
|
|
1176
|
+
</ExtensionObject>
|
|
1177
|
+
<ExtensionObject>
|
|
1178
|
+
<TypeId>
|
|
1179
|
+
<Identifier>i=7616</Identifier>
|
|
1180
|
+
</TypeId>
|
|
1181
|
+
<Body>
|
|
1182
|
+
<EnumValueType>
|
|
1183
|
+
<Value>1337444</Value>
|
|
1184
|
+
<DisplayName>
|
|
1185
|
+
<Locale>
|
|
1186
|
+
</Locale>
|
|
1187
|
+
<Text>ObjectTypeOrDataType</Text>
|
|
1188
|
+
</DisplayName>
|
|
1189
|
+
<Description>
|
|
1190
|
+
<Locale>
|
|
1191
|
+
</Locale>
|
|
1192
|
+
<Text>All object type or data type attributes are specified.</Text>
|
|
1193
|
+
</Description>
|
|
1194
|
+
</EnumValueType>
|
|
1195
|
+
</Body>
|
|
1196
|
+
</ExtensionObject>
|
|
1197
|
+
<ExtensionObject>
|
|
1198
|
+
<TypeId>
|
|
1199
|
+
<Identifier>i=7616</Identifier>
|
|
1200
|
+
</TypeId>
|
|
1201
|
+
<Body>
|
|
1202
|
+
<EnumValueType>
|
|
1203
|
+
<Value>4026999</Value>
|
|
1204
|
+
<DisplayName>
|
|
1205
|
+
<Locale>
|
|
1206
|
+
</Locale>
|
|
1207
|
+
<Text>Variable</Text>
|
|
1208
|
+
</DisplayName>
|
|
1209
|
+
<Description>
|
|
1210
|
+
<Locale>
|
|
1211
|
+
</Locale>
|
|
1212
|
+
<Text>All variable attributes are specified.</Text>
|
|
1213
|
+
</Description>
|
|
1214
|
+
</EnumValueType>
|
|
1215
|
+
</Body>
|
|
1216
|
+
</ExtensionObject>
|
|
1217
|
+
<ExtensionObject>
|
|
1218
|
+
<TypeId>
|
|
1219
|
+
<Identifier>i=7616</Identifier>
|
|
1220
|
+
</TypeId>
|
|
1221
|
+
<Body>
|
|
1222
|
+
<EnumValueType>
|
|
1223
|
+
<Value>3958902</Value>
|
|
1224
|
+
<DisplayName>
|
|
1225
|
+
<Locale>
|
|
1226
|
+
</Locale>
|
|
1227
|
+
<Text>VariableType</Text>
|
|
1228
|
+
</DisplayName>
|
|
1229
|
+
<Description>
|
|
1230
|
+
<Locale>
|
|
1231
|
+
</Locale>
|
|
1232
|
+
<Text>All variable type attributes are specified.</Text>
|
|
1233
|
+
</Description>
|
|
1234
|
+
</EnumValueType>
|
|
1235
|
+
</Body>
|
|
1236
|
+
</ExtensionObject>
|
|
1237
|
+
<ExtensionObject>
|
|
1238
|
+
<TypeId>
|
|
1239
|
+
<Identifier>i=7616</Identifier>
|
|
1240
|
+
</TypeId>
|
|
1241
|
+
<Body>
|
|
1242
|
+
<EnumValueType>
|
|
1243
|
+
<Value>1466724</Value>
|
|
1244
|
+
<DisplayName>
|
|
1245
|
+
<Locale>
|
|
1246
|
+
</Locale>
|
|
1247
|
+
<Text>Method</Text>
|
|
1248
|
+
</DisplayName>
|
|
1249
|
+
<Description>
|
|
1250
|
+
<Locale>
|
|
1251
|
+
</Locale>
|
|
1252
|
+
<Text>All method attributes are specified.</Text>
|
|
1253
|
+
</Description>
|
|
1254
|
+
</EnumValueType>
|
|
1255
|
+
</Body>
|
|
1256
|
+
</ExtensionObject>
|
|
1257
|
+
<ExtensionObject>
|
|
1258
|
+
<TypeId>
|
|
1259
|
+
<Identifier>i=7616</Identifier>
|
|
1260
|
+
</TypeId>
|
|
1261
|
+
<Body>
|
|
1262
|
+
<EnumValueType>
|
|
1263
|
+
<Value>1371236</Value>
|
|
1264
|
+
<DisplayName>
|
|
1265
|
+
<Locale>
|
|
1266
|
+
</Locale>
|
|
1267
|
+
<Text>ReferenceType</Text>
|
|
1268
|
+
</DisplayName>
|
|
1269
|
+
<Description>
|
|
1270
|
+
<Locale>
|
|
1271
|
+
</Locale>
|
|
1272
|
+
<Text>All reference type attributes are specified.</Text>
|
|
1273
|
+
</Description>
|
|
1274
|
+
</EnumValueType>
|
|
1275
|
+
</Body>
|
|
1276
|
+
</ExtensionObject>
|
|
1277
|
+
<ExtensionObject>
|
|
1278
|
+
<TypeId>
|
|
1279
|
+
<Identifier>i=7616</Identifier>
|
|
1280
|
+
</TypeId>
|
|
1281
|
+
<Body>
|
|
1282
|
+
<EnumValueType>
|
|
1283
|
+
<Value>1335532</Value>
|
|
1284
|
+
<DisplayName>
|
|
1285
|
+
<Locale>
|
|
1286
|
+
</Locale>
|
|
1287
|
+
<Text>View</Text>
|
|
1288
|
+
</DisplayName>
|
|
1289
|
+
<Description>
|
|
1290
|
+
<Locale>
|
|
1291
|
+
</Locale>
|
|
1292
|
+
<Text>All view attributes are specified.</Text>
|
|
1293
|
+
</Description>
|
|
1294
|
+
</EnumValueType>
|
|
1295
|
+
</Body>
|
|
1296
|
+
</ExtensionObject>
|
|
1297
|
+
</ListOfExtensionObject>
|
|
1298
|
+
</Value>
|
|
1299
|
+
</UAVariable>
|
|
1300
|
+
<UADataType NodeId="i=376" BrowseName="AddNodesItem">
|
|
1301
|
+
<DisplayName>AddNodesItem</DisplayName>
|
|
1302
|
+
<Description>A request to add a node to the server address space.</Description>
|
|
1303
|
+
<References>
|
|
1304
|
+
<Reference ReferenceType="HasSubtype" IsForward="false">i=22</Reference>
|
|
1305
|
+
</References>
|
|
1306
|
+
<Definition Name="AddNodesItem">
|
|
1307
|
+
<Field Name="ParentNodeId" DataType="i=18">
|
|
1308
|
+
<Description>The node id for the parent node.</Description>
|
|
1309
|
+
</Field>
|
|
1310
|
+
<Field Name="ReferenceTypeId" DataType="i=17">
|
|
1311
|
+
<Description>The type of reference from the parent to the new node.</Description>
|
|
1312
|
+
</Field>
|
|
1313
|
+
<Field Name="RequestedNewNodeId" DataType="i=18">
|
|
1314
|
+
<Description>The node id requested by the client. If null the server must provide one.</Description>
|
|
1315
|
+
</Field>
|
|
1316
|
+
<Field Name="BrowseName" DataType="i=20">
|
|
1317
|
+
<Description>The browse name for the new node.</Description>
|
|
1318
|
+
</Field>
|
|
1319
|
+
<Field Name="NodeClass" DataType="i=257">
|
|
1320
|
+
<Description>The class of the new node.</Description>
|
|
1321
|
+
</Field>
|
|
1322
|
+
<Field Name="NodeAttributes" DataType="i=22">
|
|
1323
|
+
<Description>The default attributes for the new node.</Description>
|
|
1324
|
+
</Field>
|
|
1325
|
+
<Field Name="TypeDefinition" DataType="i=18">
|
|
1326
|
+
<Description>The type definition for the new node.</Description>
|
|
1327
|
+
</Field>
|
|
1328
|
+
</Definition>
|
|
1329
|
+
</UADataType>
|
|
1330
|
+
<UADataType NodeId="i=379" BrowseName="AddReferencesItem">
|
|
1331
|
+
<DisplayName>AddReferencesItem</DisplayName>
|
|
1332
|
+
<Description>A request to add a reference to the server address space.</Description>
|
|
1333
|
+
<References>
|
|
1334
|
+
<Reference ReferenceType="HasSubtype" IsForward="false">i=22</Reference>
|
|
1335
|
+
</References>
|
|
1336
|
+
<Definition Name="AddReferencesItem">
|
|
1337
|
+
<Field Name="SourceNodeId" DataType="i=17">
|
|
1338
|
+
<Description>The source of the reference.</Description>
|
|
1339
|
+
</Field>
|
|
1340
|
+
<Field Name="ReferenceTypeId" DataType="i=17">
|
|
1341
|
+
<Description>The type of reference.</Description>
|
|
1342
|
+
</Field>
|
|
1343
|
+
<Field Name="IsForward" DataType="i=1">
|
|
1344
|
+
<Description>If TRUE the reference is a forward reference.</Description>
|
|
1345
|
+
</Field>
|
|
1346
|
+
<Field Name="TargetServerUri" DataType="i=12">
|
|
1347
|
+
<Description>The URI of the server containing the target (if in another server).</Description>
|
|
1348
|
+
</Field>
|
|
1349
|
+
<Field Name="TargetNodeId" DataType="i=18">
|
|
1350
|
+
<Description>The target of the reference.</Description>
|
|
1351
|
+
</Field>
|
|
1352
|
+
<Field Name="TargetNodeClass" DataType="i=257">
|
|
1353
|
+
<Description>The node class of the target (if known).</Description>
|
|
1354
|
+
</Field>
|
|
1355
|
+
</Definition>
|
|
1356
|
+
</UADataType>
|
|
1357
|
+
<UADataType NodeId="i=382" BrowseName="DeleteNodesItem">
|
|
1358
|
+
<DisplayName>DeleteNodesItem</DisplayName>
|
|
1359
|
+
<Description>A request to delete a node to the server address space.</Description>
|
|
1360
|
+
<References>
|
|
1361
|
+
<Reference ReferenceType="HasSubtype" IsForward="false">i=22</Reference>
|
|
1362
|
+
</References>
|
|
1363
|
+
<Definition Name="DeleteNodesItem">
|
|
1364
|
+
<Field Name="NodeId" DataType="i=17">
|
|
1365
|
+
<Description>The id of the node to delete.</Description>
|
|
1366
|
+
</Field>
|
|
1367
|
+
<Field Name="DeleteTargetReferences" DataType="i=1">
|
|
1368
|
+
<Description>If TRUE all references to the are deleted as well.</Description>
|
|
1369
|
+
</Field>
|
|
1370
|
+
</Definition>
|
|
1371
|
+
</UADataType>
|
|
1372
|
+
<UADataType NodeId="i=385" BrowseName="DeleteReferencesItem">
|
|
1373
|
+
<DisplayName>DeleteReferencesItem</DisplayName>
|
|
1374
|
+
<Description>A request to delete a node from the server address space.</Description>
|
|
1375
|
+
<References>
|
|
1376
|
+
<Reference ReferenceType="HasSubtype" IsForward="false">i=22</Reference>
|
|
1377
|
+
</References>
|
|
1378
|
+
<Definition Name="DeleteReferencesItem">
|
|
1379
|
+
<Field Name="SourceNodeId" DataType="i=17">
|
|
1380
|
+
<Description>The source of the reference to delete.</Description>
|
|
1381
|
+
</Field>
|
|
1382
|
+
<Field Name="ReferenceTypeId" DataType="i=17">
|
|
1383
|
+
<Description>The type of reference to delete.</Description>
|
|
1384
|
+
</Field>
|
|
1385
|
+
<Field Name="IsForward" DataType="i=1">
|
|
1386
|
+
<Description>If TRUE the a forward reference is deleted.</Description>
|
|
1387
|
+
</Field>
|
|
1388
|
+
<Field Name="TargetNodeId" DataType="i=18">
|
|
1389
|
+
<Description>The target of the reference to delete.</Description>
|
|
1390
|
+
</Field>
|
|
1391
|
+
<Field Name="DeleteBidirectional" DataType="i=1">
|
|
1392
|
+
<Description>If TRUE the reference is deleted in both directions.</Description>
|
|
1393
|
+
</Field>
|
|
1394
|
+
</Definition>
|
|
1395
|
+
</UADataType>
|
|
1396
|
+
<UADataType NodeId="i=347" BrowseName="AttributeWriteMask">
|
|
1397
|
+
<DisplayName>AttributeWriteMask</DisplayName>
|
|
1398
|
+
<Description>Define bits used to indicate which attributes are writable.</Description>
|
|
1399
|
+
<References>
|
|
1400
|
+
<Reference ReferenceType="HasProperty">i=11882</Reference>
|
|
1401
|
+
<Reference ReferenceType="HasSubtype" IsForward="false">i=29</Reference>
|
|
1402
|
+
</References>
|
|
1403
|
+
<Definition Name="AttributeWriteMask">
|
|
1404
|
+
<Field Name="None" Value="0">
|
|
1405
|
+
<Description>No attributes are writable.</Description>
|
|
1406
|
+
</Field>
|
|
1407
|
+
<Field Name="AccessLevel" Value="1">
|
|
1408
|
+
<Description>The access level attribute is writable.</Description>
|
|
1409
|
+
</Field>
|
|
1410
|
+
<Field Name="ArrayDimensions" Value="2">
|
|
1411
|
+
<Description>The array dimensions attribute is writable.</Description>
|
|
1412
|
+
</Field>
|
|
1413
|
+
<Field Name="BrowseName" Value="4">
|
|
1414
|
+
<Description>The browse name attribute is writable.</Description>
|
|
1415
|
+
</Field>
|
|
1416
|
+
<Field Name="ContainsNoLoops" Value="8">
|
|
1417
|
+
<Description>The contains no loops attribute is writable.</Description>
|
|
1418
|
+
</Field>
|
|
1419
|
+
<Field Name="DataType" Value="16">
|
|
1420
|
+
<Description>The data type attribute is writable.</Description>
|
|
1421
|
+
</Field>
|
|
1422
|
+
<Field Name="Description" Value="32">
|
|
1423
|
+
<Description>The description attribute is writable.</Description>
|
|
1424
|
+
</Field>
|
|
1425
|
+
<Field Name="DisplayName" Value="64">
|
|
1426
|
+
<Description>The display name attribute is writable.</Description>
|
|
1427
|
+
</Field>
|
|
1428
|
+
<Field Name="EventNotifier" Value="128">
|
|
1429
|
+
<Description>The event notifier attribute is writable.</Description>
|
|
1430
|
+
</Field>
|
|
1431
|
+
<Field Name="Executable" Value="256">
|
|
1432
|
+
<Description>The executable attribute is writable.</Description>
|
|
1433
|
+
</Field>
|
|
1434
|
+
<Field Name="Historizing" Value="512">
|
|
1435
|
+
<Description>The historizing attribute is writable.</Description>
|
|
1436
|
+
</Field>
|
|
1437
|
+
<Field Name="InverseName" Value="1024">
|
|
1438
|
+
<Description>The inverse name attribute is writable.</Description>
|
|
1439
|
+
</Field>
|
|
1440
|
+
<Field Name="IsAbstract" Value="2048">
|
|
1441
|
+
<Description>The is abstract attribute is writable.</Description>
|
|
1442
|
+
</Field>
|
|
1443
|
+
<Field Name="MinimumSamplingInterval" Value="4096">
|
|
1444
|
+
<Description>The minimum sampling interval attribute is writable.</Description>
|
|
1445
|
+
</Field>
|
|
1446
|
+
<Field Name="NodeClass" Value="8192">
|
|
1447
|
+
<Description>The node class attribute is writable.</Description>
|
|
1448
|
+
</Field>
|
|
1449
|
+
<Field Name="NodeId" Value="16384">
|
|
1450
|
+
<Description>The node id attribute is writable.</Description>
|
|
1451
|
+
</Field>
|
|
1452
|
+
<Field Name="Symmetric" Value="32768">
|
|
1453
|
+
<Description>The symmetric attribute is writable.</Description>
|
|
1454
|
+
</Field>
|
|
1455
|
+
<Field Name="UserAccessLevel" Value="65536">
|
|
1456
|
+
<Description>The user access level attribute is writable.</Description>
|
|
1457
|
+
</Field>
|
|
1458
|
+
<Field Name="UserExecutable" Value="131072">
|
|
1459
|
+
<Description>The user executable attribute is writable.</Description>
|
|
1460
|
+
</Field>
|
|
1461
|
+
<Field Name="UserWriteMask" Value="262144">
|
|
1462
|
+
<Description>The user write mask attribute is writable.</Description>
|
|
1463
|
+
</Field>
|
|
1464
|
+
<Field Name="ValueRank" Value="524288">
|
|
1465
|
+
<Description>The value rank attribute is writable.</Description>
|
|
1466
|
+
</Field>
|
|
1467
|
+
<Field Name="WriteMask" Value="1048576">
|
|
1468
|
+
<Description>The write mask attribute is writable.</Description>
|
|
1469
|
+
</Field>
|
|
1470
|
+
<Field Name="ValueForVariableType" Value="2097152">
|
|
1471
|
+
<Description>The value attribute is writable.</Description>
|
|
1472
|
+
</Field>
|
|
1473
|
+
</Definition>
|
|
1474
|
+
</UADataType>
|
|
1475
|
+
<UAVariable NodeId="i=11882" BrowseName="EnumValues" ParentNodeId="i=347" DataType="i=7594" ValueRank="1">
|
|
1476
|
+
<DisplayName>EnumValues</DisplayName>
|
|
1477
|
+
<References>
|
|
1478
|
+
<Reference ReferenceType="HasTypeDefinition">i=68</Reference>
|
|
1479
|
+
<Reference ReferenceType="HasModellingRule">i=78</Reference>
|
|
1480
|
+
<Reference ReferenceType="HasProperty" IsForward="false">i=347</Reference>
|
|
1481
|
+
</References>
|
|
1482
|
+
<Value>
|
|
1483
|
+
<ListOfExtensionObject xmlns="http://opcfoundation.org/UA/2008/02/Types.xsd">
|
|
1484
|
+
<ExtensionObject>
|
|
1485
|
+
<TypeId>
|
|
1486
|
+
<Identifier>i=7616</Identifier>
|
|
1487
|
+
</TypeId>
|
|
1488
|
+
<Body>
|
|
1489
|
+
<EnumValueType>
|
|
1490
|
+
<Value>0</Value>
|
|
1491
|
+
<DisplayName>
|
|
1492
|
+
<Locale>
|
|
1493
|
+
</Locale>
|
|
1494
|
+
<Text>None</Text>
|
|
1495
|
+
</DisplayName>
|
|
1496
|
+
<Description>
|
|
1497
|
+
<Locale>
|
|
1498
|
+
</Locale>
|
|
1499
|
+
<Text>No attributes are writable.</Text>
|
|
1500
|
+
</Description>
|
|
1501
|
+
</EnumValueType>
|
|
1502
|
+
</Body>
|
|
1503
|
+
</ExtensionObject>
|
|
1504
|
+
<ExtensionObject>
|
|
1505
|
+
<TypeId>
|
|
1506
|
+
<Identifier>i=7616</Identifier>
|
|
1507
|
+
</TypeId>
|
|
1508
|
+
<Body>
|
|
1509
|
+
<EnumValueType>
|
|
1510
|
+
<Value>1</Value>
|
|
1511
|
+
<DisplayName>
|
|
1512
|
+
<Locale>
|
|
1513
|
+
</Locale>
|
|
1514
|
+
<Text>AccessLevel</Text>
|
|
1515
|
+
</DisplayName>
|
|
1516
|
+
<Description>
|
|
1517
|
+
<Locale>
|
|
1518
|
+
</Locale>
|
|
1519
|
+
<Text>The access level attribute is writable.</Text>
|
|
1520
|
+
</Description>
|
|
1521
|
+
</EnumValueType>
|
|
1522
|
+
</Body>
|
|
1523
|
+
</ExtensionObject>
|
|
1524
|
+
<ExtensionObject>
|
|
1525
|
+
<TypeId>
|
|
1526
|
+
<Identifier>i=7616</Identifier>
|
|
1527
|
+
</TypeId>
|
|
1528
|
+
<Body>
|
|
1529
|
+
<EnumValueType>
|
|
1530
|
+
<Value>2</Value>
|
|
1531
|
+
<DisplayName>
|
|
1532
|
+
<Locale>
|
|
1533
|
+
</Locale>
|
|
1534
|
+
<Text>ArrayDimensions</Text>
|
|
1535
|
+
</DisplayName>
|
|
1536
|
+
<Description>
|
|
1537
|
+
<Locale>
|
|
1538
|
+
</Locale>
|
|
1539
|
+
<Text>The array dimensions attribute is writable.</Text>
|
|
1540
|
+
</Description>
|
|
1541
|
+
</EnumValueType>
|
|
1542
|
+
</Body>
|
|
1543
|
+
</ExtensionObject>
|
|
1544
|
+
<ExtensionObject>
|
|
1545
|
+
<TypeId>
|
|
1546
|
+
<Identifier>i=7616</Identifier>
|
|
1547
|
+
</TypeId>
|
|
1548
|
+
<Body>
|
|
1549
|
+
<EnumValueType>
|
|
1550
|
+
<Value>4</Value>
|
|
1551
|
+
<DisplayName>
|
|
1552
|
+
<Locale>
|
|
1553
|
+
</Locale>
|
|
1554
|
+
<Text>BrowseName</Text>
|
|
1555
|
+
</DisplayName>
|
|
1556
|
+
<Description>
|
|
1557
|
+
<Locale>
|
|
1558
|
+
</Locale>
|
|
1559
|
+
<Text>The browse name attribute is writable.</Text>
|
|
1560
|
+
</Description>
|
|
1561
|
+
</EnumValueType>
|
|
1562
|
+
</Body>
|
|
1563
|
+
</ExtensionObject>
|
|
1564
|
+
<ExtensionObject>
|
|
1565
|
+
<TypeId>
|
|
1566
|
+
<Identifier>i=7616</Identifier>
|
|
1567
|
+
</TypeId>
|
|
1568
|
+
<Body>
|
|
1569
|
+
<EnumValueType>
|
|
1570
|
+
<Value>8</Value>
|
|
1571
|
+
<DisplayName>
|
|
1572
|
+
<Locale>
|
|
1573
|
+
</Locale>
|
|
1574
|
+
<Text>ContainsNoLoops</Text>
|
|
1575
|
+
</DisplayName>
|
|
1576
|
+
<Description>
|
|
1577
|
+
<Locale>
|
|
1578
|
+
</Locale>
|
|
1579
|
+
<Text>The contains no loops attribute is writable.</Text>
|
|
1580
|
+
</Description>
|
|
1581
|
+
</EnumValueType>
|
|
1582
|
+
</Body>
|
|
1583
|
+
</ExtensionObject>
|
|
1584
|
+
<ExtensionObject>
|
|
1585
|
+
<TypeId>
|
|
1586
|
+
<Identifier>i=7616</Identifier>
|
|
1587
|
+
</TypeId>
|
|
1588
|
+
<Body>
|
|
1589
|
+
<EnumValueType>
|
|
1590
|
+
<Value>16</Value>
|
|
1591
|
+
<DisplayName>
|
|
1592
|
+
<Locale>
|
|
1593
|
+
</Locale>
|
|
1594
|
+
<Text>DataType</Text>
|
|
1595
|
+
</DisplayName>
|
|
1596
|
+
<Description>
|
|
1597
|
+
<Locale>
|
|
1598
|
+
</Locale>
|
|
1599
|
+
<Text>The data type attribute is writable.</Text>
|
|
1600
|
+
</Description>
|
|
1601
|
+
</EnumValueType>
|
|
1602
|
+
</Body>
|
|
1603
|
+
</ExtensionObject>
|
|
1604
|
+
<ExtensionObject>
|
|
1605
|
+
<TypeId>
|
|
1606
|
+
<Identifier>i=7616</Identifier>
|
|
1607
|
+
</TypeId>
|
|
1608
|
+
<Body>
|
|
1609
|
+
<EnumValueType>
|
|
1610
|
+
<Value>32</Value>
|
|
1611
|
+
<DisplayName>
|
|
1612
|
+
<Locale>
|
|
1613
|
+
</Locale>
|
|
1614
|
+
<Text>Description</Text>
|
|
1615
|
+
</DisplayName>
|
|
1616
|
+
<Description>
|
|
1617
|
+
<Locale>
|
|
1618
|
+
</Locale>
|
|
1619
|
+
<Text>The description attribute is writable.</Text>
|
|
1620
|
+
</Description>
|
|
1621
|
+
</EnumValueType>
|
|
1622
|
+
</Body>
|
|
1623
|
+
</ExtensionObject>
|
|
1624
|
+
<ExtensionObject>
|
|
1625
|
+
<TypeId>
|
|
1626
|
+
<Identifier>i=7616</Identifier>
|
|
1627
|
+
</TypeId>
|
|
1628
|
+
<Body>
|
|
1629
|
+
<EnumValueType>
|
|
1630
|
+
<Value>64</Value>
|
|
1631
|
+
<DisplayName>
|
|
1632
|
+
<Locale>
|
|
1633
|
+
</Locale>
|
|
1634
|
+
<Text>DisplayName</Text>
|
|
1635
|
+
</DisplayName>
|
|
1636
|
+
<Description>
|
|
1637
|
+
<Locale>
|
|
1638
|
+
</Locale>
|
|
1639
|
+
<Text>The display name attribute is writable.</Text>
|
|
1640
|
+
</Description>
|
|
1641
|
+
</EnumValueType>
|
|
1642
|
+
</Body>
|
|
1643
|
+
</ExtensionObject>
|
|
1644
|
+
<ExtensionObject>
|
|
1645
|
+
<TypeId>
|
|
1646
|
+
<Identifier>i=7616</Identifier>
|
|
1647
|
+
</TypeId>
|
|
1648
|
+
<Body>
|
|
1649
|
+
<EnumValueType>
|
|
1650
|
+
<Value>128</Value>
|
|
1651
|
+
<DisplayName>
|
|
1652
|
+
<Locale>
|
|
1653
|
+
</Locale>
|
|
1654
|
+
<Text>EventNotifier</Text>
|
|
1655
|
+
</DisplayName>
|
|
1656
|
+
<Description>
|
|
1657
|
+
<Locale>
|
|
1658
|
+
</Locale>
|
|
1659
|
+
<Text>The event notifier attribute is writable.</Text>
|
|
1660
|
+
</Description>
|
|
1661
|
+
</EnumValueType>
|
|
1662
|
+
</Body>
|
|
1663
|
+
</ExtensionObject>
|
|
1664
|
+
<ExtensionObject>
|
|
1665
|
+
<TypeId>
|
|
1666
|
+
<Identifier>i=7616</Identifier>
|
|
1667
|
+
</TypeId>
|
|
1668
|
+
<Body>
|
|
1669
|
+
<EnumValueType>
|
|
1670
|
+
<Value>256</Value>
|
|
1671
|
+
<DisplayName>
|
|
1672
|
+
<Locale>
|
|
1673
|
+
</Locale>
|
|
1674
|
+
<Text>Executable</Text>
|
|
1675
|
+
</DisplayName>
|
|
1676
|
+
<Description>
|
|
1677
|
+
<Locale>
|
|
1678
|
+
</Locale>
|
|
1679
|
+
<Text>The executable attribute is writable.</Text>
|
|
1680
|
+
</Description>
|
|
1681
|
+
</EnumValueType>
|
|
1682
|
+
</Body>
|
|
1683
|
+
</ExtensionObject>
|
|
1684
|
+
<ExtensionObject>
|
|
1685
|
+
<TypeId>
|
|
1686
|
+
<Identifier>i=7616</Identifier>
|
|
1687
|
+
</TypeId>
|
|
1688
|
+
<Body>
|
|
1689
|
+
<EnumValueType>
|
|
1690
|
+
<Value>512</Value>
|
|
1691
|
+
<DisplayName>
|
|
1692
|
+
<Locale>
|
|
1693
|
+
</Locale>
|
|
1694
|
+
<Text>Historizing</Text>
|
|
1695
|
+
</DisplayName>
|
|
1696
|
+
<Description>
|
|
1697
|
+
<Locale>
|
|
1698
|
+
</Locale>
|
|
1699
|
+
<Text>The historizing attribute is writable.</Text>
|
|
1700
|
+
</Description>
|
|
1701
|
+
</EnumValueType>
|
|
1702
|
+
</Body>
|
|
1703
|
+
</ExtensionObject>
|
|
1704
|
+
<ExtensionObject>
|
|
1705
|
+
<TypeId>
|
|
1706
|
+
<Identifier>i=7616</Identifier>
|
|
1707
|
+
</TypeId>
|
|
1708
|
+
<Body>
|
|
1709
|
+
<EnumValueType>
|
|
1710
|
+
<Value>1024</Value>
|
|
1711
|
+
<DisplayName>
|
|
1712
|
+
<Locale>
|
|
1713
|
+
</Locale>
|
|
1714
|
+
<Text>InverseName</Text>
|
|
1715
|
+
</DisplayName>
|
|
1716
|
+
<Description>
|
|
1717
|
+
<Locale>
|
|
1718
|
+
</Locale>
|
|
1719
|
+
<Text>The inverse name attribute is writable.</Text>
|
|
1720
|
+
</Description>
|
|
1721
|
+
</EnumValueType>
|
|
1722
|
+
</Body>
|
|
1723
|
+
</ExtensionObject>
|
|
1724
|
+
<ExtensionObject>
|
|
1725
|
+
<TypeId>
|
|
1726
|
+
<Identifier>i=7616</Identifier>
|
|
1727
|
+
</TypeId>
|
|
1728
|
+
<Body>
|
|
1729
|
+
<EnumValueType>
|
|
1730
|
+
<Value>2048</Value>
|
|
1731
|
+
<DisplayName>
|
|
1732
|
+
<Locale>
|
|
1733
|
+
</Locale>
|
|
1734
|
+
<Text>IsAbstract</Text>
|
|
1735
|
+
</DisplayName>
|
|
1736
|
+
<Description>
|
|
1737
|
+
<Locale>
|
|
1738
|
+
</Locale>
|
|
1739
|
+
<Text>The is abstract attribute is writable.</Text>
|
|
1740
|
+
</Description>
|
|
1741
|
+
</EnumValueType>
|
|
1742
|
+
</Body>
|
|
1743
|
+
</ExtensionObject>
|
|
1744
|
+
<ExtensionObject>
|
|
1745
|
+
<TypeId>
|
|
1746
|
+
<Identifier>i=7616</Identifier>
|
|
1747
|
+
</TypeId>
|
|
1748
|
+
<Body>
|
|
1749
|
+
<EnumValueType>
|
|
1750
|
+
<Value>4096</Value>
|
|
1751
|
+
<DisplayName>
|
|
1752
|
+
<Locale>
|
|
1753
|
+
</Locale>
|
|
1754
|
+
<Text>MinimumSamplingInterval</Text>
|
|
1755
|
+
</DisplayName>
|
|
1756
|
+
<Description>
|
|
1757
|
+
<Locale>
|
|
1758
|
+
</Locale>
|
|
1759
|
+
<Text>The minimum sampling interval attribute is writable.</Text>
|
|
1760
|
+
</Description>
|
|
1761
|
+
</EnumValueType>
|
|
1762
|
+
</Body>
|
|
1763
|
+
</ExtensionObject>
|
|
1764
|
+
<ExtensionObject>
|
|
1765
|
+
<TypeId>
|
|
1766
|
+
<Identifier>i=7616</Identifier>
|
|
1767
|
+
</TypeId>
|
|
1768
|
+
<Body>
|
|
1769
|
+
<EnumValueType>
|
|
1770
|
+
<Value>8192</Value>
|
|
1771
|
+
<DisplayName>
|
|
1772
|
+
<Locale>
|
|
1773
|
+
</Locale>
|
|
1774
|
+
<Text>NodeClass</Text>
|
|
1775
|
+
</DisplayName>
|
|
1776
|
+
<Description>
|
|
1777
|
+
<Locale>
|
|
1778
|
+
</Locale>
|
|
1779
|
+
<Text>The node class attribute is writable.</Text>
|
|
1780
|
+
</Description>
|
|
1781
|
+
</EnumValueType>
|
|
1782
|
+
</Body>
|
|
1783
|
+
</ExtensionObject>
|
|
1784
|
+
<ExtensionObject>
|
|
1785
|
+
<TypeId>
|
|
1786
|
+
<Identifier>i=7616</Identifier>
|
|
1787
|
+
</TypeId>
|
|
1788
|
+
<Body>
|
|
1789
|
+
<EnumValueType>
|
|
1790
|
+
<Value>16384</Value>
|
|
1791
|
+
<DisplayName>
|
|
1792
|
+
<Locale>
|
|
1793
|
+
</Locale>
|
|
1794
|
+
<Text>NodeId</Text>
|
|
1795
|
+
</DisplayName>
|
|
1796
|
+
<Description>
|
|
1797
|
+
<Locale>
|
|
1798
|
+
</Locale>
|
|
1799
|
+
<Text>The node id attribute is writable.</Text>
|
|
1800
|
+
</Description>
|
|
1801
|
+
</EnumValueType>
|
|
1802
|
+
</Body>
|
|
1803
|
+
</ExtensionObject>
|
|
1804
|
+
<ExtensionObject>
|
|
1805
|
+
<TypeId>
|
|
1806
|
+
<Identifier>i=7616</Identifier>
|
|
1807
|
+
</TypeId>
|
|
1808
|
+
<Body>
|
|
1809
|
+
<EnumValueType>
|
|
1810
|
+
<Value>32768</Value>
|
|
1811
|
+
<DisplayName>
|
|
1812
|
+
<Locale>
|
|
1813
|
+
</Locale>
|
|
1814
|
+
<Text>Symmetric</Text>
|
|
1815
|
+
</DisplayName>
|
|
1816
|
+
<Description>
|
|
1817
|
+
<Locale>
|
|
1818
|
+
</Locale>
|
|
1819
|
+
<Text>The symmetric attribute is writable.</Text>
|
|
1820
|
+
</Description>
|
|
1821
|
+
</EnumValueType>
|
|
1822
|
+
</Body>
|
|
1823
|
+
</ExtensionObject>
|
|
1824
|
+
<ExtensionObject>
|
|
1825
|
+
<TypeId>
|
|
1826
|
+
<Identifier>i=7616</Identifier>
|
|
1827
|
+
</TypeId>
|
|
1828
|
+
<Body>
|
|
1829
|
+
<EnumValueType>
|
|
1830
|
+
<Value>65536</Value>
|
|
1831
|
+
<DisplayName>
|
|
1832
|
+
<Locale>
|
|
1833
|
+
</Locale>
|
|
1834
|
+
<Text>UserAccessLevel</Text>
|
|
1835
|
+
</DisplayName>
|
|
1836
|
+
<Description>
|
|
1837
|
+
<Locale>
|
|
1838
|
+
</Locale>
|
|
1839
|
+
<Text>The user access level attribute is writable.</Text>
|
|
1840
|
+
</Description>
|
|
1841
|
+
</EnumValueType>
|
|
1842
|
+
</Body>
|
|
1843
|
+
</ExtensionObject>
|
|
1844
|
+
<ExtensionObject>
|
|
1845
|
+
<TypeId>
|
|
1846
|
+
<Identifier>i=7616</Identifier>
|
|
1847
|
+
</TypeId>
|
|
1848
|
+
<Body>
|
|
1849
|
+
<EnumValueType>
|
|
1850
|
+
<Value>131072</Value>
|
|
1851
|
+
<DisplayName>
|
|
1852
|
+
<Locale>
|
|
1853
|
+
</Locale>
|
|
1854
|
+
<Text>UserExecutable</Text>
|
|
1855
|
+
</DisplayName>
|
|
1856
|
+
<Description>
|
|
1857
|
+
<Locale>
|
|
1858
|
+
</Locale>
|
|
1859
|
+
<Text>The user executable attribute is writable.</Text>
|
|
1860
|
+
</Description>
|
|
1861
|
+
</EnumValueType>
|
|
1862
|
+
</Body>
|
|
1863
|
+
</ExtensionObject>
|
|
1864
|
+
<ExtensionObject>
|
|
1865
|
+
<TypeId>
|
|
1866
|
+
<Identifier>i=7616</Identifier>
|
|
1867
|
+
</TypeId>
|
|
1868
|
+
<Body>
|
|
1869
|
+
<EnumValueType>
|
|
1870
|
+
<Value>262144</Value>
|
|
1871
|
+
<DisplayName>
|
|
1872
|
+
<Locale>
|
|
1873
|
+
</Locale>
|
|
1874
|
+
<Text>UserWriteMask</Text>
|
|
1875
|
+
</DisplayName>
|
|
1876
|
+
<Description>
|
|
1877
|
+
<Locale>
|
|
1878
|
+
</Locale>
|
|
1879
|
+
<Text>The user write mask attribute is writable.</Text>
|
|
1880
|
+
</Description>
|
|
1881
|
+
</EnumValueType>
|
|
1882
|
+
</Body>
|
|
1883
|
+
</ExtensionObject>
|
|
1884
|
+
<ExtensionObject>
|
|
1885
|
+
<TypeId>
|
|
1886
|
+
<Identifier>i=7616</Identifier>
|
|
1887
|
+
</TypeId>
|
|
1888
|
+
<Body>
|
|
1889
|
+
<EnumValueType>
|
|
1890
|
+
<Value>524288</Value>
|
|
1891
|
+
<DisplayName>
|
|
1892
|
+
<Locale>
|
|
1893
|
+
</Locale>
|
|
1894
|
+
<Text>ValueRank</Text>
|
|
1895
|
+
</DisplayName>
|
|
1896
|
+
<Description>
|
|
1897
|
+
<Locale>
|
|
1898
|
+
</Locale>
|
|
1899
|
+
<Text>The value rank attribute is writable.</Text>
|
|
1900
|
+
</Description>
|
|
1901
|
+
</EnumValueType>
|
|
1902
|
+
</Body>
|
|
1903
|
+
</ExtensionObject>
|
|
1904
|
+
<ExtensionObject>
|
|
1905
|
+
<TypeId>
|
|
1906
|
+
<Identifier>i=7616</Identifier>
|
|
1907
|
+
</TypeId>
|
|
1908
|
+
<Body>
|
|
1909
|
+
<EnumValueType>
|
|
1910
|
+
<Value>1048576</Value>
|
|
1911
|
+
<DisplayName>
|
|
1912
|
+
<Locale>
|
|
1913
|
+
</Locale>
|
|
1914
|
+
<Text>WriteMask</Text>
|
|
1915
|
+
</DisplayName>
|
|
1916
|
+
<Description>
|
|
1917
|
+
<Locale>
|
|
1918
|
+
</Locale>
|
|
1919
|
+
<Text>The write mask attribute is writable.</Text>
|
|
1920
|
+
</Description>
|
|
1921
|
+
</EnumValueType>
|
|
1922
|
+
</Body>
|
|
1923
|
+
</ExtensionObject>
|
|
1924
|
+
<ExtensionObject>
|
|
1925
|
+
<TypeId>
|
|
1926
|
+
<Identifier>i=7616</Identifier>
|
|
1927
|
+
</TypeId>
|
|
1928
|
+
<Body>
|
|
1929
|
+
<EnumValueType>
|
|
1930
|
+
<Value>2097152</Value>
|
|
1931
|
+
<DisplayName>
|
|
1932
|
+
<Locale>
|
|
1933
|
+
</Locale>
|
|
1934
|
+
<Text>ValueForVariableType</Text>
|
|
1935
|
+
</DisplayName>
|
|
1936
|
+
<Description>
|
|
1937
|
+
<Locale>
|
|
1938
|
+
</Locale>
|
|
1939
|
+
<Text>The value attribute is writable.</Text>
|
|
1940
|
+
</Description>
|
|
1941
|
+
</EnumValueType>
|
|
1942
|
+
</Body>
|
|
1943
|
+
</ExtensionObject>
|
|
1944
|
+
</ListOfExtensionObject>
|
|
1945
|
+
</Value>
|
|
1946
|
+
</UAVariable>
|
|
1947
|
+
<UADataType NodeId="i=521" BrowseName="ContinuationPoint">
|
|
1948
|
+
<DisplayName>ContinuationPoint</DisplayName>
|
|
1949
|
+
<Description>An identifier for a suspended query or browse operation.</Description>
|
|
1950
|
+
<References>
|
|
1951
|
+
<Reference ReferenceType="HasSubtype" IsForward="false">i=15</Reference>
|
|
1952
|
+
</References>
|
|
1953
|
+
</UADataType>
|
|
1954
|
+
<UADataType NodeId="i=537" BrowseName="RelativePathElement">
|
|
1955
|
+
<DisplayName>RelativePathElement</DisplayName>
|
|
1956
|
+
<Description>An element in a relative path.</Description>
|
|
1957
|
+
<References>
|
|
1958
|
+
<Reference ReferenceType="HasSubtype" IsForward="false">i=22</Reference>
|
|
1959
|
+
</References>
|
|
1960
|
+
<Definition Name="RelativePathElement">
|
|
1961
|
+
<Field Name="ReferenceTypeId" DataType="i=17">
|
|
1962
|
+
<Description>The type of reference to follow.</Description>
|
|
1963
|
+
</Field>
|
|
1964
|
+
<Field Name="IsInverse" DataType="i=1">
|
|
1965
|
+
<Description>If TRUE the reverse reference is followed.</Description>
|
|
1966
|
+
</Field>
|
|
1967
|
+
<Field Name="IncludeSubtypes" DataType="i=1">
|
|
1968
|
+
<Description>If TRUE then subtypes of the reference type are followed.</Description>
|
|
1969
|
+
</Field>
|
|
1970
|
+
<Field Name="TargetName" DataType="i=20">
|
|
1971
|
+
<Description>The browse name of the target.</Description>
|
|
1972
|
+
</Field>
|
|
1973
|
+
</Definition>
|
|
1974
|
+
</UADataType>
|
|
1975
|
+
<UADataType NodeId="i=540" BrowseName="RelativePath">
|
|
1976
|
+
<DisplayName>RelativePath</DisplayName>
|
|
1977
|
+
<Description>A relative path constructed from reference types and browse names.</Description>
|
|
1978
|
+
<References>
|
|
1979
|
+
<Reference ReferenceType="HasSubtype" IsForward="false">i=22</Reference>
|
|
1980
|
+
</References>
|
|
1981
|
+
<Definition Name="RelativePath">
|
|
1982
|
+
<Field Name="Elements" DataType="i=537" ValueRank="1">
|
|
1983
|
+
<Description>A list of elements in the path.</Description>
|
|
1984
|
+
</Field>
|
|
1985
|
+
</Definition>
|
|
1986
|
+
</UADataType>
|
|
1987
|
+
<UADataType NodeId="i=289" BrowseName="Counter">
|
|
1988
|
+
<DisplayName>Counter</DisplayName>
|
|
1989
|
+
<Description>A monotonically increasing value.</Description>
|
|
1990
|
+
<References>
|
|
1991
|
+
<Reference ReferenceType="HasSubtype" IsForward="false">i=7</Reference>
|
|
1992
|
+
</References>
|
|
1993
|
+
</UADataType>
|
|
1994
|
+
<UADataType NodeId="i=291" BrowseName="NumericRange">
|
|
1995
|
+
<DisplayName>NumericRange</DisplayName>
|
|
1996
|
+
<Description>Specifies a range of array indexes.</Description>
|
|
1997
|
+
<References>
|
|
1998
|
+
<Reference ReferenceType="HasSubtype" IsForward="false">i=12</Reference>
|
|
1999
|
+
</References>
|
|
2000
|
+
</UADataType>
|
|
2001
|
+
<UADataType NodeId="i=292" BrowseName="Time">
|
|
2002
|
+
<DisplayName>Time</DisplayName>
|
|
2003
|
+
<Description>A time value specified as HH:MM:SS.SSS.</Description>
|
|
2004
|
+
<References>
|
|
2005
|
+
<Reference ReferenceType="HasSubtype" IsForward="false">i=12</Reference>
|
|
2006
|
+
</References>
|
|
2007
|
+
</UADataType>
|
|
2008
|
+
<UADataType NodeId="i=293" BrowseName="Date">
|
|
2009
|
+
<DisplayName>Date</DisplayName>
|
|
2010
|
+
<Description>A date value.</Description>
|
|
2011
|
+
<References>
|
|
2012
|
+
<Reference ReferenceType="HasSubtype" IsForward="false">i=13</Reference>
|
|
2013
|
+
</References>
|
|
2014
|
+
</UADataType>
|
|
2015
|
+
<UADataType NodeId="i=331" BrowseName="EndpointConfiguration">
|
|
2016
|
+
<DisplayName>EndpointConfiguration</DisplayName>
|
|
2017
|
+
<References>
|
|
2018
|
+
<Reference ReferenceType="HasSubtype" IsForward="false">i=22</Reference>
|
|
2019
|
+
</References>
|
|
2020
|
+
<Definition Name="EndpointConfiguration">
|
|
2021
|
+
<Field Name="OperationTimeout" DataType="i=6" />
|
|
2022
|
+
<Field Name="UseBinaryEncoding" DataType="i=1" />
|
|
2023
|
+
<Field Name="MaxStringLength" DataType="i=6" />
|
|
2024
|
+
<Field Name="MaxByteStringLength" DataType="i=6" />
|
|
2025
|
+
<Field Name="MaxArrayLength" DataType="i=6" />
|
|
2026
|
+
<Field Name="MaxMessageSize" DataType="i=6" />
|
|
2027
|
+
<Field Name="MaxBufferSize" DataType="i=6" />
|
|
2028
|
+
<Field Name="ChannelLifetime" DataType="i=6" />
|
|
2029
|
+
<Field Name="SecurityTokenLifetime" DataType="i=6" />
|
|
2030
|
+
</Definition>
|
|
2031
|
+
</UADataType>
|
|
2032
|
+
<UADataType NodeId="i=334" BrowseName="ComplianceLevel">
|
|
2033
|
+
<DisplayName>ComplianceLevel</DisplayName>
|
|
2034
|
+
<References>
|
|
2035
|
+
<Reference ReferenceType="HasProperty">i=7599</Reference>
|
|
2036
|
+
<Reference ReferenceType="HasSubtype" IsForward="false">i=29</Reference>
|
|
2037
|
+
</References>
|
|
2038
|
+
<Definition Name="ComplianceLevel">
|
|
2039
|
+
<Field Name="Untested" Value="0" />
|
|
2040
|
+
<Field Name="Partial" Value="1" />
|
|
2041
|
+
<Field Name="SelfTested" Value="2" />
|
|
2042
|
+
<Field Name="Certified" Value="3" />
|
|
2043
|
+
</Definition>
|
|
2044
|
+
</UADataType>
|
|
2045
|
+
<UAVariable NodeId="i=7599" BrowseName="EnumStrings" ParentNodeId="i=334" DataType="LocalizedText" ValueRank="1">
|
|
2046
|
+
<DisplayName>EnumStrings</DisplayName>
|
|
2047
|
+
<References>
|
|
2048
|
+
<Reference ReferenceType="HasTypeDefinition">i=68</Reference>
|
|
2049
|
+
<Reference ReferenceType="HasModellingRule">i=78</Reference>
|
|
2050
|
+
<Reference ReferenceType="HasProperty" IsForward="false">i=334</Reference>
|
|
2051
|
+
</References>
|
|
2052
|
+
<Value>
|
|
2053
|
+
<ListOfLocalizedText xmlns="http://opcfoundation.org/UA/2008/02/Types.xsd">
|
|
2054
|
+
<LocalizedText>
|
|
2055
|
+
<Locale>
|
|
2056
|
+
</Locale>
|
|
2057
|
+
<Text>Untested</Text>
|
|
2058
|
+
</LocalizedText>
|
|
2059
|
+
<LocalizedText>
|
|
2060
|
+
<Locale>
|
|
2061
|
+
</Locale>
|
|
2062
|
+
<Text>Partial</Text>
|
|
2063
|
+
</LocalizedText>
|
|
2064
|
+
<LocalizedText>
|
|
2065
|
+
<Locale>
|
|
2066
|
+
</Locale>
|
|
2067
|
+
<Text>SelfTested</Text>
|
|
2068
|
+
</LocalizedText>
|
|
2069
|
+
<LocalizedText>
|
|
2070
|
+
<Locale>
|
|
2071
|
+
</Locale>
|
|
2072
|
+
<Text>Certified</Text>
|
|
2073
|
+
</LocalizedText>
|
|
2074
|
+
</ListOfLocalizedText>
|
|
2075
|
+
</Value>
|
|
2076
|
+
</UAVariable>
|
|
2077
|
+
<UADataType NodeId="i=335" BrowseName="SupportedProfile">
|
|
2078
|
+
<DisplayName>SupportedProfile</DisplayName>
|
|
2079
|
+
<References>
|
|
2080
|
+
<Reference ReferenceType="HasSubtype" IsForward="false">i=22</Reference>
|
|
2081
|
+
</References>
|
|
2082
|
+
<Definition Name="SupportedProfile">
|
|
2083
|
+
<Field Name="OrganizationUri" DataType="i=12" />
|
|
2084
|
+
<Field Name="ProfileId" DataType="i=12" />
|
|
2085
|
+
<Field Name="ComplianceTool" DataType="i=12" />
|
|
2086
|
+
<Field Name="ComplianceDate" DataType="i=294" />
|
|
2087
|
+
<Field Name="ComplianceLevel" DataType="i=334" />
|
|
2088
|
+
<Field Name="UnsupportedUnitIds" DataType="i=12" ValueRank="1" />
|
|
2089
|
+
</Definition>
|
|
2090
|
+
</UADataType>
|
|
2091
|
+
<UADataType NodeId="i=341" BrowseName="SoftwareCertificate">
|
|
2092
|
+
<DisplayName>SoftwareCertificate</DisplayName>
|
|
2093
|
+
<References>
|
|
2094
|
+
<Reference ReferenceType="HasSubtype" IsForward="false">i=22</Reference>
|
|
2095
|
+
</References>
|
|
2096
|
+
<Definition Name="SoftwareCertificate">
|
|
2097
|
+
<Field Name="ProductName" DataType="i=12" />
|
|
2098
|
+
<Field Name="ProductUri" DataType="i=12" />
|
|
2099
|
+
<Field Name="VendorName" DataType="i=12" />
|
|
2100
|
+
<Field Name="VendorProductCertificate" DataType="i=15" />
|
|
2101
|
+
<Field Name="SoftwareVersion" DataType="i=12" />
|
|
2102
|
+
<Field Name="BuildNumber" DataType="i=12" />
|
|
2103
|
+
<Field Name="BuildDate" DataType="i=294" />
|
|
2104
|
+
<Field Name="IssuedBy" DataType="i=12" />
|
|
2105
|
+
<Field Name="IssueDate" DataType="i=13" />
|
|
2106
|
+
<Field Name="SupportedProfiles" DataType="i=335" ValueRank="1" />
|
|
2107
|
+
</Definition>
|
|
2108
|
+
</UADataType>
|
|
2109
|
+
<UADataType NodeId="i=576" BrowseName="FilterOperator">
|
|
2110
|
+
<DisplayName>FilterOperator</DisplayName>
|
|
2111
|
+
<References>
|
|
2112
|
+
<Reference ReferenceType="HasProperty">i=7605</Reference>
|
|
2113
|
+
<Reference ReferenceType="HasSubtype" IsForward="false">i=29</Reference>
|
|
2114
|
+
</References>
|
|
2115
|
+
<Definition Name="FilterOperator">
|
|
2116
|
+
<Field Name="Equals" Value="0" />
|
|
2117
|
+
<Field Name="IsNull" Value="1" />
|
|
2118
|
+
<Field Name="GreaterThan" Value="2" />
|
|
2119
|
+
<Field Name="LessThan" Value="3" />
|
|
2120
|
+
<Field Name="GreaterThanOrEqual" Value="4" />
|
|
2121
|
+
<Field Name="LessThanOrEqual" Value="5" />
|
|
2122
|
+
<Field Name="Like" Value="6" />
|
|
2123
|
+
<Field Name="Not" Value="7" />
|
|
2124
|
+
<Field Name="Between" Value="8" />
|
|
2125
|
+
<Field Name="InList" Value="9" />
|
|
2126
|
+
<Field Name="And" Value="10" />
|
|
2127
|
+
<Field Name="Or" Value="11" />
|
|
2128
|
+
<Field Name="Cast" Value="12" />
|
|
2129
|
+
<Field Name="InView" Value="13" />
|
|
2130
|
+
<Field Name="OfType" Value="14" />
|
|
2131
|
+
<Field Name="RelatedTo" Value="15" />
|
|
2132
|
+
<Field Name="BitwiseAnd" Value="16" />
|
|
2133
|
+
<Field Name="BitwiseOr" Value="17" />
|
|
2134
|
+
</Definition>
|
|
2135
|
+
</UADataType>
|
|
2136
|
+
<UAVariable NodeId="i=7605" BrowseName="EnumStrings" ParentNodeId="i=576" DataType="LocalizedText" ValueRank="1">
|
|
2137
|
+
<DisplayName>EnumStrings</DisplayName>
|
|
2138
|
+
<References>
|
|
2139
|
+
<Reference ReferenceType="HasTypeDefinition">i=68</Reference>
|
|
2140
|
+
<Reference ReferenceType="HasModellingRule">i=78</Reference>
|
|
2141
|
+
<Reference ReferenceType="HasProperty" IsForward="false">i=576</Reference>
|
|
2142
|
+
</References>
|
|
2143
|
+
<Value>
|
|
2144
|
+
<ListOfLocalizedText xmlns="http://opcfoundation.org/UA/2008/02/Types.xsd">
|
|
2145
|
+
<LocalizedText>
|
|
2146
|
+
<Locale>
|
|
2147
|
+
</Locale>
|
|
2148
|
+
<Text>Equals</Text>
|
|
2149
|
+
</LocalizedText>
|
|
2150
|
+
<LocalizedText>
|
|
2151
|
+
<Locale>
|
|
2152
|
+
</Locale>
|
|
2153
|
+
<Text>IsNull</Text>
|
|
2154
|
+
</LocalizedText>
|
|
2155
|
+
<LocalizedText>
|
|
2156
|
+
<Locale>
|
|
2157
|
+
</Locale>
|
|
2158
|
+
<Text>GreaterThan</Text>
|
|
2159
|
+
</LocalizedText>
|
|
2160
|
+
<LocalizedText>
|
|
2161
|
+
<Locale>
|
|
2162
|
+
</Locale>
|
|
2163
|
+
<Text>LessThan</Text>
|
|
2164
|
+
</LocalizedText>
|
|
2165
|
+
<LocalizedText>
|
|
2166
|
+
<Locale>
|
|
2167
|
+
</Locale>
|
|
2168
|
+
<Text>GreaterThanOrEqual</Text>
|
|
2169
|
+
</LocalizedText>
|
|
2170
|
+
<LocalizedText>
|
|
2171
|
+
<Locale>
|
|
2172
|
+
</Locale>
|
|
2173
|
+
<Text>LessThanOrEqual</Text>
|
|
2174
|
+
</LocalizedText>
|
|
2175
|
+
<LocalizedText>
|
|
2176
|
+
<Locale>
|
|
2177
|
+
</Locale>
|
|
2178
|
+
<Text>Like</Text>
|
|
2179
|
+
</LocalizedText>
|
|
2180
|
+
<LocalizedText>
|
|
2181
|
+
<Locale>
|
|
2182
|
+
</Locale>
|
|
2183
|
+
<Text>Not</Text>
|
|
2184
|
+
</LocalizedText>
|
|
2185
|
+
<LocalizedText>
|
|
2186
|
+
<Locale>
|
|
2187
|
+
</Locale>
|
|
2188
|
+
<Text>Between</Text>
|
|
2189
|
+
</LocalizedText>
|
|
2190
|
+
<LocalizedText>
|
|
2191
|
+
<Locale>
|
|
2192
|
+
</Locale>
|
|
2193
|
+
<Text>InList</Text>
|
|
2194
|
+
</LocalizedText>
|
|
2195
|
+
<LocalizedText>
|
|
2196
|
+
<Locale>
|
|
2197
|
+
</Locale>
|
|
2198
|
+
<Text>And</Text>
|
|
2199
|
+
</LocalizedText>
|
|
2200
|
+
<LocalizedText>
|
|
2201
|
+
<Locale>
|
|
2202
|
+
</Locale>
|
|
2203
|
+
<Text>Or</Text>
|
|
2204
|
+
</LocalizedText>
|
|
2205
|
+
<LocalizedText>
|
|
2206
|
+
<Locale>
|
|
2207
|
+
</Locale>
|
|
2208
|
+
<Text>Cast</Text>
|
|
2209
|
+
</LocalizedText>
|
|
2210
|
+
<LocalizedText>
|
|
2211
|
+
<Locale>
|
|
2212
|
+
</Locale>
|
|
2213
|
+
<Text>InView</Text>
|
|
2214
|
+
</LocalizedText>
|
|
2215
|
+
<LocalizedText>
|
|
2216
|
+
<Locale>
|
|
2217
|
+
</Locale>
|
|
2218
|
+
<Text>OfType</Text>
|
|
2219
|
+
</LocalizedText>
|
|
2220
|
+
<LocalizedText>
|
|
2221
|
+
<Locale>
|
|
2222
|
+
</Locale>
|
|
2223
|
+
<Text>RelatedTo</Text>
|
|
2224
|
+
</LocalizedText>
|
|
2225
|
+
<LocalizedText>
|
|
2226
|
+
<Locale>
|
|
2227
|
+
</Locale>
|
|
2228
|
+
<Text>BitwiseAnd</Text>
|
|
2229
|
+
</LocalizedText>
|
|
2230
|
+
<LocalizedText>
|
|
2231
|
+
<Locale>
|
|
2232
|
+
</Locale>
|
|
2233
|
+
<Text>BitwiseOr</Text>
|
|
2234
|
+
</LocalizedText>
|
|
2235
|
+
</ListOfLocalizedText>
|
|
2236
|
+
</Value>
|
|
2237
|
+
</UAVariable>
|
|
2238
|
+
<UADataType NodeId="i=583" BrowseName="ContentFilterElement">
|
|
2239
|
+
<DisplayName>ContentFilterElement</DisplayName>
|
|
2240
|
+
<References>
|
|
2241
|
+
<Reference ReferenceType="HasSubtype" IsForward="false">i=22</Reference>
|
|
2242
|
+
</References>
|
|
2243
|
+
<Definition Name="ContentFilterElement">
|
|
2244
|
+
<Field Name="FilterOperator" DataType="i=576" />
|
|
2245
|
+
<Field Name="FilterOperands" DataType="i=22" ValueRank="1" />
|
|
2246
|
+
</Definition>
|
|
2247
|
+
</UADataType>
|
|
2248
|
+
<UADataType NodeId="i=586" BrowseName="ContentFilter">
|
|
2249
|
+
<DisplayName>ContentFilter</DisplayName>
|
|
2250
|
+
<References>
|
|
2251
|
+
<Reference ReferenceType="HasSubtype" IsForward="false">i=22</Reference>
|
|
2252
|
+
</References>
|
|
2253
|
+
<Definition Name="ContentFilter">
|
|
2254
|
+
<Field Name="Elements" DataType="i=583" ValueRank="1" />
|
|
2255
|
+
</Definition>
|
|
2256
|
+
</UADataType>
|
|
2257
|
+
<UADataType NodeId="i=589" BrowseName="FilterOperand">
|
|
2258
|
+
<DisplayName>FilterOperand</DisplayName>
|
|
2259
|
+
<References>
|
|
2260
|
+
<Reference ReferenceType="HasSubtype" IsForward="false">i=22</Reference>
|
|
2261
|
+
</References>
|
|
2262
|
+
</UADataType>
|
|
2263
|
+
<UADataType NodeId="i=592" BrowseName="ElementOperand">
|
|
2264
|
+
<DisplayName>ElementOperand</DisplayName>
|
|
2265
|
+
<References>
|
|
2266
|
+
<Reference ReferenceType="HasSubtype" IsForward="false">i=589</Reference>
|
|
2267
|
+
</References>
|
|
2268
|
+
<Definition Name="ElementOperand" BaseType="ElementOperand">
|
|
2269
|
+
<Field Name="Index" DataType="i=7" />
|
|
2270
|
+
</Definition>
|
|
2271
|
+
</UADataType>
|
|
2272
|
+
<UADataType NodeId="i=595" BrowseName="LiteralOperand">
|
|
2273
|
+
<DisplayName>LiteralOperand</DisplayName>
|
|
2274
|
+
<References>
|
|
2275
|
+
<Reference ReferenceType="HasSubtype" IsForward="false">i=589</Reference>
|
|
2276
|
+
</References>
|
|
2277
|
+
<Definition Name="LiteralOperand" BaseType="LiteralOperand">
|
|
2278
|
+
<Field Name="Value" />
|
|
2279
|
+
</Definition>
|
|
2280
|
+
</UADataType>
|
|
2281
|
+
<UADataType NodeId="i=598" BrowseName="AttributeOperand">
|
|
2282
|
+
<DisplayName>AttributeOperand</DisplayName>
|
|
2283
|
+
<References>
|
|
2284
|
+
<Reference ReferenceType="HasSubtype" IsForward="false">i=589</Reference>
|
|
2285
|
+
</References>
|
|
2286
|
+
<Definition Name="AttributeOperand" BaseType="AttributeOperand">
|
|
2287
|
+
<Field Name="NodeId" DataType="i=17" />
|
|
2288
|
+
<Field Name="Alias" DataType="i=12" />
|
|
2289
|
+
<Field Name="BrowsePath" DataType="i=540" />
|
|
2290
|
+
<Field Name="AttributeId" DataType="i=288" />
|
|
2291
|
+
<Field Name="IndexRange" DataType="i=291" />
|
|
2292
|
+
</Definition>
|
|
2293
|
+
</UADataType>
|
|
2294
|
+
<UADataType NodeId="i=601" BrowseName="SimpleAttributeOperand">
|
|
2295
|
+
<DisplayName>SimpleAttributeOperand</DisplayName>
|
|
2296
|
+
<References>
|
|
2297
|
+
<Reference ReferenceType="HasSubtype" IsForward="false">i=589</Reference>
|
|
2298
|
+
</References>
|
|
2299
|
+
<Definition Name="SimpleAttributeOperand" BaseType="SimpleAttributeOperand">
|
|
2300
|
+
<Field Name="TypeDefinitionId" DataType="i=17" />
|
|
2301
|
+
<Field Name="BrowsePath" DataType="i=20" ValueRank="1" />
|
|
2302
|
+
<Field Name="AttributeId" DataType="i=288" />
|
|
2303
|
+
<Field Name="IndexRange" DataType="i=291" />
|
|
2304
|
+
</Definition>
|
|
2305
|
+
</UADataType>
|
|
2306
|
+
<UADataType NodeId="i=659" BrowseName="HistoryEvent">
|
|
2307
|
+
<DisplayName>HistoryEvent</DisplayName>
|
|
2308
|
+
<References>
|
|
2309
|
+
<Reference ReferenceType="HasSubtype" IsForward="false">i=22</Reference>
|
|
2310
|
+
</References>
|
|
2311
|
+
<Definition Name="HistoryEvent">
|
|
2312
|
+
<Field Name="Events" DataType="i=920" ValueRank="1" />
|
|
2313
|
+
</Definition>
|
|
2314
|
+
</UADataType>
|
|
2315
|
+
<UADataType NodeId="i=11234" BrowseName="HistoryUpdateType">
|
|
2316
|
+
<DisplayName>HistoryUpdateType</DisplayName>
|
|
2317
|
+
<References>
|
|
2318
|
+
<Reference ReferenceType="HasProperty">i=11884</Reference>
|
|
2319
|
+
<Reference ReferenceType="HasSubtype" IsForward="false">i=29</Reference>
|
|
2320
|
+
</References>
|
|
2321
|
+
<Definition Name="HistoryUpdateType">
|
|
2322
|
+
<Field Name="Insert" Value="1" />
|
|
2323
|
+
<Field Name="Replace" Value="2" />
|
|
2324
|
+
<Field Name="Update" Value="3" />
|
|
2325
|
+
<Field Name="Delete" Value="4" />
|
|
2326
|
+
</Definition>
|
|
2327
|
+
</UADataType>
|
|
2328
|
+
<UAVariable NodeId="i=11884" BrowseName="EnumValues" ParentNodeId="i=11234" DataType="i=7594" ValueRank="1">
|
|
2329
|
+
<DisplayName>EnumValues</DisplayName>
|
|
2330
|
+
<References>
|
|
2331
|
+
<Reference ReferenceType="HasTypeDefinition">i=68</Reference>
|
|
2332
|
+
<Reference ReferenceType="HasModellingRule">i=78</Reference>
|
|
2333
|
+
<Reference ReferenceType="HasProperty" IsForward="false">i=11234</Reference>
|
|
2334
|
+
</References>
|
|
2335
|
+
<Value>
|
|
2336
|
+
<ListOfExtensionObject xmlns="http://opcfoundation.org/UA/2008/02/Types.xsd">
|
|
2337
|
+
<ExtensionObject>
|
|
2338
|
+
<TypeId>
|
|
2339
|
+
<Identifier>i=7616</Identifier>
|
|
2340
|
+
</TypeId>
|
|
2341
|
+
<Body>
|
|
2342
|
+
<EnumValueType>
|
|
2343
|
+
<Value>1</Value>
|
|
2344
|
+
<DisplayName>
|
|
2345
|
+
<Locale>
|
|
2346
|
+
</Locale>
|
|
2347
|
+
<Text>Insert</Text>
|
|
2348
|
+
</DisplayName>
|
|
2349
|
+
<Description p5:nil="true" xmlns:p5="http://www.w3.org/2001/XMLSchema-instance" />
|
|
2350
|
+
</EnumValueType>
|
|
2351
|
+
</Body>
|
|
2352
|
+
</ExtensionObject>
|
|
2353
|
+
<ExtensionObject>
|
|
2354
|
+
<TypeId>
|
|
2355
|
+
<Identifier>i=7616</Identifier>
|
|
2356
|
+
</TypeId>
|
|
2357
|
+
<Body>
|
|
2358
|
+
<EnumValueType>
|
|
2359
|
+
<Value>2</Value>
|
|
2360
|
+
<DisplayName>
|
|
2361
|
+
<Locale>
|
|
2362
|
+
</Locale>
|
|
2363
|
+
<Text>Replace</Text>
|
|
2364
|
+
</DisplayName>
|
|
2365
|
+
<Description p5:nil="true" xmlns:p5="http://www.w3.org/2001/XMLSchema-instance" />
|
|
2366
|
+
</EnumValueType>
|
|
2367
|
+
</Body>
|
|
2368
|
+
</ExtensionObject>
|
|
2369
|
+
<ExtensionObject>
|
|
2370
|
+
<TypeId>
|
|
2371
|
+
<Identifier>i=7616</Identifier>
|
|
2372
|
+
</TypeId>
|
|
2373
|
+
<Body>
|
|
2374
|
+
<EnumValueType>
|
|
2375
|
+
<Value>3</Value>
|
|
2376
|
+
<DisplayName>
|
|
2377
|
+
<Locale>
|
|
2378
|
+
</Locale>
|
|
2379
|
+
<Text>Update</Text>
|
|
2380
|
+
</DisplayName>
|
|
2381
|
+
<Description p5:nil="true" xmlns:p5="http://www.w3.org/2001/XMLSchema-instance" />
|
|
2382
|
+
</EnumValueType>
|
|
2383
|
+
</Body>
|
|
2384
|
+
</ExtensionObject>
|
|
2385
|
+
<ExtensionObject>
|
|
2386
|
+
<TypeId>
|
|
2387
|
+
<Identifier>i=7616</Identifier>
|
|
2388
|
+
</TypeId>
|
|
2389
|
+
<Body>
|
|
2390
|
+
<EnumValueType>
|
|
2391
|
+
<Value>4</Value>
|
|
2392
|
+
<DisplayName>
|
|
2393
|
+
<Locale>
|
|
2394
|
+
</Locale>
|
|
2395
|
+
<Text>Delete</Text>
|
|
2396
|
+
</DisplayName>
|
|
2397
|
+
<Description p5:nil="true" xmlns:p5="http://www.w3.org/2001/XMLSchema-instance" />
|
|
2398
|
+
</EnumValueType>
|
|
2399
|
+
</Body>
|
|
2400
|
+
</ExtensionObject>
|
|
2401
|
+
</ListOfExtensionObject>
|
|
2402
|
+
</Value>
|
|
2403
|
+
</UAVariable>
|
|
2404
|
+
<UADataType NodeId="i=11293" BrowseName="PerformUpdateType">
|
|
2405
|
+
<DisplayName>PerformUpdateType</DisplayName>
|
|
2406
|
+
<References>
|
|
2407
|
+
<Reference ReferenceType="HasProperty">i=11885</Reference>
|
|
2408
|
+
<Reference ReferenceType="HasSubtype" IsForward="false">i=29</Reference>
|
|
2409
|
+
</References>
|
|
2410
|
+
<Definition Name="PerformUpdateType">
|
|
2411
|
+
<Field Name="Insert" Value="1" />
|
|
2412
|
+
<Field Name="Replace" Value="2" />
|
|
2413
|
+
<Field Name="Update" Value="3" />
|
|
2414
|
+
<Field Name="Remove" Value="4" />
|
|
2415
|
+
</Definition>
|
|
2416
|
+
</UADataType>
|
|
2417
|
+
<UAVariable NodeId="i=11885" BrowseName="EnumValues" ParentNodeId="i=11293" DataType="i=7594" ValueRank="1">
|
|
2418
|
+
<DisplayName>EnumValues</DisplayName>
|
|
2419
|
+
<References>
|
|
2420
|
+
<Reference ReferenceType="HasTypeDefinition">i=68</Reference>
|
|
2421
|
+
<Reference ReferenceType="HasModellingRule">i=78</Reference>
|
|
2422
|
+
<Reference ReferenceType="HasProperty" IsForward="false">i=11293</Reference>
|
|
2423
|
+
</References>
|
|
2424
|
+
<Value>
|
|
2425
|
+
<ListOfExtensionObject xmlns="http://opcfoundation.org/UA/2008/02/Types.xsd">
|
|
2426
|
+
<ExtensionObject>
|
|
2427
|
+
<TypeId>
|
|
2428
|
+
<Identifier>i=7616</Identifier>
|
|
2429
|
+
</TypeId>
|
|
2430
|
+
<Body>
|
|
2431
|
+
<EnumValueType>
|
|
2432
|
+
<Value>1</Value>
|
|
2433
|
+
<DisplayName>
|
|
2434
|
+
<Locale>
|
|
2435
|
+
</Locale>
|
|
2436
|
+
<Text>Insert</Text>
|
|
2437
|
+
</DisplayName>
|
|
2438
|
+
<Description p5:nil="true" xmlns:p5="http://www.w3.org/2001/XMLSchema-instance" />
|
|
2439
|
+
</EnumValueType>
|
|
2440
|
+
</Body>
|
|
2441
|
+
</ExtensionObject>
|
|
2442
|
+
<ExtensionObject>
|
|
2443
|
+
<TypeId>
|
|
2444
|
+
<Identifier>i=7616</Identifier>
|
|
2445
|
+
</TypeId>
|
|
2446
|
+
<Body>
|
|
2447
|
+
<EnumValueType>
|
|
2448
|
+
<Value>2</Value>
|
|
2449
|
+
<DisplayName>
|
|
2450
|
+
<Locale>
|
|
2451
|
+
</Locale>
|
|
2452
|
+
<Text>Replace</Text>
|
|
2453
|
+
</DisplayName>
|
|
2454
|
+
<Description p5:nil="true" xmlns:p5="http://www.w3.org/2001/XMLSchema-instance" />
|
|
2455
|
+
</EnumValueType>
|
|
2456
|
+
</Body>
|
|
2457
|
+
</ExtensionObject>
|
|
2458
|
+
<ExtensionObject>
|
|
2459
|
+
<TypeId>
|
|
2460
|
+
<Identifier>i=7616</Identifier>
|
|
2461
|
+
</TypeId>
|
|
2462
|
+
<Body>
|
|
2463
|
+
<EnumValueType>
|
|
2464
|
+
<Value>3</Value>
|
|
2465
|
+
<DisplayName>
|
|
2466
|
+
<Locale>
|
|
2467
|
+
</Locale>
|
|
2468
|
+
<Text>Update</Text>
|
|
2469
|
+
</DisplayName>
|
|
2470
|
+
<Description p5:nil="true" xmlns:p5="http://www.w3.org/2001/XMLSchema-instance" />
|
|
2471
|
+
</EnumValueType>
|
|
2472
|
+
</Body>
|
|
2473
|
+
</ExtensionObject>
|
|
2474
|
+
<ExtensionObject>
|
|
2475
|
+
<TypeId>
|
|
2476
|
+
<Identifier>i=7616</Identifier>
|
|
2477
|
+
</TypeId>
|
|
2478
|
+
<Body>
|
|
2479
|
+
<EnumValueType>
|
|
2480
|
+
<Value>4</Value>
|
|
2481
|
+
<DisplayName>
|
|
2482
|
+
<Locale>
|
|
2483
|
+
</Locale>
|
|
2484
|
+
<Text>Remove</Text>
|
|
2485
|
+
</DisplayName>
|
|
2486
|
+
<Description p5:nil="true" xmlns:p5="http://www.w3.org/2001/XMLSchema-instance" />
|
|
2487
|
+
</EnumValueType>
|
|
2488
|
+
</Body>
|
|
2489
|
+
</ExtensionObject>
|
|
2490
|
+
</ListOfExtensionObject>
|
|
2491
|
+
</Value>
|
|
2492
|
+
</UAVariable>
|
|
2493
|
+
<UADataType NodeId="i=719" BrowseName="MonitoringFilter">
|
|
2494
|
+
<DisplayName>MonitoringFilter</DisplayName>
|
|
2495
|
+
<References>
|
|
2496
|
+
<Reference ReferenceType="HasSubtype" IsForward="false">i=22</Reference>
|
|
2497
|
+
</References>
|
|
2498
|
+
</UADataType>
|
|
2499
|
+
<UADataType NodeId="i=725" BrowseName="EventFilter">
|
|
2500
|
+
<DisplayName>EventFilter</DisplayName>
|
|
2501
|
+
<References>
|
|
2502
|
+
<Reference ReferenceType="HasSubtype" IsForward="false">i=719</Reference>
|
|
2503
|
+
</References>
|
|
2504
|
+
<Definition Name="EventFilter" BaseType="EventFilter">
|
|
2505
|
+
<Field Name="SelectClauses" DataType="i=601" ValueRank="1" />
|
|
2506
|
+
<Field Name="WhereClause" DataType="i=586" />
|
|
2507
|
+
</Definition>
|
|
2508
|
+
</UADataType>
|
|
2509
|
+
<UADataType NodeId="i=948" BrowseName="AggregateConfiguration">
|
|
2510
|
+
<DisplayName>AggregateConfiguration</DisplayName>
|
|
2511
|
+
<References>
|
|
2512
|
+
<Reference ReferenceType="HasSubtype" IsForward="false">i=22</Reference>
|
|
2513
|
+
</References>
|
|
2514
|
+
<Definition Name="AggregateConfiguration">
|
|
2515
|
+
<Field Name="UseServerCapabilitiesDefaults" DataType="i=1" />
|
|
2516
|
+
<Field Name="TreatUncertainAsBad" DataType="i=1" />
|
|
2517
|
+
<Field Name="PercentDataBad" DataType="i=3" />
|
|
2518
|
+
<Field Name="PercentDataGood" DataType="i=3" />
|
|
2519
|
+
<Field Name="UseSlopedExtrapolation" DataType="i=1" />
|
|
2520
|
+
</Definition>
|
|
2521
|
+
</UADataType>
|
|
2522
|
+
<UADataType NodeId="i=920" BrowseName="HistoryEventFieldList">
|
|
2523
|
+
<DisplayName>HistoryEventFieldList</DisplayName>
|
|
2524
|
+
<References>
|
|
2525
|
+
<Reference ReferenceType="HasSubtype" IsForward="false">i=22</Reference>
|
|
2526
|
+
</References>
|
|
2527
|
+
<Definition Name="HistoryEventFieldList">
|
|
2528
|
+
<Field Name="EventFields" ValueRank="1" />
|
|
2529
|
+
</Definition>
|
|
2530
|
+
</UADataType>
|
|
2531
|
+
<UAObject NodeId="i=309" BrowseName="Default XML" SymbolicName="DefaultXml">
|
|
2532
|
+
<DisplayName>Default XML</DisplayName>
|
|
2533
|
+
<References>
|
|
2534
|
+
<Reference ReferenceType="HasEncoding" IsForward="false">i=308</Reference>
|
|
2535
|
+
<Reference ReferenceType="HasDescription">i=8300</Reference>
|
|
2536
|
+
<Reference ReferenceType="HasTypeDefinition">i=76</Reference>
|
|
2537
|
+
</References>
|
|
2538
|
+
</UAObject>
|
|
2539
|
+
<UAObject NodeId="i=12195" BrowseName="Default XML" SymbolicName="DefaultXml">
|
|
2540
|
+
<DisplayName>Default XML</DisplayName>
|
|
2541
|
+
<References>
|
|
2542
|
+
<Reference ReferenceType="HasEncoding" IsForward="false">i=12189</Reference>
|
|
2543
|
+
<Reference ReferenceType="HasDescription">i=12201</Reference>
|
|
2544
|
+
<Reference ReferenceType="HasTypeDefinition">i=76</Reference>
|
|
2545
|
+
</References>
|
|
2546
|
+
</UAObject>
|
|
2547
|
+
<UAObject NodeId="i=305" BrowseName="Default XML" SymbolicName="DefaultXml">
|
|
2548
|
+
<DisplayName>Default XML</DisplayName>
|
|
2549
|
+
<References>
|
|
2550
|
+
<Reference ReferenceType="HasEncoding" IsForward="false">i=304</Reference>
|
|
2551
|
+
<Reference ReferenceType="HasDescription">i=8297</Reference>
|
|
2552
|
+
<Reference ReferenceType="HasTypeDefinition">i=76</Reference>
|
|
2553
|
+
</References>
|
|
2554
|
+
</UAObject>
|
|
2555
|
+
<UAObject NodeId="i=313" BrowseName="Default XML" SymbolicName="DefaultXml">
|
|
2556
|
+
<DisplayName>Default XML</DisplayName>
|
|
2557
|
+
<References>
|
|
2558
|
+
<Reference ReferenceType="HasEncoding" IsForward="false">i=312</Reference>
|
|
2559
|
+
<Reference ReferenceType="HasDescription">i=8303</Reference>
|
|
2560
|
+
<Reference ReferenceType="HasTypeDefinition">i=76</Reference>
|
|
2561
|
+
</References>
|
|
2562
|
+
</UAObject>
|
|
2563
|
+
<UAObject NodeId="i=433" BrowseName="Default XML" SymbolicName="DefaultXml">
|
|
2564
|
+
<DisplayName>Default XML</DisplayName>
|
|
2565
|
+
<References>
|
|
2566
|
+
<Reference ReferenceType="HasEncoding" IsForward="false">i=432</Reference>
|
|
2567
|
+
<Reference ReferenceType="HasDescription">i=8417</Reference>
|
|
2568
|
+
<Reference ReferenceType="HasTypeDefinition">i=76</Reference>
|
|
2569
|
+
</References>
|
|
2570
|
+
</UAObject>
|
|
2571
|
+
<UAObject NodeId="i=12892" BrowseName="Default XML" SymbolicName="DefaultXml">
|
|
2572
|
+
<DisplayName>Default XML</DisplayName>
|
|
2573
|
+
<References>
|
|
2574
|
+
<Reference ReferenceType="HasEncoding" IsForward="false">i=12890</Reference>
|
|
2575
|
+
<Reference ReferenceType="HasDescription">i=12894</Reference>
|
|
2576
|
+
<Reference ReferenceType="HasTypeDefinition">i=76</Reference>
|
|
2577
|
+
</References>
|
|
2578
|
+
</UAObject>
|
|
2579
|
+
<UAObject NodeId="i=12893" BrowseName="Default XML" SymbolicName="DefaultXml">
|
|
2580
|
+
<DisplayName>Default XML</DisplayName>
|
|
2581
|
+
<References>
|
|
2582
|
+
<Reference ReferenceType="HasEncoding" IsForward="false">i=12891</Reference>
|
|
2583
|
+
<Reference ReferenceType="HasDescription">i=12897</Reference>
|
|
2584
|
+
<Reference ReferenceType="HasTypeDefinition">i=76</Reference>
|
|
2585
|
+
</References>
|
|
2586
|
+
</UAObject>
|
|
2587
|
+
<UAObject NodeId="i=345" BrowseName="Default XML" SymbolicName="DefaultXml">
|
|
2588
|
+
<DisplayName>Default XML</DisplayName>
|
|
2589
|
+
<References>
|
|
2590
|
+
<Reference ReferenceType="HasEncoding" IsForward="false">i=344</Reference>
|
|
2591
|
+
<Reference ReferenceType="HasDescription">i=8333</Reference>
|
|
2592
|
+
<Reference ReferenceType="HasTypeDefinition">i=76</Reference>
|
|
2593
|
+
</References>
|
|
2594
|
+
</UAObject>
|
|
2595
|
+
<UAObject NodeId="i=317" BrowseName="Default XML" SymbolicName="DefaultXml">
|
|
2596
|
+
<DisplayName>Default XML</DisplayName>
|
|
2597
|
+
<References>
|
|
2598
|
+
<Reference ReferenceType="HasEncoding" IsForward="false">i=316</Reference>
|
|
2599
|
+
<Reference ReferenceType="HasDescription">i=8306</Reference>
|
|
2600
|
+
<Reference ReferenceType="HasTypeDefinition">i=76</Reference>
|
|
2601
|
+
</References>
|
|
2602
|
+
</UAObject>
|
|
2603
|
+
<UAObject NodeId="i=320" BrowseName="Default XML" SymbolicName="DefaultXml">
|
|
2604
|
+
<DisplayName>Default XML</DisplayName>
|
|
2605
|
+
<References>
|
|
2606
|
+
<Reference ReferenceType="HasEncoding" IsForward="false">i=319</Reference>
|
|
2607
|
+
<Reference ReferenceType="HasDescription">i=8309</Reference>
|
|
2608
|
+
<Reference ReferenceType="HasTypeDefinition">i=76</Reference>
|
|
2609
|
+
</References>
|
|
2610
|
+
</UAObject>
|
|
2611
|
+
<UAObject NodeId="i=323" BrowseName="Default XML" SymbolicName="DefaultXml">
|
|
2612
|
+
<DisplayName>Default XML</DisplayName>
|
|
2613
|
+
<References>
|
|
2614
|
+
<Reference ReferenceType="HasEncoding" IsForward="false">i=322</Reference>
|
|
2615
|
+
<Reference ReferenceType="HasDescription">i=8312</Reference>
|
|
2616
|
+
<Reference ReferenceType="HasTypeDefinition">i=76</Reference>
|
|
2617
|
+
</References>
|
|
2618
|
+
</UAObject>
|
|
2619
|
+
<UAObject NodeId="i=326" BrowseName="Default XML" SymbolicName="DefaultXml">
|
|
2620
|
+
<DisplayName>Default XML</DisplayName>
|
|
2621
|
+
<References>
|
|
2622
|
+
<Reference ReferenceType="HasEncoding" IsForward="false">i=325</Reference>
|
|
2623
|
+
<Reference ReferenceType="HasDescription">i=8315</Reference>
|
|
2624
|
+
<Reference ReferenceType="HasTypeDefinition">i=76</Reference>
|
|
2625
|
+
</References>
|
|
2626
|
+
</UAObject>
|
|
2627
|
+
<UAObject NodeId="i=12505" BrowseName="Default XML" SymbolicName="DefaultXml">
|
|
2628
|
+
<DisplayName>Default XML</DisplayName>
|
|
2629
|
+
<References>
|
|
2630
|
+
<Reference ReferenceType="HasEncoding" IsForward="false">i=12504</Reference>
|
|
2631
|
+
<Reference ReferenceType="HasDescription">i=12506</Reference>
|
|
2632
|
+
<Reference ReferenceType="HasTypeDefinition">i=76</Reference>
|
|
2633
|
+
</References>
|
|
2634
|
+
</UAObject>
|
|
2635
|
+
<UAObject NodeId="i=939" BrowseName="Default XML" SymbolicName="DefaultXml">
|
|
2636
|
+
<DisplayName>Default XML</DisplayName>
|
|
2637
|
+
<References>
|
|
2638
|
+
<Reference ReferenceType="HasEncoding" IsForward="false">i=938</Reference>
|
|
2639
|
+
<Reference ReferenceType="HasDescription">i=8318</Reference>
|
|
2640
|
+
<Reference ReferenceType="HasTypeDefinition">i=76</Reference>
|
|
2641
|
+
</References>
|
|
2642
|
+
</UAObject>
|
|
2643
|
+
<UAObject NodeId="i=377" BrowseName="Default XML" SymbolicName="DefaultXml">
|
|
2644
|
+
<DisplayName>Default XML</DisplayName>
|
|
2645
|
+
<References>
|
|
2646
|
+
<Reference ReferenceType="HasEncoding" IsForward="false">i=376</Reference>
|
|
2647
|
+
<Reference ReferenceType="HasDescription">i=8363</Reference>
|
|
2648
|
+
<Reference ReferenceType="HasTypeDefinition">i=76</Reference>
|
|
2649
|
+
</References>
|
|
2650
|
+
</UAObject>
|
|
2651
|
+
<UAObject NodeId="i=380" BrowseName="Default XML" SymbolicName="DefaultXml">
|
|
2652
|
+
<DisplayName>Default XML</DisplayName>
|
|
2653
|
+
<References>
|
|
2654
|
+
<Reference ReferenceType="HasEncoding" IsForward="false">i=379</Reference>
|
|
2655
|
+
<Reference ReferenceType="HasDescription">i=8366</Reference>
|
|
2656
|
+
<Reference ReferenceType="HasTypeDefinition">i=76</Reference>
|
|
2657
|
+
</References>
|
|
2658
|
+
</UAObject>
|
|
2659
|
+
<UAObject NodeId="i=383" BrowseName="Default XML" SymbolicName="DefaultXml">
|
|
2660
|
+
<DisplayName>Default XML</DisplayName>
|
|
2661
|
+
<References>
|
|
2662
|
+
<Reference ReferenceType="HasEncoding" IsForward="false">i=382</Reference>
|
|
2663
|
+
<Reference ReferenceType="HasDescription">i=8369</Reference>
|
|
2664
|
+
<Reference ReferenceType="HasTypeDefinition">i=76</Reference>
|
|
2665
|
+
</References>
|
|
2666
|
+
</UAObject>
|
|
2667
|
+
<UAObject NodeId="i=386" BrowseName="Default XML" SymbolicName="DefaultXml">
|
|
2668
|
+
<DisplayName>Default XML</DisplayName>
|
|
2669
|
+
<References>
|
|
2670
|
+
<Reference ReferenceType="HasEncoding" IsForward="false">i=385</Reference>
|
|
2671
|
+
<Reference ReferenceType="HasDescription">i=8372</Reference>
|
|
2672
|
+
<Reference ReferenceType="HasTypeDefinition">i=76</Reference>
|
|
2673
|
+
</References>
|
|
2674
|
+
</UAObject>
|
|
2675
|
+
<UAObject NodeId="i=538" BrowseName="Default XML" SymbolicName="DefaultXml">
|
|
2676
|
+
<DisplayName>Default XML</DisplayName>
|
|
2677
|
+
<References>
|
|
2678
|
+
<Reference ReferenceType="HasEncoding" IsForward="false">i=537</Reference>
|
|
2679
|
+
<Reference ReferenceType="HasDescription">i=12712</Reference>
|
|
2680
|
+
<Reference ReferenceType="HasTypeDefinition">i=76</Reference>
|
|
2681
|
+
</References>
|
|
2682
|
+
</UAObject>
|
|
2683
|
+
<UAObject NodeId="i=541" BrowseName="Default XML" SymbolicName="DefaultXml">
|
|
2684
|
+
<DisplayName>Default XML</DisplayName>
|
|
2685
|
+
<References>
|
|
2686
|
+
<Reference ReferenceType="HasEncoding" IsForward="false">i=540</Reference>
|
|
2687
|
+
<Reference ReferenceType="HasDescription">i=12715</Reference>
|
|
2688
|
+
<Reference ReferenceType="HasTypeDefinition">i=76</Reference>
|
|
2689
|
+
</References>
|
|
2690
|
+
</UAObject>
|
|
2691
|
+
<UAObject NodeId="i=332" BrowseName="Default XML" SymbolicName="DefaultXml">
|
|
2692
|
+
<DisplayName>Default XML</DisplayName>
|
|
2693
|
+
<References>
|
|
2694
|
+
<Reference ReferenceType="HasEncoding" IsForward="false">i=331</Reference>
|
|
2695
|
+
<Reference ReferenceType="HasDescription">i=8321</Reference>
|
|
2696
|
+
<Reference ReferenceType="HasTypeDefinition">i=76</Reference>
|
|
2697
|
+
</References>
|
|
2698
|
+
</UAObject>
|
|
2699
|
+
<UAObject NodeId="i=336" BrowseName="Default XML" SymbolicName="DefaultXml">
|
|
2700
|
+
<DisplayName>Default XML</DisplayName>
|
|
2701
|
+
<References>
|
|
2702
|
+
<Reference ReferenceType="HasEncoding" IsForward="false">i=335</Reference>
|
|
2703
|
+
<Reference ReferenceType="HasDescription">i=8324</Reference>
|
|
2704
|
+
<Reference ReferenceType="HasTypeDefinition">i=76</Reference>
|
|
2705
|
+
</References>
|
|
2706
|
+
</UAObject>
|
|
2707
|
+
<UAObject NodeId="i=342" BrowseName="Default XML" SymbolicName="DefaultXml">
|
|
2708
|
+
<DisplayName>Default XML</DisplayName>
|
|
2709
|
+
<References>
|
|
2710
|
+
<Reference ReferenceType="HasEncoding" IsForward="false">i=341</Reference>
|
|
2711
|
+
<Reference ReferenceType="HasDescription">i=8330</Reference>
|
|
2712
|
+
<Reference ReferenceType="HasTypeDefinition">i=76</Reference>
|
|
2713
|
+
</References>
|
|
2714
|
+
</UAObject>
|
|
2715
|
+
<UAObject NodeId="i=584" BrowseName="Default XML" SymbolicName="DefaultXml">
|
|
2716
|
+
<DisplayName>Default XML</DisplayName>
|
|
2717
|
+
<References>
|
|
2718
|
+
<Reference ReferenceType="HasEncoding" IsForward="false">i=583</Reference>
|
|
2719
|
+
<Reference ReferenceType="HasDescription">i=8564</Reference>
|
|
2720
|
+
<Reference ReferenceType="HasTypeDefinition">i=76</Reference>
|
|
2721
|
+
</References>
|
|
2722
|
+
</UAObject>
|
|
2723
|
+
<UAObject NodeId="i=587" BrowseName="Default XML" SymbolicName="DefaultXml">
|
|
2724
|
+
<DisplayName>Default XML</DisplayName>
|
|
2725
|
+
<References>
|
|
2726
|
+
<Reference ReferenceType="HasEncoding" IsForward="false">i=586</Reference>
|
|
2727
|
+
<Reference ReferenceType="HasDescription">i=8567</Reference>
|
|
2728
|
+
<Reference ReferenceType="HasTypeDefinition">i=76</Reference>
|
|
2729
|
+
</References>
|
|
2730
|
+
</UAObject>
|
|
2731
|
+
<UAObject NodeId="i=590" BrowseName="Default XML" SymbolicName="DefaultXml">
|
|
2732
|
+
<DisplayName>Default XML</DisplayName>
|
|
2733
|
+
<References>
|
|
2734
|
+
<Reference ReferenceType="HasEncoding" IsForward="false">i=589</Reference>
|
|
2735
|
+
<Reference ReferenceType="HasDescription">i=8570</Reference>
|
|
2736
|
+
<Reference ReferenceType="HasTypeDefinition">i=76</Reference>
|
|
2737
|
+
</References>
|
|
2738
|
+
</UAObject>
|
|
2739
|
+
<UAObject NodeId="i=593" BrowseName="Default XML" SymbolicName="DefaultXml">
|
|
2740
|
+
<DisplayName>Default XML</DisplayName>
|
|
2741
|
+
<References>
|
|
2742
|
+
<Reference ReferenceType="HasEncoding" IsForward="false">i=592</Reference>
|
|
2743
|
+
<Reference ReferenceType="HasDescription">i=8573</Reference>
|
|
2744
|
+
<Reference ReferenceType="HasTypeDefinition">i=76</Reference>
|
|
2745
|
+
</References>
|
|
2746
|
+
</UAObject>
|
|
2747
|
+
<UAObject NodeId="i=596" BrowseName="Default XML" SymbolicName="DefaultXml">
|
|
2748
|
+
<DisplayName>Default XML</DisplayName>
|
|
2749
|
+
<References>
|
|
2750
|
+
<Reference ReferenceType="HasEncoding" IsForward="false">i=595</Reference>
|
|
2751
|
+
<Reference ReferenceType="HasDescription">i=8576</Reference>
|
|
2752
|
+
<Reference ReferenceType="HasTypeDefinition">i=76</Reference>
|
|
2753
|
+
</References>
|
|
2754
|
+
</UAObject>
|
|
2755
|
+
<UAObject NodeId="i=599" BrowseName="Default XML" SymbolicName="DefaultXml">
|
|
2756
|
+
<DisplayName>Default XML</DisplayName>
|
|
2757
|
+
<References>
|
|
2758
|
+
<Reference ReferenceType="HasEncoding" IsForward="false">i=598</Reference>
|
|
2759
|
+
<Reference ReferenceType="HasDescription">i=8579</Reference>
|
|
2760
|
+
<Reference ReferenceType="HasTypeDefinition">i=76</Reference>
|
|
2761
|
+
</References>
|
|
2762
|
+
</UAObject>
|
|
2763
|
+
<UAObject NodeId="i=602" BrowseName="Default XML" SymbolicName="DefaultXml">
|
|
2764
|
+
<DisplayName>Default XML</DisplayName>
|
|
2765
|
+
<References>
|
|
2766
|
+
<Reference ReferenceType="HasEncoding" IsForward="false">i=601</Reference>
|
|
2767
|
+
<Reference ReferenceType="HasDescription">i=8582</Reference>
|
|
2768
|
+
<Reference ReferenceType="HasTypeDefinition">i=76</Reference>
|
|
2769
|
+
</References>
|
|
2770
|
+
</UAObject>
|
|
2771
|
+
<UAObject NodeId="i=660" BrowseName="Default XML" SymbolicName="DefaultXml">
|
|
2772
|
+
<DisplayName>Default XML</DisplayName>
|
|
2773
|
+
<References>
|
|
2774
|
+
<Reference ReferenceType="HasEncoding" IsForward="false">i=659</Reference>
|
|
2775
|
+
<Reference ReferenceType="HasDescription">i=8639</Reference>
|
|
2776
|
+
<Reference ReferenceType="HasTypeDefinition">i=76</Reference>
|
|
2777
|
+
</References>
|
|
2778
|
+
</UAObject>
|
|
2779
|
+
<UAObject NodeId="i=720" BrowseName="Default XML" SymbolicName="DefaultXml">
|
|
2780
|
+
<DisplayName>Default XML</DisplayName>
|
|
2781
|
+
<References>
|
|
2782
|
+
<Reference ReferenceType="HasEncoding" IsForward="false">i=719</Reference>
|
|
2783
|
+
<Reference ReferenceType="HasDescription">i=8702</Reference>
|
|
2784
|
+
<Reference ReferenceType="HasTypeDefinition">i=76</Reference>
|
|
2785
|
+
</References>
|
|
2786
|
+
</UAObject>
|
|
2787
|
+
<UAObject NodeId="i=726" BrowseName="Default XML" SymbolicName="DefaultXml">
|
|
2788
|
+
<DisplayName>Default XML</DisplayName>
|
|
2789
|
+
<References>
|
|
2790
|
+
<Reference ReferenceType="HasEncoding" IsForward="false">i=725</Reference>
|
|
2791
|
+
<Reference ReferenceType="HasDescription">i=8708</Reference>
|
|
2792
|
+
<Reference ReferenceType="HasTypeDefinition">i=76</Reference>
|
|
2793
|
+
</References>
|
|
2794
|
+
</UAObject>
|
|
2795
|
+
<UAObject NodeId="i=949" BrowseName="Default XML" SymbolicName="DefaultXml">
|
|
2796
|
+
<DisplayName>Default XML</DisplayName>
|
|
2797
|
+
<References>
|
|
2798
|
+
<Reference ReferenceType="HasEncoding" IsForward="false">i=948</Reference>
|
|
2799
|
+
<Reference ReferenceType="HasDescription">i=8711</Reference>
|
|
2800
|
+
<Reference ReferenceType="HasTypeDefinition">i=76</Reference>
|
|
2801
|
+
</References>
|
|
2802
|
+
</UAObject>
|
|
2803
|
+
<UAObject NodeId="i=921" BrowseName="Default XML" SymbolicName="DefaultXml">
|
|
2804
|
+
<DisplayName>Default XML</DisplayName>
|
|
2805
|
+
<References>
|
|
2806
|
+
<Reference ReferenceType="HasEncoding" IsForward="false">i=920</Reference>
|
|
2807
|
+
<Reference ReferenceType="HasDescription">i=8807</Reference>
|
|
2808
|
+
<Reference ReferenceType="HasTypeDefinition">i=76</Reference>
|
|
2809
|
+
</References>
|
|
2810
|
+
</UAObject>
|
|
2811
|
+
<UAObject NodeId="i=310" BrowseName="Default Binary" SymbolicName="DefaultBinary">
|
|
2812
|
+
<DisplayName>Default Binary</DisplayName>
|
|
2813
|
+
<References>
|
|
2814
|
+
<Reference ReferenceType="HasEncoding" IsForward="false">i=308</Reference>
|
|
2815
|
+
<Reference ReferenceType="HasDescription">i=7665</Reference>
|
|
2816
|
+
<Reference ReferenceType="HasTypeDefinition">i=76</Reference>
|
|
2817
|
+
</References>
|
|
2818
|
+
</UAObject>
|
|
2819
|
+
<UAObject NodeId="i=12207" BrowseName="Default Binary" SymbolicName="DefaultBinary">
|
|
2820
|
+
<DisplayName>Default Binary</DisplayName>
|
|
2821
|
+
<References>
|
|
2822
|
+
<Reference ReferenceType="HasEncoding" IsForward="false">i=12189</Reference>
|
|
2823
|
+
<Reference ReferenceType="HasDescription">i=12213</Reference>
|
|
2824
|
+
<Reference ReferenceType="HasTypeDefinition">i=76</Reference>
|
|
2825
|
+
</References>
|
|
2826
|
+
</UAObject>
|
|
2827
|
+
<UAObject NodeId="i=306" BrowseName="Default Binary" SymbolicName="DefaultBinary">
|
|
2828
|
+
<DisplayName>Default Binary</DisplayName>
|
|
2829
|
+
<References>
|
|
2830
|
+
<Reference ReferenceType="HasEncoding" IsForward="false">i=304</Reference>
|
|
2831
|
+
<Reference ReferenceType="HasDescription">i=7662</Reference>
|
|
2832
|
+
<Reference ReferenceType="HasTypeDefinition">i=76</Reference>
|
|
2833
|
+
</References>
|
|
2834
|
+
</UAObject>
|
|
2835
|
+
<UAObject NodeId="i=314" BrowseName="Default Binary" SymbolicName="DefaultBinary">
|
|
2836
|
+
<DisplayName>Default Binary</DisplayName>
|
|
2837
|
+
<References>
|
|
2838
|
+
<Reference ReferenceType="HasEncoding" IsForward="false">i=312</Reference>
|
|
2839
|
+
<Reference ReferenceType="HasDescription">i=7668</Reference>
|
|
2840
|
+
<Reference ReferenceType="HasTypeDefinition">i=76</Reference>
|
|
2841
|
+
</References>
|
|
2842
|
+
</UAObject>
|
|
2843
|
+
<UAObject NodeId="i=434" BrowseName="Default Binary" SymbolicName="DefaultBinary">
|
|
2844
|
+
<DisplayName>Default Binary</DisplayName>
|
|
2845
|
+
<References>
|
|
2846
|
+
<Reference ReferenceType="HasEncoding" IsForward="false">i=432</Reference>
|
|
2847
|
+
<Reference ReferenceType="HasDescription">i=7782</Reference>
|
|
2848
|
+
<Reference ReferenceType="HasTypeDefinition">i=76</Reference>
|
|
2849
|
+
</References>
|
|
2850
|
+
</UAObject>
|
|
2851
|
+
<UAObject NodeId="i=12900" BrowseName="Default Binary" SymbolicName="DefaultBinary">
|
|
2852
|
+
<DisplayName>Default Binary</DisplayName>
|
|
2853
|
+
<References>
|
|
2854
|
+
<Reference ReferenceType="HasEncoding" IsForward="false">i=12890</Reference>
|
|
2855
|
+
<Reference ReferenceType="HasDescription">i=12902</Reference>
|
|
2856
|
+
<Reference ReferenceType="HasTypeDefinition">i=76</Reference>
|
|
2857
|
+
</References>
|
|
2858
|
+
</UAObject>
|
|
2859
|
+
<UAObject NodeId="i=12901" BrowseName="Default Binary" SymbolicName="DefaultBinary">
|
|
2860
|
+
<DisplayName>Default Binary</DisplayName>
|
|
2861
|
+
<References>
|
|
2862
|
+
<Reference ReferenceType="HasEncoding" IsForward="false">i=12891</Reference>
|
|
2863
|
+
<Reference ReferenceType="HasDescription">i=12905</Reference>
|
|
2864
|
+
<Reference ReferenceType="HasTypeDefinition">i=76</Reference>
|
|
2865
|
+
</References>
|
|
2866
|
+
</UAObject>
|
|
2867
|
+
<UAObject NodeId="i=346" BrowseName="Default Binary" SymbolicName="DefaultBinary">
|
|
2868
|
+
<DisplayName>Default Binary</DisplayName>
|
|
2869
|
+
<References>
|
|
2870
|
+
<Reference ReferenceType="HasEncoding" IsForward="false">i=344</Reference>
|
|
2871
|
+
<Reference ReferenceType="HasDescription">i=7698</Reference>
|
|
2872
|
+
<Reference ReferenceType="HasTypeDefinition">i=76</Reference>
|
|
2873
|
+
</References>
|
|
2874
|
+
</UAObject>
|
|
2875
|
+
<UAObject NodeId="i=318" BrowseName="Default Binary" SymbolicName="DefaultBinary">
|
|
2876
|
+
<DisplayName>Default Binary</DisplayName>
|
|
2877
|
+
<References>
|
|
2878
|
+
<Reference ReferenceType="HasEncoding" IsForward="false">i=316</Reference>
|
|
2879
|
+
<Reference ReferenceType="HasDescription">i=7671</Reference>
|
|
2880
|
+
<Reference ReferenceType="HasTypeDefinition">i=76</Reference>
|
|
2881
|
+
</References>
|
|
2882
|
+
</UAObject>
|
|
2883
|
+
<UAObject NodeId="i=321" BrowseName="Default Binary" SymbolicName="DefaultBinary">
|
|
2884
|
+
<DisplayName>Default Binary</DisplayName>
|
|
2885
|
+
<References>
|
|
2886
|
+
<Reference ReferenceType="HasEncoding" IsForward="false">i=319</Reference>
|
|
2887
|
+
<Reference ReferenceType="HasDescription">i=7674</Reference>
|
|
2888
|
+
<Reference ReferenceType="HasTypeDefinition">i=76</Reference>
|
|
2889
|
+
</References>
|
|
2890
|
+
</UAObject>
|
|
2891
|
+
<UAObject NodeId="i=324" BrowseName="Default Binary" SymbolicName="DefaultBinary">
|
|
2892
|
+
<DisplayName>Default Binary</DisplayName>
|
|
2893
|
+
<References>
|
|
2894
|
+
<Reference ReferenceType="HasEncoding" IsForward="false">i=322</Reference>
|
|
2895
|
+
<Reference ReferenceType="HasDescription">i=7677</Reference>
|
|
2896
|
+
<Reference ReferenceType="HasTypeDefinition">i=76</Reference>
|
|
2897
|
+
</References>
|
|
2898
|
+
</UAObject>
|
|
2899
|
+
<UAObject NodeId="i=327" BrowseName="Default Binary" SymbolicName="DefaultBinary">
|
|
2900
|
+
<DisplayName>Default Binary</DisplayName>
|
|
2901
|
+
<References>
|
|
2902
|
+
<Reference ReferenceType="HasEncoding" IsForward="false">i=325</Reference>
|
|
2903
|
+
<Reference ReferenceType="HasDescription">i=7680</Reference>
|
|
2904
|
+
<Reference ReferenceType="HasTypeDefinition">i=76</Reference>
|
|
2905
|
+
</References>
|
|
2906
|
+
</UAObject>
|
|
2907
|
+
<UAObject NodeId="i=12509" BrowseName="Default Binary" SymbolicName="DefaultBinary">
|
|
2908
|
+
<DisplayName>Default Binary</DisplayName>
|
|
2909
|
+
<References>
|
|
2910
|
+
<Reference ReferenceType="HasEncoding" IsForward="false">i=12504</Reference>
|
|
2911
|
+
<Reference ReferenceType="HasDescription">i=12510</Reference>
|
|
2912
|
+
<Reference ReferenceType="HasTypeDefinition">i=76</Reference>
|
|
2913
|
+
</References>
|
|
2914
|
+
</UAObject>
|
|
2915
|
+
<UAObject NodeId="i=940" BrowseName="Default Binary" SymbolicName="DefaultBinary">
|
|
2916
|
+
<DisplayName>Default Binary</DisplayName>
|
|
2917
|
+
<References>
|
|
2918
|
+
<Reference ReferenceType="HasEncoding" IsForward="false">i=938</Reference>
|
|
2919
|
+
<Reference ReferenceType="HasDescription">i=7683</Reference>
|
|
2920
|
+
<Reference ReferenceType="HasTypeDefinition">i=76</Reference>
|
|
2921
|
+
</References>
|
|
2922
|
+
</UAObject>
|
|
2923
|
+
<UAObject NodeId="i=378" BrowseName="Default Binary" SymbolicName="DefaultBinary">
|
|
2924
|
+
<DisplayName>Default Binary</DisplayName>
|
|
2925
|
+
<References>
|
|
2926
|
+
<Reference ReferenceType="HasEncoding" IsForward="false">i=376</Reference>
|
|
2927
|
+
<Reference ReferenceType="HasDescription">i=7728</Reference>
|
|
2928
|
+
<Reference ReferenceType="HasTypeDefinition">i=76</Reference>
|
|
2929
|
+
</References>
|
|
2930
|
+
</UAObject>
|
|
2931
|
+
<UAObject NodeId="i=381" BrowseName="Default Binary" SymbolicName="DefaultBinary">
|
|
2932
|
+
<DisplayName>Default Binary</DisplayName>
|
|
2933
|
+
<References>
|
|
2934
|
+
<Reference ReferenceType="HasEncoding" IsForward="false">i=379</Reference>
|
|
2935
|
+
<Reference ReferenceType="HasDescription">i=7731</Reference>
|
|
2936
|
+
<Reference ReferenceType="HasTypeDefinition">i=76</Reference>
|
|
2937
|
+
</References>
|
|
2938
|
+
</UAObject>
|
|
2939
|
+
<UAObject NodeId="i=384" BrowseName="Default Binary" SymbolicName="DefaultBinary">
|
|
2940
|
+
<DisplayName>Default Binary</DisplayName>
|
|
2941
|
+
<References>
|
|
2942
|
+
<Reference ReferenceType="HasEncoding" IsForward="false">i=382</Reference>
|
|
2943
|
+
<Reference ReferenceType="HasDescription">i=7734</Reference>
|
|
2944
|
+
<Reference ReferenceType="HasTypeDefinition">i=76</Reference>
|
|
2945
|
+
</References>
|
|
2946
|
+
</UAObject>
|
|
2947
|
+
<UAObject NodeId="i=387" BrowseName="Default Binary" SymbolicName="DefaultBinary">
|
|
2948
|
+
<DisplayName>Default Binary</DisplayName>
|
|
2949
|
+
<References>
|
|
2950
|
+
<Reference ReferenceType="HasEncoding" IsForward="false">i=385</Reference>
|
|
2951
|
+
<Reference ReferenceType="HasDescription">i=7737</Reference>
|
|
2952
|
+
<Reference ReferenceType="HasTypeDefinition">i=76</Reference>
|
|
2953
|
+
</References>
|
|
2954
|
+
</UAObject>
|
|
2955
|
+
<UAObject NodeId="i=539" BrowseName="Default Binary" SymbolicName="DefaultBinary">
|
|
2956
|
+
<DisplayName>Default Binary</DisplayName>
|
|
2957
|
+
<References>
|
|
2958
|
+
<Reference ReferenceType="HasEncoding" IsForward="false">i=537</Reference>
|
|
2959
|
+
<Reference ReferenceType="HasDescription">i=12718</Reference>
|
|
2960
|
+
<Reference ReferenceType="HasTypeDefinition">i=76</Reference>
|
|
2961
|
+
</References>
|
|
2962
|
+
</UAObject>
|
|
2963
|
+
<UAObject NodeId="i=542" BrowseName="Default Binary" SymbolicName="DefaultBinary">
|
|
2964
|
+
<DisplayName>Default Binary</DisplayName>
|
|
2965
|
+
<References>
|
|
2966
|
+
<Reference ReferenceType="HasEncoding" IsForward="false">i=540</Reference>
|
|
2967
|
+
<Reference ReferenceType="HasDescription">i=12721</Reference>
|
|
2968
|
+
<Reference ReferenceType="HasTypeDefinition">i=76</Reference>
|
|
2969
|
+
</References>
|
|
2970
|
+
</UAObject>
|
|
2971
|
+
<UAObject NodeId="i=333" BrowseName="Default Binary" SymbolicName="DefaultBinary">
|
|
2972
|
+
<DisplayName>Default Binary</DisplayName>
|
|
2973
|
+
<References>
|
|
2974
|
+
<Reference ReferenceType="HasEncoding" IsForward="false">i=331</Reference>
|
|
2975
|
+
<Reference ReferenceType="HasDescription">i=7686</Reference>
|
|
2976
|
+
<Reference ReferenceType="HasTypeDefinition">i=76</Reference>
|
|
2977
|
+
</References>
|
|
2978
|
+
</UAObject>
|
|
2979
|
+
<UAObject NodeId="i=337" BrowseName="Default Binary" SymbolicName="DefaultBinary">
|
|
2980
|
+
<DisplayName>Default Binary</DisplayName>
|
|
2981
|
+
<References>
|
|
2982
|
+
<Reference ReferenceType="HasEncoding" IsForward="false">i=335</Reference>
|
|
2983
|
+
<Reference ReferenceType="HasDescription">i=7689</Reference>
|
|
2984
|
+
<Reference ReferenceType="HasTypeDefinition">i=76</Reference>
|
|
2985
|
+
</References>
|
|
2986
|
+
</UAObject>
|
|
2987
|
+
<UAObject NodeId="i=343" BrowseName="Default Binary" SymbolicName="DefaultBinary">
|
|
2988
|
+
<DisplayName>Default Binary</DisplayName>
|
|
2989
|
+
<References>
|
|
2990
|
+
<Reference ReferenceType="HasEncoding" IsForward="false">i=341</Reference>
|
|
2991
|
+
<Reference ReferenceType="HasDescription">i=7695</Reference>
|
|
2992
|
+
<Reference ReferenceType="HasTypeDefinition">i=76</Reference>
|
|
2993
|
+
</References>
|
|
2994
|
+
</UAObject>
|
|
2995
|
+
<UAObject NodeId="i=585" BrowseName="Default Binary" SymbolicName="DefaultBinary">
|
|
2996
|
+
<DisplayName>Default Binary</DisplayName>
|
|
2997
|
+
<References>
|
|
2998
|
+
<Reference ReferenceType="HasEncoding" IsForward="false">i=583</Reference>
|
|
2999
|
+
<Reference ReferenceType="HasDescription">i=7929</Reference>
|
|
3000
|
+
<Reference ReferenceType="HasTypeDefinition">i=76</Reference>
|
|
3001
|
+
</References>
|
|
3002
|
+
</UAObject>
|
|
3003
|
+
<UAObject NodeId="i=588" BrowseName="Default Binary" SymbolicName="DefaultBinary">
|
|
3004
|
+
<DisplayName>Default Binary</DisplayName>
|
|
3005
|
+
<References>
|
|
3006
|
+
<Reference ReferenceType="HasEncoding" IsForward="false">i=586</Reference>
|
|
3007
|
+
<Reference ReferenceType="HasDescription">i=7932</Reference>
|
|
3008
|
+
<Reference ReferenceType="HasTypeDefinition">i=76</Reference>
|
|
3009
|
+
</References>
|
|
3010
|
+
</UAObject>
|
|
3011
|
+
<UAObject NodeId="i=591" BrowseName="Default Binary" SymbolicName="DefaultBinary">
|
|
3012
|
+
<DisplayName>Default Binary</DisplayName>
|
|
3013
|
+
<References>
|
|
3014
|
+
<Reference ReferenceType="HasEncoding" IsForward="false">i=589</Reference>
|
|
3015
|
+
<Reference ReferenceType="HasDescription">i=7935</Reference>
|
|
3016
|
+
<Reference ReferenceType="HasTypeDefinition">i=76</Reference>
|
|
3017
|
+
</References>
|
|
3018
|
+
</UAObject>
|
|
3019
|
+
<UAObject NodeId="i=594" BrowseName="Default Binary" SymbolicName="DefaultBinary">
|
|
3020
|
+
<DisplayName>Default Binary</DisplayName>
|
|
3021
|
+
<References>
|
|
3022
|
+
<Reference ReferenceType="HasEncoding" IsForward="false">i=592</Reference>
|
|
3023
|
+
<Reference ReferenceType="HasDescription">i=7938</Reference>
|
|
3024
|
+
<Reference ReferenceType="HasTypeDefinition">i=76</Reference>
|
|
3025
|
+
</References>
|
|
3026
|
+
</UAObject>
|
|
3027
|
+
<UAObject NodeId="i=597" BrowseName="Default Binary" SymbolicName="DefaultBinary">
|
|
3028
|
+
<DisplayName>Default Binary</DisplayName>
|
|
3029
|
+
<References>
|
|
3030
|
+
<Reference ReferenceType="HasEncoding" IsForward="false">i=595</Reference>
|
|
3031
|
+
<Reference ReferenceType="HasDescription">i=7941</Reference>
|
|
3032
|
+
<Reference ReferenceType="HasTypeDefinition">i=76</Reference>
|
|
3033
|
+
</References>
|
|
3034
|
+
</UAObject>
|
|
3035
|
+
<UAObject NodeId="i=600" BrowseName="Default Binary" SymbolicName="DefaultBinary">
|
|
3036
|
+
<DisplayName>Default Binary</DisplayName>
|
|
3037
|
+
<References>
|
|
3038
|
+
<Reference ReferenceType="HasEncoding" IsForward="false">i=598</Reference>
|
|
3039
|
+
<Reference ReferenceType="HasDescription">i=7944</Reference>
|
|
3040
|
+
<Reference ReferenceType="HasTypeDefinition">i=76</Reference>
|
|
3041
|
+
</References>
|
|
3042
|
+
</UAObject>
|
|
3043
|
+
<UAObject NodeId="i=603" BrowseName="Default Binary" SymbolicName="DefaultBinary">
|
|
3044
|
+
<DisplayName>Default Binary</DisplayName>
|
|
3045
|
+
<References>
|
|
3046
|
+
<Reference ReferenceType="HasEncoding" IsForward="false">i=601</Reference>
|
|
3047
|
+
<Reference ReferenceType="HasDescription">i=7947</Reference>
|
|
3048
|
+
<Reference ReferenceType="HasTypeDefinition">i=76</Reference>
|
|
3049
|
+
</References>
|
|
3050
|
+
</UAObject>
|
|
3051
|
+
<UAObject NodeId="i=661" BrowseName="Default Binary" SymbolicName="DefaultBinary">
|
|
3052
|
+
<DisplayName>Default Binary</DisplayName>
|
|
3053
|
+
<References>
|
|
3054
|
+
<Reference ReferenceType="HasEncoding" IsForward="false">i=659</Reference>
|
|
3055
|
+
<Reference ReferenceType="HasDescription">i=8004</Reference>
|
|
3056
|
+
<Reference ReferenceType="HasTypeDefinition">i=76</Reference>
|
|
3057
|
+
</References>
|
|
3058
|
+
</UAObject>
|
|
3059
|
+
<UAObject NodeId="i=721" BrowseName="Default Binary" SymbolicName="DefaultBinary">
|
|
3060
|
+
<DisplayName>Default Binary</DisplayName>
|
|
3061
|
+
<References>
|
|
3062
|
+
<Reference ReferenceType="HasEncoding" IsForward="false">i=719</Reference>
|
|
3063
|
+
<Reference ReferenceType="HasDescription">i=8067</Reference>
|
|
3064
|
+
<Reference ReferenceType="HasTypeDefinition">i=76</Reference>
|
|
3065
|
+
</References>
|
|
3066
|
+
</UAObject>
|
|
3067
|
+
<UAObject NodeId="i=727" BrowseName="Default Binary" SymbolicName="DefaultBinary">
|
|
3068
|
+
<DisplayName>Default Binary</DisplayName>
|
|
3069
|
+
<References>
|
|
3070
|
+
<Reference ReferenceType="HasEncoding" IsForward="false">i=725</Reference>
|
|
3071
|
+
<Reference ReferenceType="HasDescription">i=8073</Reference>
|
|
3072
|
+
<Reference ReferenceType="HasTypeDefinition">i=76</Reference>
|
|
3073
|
+
</References>
|
|
3074
|
+
</UAObject>
|
|
3075
|
+
<UAObject NodeId="i=950" BrowseName="Default Binary" SymbolicName="DefaultBinary">
|
|
3076
|
+
<DisplayName>Default Binary</DisplayName>
|
|
3077
|
+
<References>
|
|
3078
|
+
<Reference ReferenceType="HasEncoding" IsForward="false">i=948</Reference>
|
|
3079
|
+
<Reference ReferenceType="HasDescription">i=8076</Reference>
|
|
3080
|
+
<Reference ReferenceType="HasTypeDefinition">i=76</Reference>
|
|
3081
|
+
</References>
|
|
3082
|
+
</UAObject>
|
|
3083
|
+
<UAObject NodeId="i=922" BrowseName="Default Binary" SymbolicName="DefaultBinary">
|
|
3084
|
+
<DisplayName>Default Binary</DisplayName>
|
|
3085
|
+
<References>
|
|
3086
|
+
<Reference ReferenceType="HasEncoding" IsForward="false">i=920</Reference>
|
|
3087
|
+
<Reference ReferenceType="HasDescription">i=8172</Reference>
|
|
3088
|
+
<Reference ReferenceType="HasTypeDefinition">i=76</Reference>
|
|
3089
|
+
</References>
|
|
3090
|
+
</UAObject>
|
|
3091
|
+
</UANodeSet>
|