blob: 50ab3235412d8fe54e8f4450e7c650ae18c520f4 [file] [log] [blame]
Jason M. Billsea4aa752018-06-05 13:29:11 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!---->
3<!--################################################################################ -->
Ed Tanous530520e2019-01-02 13:41:37 -08004<!--# Redfish Schema: NetworkAdapter v1.2.0-->
Jason M. Billsea4aa752018-06-05 13:29:11 -07005<!--# -->
6<!--# For a detailed change log, see the README file contained in the DSP8010 bundle, -->
7<!--# available at http://www.dmtf.org/standards/redfish -->
Ed Tanous530520e2019-01-02 13:41:37 -08008<!--# Copyright 2014-2018 DMTF. -->
Jason M. Billsea4aa752018-06-05 13:29:11 -07009<!--# 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">
Ed Tanous530520e2019-01-02 13:41:37 -080013
Jason M. Billsea4aa752018-06-05 13:29:11 -070014 <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/Resource_v1.xml">
21 <edmx:Include Namespace="Resource"/>
22 <edmx:Include Namespace="Resource.v1_0_0"/>
23 </edmx:Reference>
24 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/RedfishExtensions_v1.xml">
25 <edmx:Include Namespace="RedfishExtensions.v1_0_0" Alias="Redfish"/>
26 </edmx:Reference>
27 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/NetworkPortCollection_v1.xml">
28 <edmx:Include Namespace="NetworkPortCollection"/>
29 </edmx:Reference>
30 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/NetworkPort_v1.xml">
31 <edmx:Include Namespace="NetworkPort"/>
32 </edmx:Reference>
33 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/NetworkDeviceFunctionCollection_v1.xml">
34 <edmx:Include Namespace="NetworkDeviceFunctionCollection"/>
35 </edmx:Reference>
36 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/NetworkDeviceFunction_v1.xml">
37 <edmx:Include Namespace="NetworkDeviceFunction"/>
38 </edmx:Reference>
39 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/PCIeDevice_v1.xml">
40 <edmx:Include Namespace="PCIeDevice"/>
41 </edmx:Reference>
42 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Assembly_v1.xml">
43 <edmx:Include Namespace="Assembly"/>
44 </edmx:Reference>
45
46 <edmx:DataServices>
47
48 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="NetworkAdapter">
49 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
50
51 <EntityType Name="NetworkAdapter" BaseType="Resource.v1_0_0.Resource" Abstract="true">
52 <Annotation Term="OData.Description" String="A NetworkAdapter represents the physical network adapter capable of connecting to a computer network. Examples include but are not limited to Ethernet, Fibre Channel, and converged network adapters."/>
53 <Annotation Term="OData.LongDescription" String="A NetworkAdapter represents the physical network adapter capable of connecting to a computer network. Examples include but are not limited to Ethernet, Fibre Channel, and converged network adapters."/>
54 <Annotation Term="Capabilities.InsertRestrictions">
55 <Record>
56 <PropertyValue Property="Insertable" Bool="false"/>
57 </Record>
58 </Annotation>
59 <Annotation Term="Capabilities.UpdateRestrictions">
60 <Record>
61 <PropertyValue Property="Updatable" Bool="false"/>
62 </Record>
63 </Annotation>
64 <Annotation Term="Capabilities.DeleteRestrictions">
65 <Record>
66 <PropertyValue Property="Deletable" Bool="false"/>
67 </Record>
68 </Annotation>
Ed Tanous530520e2019-01-02 13:41:37 -080069 <Annotation Term="Redfish.Uris">
70 <Collection>
71 <String>/redfish/v1/Chassis/{ChassisId}/NetworkAdapters/{NetworkAdapterId}</String>
72 </Collection>
73 </Annotation>
Jason M. Billsea4aa752018-06-05 13:29:11 -070074 </EntityType>
75
76 <Action Name="ResetSettingsToDefault" IsBound="true">
77 <Parameter Name="NetworkAdapter" Type="NetworkAdapter.v1_0_0.Actions"/>
78 <Annotation Term="OData.Description" String="This action is to clear the settings back to factory defaults."/>
79 <Annotation Term="OData.LongDescription" String="This action shall perform a reset of all active and pending settings back to factory default settings upon reset of the network adapter."/>
80 </Action>
81
82 </Schema>
83
84 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="NetworkAdapter.v1_0_0">
85 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
86
87 <EntityType Name="NetworkAdapter" BaseType="NetworkAdapter.NetworkAdapter">
88 <Annotation Term="OData.Description" String="A NetworkAdapter represents the physical network adapter capable of connecting to a computer network. Examples include but are not limited to Ethernet, Fibre Channel, and converged network adapters."/>
89 <Annotation Term="OData.LongDescription" String="A NetworkAdapter represents the physical network adapter capable of connecting to a computer network. Examples include but are not limited to Ethernet, Fibre Channel, and converged network adapters."/>
Ed Tanous530520e2019-01-02 13:41:37 -080090 <Property Name="Status" Type="Resource.Status" Nullable="false">
91 <Annotation Term="OData.Description" String="This property describes the status and health of the resource and its children."/>
92 <Annotation Term="OData.LongDescription" String="This property shall contain any status or health properties of the resource."/>
93 </Property>
Jason M. Billsea4aa752018-06-05 13:29:11 -070094 <NavigationProperty Name="NetworkPorts" Type="NetworkPortCollection.NetworkPortCollection" ContainsTarget="true" Nullable="false">
95 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanous530520e2019-01-02 13:41:37 -080096 <Annotation Term="OData.Description" String="A reference to the collection of NetworkPorts associated with this NetworkAdapter."/>
97 <Annotation Term="OData.LongDescription" String="The value of this property shall be a link to a collection of type NetworkPortCollection."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -070098 <Annotation Term="OData.AutoExpandReferences"/>
99 </NavigationProperty>
100 <NavigationProperty Name="NetworkDeviceFunctions" Type="NetworkDeviceFunctionCollection.NetworkDeviceFunctionCollection" ContainsTarget="true" Nullable="false">
101 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanous530520e2019-01-02 13:41:37 -0800102 <Annotation Term="OData.Description" String="A reference to the collection of NetworkDeviceFunctions associated with this NetworkAdapter."/>
103 <Annotation Term="OData.LongDescription" String="The value of this property shall be a link to a collection of type NetworkDeviceFunctionCollection."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700104 <Annotation Term="OData.AutoExpandReferences"/>
105 </NavigationProperty>
106 <Property Name="Manufacturer" Type="Edm.String">
107 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
108 <Annotation Term="OData.Description" String="The manufacturer or OEM of this network adapter."/>
109 <Annotation Term="OData.LongDescription" String="The value of this property shall contain a value that represents the manufacturer of the network adapter."/>
110 </Property>
111 <Property Name="Model" Type="Edm.String">
112 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
113 <Annotation Term="OData.Description" String="The model string for this network adapter."/>
114 <Annotation Term="OData.LongDescription" String="The value of this property shall contain the information about how the manufacturer references this network adapter."/>
115 </Property>
116 <Property Name="SKU" Type="Edm.String">
117 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
118 <Annotation Term="OData.Description" String="The manufacturer SKU for this network adapter."/>
119 <Annotation Term="OData.LongDescription" String="The value of this property shall contain the Stock Keeping Unit (SKU) for the network adapter."/>
120 </Property>
121 <Property Name="SerialNumber" Type="Edm.String">
122 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
123 <Annotation Term="OData.Description" String="The serial number for this network adapter."/>
124 <Annotation Term="OData.LongDescription" String="The value of this property shall contain the serial number for the network adapter."/>
125 </Property>
126 <Property Name="PartNumber" Type="Edm.String">
127 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
128 <Annotation Term="OData.Description" String="Part number for this network adapter."/>
129 <Annotation Term="OData.LongDescription" String="The value of this property shall contain the part number for the network adapter as defined by the manufacturer."/>
130 </Property>
131 <Property Name="Controllers" Type="Collection(NetworkAdapter.v1_0_0.Controllers)">
132 <Annotation Term="OData.Description" String="The set of network controllers ASICs that make up this NetworkAdapter."/>
133 <Annotation Term="OData.LongDescription" String="The value of this property shall contain the set of network controllers ASICs that make up this NetworkAdapter."/>
134 </Property>
135 <Property Name="Actions" Type="NetworkAdapter.v1_0_0.Actions" Nullable="false">
136 <Annotation Term="OData.Description" String="The available actions for this resource."/>
137 <Annotation Term="OData.LongDescription" String="The Actions property shall contain the available actions for this resource."/>
138 </Property>
139 </EntityType>
140
141 <ComplexType Name="Actions">
142 <Annotation Term="OData.AdditionalProperties" Bool="false"/>
143 <Annotation Term="OData.Description" String="The available actions for this resource."/>
144 <Annotation Term="OData.LongDescription" String="This type shall contain the available actions for this resource."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800145 <Property Name="Oem" Type="NetworkAdapter.v1_0_0.OemActions" Nullable="false">
146 <Annotation Term="OData.Description" String="This property contains the available OEM specific actions for this resource."/>
147 <Annotation Term="OData.LongDescription" String="This property shall contain any additional OEM actions for this resource."/>
148 </Property>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700149 </ComplexType>
150
151 <ComplexType Name="OemActions">
152 <Annotation Term="OData.AdditionalProperties" Bool="true"/>
153 <Annotation Term="OData.Description" String="The available OEM specific actions for this resource."/>
154 <Annotation Term="OData.LongDescription" String="This type shall contain any additional OEM actions for this resource."/>
155 </ComplexType>
156
157 <ComplexType Name="Controllers">
158 <Annotation Term="OData.Description" String="A network controller ASIC that makes up part of a NetworkAdapter."/>
159 <Annotation Term="OData.LongDescription" String="This type shall describe a network controller ASIC that makes up part of a NetworkAdapter."/>
160 <Property Name="FirmwarePackageVersion" Type="Edm.String">
161 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
162 <Annotation Term="OData.Description" String="The version of the user-facing firmware package."/>
163 <Annotation Term="OData.LongDescription" String="The value of this property shall be the version number of the user-facing firmware package."/>
164 </Property>
165 <Property Name="Links" Type="NetworkAdapter.v1_0_0.ControllerLinks" Nullable="false">
166 <Annotation Term="OData.Description" String="Links."/>
167 <Annotation Term="OData.LongDescription" String="Links for this controller."/>
168 </Property>
169 <Property Name="ControllerCapabilities" Type="NetworkAdapter.v1_0_0.ControllerCapabilities">
170 <Annotation Term="OData.Description" String="The capabilities of this controller."/>
171 <Annotation Term="OData.LongDescription" String="The value of this property shall contain the capabilities of this controller."/>
172 </Property>
173 </ComplexType>
174
175 <ComplexType Name="ControllerCapabilities">
176 <Annotation Term="OData.Description" String="The capabilities of a controller."/>
177 <Annotation Term="OData.LongDescription" String="This type shall describe the capabilities of a controller."/>
178 <Property Name="NetworkPortCount" Type="Edm.Int64">
179 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
180 <Annotation Term="OData.Description" String="The number of physical ports on this controller."/>
181 <Annotation Term="OData.LongDescription" String="The value of this property shall be the number of physical ports on this controller."/>
182 </Property>
183 <Property Name="NetworkDeviceFunctionCount" Type="Edm.Int64">
184 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
185 <Annotation Term="OData.Description" String="The maximum number of physical functions available on this controller."/>
186 <Annotation Term="OData.LongDescription" String="The value of this property shall be the number of physical functions available on this controller."/>
187 </Property>
188 <Property Name="DataCenterBridging" Type="NetworkAdapter.v1_0_0.DataCenterBridging">
189 <Annotation Term="OData.Description" String="Data Center Bridging (DCB) for this controller."/>
190 <Annotation Term="OData.LongDescription" String="This object shall contain capability, status, and configuration values related to Data Center Bridging (DCB) for this controller."/>
191 </Property>
192 <Property Name="VirtualizationOffload" Type="NetworkAdapter.v1_0_0.VirtualizationOffload">
193 <Annotation Term="OData.Description" String="Virtualization offload for this controller."/>
194 <Annotation Term="OData.LongDescription" String="This object shall contain capability, status, and configuration values related to virtualization offload for this controller."/>
195 </Property>
196 <Property Name="NPIV" Type="NetworkAdapter.v1_0_0.NPIV">
197 <Annotation Term="OData.Description" String="N_Port ID Virtualization (NPIV) capabilties for this controller."/>
198 <Annotation Term="OData.LongDescription" String="This object shall contain N_Port ID Virtualization (NPIV) capabilties for this controller."/>
199 </Property>
200 </ComplexType>
201
202 <ComplexType Name="DataCenterBridging">
203 <Annotation Term="OData.Description" String="Data Center Bridging (DCB) for capabilities of a controller."/>
204 <Annotation Term="OData.LongDescription" String="This type shall describe the capability, status, and configuration values related to Data Center Bridging (DCB) for a controller."/>
205 <Property Name="Capable" Type="Edm.Boolean">
206 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
207 <Annotation Term="OData.Description" String="Whether this controller is capable of Data Center Bridging (DCB)."/>
208 <Annotation Term="OData.LongDescription" String="The value of this property shall be a boolean indicating whether this controller is capable of Data Center Bridging (DCB)."/>
209 </Property>
210 </ComplexType>
211
212 <ComplexType Name="VirtualFunction">
213 <Annotation Term="OData.Description" String="A virtual function of a controller."/>
214 <Annotation Term="OData.LongDescription" String="This type shall describe the capability, status, and configuration values related to a virtual function for a controller."/>
215 <Property Name="DeviceMaxCount" Type="Edm.Int64">
216 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
217 <Annotation Term="OData.Description" String="The maximum number of Virtual Functions (VFs) supported by this controller."/>
218 <Annotation Term="OData.LongDescription" String="The value of this property shall be the maximum number of Virtual Functions (VFs) supported by this controller."/>
219 </Property>
220 <Property Name="NetworkPortMaxCount" Type="Edm.Int64">
221 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
222 <Annotation Term="OData.Description" String="The maximum number of Virtual Functions (VFs) supported per network port for this controller."/>
223 <Annotation Term="OData.LongDescription" String="The value of this property shall be the maximum number of Virtual Functions (VFs) supported per network port for this controller."/>
224 </Property>
225 <Property Name="MinAssignmentGroupSize" Type="Edm.Int64">
226 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
227 <Annotation Term="OData.Description" String="The minimum number of Virtual Functions (VFs) that can be allocated or moved between physical functions for this controller."/>
228 <Annotation Term="OData.LongDescription" String="The value of this property shall be the minimum number of Virtual Functions (VFs) that can be allocated or moved between physical functions for this controller."/>
229 </Property>
230 </ComplexType>
231
232 <ComplexType Name="ControllerLinks" BaseType="Resource.Links">
233 <Annotation Term="OData.Description" String="Contains references to other resources that are related to this resource."/>
234 <Annotation Term="OData.LongDescription" String="This type, as described by the Redfish Specification, shall contain references to resources that are related to, but not contained by (subordinate to), this resource."/>
235 <NavigationProperty Name="PCIeDevices" Type="Collection(PCIeDevice.PCIeDevice)">
236 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanous530520e2019-01-02 13:41:37 -0800237 <Annotation Term="OData.Description" String="An array of references to the PCIeDevices associated with this Network Controller."/>
238 <Annotation Term="OData.LongDescription" String="The value of this property shall be an array of references of type PCIeDevice that represent the PCI-e Devices associated with this Network Controller."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700239 <Annotation Term="OData.AutoExpandReferences"/>
240 </NavigationProperty>
241 <NavigationProperty Name="NetworkPorts" Type="Collection(NetworkPort.NetworkPort)">
242 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanous530520e2019-01-02 13:41:37 -0800243 <Annotation Term="OData.Description" String="An array of references to the NetworkPorts associated with this Network Controller."/>
244 <Annotation Term="OData.LongDescription" String="The value of this property shall be an array of references of type NetworkPort that represent the Network Ports associated with this Network Controller."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700245 <Annotation Term="OData.AutoExpandReferences"/>
246 </NavigationProperty>
247 <NavigationProperty Name="NetworkDeviceFunctions" Type="Collection(NetworkDeviceFunction.NetworkDeviceFunction)">
248 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanous530520e2019-01-02 13:41:37 -0800249 <Annotation Term="OData.Description" String="An array of references to the NetworkDeviceFunctions associated with this Network Controller."/>
250 <Annotation Term="OData.LongDescription" String="The value of this property shall be an array of references of type NetworkDeviceFunction that represent the Network Device Functions associated with this Network Controller."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700251 <Annotation Term="OData.AutoExpandReferences"/>
252 </NavigationProperty>
253 </ComplexType>
254
255 <ComplexType Name="SRIOV">
256 <Annotation Term="OData.Description" String="Single-Root Input/Output Virtualization (SR-IOV) capabilities."/>
257 <Annotation Term="OData.LongDescription" String="This type shall contain Single-Root Input/Output Virtualization (SR-IOV) capabilities."/>
258 <Property Name="SRIOVVEPACapable" Type="Edm.Boolean">
259 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
260 <Annotation Term="OData.Description" String="Whether this controller supports Single Root Input/Output Virtualization (SR-IOV) in Virtual Ethernet Port Aggregator (VEPA) mode."/>
261 <Annotation Term="OData.LongDescription" String="The value of this property shall be a boolean indicating whether this controller supports Single Root Input/Output Virtualization (SR-IOV) in Virtual Ethernet Port Aggregator (VEPA) mode."/>
262 </Property>
263 </ComplexType>
264
265 <ComplexType Name="VirtualizationOffload">
266 <Annotation Term="OData.Description" String="A Virtualization offload capability of a controller."/>
267 <Annotation Term="OData.LongDescription" String="This type shall describe the capability, status, and configuration values related to a virtualization offload for a controller."/>
268 <Property Name="VirtualFunction" Type="NetworkAdapter.v1_0_0.VirtualFunction">
Ed Tanous530520e2019-01-02 13:41:37 -0800269 <Annotation Term="OData.Description" String="The virtual function of the controller."/>
270 <Annotation Term="OData.LongDescription" String="This property shall describe the capability, status, and configuration values related to the virtual function for this controller."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700271 </Property>
272 <Property Name="SRIOV" Type="NetworkAdapter.v1_0_0.SRIOV">
273 <Annotation Term="OData.Description" String="Single-Root Input/Output Virtualization (SR-IOV) capabilities."/>
274 <Annotation Term="OData.LongDescription" String="This object shall contain Single-Root Input/Output Virtualization (SR-IOV) capabilities."/>
275 </Property>
276 </ComplexType>
277
278 <ComplexType Name="NPIV">
279 <Annotation Term="OData.Description" String="N_Port ID Virtualization (NPIV) capabilties for a controller."/>
280 <Annotation Term="OData.LongDescription" String="This type shall contain N_Port ID Virtualization (NPIV) capabilties for a controller."/>
281 <Property Name="MaxDeviceLogins" Type="Edm.Int64">
282 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
283 <Annotation Term="OData.Description" String="The maximum number of N_Port ID Virtualization (NPIV) logins allowed simultaneously from all ports on this controller."/>
284 <Annotation Term="OData.LongDescription" String="The value of this property shall be the maximum number of N_Port ID Virtualization (NPIV) logins allowed simultaneously from all ports on this controller."/>
285 </Property>
286 <Property Name="MaxPortLogins" Type="Edm.Int64">
287 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
288 <Annotation Term="OData.Description" String="The maximum number of N_Port ID Virtualization (NPIV) logins allowed per physical port on this controller."/>
289 <Annotation Term="OData.LongDescription" String="The value of this property shall be the maximum number of N_Port ID Virtualization (NPIV) logins allowed per physical port on this controller."/>
290 </Property>
291 </ComplexType>
292
293 </Schema>
294
295 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="NetworkAdapter.v1_0_1">
296 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
297 <Annotation Term="OData.Description" String="This version was created to remove the Nullable facet on NavigationProperties of type Collection."/>
298 <EntityType Name="NetworkAdapter" BaseType="NetworkAdapter.v1_0_0.NetworkAdapter"/>
299 </Schema>
300
Ed Tanous530520e2019-01-02 13:41:37 -0800301 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="NetworkAdapter.v1_0_2">
302 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
303 <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."/>
304 <EntityType Name="NetworkAdapter" BaseType="NetworkAdapter.v1_0_1.NetworkAdapter"/>
305 </Schema>
306
Jason M. Billsea4aa752018-06-05 13:29:11 -0700307 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="NetworkAdapter.v1_1_0">
308 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
309 <EntityType Name="NetworkAdapter" BaseType="NetworkAdapter.v1_0_1.NetworkAdapter">
310 <NavigationProperty Name="Assembly" Type="Assembly.Assembly" ContainsTarget="true" Nullable="false">
311 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
312 <Annotation Term="OData.Description" String="A reference to the Assembly resource associated with this adapter."/>
313 <Annotation Term="OData.LongDescription" String="The value of this property shall be a link to a resource of type Assembly."/>
314 <Annotation Term="OData.AutoExpandReferences"/>
315 </NavigationProperty>
316 </EntityType>
317
318 <ComplexType Name="Controllers" BaseType="NetworkAdapter.v1_0_0.Controllers">
Ed Tanous530520e2019-01-02 13:41:37 -0800319 <Property Name="Location" Type="Resource.Location" Nullable="false">
320 <Annotation Term="OData.Description" String="The Location of the network adapter controller."/>
321 <Annotation Term="OData.LongDescription" String="This property shall contain location information of the associated network adapter controller."/>
322 </Property>
323 </ComplexType>
324 </Schema>
325
326 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="NetworkAdapter.v1_1_1">
327 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
328 <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."/>
329 <EntityType Name="NetworkAdapter" BaseType="NetworkAdapter.v1_1_0.NetworkAdapter"/>
330 </Schema>
331
332 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="NetworkAdapter.v1_2_0">
333 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
334 <EntityType Name="NetworkAdapter" BaseType="NetworkAdapter.v1_1_1.NetworkAdapter"/>
335
336 <ComplexType Name="Controllers" BaseType="NetworkAdapter.v1_1_0.Controllers">
337 <Property Name="PCIeInterface" Type="PCIeDevice.PCIeInterface">
338 <Annotation Term="OData.Description" String="The PCIe interface details for this controller."/>
339 <Annotation Term="OData.LongDescription" String="This object shall contain details on the PCIe interface used to connect this PCIe-based controller to its host."/>
340 </Property>
341 </ComplexType>
342
343 <ComplexType Name="ControllerCapabilities" BaseType="NetworkAdapter.v1_0_0.ControllerCapabilities">
344 <Property Name="NPAR" Type="NetworkAdapter.v1_2_0.NicPartitioning">
345 <Annotation Term="OData.Description" String="NIC Partitioning (NPAR) capabilities for this controller."/>
346 <Annotation Term="OData.LongDescription" String="This object shall contain capability, status, and configuration values related to NIC partitioning for this controller."/>
347 </Property>
348 </ComplexType>
349
350 <ComplexType Name="NicPartitioning">
351 <Annotation Term="OData.Description" String="NIC Partitioning capability, status, and configuration for a controller."/>
352 <Annotation Term="OData.LongDescription" String="This type shall contain the capability, status, and configuration values for a controller."/>
353 <Property Name="NparCapable" Type="Edm.Boolean">
354 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
355 <Annotation Term="OData.Description" String="Indicates whether or not NIC function partitioning is supported by a controller."/>
356 <Annotation Term="OData.LongDescription" String="This property shall indicate the ability of a controller to support NIC function partitioning."/>
357 </Property>
358 <Property Name="NparEnabled" Type="Edm.Boolean">
359 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
360 <Annotation Term="OData.Description" String="When true, NIC function partitioning is active on this controller."/>
361 <Annotation Term="OData.LongDescription" String="This property shall indicate whether or not NIC function partitioning is active on this controller."/>
362 </Property>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700363 </ComplexType>
364 </Schema>
365
366 </edmx:DataServices>
367</edmx:Edmx>