blob: 2d90601059ea5102b6eda05c04081ab311ee4fd2 [file] [log] [blame]
Ed Tanouscb103132019-10-08 11:34:22 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!---->
3<!--################################################################################ -->
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -05004<!--# Redfish Schema: Switch v1.4.0 -->
Ed Tanouscb103132019-10-08 11:34:22 -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 -->
Gunnar Millsa778c022020-05-12 12:20:36 -05008<!--# Copyright 2014-2020 DMTF. -->
Ed Tanouscb103132019-10-08 11:34:22 -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>
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>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -050020 <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>
Ed Tanouscb103132019-10-08 11:34:22 -070023 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Resource_v1.xml">
24 <edmx:Include Namespace="Resource"/>
25 <edmx:Include Namespace="Resource.v1_0_0"/>
26 </edmx:Reference>
27 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/RedfishExtensions_v1.xml">
28 <edmx:Include Namespace="RedfishExtensions.v1_0_0" Alias="Redfish"/>
29 </edmx:Reference>
30 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Chassis_v1.xml">
31 <edmx:Include Namespace="Chassis"/>
32 </edmx:Reference>
33 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Manager_v1.xml">
34 <edmx:Include Namespace="Manager"/>
35 </edmx:Reference>
36 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Redundancy_v1.xml">
37 <edmx:Include Namespace="Redundancy"/>
38 </edmx:Reference>
39 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/PortCollection_v1.xml">
40 <edmx:Include Namespace="PortCollection"/>
41 </edmx:Reference>
42 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/LogServiceCollection_v1.xml">
43 <edmx:Include Namespace="LogServiceCollection"/>
44 </edmx:Reference>
45 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Protocol_v1.xml">
46 <edmx:Include Namespace="Protocol"/>
47 </edmx:Reference>
Gunnar Mills09b9d452020-02-11 13:27:39 -060048 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Endpoint_v1.xml">
49 <edmx:Include Namespace="Endpoint"/>
50 </edmx:Reference>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -050051 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/PCIeDevice_v1.xml">
52 <edmx:Include Namespace="PCIeDevice"/>
53 </edmx:Reference>
Ed Tanouscb103132019-10-08 11:34:22 -070054
55 <edmx:DataServices>
56
57 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Switch">
58 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
59
60 <EntityType Name="Switch" BaseType="Resource.v1_0_0.Resource" Abstract="true">
61 <Annotation Term="OData.Description" String="The Switch schema contains properties that describe a fabric switch."/>
Gunnar Mills844b4152020-06-22 12:44:09 -050062 <Annotation Term="OData.LongDescription" String="This resource contains a switch for a Redfish implementation."/>
Ed Tanouscb103132019-10-08 11:34:22 -070063 <Annotation Term="Capabilities.InsertRestrictions">
64 <Record>
65 <PropertyValue Property="Insertable" Bool="false"/>
66 </Record>
67 </Annotation>
68 <Annotation Term="Capabilities.UpdateRestrictions">
69 <Record>
70 <PropertyValue Property="Updatable" Bool="true"/>
71 <Annotation Term="OData.Description" String="Any writable properties, such as AssetTag, can be updated for switches."/>
72 </Record>
73 </Annotation>
74 <Annotation Term="Capabilities.DeleteRestrictions">
75 <Record>
76 <PropertyValue Property="Deletable" Bool="false"/>
77 </Record>
78 </Annotation>
79 <Annotation Term="Redfish.Uris">
80 <Collection>
81 <String>/redfish/v1/Fabrics/{FabricId}/Switches/{SwitchId}</String>
82 </Collection>
83 </Annotation>
84 </EntityType>
85
86 <Action Name="Reset" IsBound="true">
Gunnar Mills844b4152020-06-22 12:44:09 -050087 <Annotation Term="OData.Description" String="This action resets this switch."/>
88 <Annotation Term="OData.LongDescription" String="This action shall reset this switch."/>
Ed Tanouscb103132019-10-08 11:34:22 -070089 <Parameter Name="Switch" Type="Switch.v1_0_0.Actions"/>
90 <Parameter Name="ResetType" Type="Resource.ResetType">
91 <Annotation Term="OData.Description" String="The type of reset."/>
Gunnar Mills844b4152020-06-22 12:44:09 -050092 <Annotation Term="OData.LongDescription" String="This parameter shall contain the type of reset. The service can accept a request without this parameter and can complete an implementation-specific default reset."/>
Ed Tanouscb103132019-10-08 11:34:22 -070093 </Parameter>
Ed Tanouscb103132019-10-08 11:34:22 -070094 </Action>
Ed Tanouscb103132019-10-08 11:34:22 -070095 </Schema>
96
97 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Switch.v1_0_0">
98 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
99 <Annotation Term="Redfish.Release" String="2016.2"/>
100
101 <EntityType Name="Switch" BaseType="Switch.Switch">
102 <Property Name="SwitchType" Type="Protocol.Protocol">
103 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Gunnar Mills09b9d452020-02-11 13:27:39 -0600104 <Annotation Term="OData.Description" String="The protocol being sent over this switch."/>
105 <Annotation Term="OData.LongDescription" String="This property shall contain the protocol being sent over this switch. For a switch that supports multiple protocols, the value should be `MultiProtocol` and the SupportedProtocols property should be used to describe the supported protocols."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700106 </Property>
107 <Property Name="Status" Type="Resource.Status" Nullable="false">
Gunnar Mills844b4152020-06-22 12:44:09 -0500108 <Annotation Term="OData.Description" String="The status and health of the resource and its subordinate or dependent resources."/>
109 <Annotation Term="OData.LongDescription" String="This property shall contain any status or health properties of the resource."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700110 </Property>
111 <Property Name="Manufacturer" Type="Edm.String">
112 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
113 <Annotation Term="OData.Description" String="The manufacturer of this switch."/>
114 <Annotation Term="OData.LongDescription" String="This property shall contain the name of the organization responsible for producing the switch. This organization might be the entity from which the switch is purchased, but this is not necessarily true."/>
115 </Property>
116 <Property Name="Model" Type="Edm.String">
117 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
118 <Annotation Term="OData.Description" String="The product model number of this switch."/>
119 <Annotation Term="OData.LongDescription" String="This property shall contain the manufacturer-provided model information of this switch."/>
120 </Property>
121 <Property Name="SKU" Type="Edm.String">
122 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
123 <Annotation Term="OData.Description" String="The SKU for this switch."/>
124 <Annotation Term="OData.LongDescription" String="This property shall contain the SKU number for this switch."/>
125 </Property>
126 <Property Name="SerialNumber" Type="Edm.String">
127 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
128 <Annotation Term="OData.Description" String="The serial number for this switch."/>
129 <Annotation Term="OData.LongDescription" String="This property shall contain a manufacturer-allocated number that identifies the switch."/>
130 </Property>
131 <Property Name="PartNumber" Type="Edm.String">
132 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
133 <Annotation Term="OData.Description" String="The part number for this switch."/>
134 <Annotation Term="OData.LongDescription" String="This property shall contain the manufacturer-provided part number for the switch."/>
135 </Property>
136 <Property Name="AssetTag" Type="Edm.String">
137 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
138 <Annotation Term="OData.Description" String="The user-assigned asset tag for this switch."/>
139 <Annotation Term="OData.LongDescription" String="This property shall contain the user-assigned asset tag, which is an identifying string that tracks the drive for inventory purposes."/>
140 </Property>
141 <Property Name="DomainID" Type="Edm.Int64">
142 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
143 <Annotation Term="OData.Description" String="The domain ID for this switch."/>
144 <Annotation Term="OData.LongDescription" String="This property shall contain The domain ID for this switch. This property has a scope of uniqueness within the fabric of which the switch is a member."/>
145 </Property>
146 <Property Name="IsManaged" Type="Edm.Boolean">
147 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
148 <Annotation Term="OData.Description" String="An indication of whether the switch is in a managed or unmanaged state."/>
149 <Annotation Term="OData.LongDescription" String="This property shall indicate whether this switch is in a managed or unmanaged state."/>
150 </Property>
151 <Property Name="TotalSwitchWidth" Type="Edm.Int64">
152 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
153 <Annotation Term="OData.Description" String="The total number of lanes, phys, or other physical transport links that this switch contains."/>
154 <Annotation Term="OData.LongDescription" String="This property shall contain the number of physical transport lanes, phys, or other physical transport links that this switch contains. For PCIe, this value shall be the lane count."/>
155 </Property>
156 <Property Name="IndicatorLED" Type="Resource.IndicatorLED">
157 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
158 <Annotation Term="OData.Description" String="The state of the indicator LED, which identifies the switch."/>
159 <Annotation Term="OData.LongDescription" String="This property shall contain the state of the indicator light associated with this switch."/>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500160 <Annotation Term="Redfish.Revisions">
161 <Collection>
162 <Record>
163 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
164 <PropertyValue Property="Version" String="v1_4_0"/>
165 <PropertyValue Property="Description" String="This property has been deprecated in favor of the LocationIndicatorActive property."/>
166 </Record>
167 </Collection>
168 </Annotation>
Ed Tanouscb103132019-10-08 11:34:22 -0700169 </Property>
170 <Property Name="PowerState" Type="Resource.PowerState">
171 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
172 <Annotation Term="OData.Description" String="The current power state of the switch."/>
173 <Annotation Term="OData.LongDescription" String="This property shall contain the power state of the switch."/>
174 </Property>
175 <NavigationProperty Name="Ports" Type="PortCollection.PortCollection" ContainsTarget="true" Nullable="false">
176 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
177 <Annotation Term="OData.Description" String="The link to the collection ports for this switch."/>
Gunnar Mills844b4152020-06-22 12:44:09 -0500178 <Annotation Term="OData.LongDescription" String="This property shall contain a link to a resource collection of type PortCollection."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700179 <Annotation Term="OData.AutoExpandReferences"/>
180 </NavigationProperty>
181 <NavigationProperty Name="Redundancy" Type="Collection(Redundancy.Redundancy)" ContainsTarget="true">
182 <Annotation Term="OData.Description" String="Redundancy information for the switches."/>
183 <Annotation Term="OData.LongDescription" String="This property shall contain an array that shows how this switch is grouped with other switches for form redundancy sets."/>
184 <Annotation Term="OData.AutoExpand"/>
185 </NavigationProperty>
186 <Property Name="Links" Type="Switch.v1_0_0.Links" Nullable="false">
Gunnar Mills844b4152020-06-22 12:44:09 -0500187 <Annotation Term="OData.Description" String="The links to other resources that are related to this resource."/>
188 <Annotation Term="OData.LongDescription" String="This property shall contain links to resources that are related to but are not contained by, or subordinate to, this resource."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700189 </Property>
190 <NavigationProperty Name="LogServices" Type="LogServiceCollection.LogServiceCollection" ContainsTarget="true" Nullable="false">
191 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Gunnar Mills844b4152020-06-22 12:44:09 -0500192 <Annotation Term="OData.Description" String="The link to the collection of log services associated with this switch."/>
193 <Annotation Term="OData.LongDescription" String="This property shall contain a link to a resource collection of type LogServiceCollection."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700194 <Annotation Term="OData.AutoExpandReferences"/>
195 </NavigationProperty>
196 <Property Name="Actions" Type="Switch.v1_0_0.Actions" Nullable="false">
Gunnar Mills844b4152020-06-22 12:44:09 -0500197 <Annotation Term="OData.Description" String="The available actions for this resource."/>
198 <Annotation Term="OData.LongDescription" String="This property shall contain the available actions for this resource."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700199 </Property>
200 </EntityType>
201
202 <ComplexType Name="Links" BaseType="Resource.Links">
Gunnar Mills844b4152020-06-22 12:44:09 -0500203 <Annotation Term="OData.Description" String="The links to other resources that are related to this resource."/>
204 <Annotation Term="OData.LongDescription" String="This Redfish Specification-described type shall contain links to resources that are related to but are not contained by, or subordinate to, this resource."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700205 <NavigationProperty Name="Chassis" Type="Chassis.Chassis" Nullable="false">
206 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
207 <Annotation Term="OData.Description" String="The link to the chassis that contains this switch."/>
Gunnar Mills844b4152020-06-22 12:44:09 -0500208 <Annotation Term="OData.LongDescription" String="This property shall contain a link to a resource of type Chassis with which this switch is associated."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700209 <Annotation Term="OData.AutoExpandReferences"/>
210 </NavigationProperty>
211 <NavigationProperty Name="ManagedBy" Type="Collection(Manager.Manager)">
212 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
213 <Annotation Term="OData.Description" String="An array of links to the managers that manage this switch."/>
Gunnar Mills844b4152020-06-22 12:44:09 -0500214 <Annotation Term="OData.LongDescription" String="This property shall contain an array of links to resources of type Manager with which this switch is associated."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700215 <Annotation Term="OData.AutoExpandReferences"/>
216 </NavigationProperty>
217 </ComplexType>
218
219 <ComplexType Name="Actions">
220 <Annotation Term="OData.AdditionalProperties" Bool="false"/>
Gunnar Mills844b4152020-06-22 12:44:09 -0500221 <Annotation Term="OData.Description" String="The available actions for this resource."/>
222 <Annotation Term="OData.LongDescription" String="This type shall contain the available actions for this resource."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700223 <Property Name="Oem" Type="Switch.v1_0_0.OemActions" Nullable="false">
Gunnar Mills844b4152020-06-22 12:44:09 -0500224 <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/>
225 <Annotation Term="OData.LongDescription" String="This property shall contain the available OEM-specific actions for this resource."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700226 </Property>
227 </ComplexType>
228
229 <ComplexType Name="OemActions">
230 <Annotation Term="OData.AdditionalProperties" Bool="true"/>
Gunnar Mills844b4152020-06-22 12:44:09 -0500231 <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/>
232 <Annotation Term="OData.LongDescription" String="This type shall contain the available OEM-specific actions for this resource."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700233 </ComplexType>
Ed Tanouscb103132019-10-08 11:34:22 -0700234 </Schema>
235
236 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Switch.v1_0_1">
237 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
238 <Annotation Term="OData.Description" String="This version was created to show that annotations in previous namespaces were updated."/>
239 <EntityType Name="Switch" BaseType="Switch.v1_0_0.Switch"/>
240 </Schema>
241
242 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Switch.v1_0_2">
243 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
244 <Annotation Term="OData.Description" String="This version was created to remove the Nullable facet on NavigationProperties of the Collection type."/>
245 <EntityType Name="Switch" BaseType="Switch.v1_0_1.Switch"/>
246 </Schema>
247
248 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Switch.v1_0_3">
249 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
250 <Annotation Term="OData.Description" String="This version was created to change IndicatorLED, PowerState, and Protocol to use the unversioned definition, and correct the short and long descriptions in the defined actions."/>
251 <EntityType Name="Switch" BaseType="Switch.v1_0_2.Switch"/>
252 </Schema>
253
254 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Switch.v1_0_4">
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."/>
257 <EntityType Name="Switch" BaseType="Switch.v1_0_3.Switch"/>
258 </Schema>
259
260 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Switch.v1_0_5">
261 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Gunnar Mills844b4152020-06-22 12:44:09 -0500262 <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, and to add a missing term to the LogServices property to disallow it from being `null`."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700263 <EntityType Name="Switch" BaseType="Switch.v1_0_4.Switch"/>
264 </Schema>
265
266 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Switch.v1_0_6">
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="Switch" BaseType="Switch.v1_0_5.Switch"/>
270 </Schema>
271
Gunnar Mills844b4152020-06-22 12:44:09 -0500272 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Switch.v1_0_7">
273 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
274 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
275 <EntityType Name="Switch" BaseType="Switch.v1_0_6.Switch"/>
276 </Schema>
277
Ed Tanouscb103132019-10-08 11:34:22 -0700278 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Switch.v1_1_0">
279 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
280 <Annotation Term="Redfish.Release" String="2017.3"/>
Gunnar Mills844b4152020-06-22 12:44:09 -0500281
Ed Tanouscb103132019-10-08 11:34:22 -0700282 <EntityType Name="Switch" BaseType="Switch.v1_0_3.Switch">
283 <Property Name="Location" Type="Resource.Location" Nullable="false">
284 <Annotation Term="OData.Description" String="The location of the switch."/>
285 <Annotation Term="OData.LongDescription" String="This property shall contain location information of the associated switch."/>
286 </Property>
287 </EntityType>
288 </Schema>
289
290 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Switch.v1_1_1">
291 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
292 <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."/>
293 <EntityType Name="Switch" BaseType="Switch.v1_1_0.Switch"/>
294 </Schema>
295
296 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Switch.v1_1_2">
297 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
298 <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, and to add a missing term to the LogServices property to disallow it from being null."/>
299 <EntityType Name="Switch" BaseType="Switch.v1_1_1.Switch"/>
300 </Schema>
301
302 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Switch.v1_1_3">
303 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
304 <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
305 <EntityType Name="Switch" BaseType="Switch.v1_1_2.Switch"/>
306 </Schema>
307
Gunnar Mills844b4152020-06-22 12:44:09 -0500308 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Switch.v1_1_4">
309 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
310 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
311 <EntityType Name="Switch" BaseType="Switch.v1_1_3.Switch"/>
312 </Schema>
313
Ed Tanouscb103132019-10-08 11:34:22 -0700314 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Switch.v1_2_0">
315 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
316 <Annotation Term="Redfish.Release" String="2019.2"/>
Gunnar Mills09b9d452020-02-11 13:27:39 -0600317
Ed Tanouscb103132019-10-08 11:34:22 -0700318 <EntityType Name="Switch" BaseType="Switch.v1_1_3.Switch">
319 <Property Name="FirmwareVersion" Type="Edm.String">
320 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
321 <Annotation Term="OData.Description" String="The firmware version of this switch."/>
322 <Annotation Term="OData.LongDescription" String="This property shall contain the firwmare version as defined by the manufacturer for the associated switch."/>
323 </Property>
324 </EntityType>
325 </Schema>
Gunnar Mills09b9d452020-02-11 13:27:39 -0600326
Gunnar Mills844b4152020-06-22 12:44:09 -0500327 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Switch.v1_2_1">
328 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
329 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
330 <EntityType Name="Switch" BaseType="Switch.v1_2_0.Switch"/>
331 </Schema>
332
Gunnar Mills09b9d452020-02-11 13:27:39 -0600333 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Switch.v1_3_0">
334 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
335 <Annotation Term="Redfish.Release" String="2019.4"/>
336
337 <EntityType Name="Switch" BaseType="Switch.v1_2_0.Switch">
338 <Property Name="SupportedProtocols" Type="Collection(Protocol.Protocol)" Nullable="false">
339 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
340 <Annotation Term="OData.Description" String="The protocols this switch supports."/>
341 <Annotation Term="OData.LongDescription" String="The property shall contain an array of protocols this switch supports. If the value of SwitchType is `MultiProtocol`, this property shall be required."/>
342 </Property>
343 <Property Name="UUID" Type="Resource.UUID">
344 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
345 <Annotation Term="OData.Description" String="The UUID for this switch."/>
346 <Annotation Term="OData.LongDescription" String="This property shall contain a universal unique identifier number for the switch."/>
347 </Property>
348 </EntityType>
349
350 <ComplexType Name="Links" BaseType="Switch.v1_0_0.Links">
351 <NavigationProperty Name="Endpoints" Type="Collection(Endpoint.Endpoint)">
352 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
353 <Annotation Term="OData.Description" String="An array of links to the endpoints that connect to this switch."/>
Gunnar Mills844b4152020-06-22 12:44:09 -0500354 <Annotation Term="OData.LongDescription" String="This property shall contain an array of links to resources of type Endpoint with which this switch is associated."/>
Gunnar Mills09b9d452020-02-11 13:27:39 -0600355 <Annotation Term="OData.AutoExpandReferences"/>
356 </NavigationProperty>
357 </ComplexType>
358 </Schema>
359
Gunnar Mills844b4152020-06-22 12:44:09 -0500360 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Switch.v1_3_1">
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="Switch" BaseType="Switch.v1_3_0.Switch"/>
364 </Schema>
365
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500366 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Switch.v1_4_0">
367 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
368 <Annotation Term="Redfish.Release" String="2020.3"/>
369 <Annotation Term="OData.Description" String="This version was created to add LocationIndicatorActive, CurrentBandwidthGbps, and MaxBandwidthGbps. It was also created to deprecate IndicatorLED properties."/>
370
371 <EntityType Name="Switch" BaseType="Switch.v1_3_1.Switch">
372 <Property Name="LocationIndicatorActive" Type="Edm.Boolean">
373 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
374 <Annotation Term="OData.Description" String="An indicator allowing an operator to physically locate this resource."/>
375 <Annotation Term="OData.LongDescription" String="This property shall contain the state of the indicator used to physically identify or locate this resource. A write to this property shall update the value of IndicatorLED in this resource, if supported, to reflect the implementation of the locating function."/>
376 </Property>
377 <Property Name="CurrentBandwidthGbps" Type="Edm.Decimal">
378 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
379 <Annotation Term="OData.Description" String="The current internal bandwidth of this switch."/>
380 <Annotation Term="OData.LongDescription" String="This property shall contain the internal bandwidth of this switch currently negotiated and running."/>
381 <Annotation Term="Measures.Unit" String="Gbit/s"/>
382 </Property>
383 <Property Name="MaxBandwidthGbps" Type="Edm.Decimal">
384 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
385 <Annotation Term="OData.Description" String="The maximum internal bandwidth of this switch as currently configured."/>
386 <Annotation Term="OData.LongDescription" String="This property shall contain the maximum internal bandwidth this switch is capable of being configured. If capable of autonegotiation, the switch shall attempt to negotiate to the specified maximum bandwidth."/>
387 <Annotation Term="Measures.Unit" String="Gbit/s"/>
388 </Property>
389 </EntityType>
390
391 <ComplexType Name="Links" BaseType="Switch.v1_3_0.Links">
392 <NavigationProperty Name="PCIeDevice" Type="PCIeDevice.PCIeDevice">
393 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
394 <Annotation Term="OData.Description" String="The link to the PCIe device providing this switch."/>
395 <Annotation Term="OData.LongDescription" String="This property shall contain a link to a resource of type PCIeDevice that represents the PCIe device providing this switch."/>
396 <Annotation Term="OData.AutoExpandReferences"/>
397 </NavigationProperty>
398 </ComplexType>
399 </Schema>
400
Ed Tanouscb103132019-10-08 11:34:22 -0700401 </edmx:DataServices>
402</edmx:Edmx>