blob: d124ab64c3c519bea0c65ec9cf5b737b90586f0a [file] [log] [blame]
Jason M. Billsea4aa752018-06-05 13:29:11 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!---->
3<!--################################################################################ -->
Marri Devender Raod45d2d02019-01-21 10:11:34 -06004<!--# Redfish Schema: Endpoint v1.3.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">
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>
Ed Tanous530520e2019-01-02 13:41:37 -080017 <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>
Jason M. Billsea4aa752018-06-05 13:29:11 -070020 <edmx:Reference Uri="http://docs.oasis-open.org/odata/odata/v4.0/errata03/csd01/complete/vocabularies/Org.OData.Measures.V1.xml">
21 <edmx:Include Namespace="Org.OData.Measures.V1" Alias="Measures"/>
22 </edmx:Reference>
23 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/RedfishExtensions_v1.xml">
24 <edmx:Include Namespace="Validation.v1_0_0" Alias="Validation"/>
25 </edmx:Reference>
26 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Resource_v1.xml">
27 <edmx:Include Namespace="Resource"/>
28 <edmx:Include Namespace="Resource.v1_0_0"/>
29 </edmx:Reference>
30 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/RedfishExtensions_v1.xml">
31 <edmx:Include Namespace="RedfishExtensions.v1_0_0" Alias="Redfish"/>
32 </edmx:Reference>
33 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Redundancy_v1.xml">
34 <edmx:Include Namespace="Redundancy"/>
35 </edmx:Reference>
36 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/IPAddresses_v1.xml">
37 <edmx:Include Namespace="IPAddresses"/>
38 </edmx:Reference>
39 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Port_v1.xml">
40 <edmx:Include Namespace="Port"/>
41 </edmx:Reference>
42 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Protocol_v1.xml">
43 <edmx:Include Namespace="Protocol"/>
44 </edmx:Reference>
45 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/NetworkDeviceFunction_v1.xml">
46 <edmx:Include Namespace="NetworkDeviceFunction"/>
47 </edmx:Reference>
48
49 <edmx:DataServices>
50
51 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Endpoint">
52 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
53
54 <EntityType Name="Endpoint" BaseType="Resource.v1_0_0.Resource" Abstract="true">
55 <Annotation Term="OData.Description" String="The Endpoint schema defines the properties of an Endpoint resource. It represents the properties of an entity that sends or receives protocol defined messages over a transport."/>
56 <Annotation Term="OData.LongDescription" String="This resource shall be used to represent a fabric endpoint for a Redfish implementation."/>
Ed Tanous530520e2019-01-02 13:41:37 -080057 <Annotation Term="Capabilities.InsertRestrictions">
58 <Record>
59 <PropertyValue Property="Insertable" Bool="false"/>
60 </Record>
61 </Annotation>
62 <Annotation Term="Capabilities.UpdateRestrictions">
63 <Record>
64 <PropertyValue Property="Updatable" Bool="false"/>
65 </Record>
66 </Annotation>
67 <Annotation Term="Capabilities.DeleteRestrictions">
68 <Record>
69 <PropertyValue Property="Deletable" Bool="false"/>
70 </Record>
71 </Annotation>
72 <Annotation Term="Redfish.Uris">
73 <Collection>
74 <String>/redfish/v1/Fabrics/{FabricId}/Endpoints/{EndpointId}</String>
75 </Collection>
76 </Annotation>
Jason M. Billsea4aa752018-06-05 13:29:11 -070077 </EntityType>
78
79 </Schema>
80
81 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Endpoint.v1_0_0">
82 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -060083 <Annotation Term="Redfish.Release" String="2016.2"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -070084
85 <EntityType Name="Endpoint" BaseType="Endpoint.Endpoint">
86 <Annotation Term="OData.Description" String="This is the schema definition for the Endpoint resource. It represents the properties of an entity that sends or receives protocol defined messages over a transport."/>
87 <Annotation Term="OData.LongDescription" String="This resource shall be used to represent a fabric endpoint for a Redfish implementation."/>
Ed Tanous530520e2019-01-02 13:41:37 -080088 <Property Name="Status" Type="Resource.Status" Nullable="false">
89 <Annotation Term="OData.Description" String="This property describes the status and health of the resource and its children."/>
90 <Annotation Term="OData.LongDescription" String="This property shall contain any status or health properties of the resource."/>
91 </Property>
Jason M. Billsea4aa752018-06-05 13:29:11 -070092 <Property Name="EndpointProtocol" Type="Protocol.Protocol">
93 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
94 <Annotation Term="OData.Description" String="The protocol supported by this endpoint."/>
95 <Annotation Term="OData.LongDescription" String="The value of this property shall contain the protocol this endpoint uses to communicate with other endpoints on this fabric."/>
96 </Property>
97 <Property Name="ConnectedEntities" Type="Collection(Endpoint.v1_0_0.ConnectedEntity)">
98 <Annotation Term="OData.Description" String="All the entities connected to this endpoint."/>
99 <Annotation Term="OData.LongDescription" String="This value of this property shall contain all the entities which this endpoint allows access to."/>
100 </Property>
101 <Property Name="Identifiers" Type="Collection(Resource.Identifier)">
102 <Annotation Term="OData.Description" String="Identifiers for this endpoint."/>
103 <Annotation Term="OData.LongDescription" String="Identifiers for this endpoint shall be unique in the context of other endpoints that can reached over the connected network."/>
104 </Property>
105
106 <Property Name="PciId" Type="Endpoint.v1_0_0.PciId">
107 <Annotation Term="OData.Description" String="The PCI ID of the endpoint."/>
108 <Annotation Term="OData.LongDescription" String="The value of this property shall be the PCI ID of the endpoint."/>
109 </Property>
110 <NavigationProperty Name="Redundancy" Type="Collection(Redundancy.Redundancy)" ContainsTarget="true">
111 <Annotation Term="OData.Description" String="Redundancy information for the lower level endpoints supporting this endpoint."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800112 <Annotation Term="OData.LongDescription" String="The values of the properties in this array shall be used to show how this endpoint is grouped with other endpoints for form redundancy sets."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700113 <Annotation Term="OData.AutoExpand"/>
114 </NavigationProperty>
115 <Property Name="HostReservationMemoryBytes" Type="Edm.Int64">
116 <Annotation Term="Measures.Unit" String="By"/>
117 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
118 <Annotation Term="OData.Description" String="The amount of memory in Bytes that the Host should allocate to connect to this endpoint."/>
119 <Annotation Term="OData.LongDescription" String="The value of this property shall be the amount of memory in Bytes that the Host should allocate to connect to this endpoint."/>
120 </Property>
121
122 <Property Name="Links" Type="Endpoint.v1_0_0.Links" Nullable="false">
123 <Annotation Term="OData.Description" String="The links object contains the links to other resources that are related to this resource."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800124 <Annotation Term="OData.LongDescription" String="The Links property, as described by the Redfish Specification, shall contain references to resources that are related to, but not contained by (subordinate to), this resource."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700125 </Property>
126 <Property Name="Actions" Type="Endpoint.v1_0_0.Actions" Nullable="false">
Ed Tanous530520e2019-01-02 13:41:37 -0800127 <Annotation Term="OData.Description" String="The available actions for this resource."/>
128 <Annotation Term="OData.LongDescription" String="The Actions property shall contain the available actions for this resource."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700129 </Property>
130 </EntityType>
131
132 <ComplexType Name="Links" BaseType="Resource.Links">
133 <Annotation Term="OData.Description" String="Contains references to other resources that are related to this resource."/>
134 <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."/>
135 <NavigationProperty Name="MutuallyExclusiveEndpoints" Type="Collection(Endpoint.Endpoint)">
136 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
137 <Annotation Term="OData.Description" String="An array of references to the endpoints that may not be used in zones if this endpoint is used in a zone."/>
138 <Annotation Term="OData.LongDescription" String="The value of this property shall be an array of references of type Endpoint that cannot be used in a zone if this endpoint is used in a zone."/>
139 <Annotation Term="OData.AutoExpandReferences"/>
140 </NavigationProperty>
141 <NavigationProperty Name="Ports" Type="Collection(Port.Port)">
142 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
143 <Annotation Term="OData.Description" String="An array of references to the the physical ports associated with this endpoint."/>
144 <Annotation Term="OData.LongDescription" String="The value of this property shall be an array of references of type Port that are utilized by this endpoint."/>
145 <Annotation Term="OData.AutoExpandReferences"/>
146 </NavigationProperty>
147 </ComplexType>
148
149 <ComplexType Name="Actions">
150 <Annotation Term="OData.AdditionalProperties" Bool="false"/>
151 <Annotation Term="OData.Description" String="The available actions for this resource."/>
152 <Annotation Term="OData.LongDescription" String="This type shall contain the available actions for this resource."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800153 <Property Name="Oem" Type="Endpoint.v1_0_0.OemActions">
154 <Annotation Term="OData.Description" String="This property contains the available OEM specific actions for this resource."/>
155 <Annotation Term="OData.LongDescription" String="This property shall contain any additional OEM actions for this resource."/>
156 </Property>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700157 </ComplexType>
158
159 <ComplexType Name="OemActions">
160 <Annotation Term="OData.AdditionalProperties" Bool="true"/>
161 <Annotation Term="OData.Description" String="The available OEM specific actions for this resource."/>
162 <Annotation Term="OData.LongDescription" String="This type shall contain any additional OEM actions for this resource."/>
163 </ComplexType>
164
165 <ComplexType Name="ConnectedEntity">
166 <Annotation Term="OData.AdditionalProperties" Bool="false"/>
167 <Annotation Term="OData.Description" String="Represents a remote resource that is connected to the network accessible to this endpoint."/>
168 <Annotation Term="OData.LongDescription" String="This type shall represent a remote resource that is connected to a network accessible to an endpoint."/>
169 <Property Name="EntityType" Type="Endpoint.v1_0_0.EntityType">
170 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
171 <Annotation Term="OData.Description" String="The type of the connected entity."/>
172 <Annotation Term="OData.LongDescription" String="The value of this property shall indicate if type of connected entity."/>
173 </Property>
174 <Property Name="EntityRole" Type="Endpoint.v1_0_0.EntityRole">
175 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
176 <Annotation Term="OData.Description" String="The role of the connected entity."/>
177 <Annotation Term="OData.LongDescription" String="The value of this property shall indicate if the specified entity is an initiator, target, or both."/>
178 </Property>
179 <Property Name="EntityPciId" Type="Endpoint.v1_0_0.PciId">
180 <Annotation Term="OData.Description" String="The PCI ID of the connected entity."/>
181 <Annotation Term="OData.LongDescription" String="The value of this property shall be the PCI ID of the connected PCIe entity."/>
182 </Property>
183 <Property Name="PciFunctionNumber" Type="Edm.Int64">
184 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
185 <Annotation Term="OData.Description" String="The PCI ID of the connected entity."/>
186 <Annotation Term="OData.LongDescription" String="The value of this property shall be the PCI Function Number of the connected PCIe entity."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600187 <Annotation Term="Redfish.Revisions">
188 <Collection>
189 <Record>
190 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
191 <PropertyValue Property="Version" String="v1_2_0"/>
192 <PropertyValue Property="Description" String="This property has been deprecated in favor of the FunctionNumber property inside the EntityPciId object."/>
193 </Record>
194 </Collection>
195 </Annotation>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700196 </Property>
197 <Property Name="PciClassCode" Type="Edm.String">
198 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
199 <Annotation Term="OData.Description" String="The Class Code, Subclass code, and Programming Interface code of this PCIe function."/>
200 <Annotation Term="OData.LongDescription" String="The value of this property shall be the PCI Class Code, Subclass code, and Programming Interface code of the PCIe device function."/>
201 <Annotation Term="Validation.Pattern" String="^0[xX](([a-fA-F]|[0-9]){2}){3}$"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600202 <Annotation Term="Redfish.Revisions">
203 <Collection>
204 <Record>
205 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
206 <PropertyValue Property="Version" String="v1_2_0"/>
207 <PropertyValue Property="Description" String="This property has been deprecated in favor of the ClassCode property inside the EntityPciId object."/>
208 </Record>
209 </Collection>
210 </Annotation>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700211 </Property>
212 <Property Name="Identifiers" Type="Collection(Resource.Identifier)">
213 <Annotation Term="OData.Description" String="Identifiers for the remote entity."/>
214 <Annotation Term="OData.LongDescription" String="Identifiers for the remote entity shall be unique in the context of other resources that can reached over the connected network."/>
215 </Property>
216 <NavigationProperty Name="EntityLink" Type="Resource.Resource">
217 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
218 <Annotation Term="OData.Description" String="A link to the associated entity."/>
219 <Annotation Term="OData.LongDescription" String="This property shall be a reference to an entity of the type specified by the description of the value of the EntityType property."/>
220 </NavigationProperty>
221
Ed Tanous530520e2019-01-02 13:41:37 -0800222 <Property Name="Oem" Type="Resource.Oem" Nullable="false">
223 <Annotation Term="OData.Description" String="Oem extension object."/>
224 <Annotation Term="OData.LongDescription" String="This object represents the Oem property. All values for resources described by this schema shall comply to the requirements as described in the Redfish specification."/>
225 </Property>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700226 </ComplexType>
227
228 <EnumType Name="EntityType">
229 <Member Name="StorageInitiator">
230 <Annotation Term="OData.Description" String="The entity is a storage initator. The EntityLink property (if present) should be a Storage.StorageController entity."/>
231 </Member>
232 <Member Name="RootComplex">
233 <Annotation Term="OData.Description" String="The entity is a PCI(e) root complex. The EntityLink property (if present) should be a ComputerSystem.ComputerSystem entity."/>
234 </Member>
235 <Member Name="NetworkController">
236 <Annotation Term="OData.Description" String="The entity is a network controller. The EntityLink property (if present) should be an EthernetInterface.EthernetInterface entity."/>
237 </Member>
238 <Member Name="Drive">
239 <Annotation Term="OData.Description" String="The entity is a disk drive. The EntityLink property (if present) should be a Drive.Drive entity."/>
240 </Member>
241 <Member Name="StorageExpander">
242 <Annotation Term="OData.Description" String="The entity is a storage expander. The EntityLink property (if present) should be a Chassis.Chassis entity."/>
243 </Member>
244 <Member Name="DisplayController">
245 <Annotation Term="OData.Description" String="The entity is a display controller."/>
246 </Member>
247 <Member Name="Bridge">
248 <Annotation Term="OData.Description" String="The entity is a PCI(e) bridge."/>
249 </Member>
250 <Member Name="Processor">
251 <Annotation Term="OData.Description" String="The entity is a processor device."/>
252 </Member>
253 <Member Name="Volume">
254 <Annotation Term="OData.Description" String="The entity is a volume. The EntityLink property (if present) should be a Volume.Volume entity."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600255 <Annotation Term="Redfish.Revisions">
256 <Collection>
257 <Record>
258 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
259 <PropertyValue Property="Version" String="v1_1_0"/>
260 </Record>
261 </Collection>
262 </Annotation>
263 </Member>
264 <Member Name="AccelerationFunction">
265 <Annotation Term="OData.Description" String="The entity is an acceleration function realized through a device, such as an FPGA. The EntityLink property (if present) should be a AccelerationFunction.AccelerationFunction entity."/>
266 <Annotation Term="Redfish.Revisions">
267 <Collection>
268 <Record>
269 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
270 <PropertyValue Property="Version" String="v1_3_0"/>
271 </Record>
272 </Collection>
273 </Annotation>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700274 </Member>
275 </EnumType>
276
277 <EnumType Name="EntityRole">
278 <Member Name="Initiator">
279 <Annotation Term="OData.Description" String="The entity is acting as an initiator."/>
280 </Member>
281 <Member Name="Target">
282 <Annotation Term="OData.Description" String="The entity is acting as a target."/>
283 </Member>
284 <Member Name="Both">
285 <Annotation Term="OData.Description" String="The entity is acting as both an initiator and a target."/>
286 </Member>
287 </EnumType>
288
289 <ComplexType Name="PciId">
290 <Annotation Term="OData.AdditionalProperties" Bool="false"/>
291 <Annotation Term="OData.Description" String="A PCI ID."/>
292 <Annotation Term="OData.LongDescription" String="This type shall describe a PCI ID."/>
293 <Property Name="DeviceId" Type="Edm.String">
294 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
295 <Annotation Term="OData.Description" String="The Device ID of this PCIe function."/>
296 <Annotation Term="OData.LongDescription" String="The value of this property shall be the PCI Subsystem Vendor ID of the PCIe device function."/>
297 <Annotation Term="Validation.Pattern" String="^0[xX](([a-fA-F]|[0-9]){2}){2}$"/>
298 </Property>
299 <Property Name="VendorId" Type="Edm.String">
300 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
301 <Annotation Term="OData.Description" String="The Vendor ID of this PCIe function."/>
302 <Annotation Term="OData.LongDescription" String="The value of this property shall be the PCI Vendor ID of the PCIe device function."/>
303 <Annotation Term="Validation.Pattern" String="^0[xX](([a-fA-F]|[0-9]){2}){2}$"/>
304 </Property>
305 <Property Name="SubsystemId" Type="Edm.String">
306 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
307 <Annotation Term="OData.Description" String="The Subsystem ID of this PCIe function."/>
308 <Annotation Term="OData.LongDescription" String="The value of this property shall be the PCI Subsystem Vendor ID of the PCIe device function."/>
309 <Annotation Term="Validation.Pattern" String="^0[xX](([a-fA-F]|[0-9]){2}){2}$"/>
310 </Property>
311 <Property Name="SubsystemVendorId" Type="Edm.String">
312 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
313 <Annotation Term="OData.Description" String="The Subsystem Vendor ID of this PCIe function."/>
314 <Annotation Term="OData.LongDescription" String="The value of this property shall be the PCI Subsystem Vendor ID of the PCIe device function."/>
315 <Annotation Term="Validation.Pattern" String="^0[xX](([a-fA-F]|[0-9]){2}){2}$"/>
316 </Property>
317 </ComplexType>
318
319 </Schema>
320
321 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Endpoint.v1_0_1">
322 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
323 <Annotation Term="OData.Description" String="This version was created to add explicit Permissions annotations to all properties for clarity."/>
324 <EntityType Name="Endpoint" BaseType="Endpoint.v1_0_0.Endpoint"/>
325 </Schema>
326
327 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Endpoint.v1_0_2">
328 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
329 <Annotation Term="OData.Description" String="This version was created to show annotations in previous namespaces were updated and to remove the Nullable facet on NavigationProperties of type Collection."/>
330 <EntityType Name="Endpoint" BaseType="Endpoint.v1_0_1.Endpoint"/>
331 </Schema>
332
333 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Endpoint.v1_0_3">
334 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
335 <Annotation Term="OData.Description" String="This version was created to add the OData.AdditionalProperties annotation to the ConnectedEntity and PciId definitions, and to change references to Identifier to be its abstract base type, and Protocol to use the unversioned definition.."/>
336 <EntityType Name="Endpoint" BaseType="Endpoint.v1_0_2.Endpoint"/>
337 </Schema>
338
Ed Tanous530520e2019-01-02 13:41:37 -0800339 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Endpoint.v1_0_4">
340 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
341 <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."/>
342 <EntityType Name="Endpoint" BaseType="Endpoint.v1_0_3.Endpoint"/>
343 </Schema>
344
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600345 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Endpoint.v1_0_5">
346 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
347 <Annotation Term="OData.Description" String="This version was created to make use of the new Revisions annotation."/>
348 <EntityType Name="Endpoint" BaseType="Endpoint.v1_0_4.Endpoint"/>
349 </Schema>
350
Jason M. Billsea4aa752018-06-05 13:29:11 -0700351 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Endpoint.v1_1_0">
352 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600353 <Annotation Term="Redfish.Release" String="2017.3"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700354 <EntityType Name="Endpoint" BaseType="Endpoint.v1_0_3.Endpoint">
355 <Property Name="IPTransportDetails" Type="Collection(Endpoint.v1_1_0.IPTransportDetails)">
356 <Annotation Term="OData.Description" String="This array contains details for each IP transport supported by this endpoint. The array structure can be used to model multiple IP addresses for this endpoint."/>
357 <Annotation Term="OData.LongDescription" String="This array shall contain the details for each IP transport supported by this endpoint."/>
358 <Annotation Term="OData.AutoExpandReferences"/>
359 </Property>
360 </EntityType>
361
362 <ComplexType Name="Links" BaseType="Endpoint.v1_0_0.Links">
363 <NavigationProperty Name="NetworkDeviceFunction" Type="Collection(NetworkDeviceFunction.NetworkDeviceFunction)">
364 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
365 <Annotation Term="OData.Description" String="When NetworkDeviceFunction resources are present, this array contains references to the network device function that connect to this endpoint."/>
366 <Annotation Term="OData.LongDescription" String="The value of this property shall be a reference to a NetworkDeviceFunction resource, with which this endpoint is associated."/>
367 <Annotation Term="OData.AutoExpandReferences"/>
368 </NavigationProperty>
369 </ComplexType>
370
371 <ComplexType Name="IPTransportDetails">
372 <Annotation Term="OData.Description" String="This object contains properties which specify the details of the transport supported by the endpoint. The properties which are present, is dependemt on the type of transport supported by the endpoint."/>
373 <Annotation Term="OData.LongDescription" String="The type shall contain properties which specify the details of the transport supported by the endpoint."/>
374 <Annotation Term="OData.AdditionalProperties" Bool="false"/>
375 <Property Name="TransportProtocol" Type="Protocol.Protocol" Nullable="false">
376 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
377 <Annotation Term="OData.Description" String="The protocol used by the connection entity."/>
378 <Annotation Term="OData.LongDescription" String="The value shall be the protocol used by the connection entity."/>
379 </Property>
380 <Property Name="IPv4Address" Type="IPAddresses.IPv4Address" Nullable="false">
381 <Annotation Term="OData.Description" String="The IPv4 addresses assigned to the Endpoint."/>
382 <Annotation Term="OData.LongDescription" String="The value of this property shall specify the IPv4Address."/>
383 </Property>
384 <Property Name="IPv6Address" Type="IPAddresses.IPv6Address" Nullable="false">
385 <Annotation Term="OData.Description" String="The IPv6 addresses assigned to the Endpoint."/>
386 <Annotation Term="OData.LongDescription" String="The value of this property shall specify the IPv6Address."/>
387 </Property>
388 <Property Name="Port" Type="Edm.Decimal" Nullable="false">
389 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
390 <Annotation Term="OData.Description" String="The UDP or TCP port number used by the Endpoint."/>
391 <Annotation Term="OData.LongDescription" String="The value of this property shall be an specify UDP or TCP port number used for communication with the Endpoint."/>
392 <Annotation Term="Validation.Minimum" Int="0"/>
393 <Annotation Term="Validation.Maximum" Int="65535"/>
394 </Property>
395 </ComplexType>
396 </Schema>
397
Ed Tanous530520e2019-01-02 13:41:37 -0800398 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Endpoint.v1_1_1">
399 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
400 <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."/>
401 <EntityType Name="Endpoint" BaseType="Endpoint.v1_1_0.Endpoint"/>
402 </Schema>
403
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600404 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Endpoint.v1_1_2">
405 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
406 <Annotation Term="OData.Description" String="This version was created to make use of the new Revisions annotation."/>
407 <EntityType Name="Endpoint" BaseType="Endpoint.v1_1_1.Endpoint"/>
408 </Schema>
409
Ed Tanous530520e2019-01-02 13:41:37 -0800410 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Endpoint.v1_2_0">
411 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600412 <Annotation Term="Redfish.Release" String="2018.2"/>
Ed Tanous530520e2019-01-02 13:41:37 -0800413 <EntityType Name="Endpoint" BaseType="Endpoint.v1_1_1.Endpoint"/>
414
415 <ComplexType Name="PciId" BaseType="Endpoint.v1_0_0.PciId">
416 <Property Name="FunctionNumber" Type="Edm.Int64">
417 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
418 <Annotation Term="OData.Description" String="The PCI ID of the connected entity."/>
419 <Annotation Term="OData.LongDescription" String="The value of this property shall be the PCI Function Number of the connected PCIe entity."/>
420 </Property>
421 <Property Name="ClassCode" Type="Edm.String">
422 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
423 <Annotation Term="OData.Description" String="The Class Code, Subclass code, and Programming Interface code of this PCIe function."/>
424 <Annotation Term="OData.LongDescription" String="The value of this property shall be the PCI Class Code, Subclass code, and Programming Interface code of the PCIe device function."/>
425 <Annotation Term="Validation.Pattern" String="^0[xX](([a-fA-F]|[0-9]){2}){3}$"/>
426 </Property>
427 </ComplexType>
428 </Schema>
429
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600430 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Endpoint.v1_2_1">
431 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
432 <Annotation Term="OData.Description" String="This version was created to make use of the new Revisions annotation."/>
433 <EntityType Name="Endpoint" BaseType="Endpoint.v1_2_0.Endpoint"/>
434 </Schema>
435
436 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Endpoint.v1_3_0">
437 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
438 <Annotation Term="Redfish.Release" String="2018.3"/>
439 <Annotation Term="OData.Description" String="This version was created to add AccelerationFunction to the EntityType enum."/>
440 <EntityType Name="Endpoint" BaseType="Endpoint.v1_2_1.Endpoint"/>
441 </Schema>
442
Jason M. Billsea4aa752018-06-05 13:29:11 -0700443 </edmx:DataServices>
444</edmx:Edmx>