1<?xml version="1.0" encoding="UTF-8"?>
2<!---->
3<!--################################################################################       -->
4<!--# Redfish Schema:  ManagerNetworkProtocol v1.10.0                                      -->
5<!--#                                                                                      -->
6<!--# For a detailed change log, see the README file contained in the DSP8010 bundle,      -->
7<!--# available at http://www.dmtf.org/standards/redfish                                   -->
8<!--# Copyright 2014-2023 DMTF.                                                            -->
9<!--# For the full DMTF copyright policy, see http://www.dmtf.org/about/policies/copyright -->
10<!--################################################################################       -->
11<!---->
12<edmx:Edmx xmlns:edmx="http://docs.oasis-open.org/odata/ns/edmx" Version="4.0">
13
14  <edmx:Reference Uri="http://docs.oasis-open.org/odata/odata/v4.0/errata03/csd01/complete/vocabularies/Org.OData.Core.V1.xml">
15    <edmx:Include Namespace="Org.OData.Core.V1" Alias="OData"/>
16  </edmx:Reference>
17  <edmx:Reference Uri="http://docs.oasis-open.org/odata/odata/v4.0/errata03/csd01/complete/vocabularies/Org.OData.Capabilities.V1.xml">
18    <edmx:Include Namespace="Org.OData.Capabilities.V1" Alias="Capabilities"/>
19  </edmx:Reference>
20  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/RedfishExtensions_v1.xml">
21    <edmx:Include Namespace="Validation.v1_0_0" Alias="Validation"/>
22    <edmx:Include Namespace="RedfishExtensions.v1_0_0" Alias="Redfish"/>
23  </edmx:Reference>
24  <edmx:Reference Uri="http://docs.oasis-open.org/odata/odata/v4.0/errata03/csd01/complete/vocabularies/Org.OData.Measures.V1.xml">
25    <edmx:Include Namespace="Org.OData.Measures.V1" Alias="Measures"/>
26  </edmx:Reference>
27  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Resource_v1.xml">
28    <edmx:Include Namespace="Resource"/>
29    <edmx:Include Namespace="Resource.v1_0_0"/>
30  </edmx:Reference>
31  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/IPAddresses_v1.xml">
32    <edmx:Include Namespace="IPAddresses"/>
33  </edmx:Reference>
34  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/CertificateCollection_v1.xml">
35    <edmx:Include Namespace="CertificateCollection"/>
36  </edmx:Reference>
37
38  <edmx:DataServices>
39
40    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerNetworkProtocol">
41      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
42
43      <EntityType Name="ManagerNetworkProtocol" BaseType="Resource.v1_0_0.Resource" Abstract="true">
44        <Annotation Term="OData.Description" String="The network service settings for the manager."/>
45        <Annotation Term="OData.LongDescription" String="This resource shall represent the network service settings for the manager."/>
46        <Annotation Term="Capabilities.InsertRestrictions">
47          <Record>
48            <PropertyValue Property="Insertable" Bool="false"/>
49          </Record>
50        </Annotation>
51        <Annotation Term="Capabilities.UpdateRestrictions">
52          <Record>
53            <PropertyValue Property="Updatable" Bool="true"/>
54            <Annotation Term="OData.Description" String="Writable properties, such as protocol and virtual media settings, can be updated for manager network protocols."/>
55          </Record>
56        </Annotation>
57        <Annotation Term="Capabilities.DeleteRestrictions">
58          <Record>
59            <PropertyValue Property="Deletable" Bool="false"/>
60          </Record>
61        </Annotation>
62        <Annotation Term="Redfish.Uris">
63          <Collection>
64            <String>/redfish/v1/Managers/{ManagerId}/NetworkProtocol</String>
65          </Collection>
66        </Annotation>
67      </EntityType>
68    </Schema>
69
70    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerNetworkProtocol.v1_0_0">
71      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
72      <Annotation Term="Redfish.Release" String="1.0"/>
73
74      <EntityType Name="ManagerNetworkProtocol" BaseType="ManagerNetworkProtocol.ManagerNetworkProtocol">
75        <Property Name="HostName" Type="Edm.String">
76          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
77          <Annotation Term="OData.Description" String="The DNS host name of this manager, without any domain information."/>
78          <Annotation Term="OData.LongDescription" String="This property shall contain the host name without any domain information."/>
79        </Property>
80        <Property Name="FQDN" Type="Edm.String">
81          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
82          <Annotation Term="OData.Description" String="The fully qualified domain name for the manager obtained by DNS including the host name and top-level domain name."/>
83          <Annotation Term="OData.LongDescription" String="This property shall contain the fully qualified domain name for the manager."/>
84        </Property>
85        <Property Name="HTTP" Type="ManagerNetworkProtocol.v1_0_0.Protocol" Nullable="false">
86          <Annotation Term="OData.Description" String="The settings for this manager's HTTP protocol support."/>
87          <Annotation Term="OData.LongDescription" String="This object shall contain the HTTP protocol settings for the manager.  The default Port property value should be `80` for compatibility with established client implementations."/>
88        </Property>
89        <Property Name="HTTPS" Type="ManagerNetworkProtocol.v1_0_0.HTTPSProtocol" Nullable="false">
90          <Annotation Term="OData.Description" String="The settings for this manager's HTTPS protocol support."/>
91          <Annotation Term="OData.LongDescription" String="This object shall contain the HTTPS/SSL protocol settings for this manager.  The default Port property value should be `443` for compatibility with established client implementations."/>
92        </Property>
93        <Property Name="SNMP" Type="ManagerNetworkProtocol.v1_0_0.SNMPProtocol" Nullable="false">
94          <Annotation Term="OData.Description" String="The settings for this manager's SNMP support."/>
95          <Annotation Term="OData.LongDescription" String="This object shall contain the SNMP protocol settings for this manager.  The default Port property value should be `161` for compatibility with established client implementations."/>
96        </Property>
97        <Property Name="VirtualMedia" Type="ManagerNetworkProtocol.v1_0_0.Protocol" Nullable="false">
98          <Annotation Term="OData.Description" String="The settings for this manager's virtual media support that apply to all system instances controlled by this manager."/>
99          <Annotation Term="OData.LongDescription" String="This object shall contain the virtual media protocol settings for this manager.  The Port property shall contain the TCP port assigned for Virtual Media usage.  If multiple systems are supported by this manager, these properties, if present, apply to all instances of virtual media controlled by this manager."/>
100        </Property>
101        <Property Name="Telnet" Type="ManagerNetworkProtocol.v1_0_0.Protocol" Nullable="false">
102          <Annotation Term="OData.Description" String="The settings for this manager's Telnet protocol support."/>
103          <Annotation Term="OData.LongDescription" String="This object shall contain the Telnet protocol settings for this manager.  The default Port property value should be `23` for compatibility with established client implementations."/>
104        </Property>
105        <Property Name="SSDP" Type="ManagerNetworkProtocol.v1_0_0.SSDProtocol" Nullable="false">
106          <Annotation Term="OData.Description" String="The settings for this manager's SSDP support."/>
107          <Annotation Term="OData.LongDescription" String="This object shall contain the SSDP protocol settings for this manager.  Simple Service Discovery Protocol (SSDP) is for network discovery of devices supporting the Redfish Service.  The default Port property value should be `1900` for compatibility with established client implementations."/>
108        </Property>
109        <Property Name="IPMI" Type="ManagerNetworkProtocol.v1_0_0.Protocol" Nullable="false">
110          <Annotation Term="OData.Description" String="The settings for this manager's IPMI-over-LAN protocol support."/>
111          <Annotation Term="OData.LongDescription" String="This object shall contain the IPMI over LAN protocol settings for the manager.  The default Port property value should be `623` for compatibility with established client implementations."/>
112        </Property>
113        <Property Name="SSH" Type="ManagerNetworkProtocol.v1_0_0.Protocol" Nullable="false">
114          <Annotation Term="OData.Description" String="The settings for this manager's Secure Shell (SSH) protocol support."/>
115          <Annotation Term="OData.LongDescription" String="This object shall contain the Secure Shell (SSH) protocol settings for the manager.  The default value should be 22 for compatibility with established client implementations."/>
116        </Property>
117        <Property Name="KVMIP" Type="ManagerNetworkProtocol.v1_0_0.Protocol" Nullable="false">
118          <Annotation Term="OData.Description" String="The settings for this manager's KVM-IP protocol support that apply to all system instances controlled by this manager."/>
119          <Annotation Term="OData.LongDescription" String="This object shall contain the KVM-IP (Keyboard, Video, Mouse over IP) protocol settings for the manager.  If multiple systems are supported by this manager, these properties, if present, apply to all instances of KVM-IP controlled by this manager."/>
120        </Property>
121        <Property Name="Status" Type="Resource.Status" Nullable="false">
122          <Annotation Term="OData.Description" String="The status and health of the resource and its subordinate or dependent resources."/>
123          <Annotation Term="OData.LongDescription" String="This property shall contain any status or health properties of the resource."/>
124        </Property>
125      </EntityType>
126
127      <ComplexType Name="Protocol">
128        <Annotation Term="OData.AdditionalProperties" Bool="false"/>
129        <Annotation Term="OData.Description" String="The settings for a network protocol associated with a manager."/>
130        <Annotation Term="OData.LongDescription" String="This type shall describe information about a protocol setting for a manager."/>
131        <Property Name="ProtocolEnabled" Type="Edm.Boolean">
132          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
133          <Annotation Term="OData.Description" String="An indication of whether the protocol is enabled."/>
134          <Annotation Term="OData.LongDescription" String="This property shall indicate whether the protocol is enabled."/>
135        </Property>
136        <Property Name="Port" Type="Edm.Int64">
137          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
138          <Annotation Term="OData.Description" String="The protocol port."/>
139          <Annotation Term="OData.LongDescription" String="This property shall contain the port assigned to the protocol."/>
140          <Annotation Term="Validation.Minimum" Int="0"/>
141        </Property>
142      </ComplexType>
143
144      <ComplexType Name="SSDProtocol" BaseType="ManagerNetworkProtocol.v1_0_0.Protocol">
145        <Annotation Term="OData.AdditionalProperties" Bool="false"/>
146        <Property Name="NotifyMulticastIntervalSeconds" Type="Edm.Int64">
147          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
148          <Annotation Term="OData.Description" String="The time interval, in seconds, between transmissions of the multicast NOTIFY ALIVE message from this service for SSDP."/>
149          <Annotation Term="OData.LongDescription" String="This property shall contain the time interval, in seconds, between transmissions of the multicast NOTIFY ALIVE message.  A setting of 0 seconds shall disable this functionality.  The recommended value is 600 seconds."/>
150          <Annotation Term="Measures.Unit" String="s"/>
151          <Annotation Term="Validation.Minimum" Int="0"/>
152        </Property>
153        <Property Name="NotifyTTL" Type="Edm.Int64">
154          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
155          <Annotation Term="OData.Description" String="The time-to-live hop count for SSDP multicast NOTIFY messages."/>
156          <Annotation Term="OData.LongDescription" String="This property shall contain the time-to-live hop count used for multicast NOTIFY messages.  The recommended value is 2."/>
157          <Annotation Term="Validation.Minimum" Int="1"/>
158        </Property>
159        <Property Name="NotifyIPv6Scope" Type="ManagerNetworkProtocol.v1_0_0.NotifyIPv6Scope">
160          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
161          <Annotation Term="OData.Description" String="The IPv6 scope for multicast NOTIFY messages for SSDP."/>
162          <Annotation Term="OData.LongDescription" String="This property shall contain the IPv6 scope for multicast NOTIFY messages.  The valid enumerations are a subset of the available IPv6 scope types."/>
163        </Property>
164      </ComplexType>
165
166      <ComplexType Name="HTTPSProtocol" BaseType="ManagerNetworkProtocol.v1_0_0.Protocol"/>
167
168      <ComplexType Name="SNMPProtocol" BaseType="ManagerNetworkProtocol.v1_0_0.Protocol"/>
169
170      <EnumType Name="NotifyIPv6Scope">
171        <Member Name="Link">
172          <Annotation Term="OData.Description" String="SSDP NOTIFY messages are sent to addresses in the IPv6 local link scope."/>
173        </Member>
174        <Member Name="Site">
175          <Annotation Term="OData.Description" String="SSDP NOTIFY messages are sent to addresses in the IPv6 local site scope."/>
176        </Member>
177        <Member Name="Organization">
178          <Annotation Term="OData.Description" String="SSDP NOTIFY messages are sent to addresses in the IPv6 local organization scope."/>
179        </Member>
180      </EnumType>
181    </Schema>
182
183    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerNetworkProtocol.v1_0_2">
184      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
185      <Annotation Term="OData.Description" String="This version was created to show annotations in previous namespaces were updated."/>
186      <EntityType Name="ManagerNetworkProtocol" BaseType="ManagerNetworkProtocol.v1_0_0.ManagerNetworkProtocol"/>
187    </Schema>
188
189    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerNetworkProtocol.v1_0_3">
190      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
191      <Annotation Term="OData.Description" String="This version was created to show annotations in previous namespaces were updated."/>
192      <EntityType Name="ManagerNetworkProtocol" BaseType="ManagerNetworkProtocol.v1_0_2.ManagerNetworkProtocol"/>
193    </Schema>
194
195    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerNetworkProtocol.v1_0_4">
196      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
197      <Annotation Term="OData.Description" String="This version was created to show annotations in previous namespaces were updated."/>
198      <EntityType Name="ManagerNetworkProtocol" BaseType="ManagerNetworkProtocol.v1_0_3.ManagerNetworkProtocol"/>
199    </Schema>
200
201    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerNetworkProtocol.v1_0_5">
202      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
203      <Annotation Term="OData.Description" String="This version was created to force the regeneration of JSON Schema so that OData properties are marked as required, and integer properties are marked as integer rather than number."/>
204      <EntityType Name="ManagerNetworkProtocol" BaseType="ManagerNetworkProtocol.v1_0_4.ManagerNetworkProtocol"/>
205    </Schema>
206
207    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerNetworkProtocol.v1_0_6">
208      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
209      <Annotation Term="OData.Description" String="This version was created to force the regeneration of JSON Schema so that URI properties use the uri-reference format."/>
210      <EntityType Name="ManagerNetworkProtocol" BaseType="ManagerNetworkProtocol.v1_0_5.ManagerNetworkProtocol"/>
211    </Schema>
212
213    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerNetworkProtocol.v1_0_7">
214      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
215      <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
216      <EntityType Name="ManagerNetworkProtocol" BaseType="ManagerNetworkProtocol.v1_0_6.ManagerNetworkProtocol"/>
217    </Schema>
218
219    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerNetworkProtocol.v1_0_8">
220      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
221      <Annotation Term="OData.Description" String="This version was created to update the descriptions for the VirtualMedia and KVMIP properties."/>
222      <EntityType Name="ManagerNetworkProtocol" BaseType="ManagerNetworkProtocol.v1_0_7.ManagerNetworkProtocol"/>
223    </Schema>
224
225    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerNetworkProtocol.v1_0_9">
226      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
227      <Annotation Term="OData.Description" String="This version was created to fix typos in descriptions and long descriptions."/>
228      <EntityType Name="ManagerNetworkProtocol" BaseType="ManagerNetworkProtocol.v1_0_8.ManagerNetworkProtocol"/>
229    </Schema>
230
231    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerNetworkProtocol.v1_0_10">
232      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
233      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
234      <EntityType Name="ManagerNetworkProtocol" BaseType="ManagerNetworkProtocol.v1_0_9.ManagerNetworkProtocol"/>
235    </Schema>
236
237    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerNetworkProtocol.v1_1_0">
238      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
239      <Annotation Term="Redfish.Release" String="2016.3"/>
240      <EntityType Name="ManagerNetworkProtocol" BaseType="ManagerNetworkProtocol.v1_0_3.ManagerNetworkProtocol">
241        <Property Name="DHCP" Type="ManagerNetworkProtocol.v1_0_0.Protocol" Nullable="false">
242          <Annotation Term="OData.Description" String="The settings for this manager's DHCPv4 protocol support."/>
243          <Annotation Term="OData.LongDescription" String="This object shall contain the DHCPv4 protocol settings for the manager."/>
244        </Property>
245      </EntityType>
246    </Schema>
247
248    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerNetworkProtocol.v1_1_1">
249      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
250      <Annotation Term="OData.Description" String="This version was created to show annotations in previous namespaces were updated."/>
251      <EntityType Name="ManagerNetworkProtocol" BaseType="ManagerNetworkProtocol.v1_1_0.ManagerNetworkProtocol"/>
252    </Schema>
253
254    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerNetworkProtocol.v1_1_2">
255      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
256      <Annotation Term="OData.Description" String="This version was created to force the regeneration of JSON Schema so that OData properties are marked as required, and integer properties are marked as integer rather than number.  It was also created to clarify that the DHCP property is for DHCPv4."/>
257      <EntityType Name="ManagerNetworkProtocol" BaseType="ManagerNetworkProtocol.v1_1_1.ManagerNetworkProtocol"/>
258    </Schema>
259
260    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerNetworkProtocol.v1_1_3">
261      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
262      <Annotation Term="OData.Description" String="This version was created to force the regeneration of JSON Schema so that URI properties use the uri-reference format."/>
263      <EntityType Name="ManagerNetworkProtocol" BaseType="ManagerNetworkProtocol.v1_1_2.ManagerNetworkProtocol"/>
264    </Schema>
265
266    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerNetworkProtocol.v1_1_4">
267      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
268      <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
269      <EntityType Name="ManagerNetworkProtocol" BaseType="ManagerNetworkProtocol.v1_1_3.ManagerNetworkProtocol"/>
270    </Schema>
271
272    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerNetworkProtocol.v1_1_5">
273      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
274      <Annotation Term="OData.Description" String="This version was created to update the descriptions for the VirtualMedia and KVMIP properties."/>
275      <EntityType Name="ManagerNetworkProtocol" BaseType="ManagerNetworkProtocol.v1_1_4.ManagerNetworkProtocol"/>
276    </Schema>
277
278    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerNetworkProtocol.v1_1_6">
279      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
280      <Annotation Term="OData.Description" String="This version was created to fix typos in descriptions and long descriptions."/>
281      <EntityType Name="ManagerNetworkProtocol" BaseType="ManagerNetworkProtocol.v1_1_5.ManagerNetworkProtocol"/>
282    </Schema>
283
284    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerNetworkProtocol.v1_1_7">
285      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
286      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
287      <EntityType Name="ManagerNetworkProtocol" BaseType="ManagerNetworkProtocol.v1_1_6.ManagerNetworkProtocol"/>
288    </Schema>
289
290    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerNetworkProtocol.v1_2_0">
291      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
292      <Annotation Term="Redfish.Release" String="2017.1"/>
293      <EntityType Name="ManagerNetworkProtocol" BaseType="ManagerNetworkProtocol.v1_1_1.ManagerNetworkProtocol">
294        <Property Name="NTP" Type="ManagerNetworkProtocol.v1_2_0.NTPProtocol" Nullable="false">
295          <Annotation Term="OData.Description" String="The settings for this manager's NTP protocol support."/>
296          <Annotation Term="OData.LongDescription" String="This object shall contain the NTP protocol settings for the manager."/>
297        </Property>
298        <Property Name="Actions" Type="ManagerNetworkProtocol.v1_2_0.Actions" Nullable="false">
299          <Annotation Term="OData.Description" String="The available actions for this resource."/>
300          <Annotation Term="OData.LongDescription" String="This property shall contain the available actions for this resource."/>
301        </Property>
302      </EntityType>
303
304      <ComplexType Name="NTPProtocol" BaseType="ManagerNetworkProtocol.v1_0_0.Protocol">
305        <Annotation Term="OData.AdditionalProperties" Bool="false"/>
306        <Property Name="NTPServers" Type="Collection(Edm.String)">
307          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
308          <Annotation Term="OData.Description" String="Indicates to which user-supplied NTP servers this manager is subscribed."/>
309          <Annotation Term="OData.LongDescription" String="This property shall contain all the user-supplied NTP servers for which this manager is using to obtain time.  NetworkSuppliedServers is used for NTP servers supplied by other network protocols such as DHCP."/>
310        </Property>
311      </ComplexType>
312
313      <ComplexType Name="Actions">
314        <Annotation Term="OData.AdditionalProperties" Bool="false"/>
315        <Annotation Term="OData.Description" String="The available actions for this resource."/>
316        <Annotation Term="OData.LongDescription" String="This type shall contain the available actions for this resource."/>
317        <Property Name="Oem" Type="ManagerNetworkProtocol.v1_2_0.OemActions" Nullable="false">
318          <Annotation Term="OData.Description" String="The available OEM-specific actions for this Resource."/>
319          <Annotation Term="OData.LongDescription" String="This property shall contain the available OEM-specific actions for this resource."/>
320        </Property>
321      </ComplexType>
322
323      <ComplexType Name="OemActions">
324        <Annotation Term="OData.AdditionalProperties" Bool="true"/>
325        <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/>
326        <Annotation Term="OData.LongDescription" String="This type shall contain the available OEM-specific actions for this resource."/>
327      </ComplexType>
328    </Schema>
329
330    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerNetworkProtocol.v1_2_1">
331      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
332      <Annotation Term="OData.Description" String="This version was created to force the regeneration of JSON Schema so that OData properties are marked as required, and integer properties are marked as integer rather than number.  It was also created to clarify that the DHCP property is for DHCPv4."/>
333      <EntityType Name="ManagerNetworkProtocol" BaseType="ManagerNetworkProtocol.v1_2_0.ManagerNetworkProtocol"/>
334    </Schema>
335
336    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerNetworkProtocol.v1_2_2">
337      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
338      <Annotation Term="OData.Description" String="This version was created to force the regeneration of JSON Schema so that URI properties use the uri-reference format."/>
339      <EntityType Name="ManagerNetworkProtocol" BaseType="ManagerNetworkProtocol.v1_2_1.ManagerNetworkProtocol"/>
340    </Schema>
341
342    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerNetworkProtocol.v1_2_3">
343      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
344      <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
345      <EntityType Name="ManagerNetworkProtocol" BaseType="ManagerNetworkProtocol.v1_2_2.ManagerNetworkProtocol"/>
346    </Schema>
347
348    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerNetworkProtocol.v1_2_4">
349      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
350      <Annotation Term="OData.Description" String="This version was created to update the descriptions for the VirtualMedia and KVMIP properties."/>
351      <EntityType Name="ManagerNetworkProtocol" BaseType="ManagerNetworkProtocol.v1_2_3.ManagerNetworkProtocol"/>
352    </Schema>
353
354    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerNetworkProtocol.v1_2_5">
355      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
356      <Annotation Term="OData.Description" String="This version was created to fix typos in descriptions and long descriptions."/>
357      <EntityType Name="ManagerNetworkProtocol" BaseType="ManagerNetworkProtocol.v1_2_4.ManagerNetworkProtocol"/>
358    </Schema>
359
360    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerNetworkProtocol.v1_2_6">
361      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
362      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
363      <EntityType Name="ManagerNetworkProtocol" BaseType="ManagerNetworkProtocol.v1_2_5.ManagerNetworkProtocol"/>
364    </Schema>
365
366    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerNetworkProtocol.v1_3_0">
367      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
368      <Annotation Term="Redfish.Release" String="2018.2"/>
369      <EntityType Name="ManagerNetworkProtocol" BaseType="ManagerNetworkProtocol.v1_2_1.ManagerNetworkProtocol">
370        <Property Name="DHCPv6" Type="ManagerNetworkProtocol.v1_0_0.Protocol" Nullable="false">
371          <Annotation Term="OData.Description" String="The settings for this manager's DHCPv6 protocol support."/>
372          <Annotation Term="OData.LongDescription" String="This object shall contain the DHCPv6 protocol settings for the manager."/>
373        </Property>
374        <Property Name="RDP" Type="ManagerNetworkProtocol.v1_0_0.Protocol" Nullable="false">
375          <Annotation Term="OData.Description" String="The settings for this manager's Remote Desktop Protocol support."/>
376          <Annotation Term="OData.LongDescription" String="This object shall contain the Remote Desktop Protocol settings for the manager."/>
377        </Property>
378        <Property Name="RFB" Type="ManagerNetworkProtocol.v1_0_0.Protocol" Nullable="false">
379          <Annotation Term="OData.Description" String="The settings for this manager's Remote Frame Buffer protocol support, which can support VNC."/>
380          <Annotation Term="OData.LongDescription" String="This object shall contain the Remote Frame Buffer protocol settings for the manager."/>
381        </Property>
382      </EntityType>
383    </Schema>
384
385    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerNetworkProtocol.v1_3_1">
386      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
387      <Annotation Term="OData.Description" String="This version was created to force the regeneration of JSON Schema so that URI properties use the uri-reference format."/>
388      <EntityType Name="ManagerNetworkProtocol" BaseType="ManagerNetworkProtocol.v1_3_0.ManagerNetworkProtocol"/>
389    </Schema>
390
391    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerNetworkProtocol.v1_3_2">
392      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
393      <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
394      <EntityType Name="ManagerNetworkProtocol" BaseType="ManagerNetworkProtocol.v1_3_1.ManagerNetworkProtocol"/>
395    </Schema>
396
397    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerNetworkProtocol.v1_3_3">
398      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
399      <Annotation Term="OData.Description" String="This version was created to update the descriptions for the VirtualMedia and KVMIP properties."/>
400      <EntityType Name="ManagerNetworkProtocol" BaseType="ManagerNetworkProtocol.v1_3_2.ManagerNetworkProtocol"/>
401    </Schema>
402
403    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerNetworkProtocol.v1_3_4">
404      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
405      <Annotation Term="OData.Description" String="This version was created to fix typos in descriptions and long descriptions."/>
406      <EntityType Name="ManagerNetworkProtocol" BaseType="ManagerNetworkProtocol.v1_3_3.ManagerNetworkProtocol"/>
407    </Schema>
408
409    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerNetworkProtocol.v1_3_5">
410      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
411      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
412      <EntityType Name="ManagerNetworkProtocol" BaseType="ManagerNetworkProtocol.v1_3_4.ManagerNetworkProtocol"/>
413    </Schema>
414
415    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerNetworkProtocol.v1_4_0">
416      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
417      <Annotation Term="Redfish.Release" String="2018.3"/>
418      <EntityType Name="ManagerNetworkProtocol" BaseType="ManagerNetworkProtocol.v1_3_0.ManagerNetworkProtocol"/>
419
420      <ComplexType Name="HTTPSProtocol" BaseType="ManagerNetworkProtocol.v1_0_0.HTTPSProtocol">
421        <NavigationProperty Name="Certificates" Type="CertificateCollection.CertificateCollection" ContainsTarget="true" Nullable="false">
422          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
423          <Annotation Term="OData.Description" String="The link to a collection of certificates used for HTTPS by this manager."/>
424          <Annotation Term="OData.LongDescription" String="This property shall contain a link to a Resource Collection of type CertificateCollection."/>
425          <Annotation Term="OData.AutoExpandReferences"/>
426        </NavigationProperty>
427      </ComplexType>
428    </Schema>
429
430    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerNetworkProtocol.v1_4_1">
431      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
432      <Annotation Term="OData.Description" String="This version was created to force the regeneration of JSON Schema so that URI properties use the uri-reference format."/>
433      <EntityType Name="ManagerNetworkProtocol" BaseType="ManagerNetworkProtocol.v1_4_0.ManagerNetworkProtocol"/>
434    </Schema>
435
436    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerNetworkProtocol.v1_4_2">
437      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
438      <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
439      <EntityType Name="ManagerNetworkProtocol" BaseType="ManagerNetworkProtocol.v1_4_1.ManagerNetworkProtocol"/>
440    </Schema>
441
442    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerNetworkProtocol.v1_4_3">
443      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
444      <Annotation Term="OData.Description" String="This version was created to update the descriptions for the VirtualMedia and KVMIP properties."/>
445      <EntityType Name="ManagerNetworkProtocol" BaseType="ManagerNetworkProtocol.v1_4_2.ManagerNetworkProtocol"/>
446    </Schema>
447
448    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerNetworkProtocol.v1_4_4">
449      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
450      <Annotation Term="OData.Description" String="This version was created to fix typos in descriptions and long descriptions."/>
451      <EntityType Name="ManagerNetworkProtocol" BaseType="ManagerNetworkProtocol.v1_4_3.ManagerNetworkProtocol"/>
452    </Schema>
453
454    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerNetworkProtocol.v1_4_5">
455      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
456      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
457      <EntityType Name="ManagerNetworkProtocol" BaseType="ManagerNetworkProtocol.v1_4_4.ManagerNetworkProtocol"/>
458    </Schema>
459
460    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerNetworkProtocol.v1_5_0">
461      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
462      <Annotation Term="Redfish.Release" String="2019.3"/>
463
464      <EntityType Name="ManagerNetworkProtocol" BaseType="ManagerNetworkProtocol.v1_4_2.ManagerNetworkProtocol"/>
465
466      <ComplexType Name="SNMPProtocol" BaseType="ManagerNetworkProtocol.v1_0_0.SNMPProtocol">
467        <Annotation Term="OData.AdditionalProperties" Bool="false"/>
468        <Property Name="EnableSNMPv1" Type="Edm.Boolean">
469          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
470          <Annotation Term="OData.Description" String="Indicates if access via SNMPv1 is enabled."/>
471          <Annotation Term="OData.LongDescription" String="This property shall indicate if access to the SNMP service on this manager using the SNMPv1 protocol is enabled."/>
472        </Property>
473        <Property Name="EnableSNMPv2c" Type="Edm.Boolean">
474          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
475          <Annotation Term="OData.Description" String="Indicates if access via SNMPv2c is enabled."/>
476          <Annotation Term="OData.LongDescription" String="This property shall indicate if access to the SNMP service on this manager using the SNMPv2c protocol is enabled."/>
477        </Property>
478        <Property Name="EnableSNMPv3" Type="Edm.Boolean">
479          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
480          <Annotation Term="OData.Description" String="Indicates if access via SNMPv3 is enabled."/>
481          <Annotation Term="OData.LongDescription" String="This property shall indicate if access to the SNMP service on this manager using the SNMPv3 protocol is enabled."/>
482        </Property>
483        <Property Name="CommunityStrings" Type="Collection(ManagerNetworkProtocol.v1_5_0.SNMPCommunity)">
484          <Annotation Term="OData.Description" String="The SNMP community strings."/>
485          <Annotation Term="OData.LongDescription" String="This property shall contain an array of the SNMP community strings used to access an SNMP manager."/>
486        </Property>
487        <Property Name="CommunityAccessMode" Type="ManagerNetworkProtocol.v1_5_0.SNMPCommunityAccessMode">
488          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
489          <Annotation Term="OData.Description" String="The access level of the SNMP community."/>
490          <Annotation Term="OData.LongDescription" String="This property shall contain the access/privilege level of the SNMP community used to access an SNMP manager."/>
491          <Annotation Term="Redfish.Revisions">
492            <Collection>
493              <Record>
494                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
495                <PropertyValue Property="Version" String="v1_10_0"/>
496                <PropertyValue Property="Description" String="This property has been deprecated in favor of AccessMode inside CommunityStrings."/>
497              </Record>
498            </Collection>
499          </Annotation>
500        </Property>
501        <Property Name="EngineId" Type="ManagerNetworkProtocol.v1_5_0.EngineId">
502          <Annotation Term="OData.Description" String="The engine ID."/>
503          <Annotation Term="OData.LongDescription" String="This property shall contain the RFC3411-defined engine ID."/>
504        </Property>
505        <Property Name="HideCommunityStrings" Type="Edm.Boolean">
506          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
507          <Annotation Term="OData.Description" String="Indicates if the community strings should be hidden."/>
508          <Annotation Term="OData.LongDescription" String="This property shall indicate if the community strings should be hidden in responses."/>
509        </Property>
510        <Property Name="AuthenticationProtocol" Type="ManagerNetworkProtocol.v1_5_0.SNMPAuthenticationProtocols">
511          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
512          <Annotation Term="OData.Description" String="The authentication protocol used for SNMP access to this manager."/>
513          <Annotation Term="OData.LongDescription" String="This property shall contain the SNMP authentication protocol used to access this manager.  When the property contains the value `Account`, the SNMP settings in each manager account are used for authentication."/>
514        </Property>
515        <Property Name="EncryptionProtocol" Type="ManagerNetworkProtocol.v1_5_0.SNMPEncryptionProtocols">
516          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
517          <Annotation Term="OData.Description" String="The encryption protocol used for SNMPv3 access to this manager."/>
518          <Annotation Term="OData.LongDescription" String="This property shall contain the SNMPv3 encryption protocol used to access this manager, unless AuthenticationProtocol contains the value `Account`."/>
519        </Property>
520      </ComplexType>
521
522      <ComplexType Name="SNMPCommunity">
523        <Annotation Term="OData.AdditionalProperties" Bool="false"/>
524        <Annotation Term="OData.Description" String="An SNMP community strings."/>
525        <Annotation Term="OData.LongDescription" String="This object shall contain an SNMP community string used to access an SNMP manager."/>
526        <Property Name="Name" Type="Edm.String">
527          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
528          <Annotation Term="OData.Description" String="The name of the SNMP community."/>
529          <Annotation Term="OData.LongDescription" String="This property shall contain a display name describing the SNMP community."/>
530        </Property>
531        <Property Name="CommunityString" Type="Edm.String">
532          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
533          <Annotation Term="OData.Description" String="The SNMP community string."/>
534          <Annotation Term="OData.LongDescription" String="This property shall contain the SNMP community string used for accessing an SNMP service on this manager.  If HideCommunityStrings is `true`, this value shall be `null` in responses."/>
535        </Property>
536        <Property Name="AccessMode" Type="ManagerNetworkProtocol.v1_5_0.SNMPCommunityAccessMode">
537          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
538          <Annotation Term="OData.Description" String="The access level of the SNMP community."/>
539          <Annotation Term="OData.LongDescription" String="This property shall contain the access/privilege level of the SNMP community used to access an SNMP manager."/>
540        </Property>
541      </ComplexType>
542
543      <ComplexType Name="EngineId">
544        <Annotation Term="OData.AdditionalProperties" Bool="false"/>
545        <Annotation Term="OData.Description" String="The engine ID."/>
546        <Annotation Term="OData.LongDescription" String="This object shall contain the RFC3411-defined engine ID."/>
547        <Property Name="PrivateEnterpriseId" Type="Edm.String">
548          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
549          <Annotation Term="OData.Description" String="The private enterprise ID."/>
550          <Annotation Term="OData.LongDescription" String="This property shall contain an RFC3411-defined private enterprise ID."/>
551          <Annotation Term="Validation.Pattern" String="^([A-Fa-f0-9]{2} ){3}[A-Fa-f0-9]{2}$"/>
552        </Property>
553        <Property Name="EnterpriseSpecificMethod" Type="Edm.String">
554          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
555          <Annotation Term="OData.Description" String="The enterprise-specific method."/>
556          <Annotation Term="OData.LongDescription" String="This property shall contain the enterprise-specific method as described in item 2 of the snmpEngineID syntax of RFC3411.  The full RFC3411-defined snmpEngineID is formed from the concatenation of the value in the PrivateEnterpriseId property and the value in this property.  If the most significant bit in PrivateEnterpriseId is set to one, this property shall not be present."/>
557          <Annotation Term="Validation.Pattern" String="^([A-Fa-f0-9]{2} ){7}[A-Fa-f0-9]{2}$"/>
558        </Property>
559      </ComplexType>
560
561      <EnumType Name="SNMPCommunityAccessMode">
562        <Member Name="Full">
563          <Annotation Term="OData.Description" String="READ-WRITE access mode."/>
564          <Annotation Term="OData.LongDescription" String="This value shall indicate the RFC1157-defined READ-WRITE access mode."/>
565        </Member>
566        <Member Name="Limited">
567          <Annotation Term="OData.Description" String="READ-ONLY access mode."/>
568          <Annotation Term="OData.LongDescription" String="This value shall indicate the RFC1157-defined READ-ONLY access mode."/>
569        </Member>
570      </EnumType>
571
572      <EnumType Name="SNMPAuthenticationProtocols">
573        <Member Name="Account">
574          <Annotation Term="OData.Description" String="Authentication is determined by account settings."/>
575          <Annotation Term="OData.LongDescription" String="This value shall indicate authentication for SNMPv3 access is determined based on the corresponding account settings."/>
576        </Member>
577        <Member Name="CommunityString">
578          <Annotation Term="OData.Description" String="SNMP community string authentication."/>
579          <Annotation Term="OData.LongDescription" String="This value shall indicate authentication uses SNMP community strings."/>
580        </Member>
581        <Member Name="HMAC_MD5">
582          <Annotation Term="OData.Description" String="HMAC-MD5-96 authentication."/>
583          <Annotation Term="OData.LongDescription" String="This value shall indicate authentication for SNMPv3 access conforms to the RFC3414-defined HMAC-MD5-96 authentication protocol."/>
584        </Member>
585        <Member Name="HMAC_SHA96">
586          <Annotation Term="OData.Description" String="HMAC-SHA-96 authentication."/>
587          <Annotation Term="OData.LongDescription" String="This value shall indicate authentication for SNMPv3 access conforms to the RFC3414-defined HMAC-SHA-96 authentication protocol."/>
588        </Member>
589        <Member Name="HMAC128_SHA224">
590          <Annotation Term="OData.Description" String="HMAC-128-SHA-224 authentication."/>
591          <Annotation Term="OData.LongDescription" String="This value shall indicate authentication for SNMPv3 access conforms to the RFC7860-defined usmHMAC128SHA224AuthProtocol."/>
592          <Annotation Term="Redfish.Revisions">
593            <Collection>
594              <Record>
595                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
596                <PropertyValue Property="Version" String="v1_7_0"/>
597              </Record>
598            </Collection>
599          </Annotation>
600        </Member>
601        <Member Name="HMAC192_SHA256">
602          <Annotation Term="OData.Description" String="HMAC-192-SHA-256 authentication."/>
603          <Annotation Term="OData.LongDescription" String="This value shall indicate authentication for SNMPv3 access conforms to the RFC7860-defined usmHMAC192SHA256AuthProtocol."/>
604          <Annotation Term="Redfish.Revisions">
605            <Collection>
606              <Record>
607                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
608                <PropertyValue Property="Version" String="v1_7_0"/>
609              </Record>
610            </Collection>
611          </Annotation>
612        </Member>
613        <Member Name="HMAC256_SHA384">
614          <Annotation Term="OData.Description" String="HMAC-256-SHA-384 authentication."/>
615          <Annotation Term="OData.LongDescription" String="This value shall indicate authentication for SNMPv3 access conforms to the RFC7860-defined usmHMAC256SHA384AuthProtocol."/>
616          <Annotation Term="Redfish.Revisions">
617            <Collection>
618              <Record>
619                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
620                <PropertyValue Property="Version" String="v1_7_0"/>
621              </Record>
622            </Collection>
623          </Annotation>
624        </Member>
625        <Member Name="HMAC384_SHA512">
626          <Annotation Term="OData.Description" String="HMAC-384-SHA-512 authentication."/>
627          <Annotation Term="OData.LongDescription" String="This value shall indicate authentication for SNMPv3 access conforms to the RFC7860-defined usmHMAC384SHA512AuthProtocol."/>
628          <Annotation Term="Redfish.Revisions">
629            <Collection>
630              <Record>
631                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
632                <PropertyValue Property="Version" String="v1_7_0"/>
633              </Record>
634            </Collection>
635          </Annotation>
636        </Member>
637      </EnumType>
638
639      <EnumType Name="SNMPEncryptionProtocols">
640        <Member Name="None">
641          <Annotation Term="OData.Description" String="No encryption."/>
642          <Annotation Term="OData.LongDescription" String="This value shall indicate there is no encryption."/>
643        </Member>
644        <Member Name="Account">
645          <Annotation Term="OData.Description" String="Encryption is determined by account settings."/>
646          <Annotation Term="OData.LongDescription" String="This value shall indicate encryption is determined based on the corresponding account settings."/>
647        </Member>
648        <Member Name="CBC_DES">
649          <Annotation Term="OData.Description" String="CBC-DES encryption."/>
650          <Annotation Term="OData.LongDescription" String="This value shall indicate encryption conforms to the RFC3414-defined CBC-DES encryption protocol."/>
651        </Member>
652        <Member Name="CFB128_AES128">
653          <Annotation Term="OData.Description" String="CFB128-AES-128 encryption."/>
654          <Annotation Term="OData.LongDescription" String="This value shall indicate encryption conforms to the RFC3826-defined CFB128-AES-128 encryption protocol."/>
655        </Member>
656        <Member Name="CFB128_AES192">
657          <Annotation Term="OData.Description" String="CFB128-AES-192 encryption."/>
658          <Annotation Term="OData.LongDescription" String="This value shall indicate encryption conforms to the CFB128-AES-192 encryption protocol, extended from RFC3826."/>
659          <Annotation Term="Redfish.Revisions">
660            <Collection>
661              <Record>
662                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
663                <PropertyValue Property="Version" String="v1_10_0"/>
664              </Record>
665            </Collection>
666          </Annotation>
667        </Member>
668        <Member Name="CFB128_AES256">
669          <Annotation Term="OData.Description" String="CFB128-AES-256 encryption."/>
670          <Annotation Term="OData.LongDescription" String="This value shall indicate encryption conforms to the CFB128-AES-256 encryption protocol, extended from RFC3826."/>
671          <Annotation Term="Redfish.Revisions">
672            <Collection>
673              <Record>
674                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
675                <PropertyValue Property="Version" String="v1_10_0"/>
676              </Record>
677            </Collection>
678          </Annotation>
679        </Member>
680      </EnumType>
681    </Schema>
682
683    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerNetworkProtocol.v1_5_1">
684      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
685      <Annotation Term="OData.Description" String="This version was created to update the description for the EnterpriseSpecificMethod property.  It was also created to fix the permissions on the SNMP engine ID properties."/>
686      <EntityType Name="ManagerNetworkProtocol" BaseType="ManagerNetworkProtocol.v1_5_0.ManagerNetworkProtocol"/>
687    </Schema>
688
689    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerNetworkProtocol.v1_5_2">
690      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
691      <Annotation Term="OData.Description" String="This version was created to update the descriptions for SNMP-related properties to clarify that they apply to the manager's SNMP support.  It was also created to update the descriptions for the VirtualMedia and KVMIP properties."/>
692      <EntityType Name="ManagerNetworkProtocol" BaseType="ManagerNetworkProtocol.v1_5_1.ManagerNetworkProtocol"/>
693    </Schema>
694
695    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerNetworkProtocol.v1_5_3">
696      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
697      <Annotation Term="OData.Description" String="This version was created to fix typos in descriptions and long descriptions."/>
698      <EntityType Name="ManagerNetworkProtocol" BaseType="ManagerNetworkProtocol.v1_5_2.ManagerNetworkProtocol"/>
699    </Schema>
700
701    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerNetworkProtocol.v1_5_4">
702      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
703      <Annotation Term="OData.Description" String="This version was created to make EnterpriseSpecificMethod writable."/>
704      <EntityType Name="ManagerNetworkProtocol" BaseType="ManagerNetworkProtocol.v1_5_3.ManagerNetworkProtocol"/>
705    </Schema>
706
707    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerNetworkProtocol.v1_5_5">
708      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
709      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
710      <EntityType Name="ManagerNetworkProtocol" BaseType="ManagerNetworkProtocol.v1_5_4.ManagerNetworkProtocol"/>
711    </Schema>
712
713    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerNetworkProtocol.v1_6_0">
714      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
715      <Annotation Term="Redfish.Release" String="2020.1"/>
716
717      <EntityType Name="ManagerNetworkProtocol" BaseType="ManagerNetworkProtocol.v1_5_1.ManagerNetworkProtocol"/>
718
719      <ComplexType Name="EngineId" BaseType="ManagerNetworkProtocol.v1_5_0.EngineId">
720        <Property Name="ArchitectureId" Type="Edm.String">
721          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
722          <Annotation Term="OData.Description" String="The architecture identifier."/>
723          <Annotation Term="OData.LongDescription" String="This property shall contain the architecture identifier as described in item 3 of the snmpEngineID syntax of RFC3411.  The full RFC3411-defined snmpEngineID is formed from the concatenation of the value in the PrivateEnterpriseId property and the value in this property.  If the most significant bit in PrivateEnterpriseId is set to zero, this property shall not be present."/>
724          <Annotation Term="Validation.Pattern" String="^([A-Fa-f0-9]{2} ){0,27}[A-Fa-f0-9]{2}$"/>
725        </Property>
726      </ComplexType>
727    </Schema>
728
729    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerNetworkProtocol.v1_6_1">
730      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
731      <Annotation Term="OData.Description" String="This version was created to update the descriptions for SNMP-related properties to clarify that they apply to the manager's SNMP support.  It was also created to update the descriptions for the VirtualMedia and KVMIP properties."/>
732      <EntityType Name="ManagerNetworkProtocol" BaseType="ManagerNetworkProtocol.v1_6_0.ManagerNetworkProtocol"/>
733    </Schema>
734
735    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerNetworkProtocol.v1_6_2">
736      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
737      <Annotation Term="OData.Description" String="This version was created to fix typos in descriptions and long descriptions."/>
738      <EntityType Name="ManagerNetworkProtocol" BaseType="ManagerNetworkProtocol.v1_6_1.ManagerNetworkProtocol"/>
739    </Schema>
740
741    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerNetworkProtocol.v1_6_3">
742      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
743      <Annotation Term="OData.Description" String="This version was created to make EnterpriseSpecificMethod and ArchitectureId writable."/>
744      <EntityType Name="ManagerNetworkProtocol" BaseType="ManagerNetworkProtocol.v1_6_2.ManagerNetworkProtocol"/>
745    </Schema>
746
747    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerNetworkProtocol.v1_6_4">
748      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
749      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
750      <EntityType Name="ManagerNetworkProtocol" BaseType="ManagerNetworkProtocol.v1_6_3.ManagerNetworkProtocol"/>
751    </Schema>
752
753    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerNetworkProtocol.v1_7_0">
754      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
755      <Annotation Term="Redfish.Release" String="2020.4"/>
756      <Annotation Term="OData.Description" String="This version was created to add additional SNMP authentication protocols."/>
757
758      <EntityType Name="ManagerNetworkProtocol" BaseType="ManagerNetworkProtocol.v1_6_2.ManagerNetworkProtocol"/>
759    </Schema>
760
761    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerNetworkProtocol.v1_7_1">
762      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
763      <Annotation Term="OData.Description" String="This version was created to make EnterpriseSpecificMethod and ArchitectureId writable."/>
764      <EntityType Name="ManagerNetworkProtocol" BaseType="ManagerNetworkProtocol.v1_7_0.ManagerNetworkProtocol"/>
765    </Schema>
766
767    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerNetworkProtocol.v1_7_2">
768      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
769      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
770      <EntityType Name="ManagerNetworkProtocol" BaseType="ManagerNetworkProtocol.v1_7_1.ManagerNetworkProtocol"/>
771    </Schema>
772
773    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerNetworkProtocol.v1_8_0">
774      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
775      <Annotation Term="Redfish.Release" String="2021.2"/>
776      <Annotation Term="OData.Description" String="This version was created to add proxy support."/>
777
778      <EntityType Name="ManagerNetworkProtocol" BaseType="ManagerNetworkProtocol.v1_7_0.ManagerNetworkProtocol">
779        <Property Name="Proxy" Type="ManagerNetworkProtocol.v1_8_0.ProxyConfiguration">
780          <Annotation Term="OData.Description" String="The HTTP/HTTPS proxy information for this manager."/>
781          <Annotation Term="OData.LongDescription" String="This property shall contain the HTTP/HTTPS proxy configuration for this manager."/>
782        </Property>
783      </EntityType>
784
785      <ComplexType Name="ProxyConfiguration">
786        <Annotation Term="OData.AdditionalProperties" Bool="false"/>
787        <Annotation Term="OData.Description" String="The HTTP/HTTPS proxy information for a manager."/>
788        <Annotation Term="OData.LongDescription" String="This property shall contain the HTTP/HTTPS proxy configuration for a manager."/>
789        <Property Name="Enabled" Type="Edm.Boolean" Nullable="false">
790          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
791          <Annotation Term="OData.Description" String="Indicates if the manager uses the proxy server."/>
792          <Annotation Term="OData.LongDescription" String="This property shall indicate if the proxy server is used for communications."/>
793        </Property>
794        <Property Name="ProxyServerURI" Type="Edm.String" Nullable="false">
795          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
796          <Annotation Term="OData.Description" String="The URI of the proxy server, including the scheme and any non-default port value."/>
797          <Annotation Term="OData.LongDescription" String="This property shall contain the URI of the proxy server.  The value shall contain the scheme for accessing the server, and shall include the port if the value is not the default port for the specified scheme."/>
798          <Annotation Term="OData.IsURL"/>
799        </Property>
800        <Property Name="Username" Type="Edm.String" Nullable="false">
801          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
802          <Annotation Term="OData.Description" String="The username for the proxy."/>
803          <Annotation Term="OData.LongDescription" String="This property shall contain the username for this proxy."/>
804        </Property>
805        <Property Name="Password" Type="Edm.String">
806          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Write"/>
807          <Annotation Term="OData.Description" String="The password for the proxy.  The value is `null` in responses."/>
808          <Annotation Term="OData.LongDescription" String="This property shall contain the password for this proxy.  The value shall be `null` in responses."/>
809        </Property>
810        <Property Name="PasswordSet" Type="Edm.Boolean" Nullable="false">
811          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
812          <Annotation Term="OData.Description" String="Indicates if the Password property is set."/>
813          <Annotation Term="OData.LongDescription" String="This property shall contain `true` if a valid value was provided for the Password property.  Otherwise, the property shall contain `false`."/>
814        </Property>
815        <Property Name="ExcludeAddresses" Type="Collection(Edm.String)">
816          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
817          <Annotation Term="OData.Description" String="Addresses that do not require the proxy server to access."/>
818          <Annotation Term="OData.LongDescription" String="This property shall contain a list of hostnames or IP addresses that do not require a connection through the proxy server to access."/>
819        </Property>
820        <Property Name="ProxyAutoConfigURI" Type="Edm.String">
821          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
822          <Annotation Term="OData.Description" String="The URI used to access a proxy auto-configuration (PAC) file."/>
823          <Annotation Term="OData.LongDescription" String="This property shall contain the URI at which to access a proxy auto-configuration (PAC) file containing one or more JavaScript functions for configuring proxy usage for this manager."/>
824          <Annotation Term="OData.IsURL"/>
825        </Property>
826      </ComplexType>
827    </Schema>
828
829    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerNetworkProtocol.v1_8_1">
830      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
831      <Annotation Term="OData.Description" String="This version was created to make EnterpriseSpecificMethod and ArchitectureId writable."/>
832      <EntityType Name="ManagerNetworkProtocol" BaseType="ManagerNetworkProtocol.v1_8_0.ManagerNetworkProtocol"/>
833    </Schema>
834
835    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerNetworkProtocol.v1_8_2">
836      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
837      <Annotation Term="OData.Description" String="This version was created to mark properties with values containing sensitive data as write-only."/>
838      <EntityType Name="ManagerNetworkProtocol" BaseType="ManagerNetworkProtocol.v1_8_1.ManagerNetworkProtocol"/>
839    </Schema>
840
841    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerNetworkProtocol.v1_8_3">
842      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
843      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
844      <EntityType Name="ManagerNetworkProtocol" BaseType="ManagerNetworkProtocol.v1_8_2.ManagerNetworkProtocol"/>
845    </Schema>
846
847    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerNetworkProtocol.v1_9_0">
848      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
849      <Annotation Term="Redfish.Release" String="2022.2"/>
850
851      <EntityType Name="ManagerNetworkProtocol" BaseType="ManagerNetworkProtocol.v1_8_1.ManagerNetworkProtocol"/>
852
853      <ComplexType Name="NTPProtocol" BaseType="ManagerNetworkProtocol.v1_2_0.NTPProtocol">
854        <Property Name="NetworkSuppliedServers" Type="Collection(Edm.String)">
855          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
856          <Annotation Term="OData.Description" String="The NTP servers supplied by other network protocols to this manager."/>
857          <Annotation Term="OData.LongDescription" String="This property shall contain the NTP servers supplied by other network protocols to this manager.  DHCP is an example of a protocol that can supply NTP servers to this manager."/>
858        </Property>
859      </ComplexType>
860    </Schema>
861
862    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerNetworkProtocol.v1_9_1">
863      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
864      <Annotation Term="OData.Description" String="This version was created to mark properties with values containing sensitive data as write-only."/>
865      <EntityType Name="ManagerNetworkProtocol" BaseType="ManagerNetworkProtocol.v1_9_0.ManagerNetworkProtocol"/>
866    </Schema>
867
868    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerNetworkProtocol.v1_9_2">
869      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
870      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
871      <EntityType Name="ManagerNetworkProtocol" BaseType="ManagerNetworkProtocol.v1_9_1.ManagerNetworkProtocol"/>
872    </Schema>
873
874    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerNetworkProtocol.v1_10_0">
875      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
876      <Annotation Term="Redfish.Release" String="2023.3"/>
877      <Annotation Term="OData.Description" String="This version was created to deprecate CommunityAccessMode in SNMP in favor of AccessMode in CommunityStrings."/>
878
879      <EntityType Name="ManagerNetworkProtocol" BaseType="ManagerNetworkProtocol.v1_9_2.ManagerNetworkProtocol">
880        <Property Name="FTP" Type="ManagerNetworkProtocol.v1_0_0.Protocol" Nullable="false">
881          <Annotation Term="OData.Description" String="The settings for this manager's FTP protocol support."/>
882          <Annotation Term="OData.LongDescription" String="This object shall contain the File Transfer Protocol (FTP) settings for the manager.  The default Port property value should be `21` for compatibility with established client implementations."/>
883        </Property>
884        <Property Name="SFTP" Type="ManagerNetworkProtocol.v1_0_0.Protocol" Nullable="false">
885          <Annotation Term="OData.Description" String="The settings for this manager's Secure Shell File Transfer Protocol (SFTP) support."/>
886          <Annotation Term="OData.LongDescription" String="This object shall contain the Secure Shell File Transfer Protocol (SFTP) protocol settings for the manager.  The default value should be `22` for compatibility with established client implementations."/>
887        </Property>
888        <Property Name="FTPS" Type="ManagerNetworkProtocol.v1_0_0.Protocol" Nullable="false">
889          <Annotation Term="OData.Description" String="The settings for this manager's FTP over SSL (FTPS) protocol support that apply to all system instances controlled by this manager."/>
890          <Annotation Term="OData.LongDescription" String="This object shall contain the File Transfer Protocol over SSL (FTPS) settings for the manager.  The default value should be `21` for compatibility with established client implementations."/>
891        </Property>
892      </EntityType>
893
894      <ComplexType Name="SNMPProtocol" BaseType="ManagerNetworkProtocol.v1_5_0.SNMPProtocol">
895        <Property Name="TrapPort" Type="Edm.Int64">
896          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
897          <Annotation Term="OData.Description" String="The SNMP trap port."/>
898          <Annotation Term="OData.LongDescription" String="This property shall contain the port assigned to SNMP traps."/>
899          <Annotation Term="Validation.Minimum" Int="0"/>
900        </Property>
901      </ComplexType>
902
903      <ComplexType Name="SNMPCommunity" BaseType="ManagerNetworkProtocol.v1_5_0.SNMPCommunity">
904        <Property Name="RestrictCommunityToIPv4AddressRange" Type="Edm.Boolean" Nullable="false">
905          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
906          <Annotation Term="OData.Description" String="Indicates if this community is restricted to accessing the service from a range of IPv4 addresses."/>
907          <Annotation Term="OData.LongDescription" String="This property shall indicate if this community is restricted to accessing the service from a range of IPv4 addresses.  If `true`, SNMP access using this community string is restricted to the range of IPv4 addresses defined by the IPv4AddressRangeLower and IPv4AddressRangeUpper properties."/>
908        </Property>
909        <Property Name="IPv4AddressRangeLower" Type="Edm.String">
910          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
911          <Annotation Term="OData.Description" String="The lowest IPv4 address in the range allowed to access the service."/>
912          <Annotation Term="OData.LongDescription" String="This property shall contain the lowest IPv4 address in the range allowed to access the SNMP service using this community string.  If RestrictCommunityToIPv4AddressRange contains `true`, the service shall enforce this range.  If RestrictCommunityToIPv4AddressRange contains `false`, the service shall not enforce this range."/>
913          <Annotation Term="Validation.Pattern" String="^(?:[0-9]{1,3}\.){3}[0-9]{1,3}$"/>
914        </Property>
915        <Property Name="IPv4AddressRangeUpper" Type="Edm.String">
916          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
917          <Annotation Term="OData.Description" String="The highest IPv4 address in the range allowed to access the service."/>
918          <Annotation Term="OData.LongDescription" String="This property shall contain the upper or highest IPv4 address in the range allowed to access the SNMP service using this community string.  If RestrictCommunityToIPv4AddressRange contains `true`, the service shall enforce this range.  If RestrictCommunityToIPv4AddressRange contains `false`, the service shall not enforce this range."/>
919          <Annotation Term="Validation.Pattern" String="^(?:[0-9]{1,3}\.){3}[0-9]{1,3}$"/>
920        </Property>
921      </ComplexType>
922    </Schema>
923
924  </edmx:DataServices>
925</edmx:Edmx>
926