blob: a853d667fb20624a36ce863920a0592b3a54a0b3 [file] [log] [blame]
Jason M. Billsea4aa752018-06-05 13:29:11 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!---->
3<!--################################################################################ -->
Ed Tanouscb103132019-10-08 11:34:22 -07004<!--# Redfish Schema: Drive v1.7.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 Tanouscb103132019-10-08 11:34:22 -07008<!--# Copyright 2014-2019 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>
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="RedfishExtensions.v1_0_0" Alias="Redfish"/>
22 </edmx:Reference>
23 <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://docs.oasis-open.org/odata/odata/v4.0/errata03/csd01/complete/vocabularies/Org.OData.Measures.V1.xml">
28 <edmx:Include Namespace="Org.OData.Measures.V1" Alias="Measures"/>
29 </edmx:Reference>
Marri Devender Raod45d2d02019-01-21 10:11:34 -060030 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/swordfish/v1/Volume_v1.xml">
Jason M. Billsea4aa752018-06-05 13:29:11 -070031 <edmx:Include Namespace="Volume"/>
32 </edmx:Reference>
33 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Endpoint_v1.xml">
34 <edmx:Include Namespace="Endpoint"/>
35 </edmx:Reference>
36 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Chassis_v1.xml">
37 <edmx:Include Namespace="Chassis"/>
38 </edmx:Reference>
39 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Assembly_v1.xml">
40 <edmx:Include Namespace="Assembly"/>
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/Task_v1.xml">
46 <edmx:Include Namespace="Task"/>
47 </edmx:Reference>
Ed Tanouscb103132019-10-08 11:34:22 -070048 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/PCIeFunction_v1.xml">
49 <edmx:Include Namespace="PCIeFunction"/>
50 </edmx:Reference>
Jason M. Billsea4aa752018-06-05 13:29:11 -070051
52 <edmx:DataServices>
53
54 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Drive">
55 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
56
57 <EntityType Name="Drive" BaseType="Resource.v1_0_0.Resource" Abstract="true">
Ed Tanouscb103132019-10-08 11:34:22 -070058 <Annotation Term="OData.Description" String="The Drive schema represents a single physical drive for a system, including links to associated volumes."/>
59 <Annotation Term="OData.LongDescription" String="This Resource shall represent a drive or other physical storage medium for a Redfish implementation."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -070060 <Annotation Term="Capabilities.InsertRestrictions">
61 <Record>
62 <PropertyValue Property="Insertable" Bool="false"/>
63 </Record>
64 </Annotation>
65 <Annotation Term="Capabilities.UpdateRestrictions">
66 <Record>
67 <PropertyValue Property="Updatable" Bool="true"/>
Ed Tanouscb103132019-10-08 11:34:22 -070068 <Annotation Term="OData.Description" String="Writable properties, such as IndicatorLED, can be updated for drives."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -070069 </Record>
70 </Annotation>
71 <Annotation Term="Capabilities.DeleteRestrictions">
72 <Record>
73 <PropertyValue Property="Deletable" Bool="false"/>
74 </Record>
75 </Annotation>
Ed Tanous530520e2019-01-02 13:41:37 -080076 <Annotation Term="Redfish.Uris">
77 <Collection>
78 <String>/redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/Drives/{DriveId}</String>
79 <String>/redfish/v1/Chassis/{ChassisId}/Drives/{DriveId}</String>
80 <String>/redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Drives/{DriveId}</String>
Marri Devender Raod45d2d02019-01-21 10:11:34 -060081 <String>/redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Drives/{DriveId}</String>
Ed Tanous530520e2019-01-02 13:41:37 -080082 <String>/redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Drives/{DriveId}</String>
Marri Devender Raod45d2d02019-01-21 10:11:34 -060083 <String>/redfish/v1/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Drives/{DriveId}</String>
84 <String>/redfish/v1/ResourceBlocks/{ResourceBlockId}/Drives/{DriveId}</String>
85 <String>/redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Drives/{DriveId}</String>
Ed Tanous530520e2019-01-02 13:41:37 -080086 </Collection>
87 </Annotation>
Jason M. Billsea4aa752018-06-05 13:29:11 -070088 </EntityType>
89
90 <Action Name="SecureErase" IsBound="true">
91 <Parameter Name="Drive" Type="Drive.v1_0_0.Actions"/>
Ed Tanouscb103132019-10-08 11:34:22 -070092 <Annotation Term="OData.Description" String="This action securely erases the contents of the drive."/>
93 <Annotation Term="OData.LongDescription" String="This action shall securely erase the drive."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -070094 </Action>
95
Ed Tanouscb103132019-10-08 11:34:22 -070096 <Action Name="Reset" IsBound="true">
97 <Parameter Name="Drive" Type="Drive.v1_0_0.Actions"/>
98 <Parameter Name="ResetType" Type="Resource.ResetType">
99 <Annotation Term="OData.Description" String="The type of reset."/>
100 <Annotation Term="OData.LongDescription" String="This parameter shall contain the type of reset. The Service may accept a request without the parameter and perform an implementation specific default reset."/>
101 </Parameter>
102 <Annotation Term="OData.Description" String="This action resets this drive."/>
103 <Annotation Term="OData.LongDescription" String="This action shall reset this drive."/>
104 <Annotation Term="Redfish.Revisions">
105 <Collection>
106 <Record>
107 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
108 <PropertyValue Property="Version" String="v1_7_0"/>
109 </Record>
110 </Collection>
111 </Annotation>
112 </Action>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700113 </Schema>
114
115 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Drive.v1_0_0">
116 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600117 <Annotation Term="Redfish.Release" String="2016.1"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700118
119 <EntityType Name="Drive" BaseType="Drive.Drive">
120 <Property Name="StatusIndicator" Type="Drive.v1_0_0.StatusIndicator">
121 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700122 <Annotation Term="OData.Description" String="The state of the status indicator, which communicates status information about this drive."/>
123 <Annotation Term="OData.LongDescription" String="This property shall contain the status indicator state for the status indicator associated with this drive. The Redfish.AllowableValues annotation specifies the valid values for this property."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700124 </Property>
125 <Property Name="IndicatorLED" Type="Resource.IndicatorLED">
126 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700127 <Annotation Term="OData.Description" String="The state of the indicator LED, that identifies the drive."/>
128 <Annotation Term="OData.LongDescription" String="This property shall contain the state for the indicator light associated with this drive."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700129 </Property>
130 <Property Name="Model" Type="Edm.String">
131 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700132 <Annotation Term="OData.Description" String="The model number for the drive."/>
133 <Annotation Term="OData.LongDescription" String="This property shall contain the name by which the manufacturer generally refers to the drive."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700134 </Property>
135 <Property Name="Revision" Type="Edm.String">
136 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700137 <Annotation Term="OData.Description" String="The revision of this drive. This is typically the firmware or hardware version of the drive."/>
138 <Annotation Term="OData.LongDescription" String="This property shall contain the manufacturer-defined revision for the associated drive."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700139 </Property>
Ed Tanous530520e2019-01-02 13:41:37 -0800140 <Property Name="Status" Type="Resource.Status" Nullable="false">
Ed Tanouscb103132019-10-08 11:34:22 -0700141 <Annotation Term="OData.Description" String="The status and health of the Resource and its subordinate or dependent Resources."/>
142 <Annotation Term="OData.LongDescription" String="This property shall contain any status or health properties of the Resource."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800143 </Property>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700144 <Property Name="CapacityBytes" Type="Edm.Int64">
145 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700146 <Annotation Term="OData.Description" String="The size, in bytes, of this drive."/>
147 <Annotation Term="OData.LongDescription" String="This property shall contain the raw size, in bytes, of the associated drive."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700148 <Annotation Term="Measures.Unit" String="By"/>
149 </Property>
150 <Property Name="FailurePredicted" Type="Edm.Boolean">
151 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700152 <Annotation Term="OData.Description" String="An indication of whether this drive currently predicts a failure in the near future."/>
153 <Annotation Term="OData.LongDescription" String="This property shall indicate whether this drive currently predicts a manufacturer-defined failure."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700154 </Property>
155 <Property Name="Protocol" Type="Protocol.Protocol">
156 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700157 <Annotation Term="OData.Description" String="The protocol that this drive currently uses to communicate to the storage controller."/>
158 <Annotation Term="OData.LongDescription" String="This property shall contain the protocol that the associated drive currently uses to communicate to the storage controller for this system."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700159 </Property>
160 <Property Name="MediaType" Type="Drive.v1_0_0.MediaType">
161 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
162 <Annotation Term="OData.Description" String="The type of media contained in this drive."/>
163 <Annotation Term="OData.LongDescription" String="This property shall contain the type of media contained in the associated drive."/>
164 </Property>
165 <Property Name="Manufacturer" Type="Edm.String">
166 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700167 <Annotation Term="OData.Description" String="The manufacturer of this drive."/>
168 <Annotation Term="OData.LongDescription" String="This property shall contain the name of the organization responsible for producing the drive. This organization might be the entity from whom the drive is purchased, but this is not necessarily true."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700169 </Property>
170 <Property Name="SKU" Type="Edm.String">
171 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700172 <Annotation Term="OData.Description" String="The SKU for this drive."/>
173 <Annotation Term="OData.LongDescription" String="This property shall contain the stock-keeping unit (SKU) number for this drive."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700174 </Property>
175 <Property Name="SerialNumber" Type="Edm.String">
176 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
177 <Annotation Term="OData.Description" String="The serial number for this drive."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700178 <Annotation Term="OData.LongDescription" String="This property shall contain the manufacturer-allocated number that identifies the drive."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700179 </Property>
180 <Property Name="PartNumber" Type="Edm.String">
181 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
182 <Annotation Term="OData.Description" String="The part number for this drive."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700183 <Annotation Term="OData.LongDescription" String="This property shall contain the part number assigned by the organization that is responsible for producing or manufacturing the drive."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700184 </Property>
185 <Property Name="AssetTag" Type="Edm.String">
186 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700187 <Annotation Term="OData.Description" String="The user-assigned asset tag for this drive."/>
188 <Annotation Term="OData.LongDescription" String="This property shall track the drive for inventory purposes."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700189 </Property>
190 <Property Name="Identifiers" Type="Collection(Resource.Identifier)" Nullable="false">
Ed Tanouscb103132019-10-08 11:34:22 -0700191 <Annotation Term="OData.Description" String="The durable names for the drive."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700192 <Annotation Term="OData.LongDescription" String="This property shall contain a list of all known durable names for the associated drive."/>
193 </Property>
194 <Property Name="Location" Type="Collection(Resource.Location)" Nullable="false">
Ed Tanouscb103132019-10-08 11:34:22 -0700195 <Annotation Term="OData.Description" String="The location of the drive."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700196 <Annotation Term="OData.LongDescription" String="This property shall contain location information of the associated drive."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600197 <Annotation Term="Redfish.Revisions">
198 <Collection>
199 <Record>
200 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
201 <PropertyValue Property="Version" String="v1_4_0"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700202 <PropertyValue Property="Description" String="This property has been deprecated in favor of the singular property PhysicalLocation found in Drive.v1_4_0."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600203 </Record>
204 </Collection>
205 </Annotation>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700206 </Property>
207 <Property Name="HotspareType" Type="Drive.v1_0_0.HotspareType">
208 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700209 <Annotation Term="OData.Description" String="The type of hot spare that this drive currently serves as."/>
210 <Annotation Term="OData.LongDescription" String="This property shall contain the hot spare type for the associated drive. If the drive currently serves as a hot spare, its Status.State field shall be 'StandbySpare' and 'Enabled' when it is part of a volume."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700211 </Property>
212 <Property Name="EncryptionAbility" Type="Drive.v1_0_0.EncryptionAbility">
213 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700214 <Annotation Term="OData.Description" String="The encryption ability of this drive."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700215 <Annotation Term="OData.LongDescription" String="This property shall contain the encryption ability for the associated drive."/>
216 </Property>
217 <Property Name="EncryptionStatus" Type="Drive.v1_0_0.EncryptionStatus">
218 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700219 <Annotation Term="OData.Description" String="The status of the encryption of this drive."/>
220 <Annotation Term="OData.LongDescription" String="This property shall contain the encryption status for the associated drive."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700221 </Property>
222 <Property Name="RotationSpeedRPM" Type="Edm.Decimal">
223 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700224 <Annotation Term="OData.Description" String="The rotation speed of this drive, in revolutions per minute (RPM)."/>
225 <Annotation Term="OData.LongDescription" String="This property shall contain the rotation speed, in revolutions per minute (RPM), of the associated drive."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700226 <Annotation Term="Measures.Unit" String="RPM"/>
227 </Property>
228 <Property Name="BlockSizeBytes" Type="Edm.Int64">
229 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700230 <Annotation Term="OData.Description" String="The size, in bytes, of the smallest addressable unit, or block."/>
231 <Annotation Term="OData.LongDescription" String="This property shall contain size of the smallest addressable unit of the associated drive."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700232 <Annotation Term="Measures.Unit" String="By"/>
233 </Property>
234 <Property Name="CapableSpeedGbs" Type="Edm.Decimal">
235 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700236 <Annotation Term="OData.Description" String="The speed, in gigabit per second (Gbit/s), at which this drive can communicate to a storage controller in ideal conditions."/>
237 <Annotation Term="OData.LongDescription" String="This property shall contain fastest capable bus speed, in gigabit per second (Gbit/s), of the associated drive."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700238 <Annotation Term="Measures.Unit" String="Gbit/s"/>
239 </Property>
240 <Property Name="NegotiatedSpeedGbs" Type="Edm.Decimal">
241 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700242 <Annotation Term="OData.Description" String="The speed, in gigabit per second (Gbit/s), at which this drive currently communicates to the storage controller."/>
243 <Annotation Term="OData.LongDescription" String="This property shall contain current bus speed, in gigabit per second (Gbit/s), of the associated drive."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700244 <Annotation Term="Measures.Unit" String="Gbit/s"/>
245 </Property>
246 <Property Name="PredictedMediaLifeLeftPercent" Type="Edm.Decimal">
247 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700248 <Annotation Term="OData.Description" String="The percentage of reads and writes that are predicted to be available for the media."/>
249 <Annotation Term="OData.LongDescription" String="This property shall contain an indicator of the percentage of life remaining in the drive's media."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800250 <Annotation Term="Measures.Unit" String="%"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700251 </Property>
252 <Property Name="Links" Type="Drive.v1_0_0.Links" Nullable="false">
Ed Tanouscb103132019-10-08 11:34:22 -0700253 <Annotation Term="OData.Description" String="The links to other Resources that are related to this Resource."/>
254 <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."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700255 </Property>
256 <Property Name="Actions" Type="Drive.v1_0_0.Actions" Nullable="false">
Ed Tanouscb103132019-10-08 11:34:22 -0700257 <Annotation Term="OData.Description" String="The available actions for this Resource."/>
258 <Annotation Term="OData.LongDescription" String="This property shall contain the available actions for this Resource."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700259 </Property>
260 </EntityType>
261
262 <ComplexType Name="Links" BaseType="Resource.Links">
Ed Tanouscb103132019-10-08 11:34:22 -0700263 <Annotation Term="OData.Description" String="The links to other Resources that are related to this Resource."/>
264 <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."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700265 <NavigationProperty Name="Volumes" Type="Collection(Volume.Volume)">
266 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700267 <Annotation Term="OData.Description" String="An array of links to the volumes that this drive either wholly or only partially contains."/>
268 <Annotation Term="OData.LongDescription" String="This property shall contain a link to the Resources of the Volume type with which this drive is associated. This property shall include all Volume Resources of which this drive is a member and all volumes for which this drive acts as a spare if the hot spare type is `Dedicated`."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700269 <Annotation Term="OData.AutoExpandReferences"/>
270 </NavigationProperty>
271 </ComplexType>
272
273 <ComplexType Name="Actions">
274 <Annotation Term="OData.AdditionalProperties" Bool="false"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700275 <Annotation Term="OData.Description" String="The available actions for this Resource."/>
276 <Annotation Term="OData.LongDescription" String="This type shall contain the available actions for this Resource."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800277 <Property Name="Oem" Type="Drive.v1_0_0.OemActions" Nullable="false">
Ed Tanouscb103132019-10-08 11:34:22 -0700278 <Annotation Term="OData.Description" String="The available OEM-specific actions for this Resource."/>
279 <Annotation Term="OData.LongDescription" String="This property shall contain the available OEM-specific actions for this Resource."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800280 </Property>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700281 </ComplexType>
282
283 <ComplexType Name="OemActions">
284 <Annotation Term="OData.AdditionalProperties" Bool="true"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700285 <Annotation Term="OData.Description" String="The available OEM-specific actions for this Resource."/>
286 <Annotation Term="OData.LongDescription" String="This type shall contain the available OEM-specific actions for this Resource."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700287 </ComplexType>
288
289 <EnumType Name="MediaType">
290 <Member Name="HDD">
291 <Annotation Term="OData.Description" String="The drive media type is traditional magnetic platters."/>
292 </Member>
293 <Member Name="SSD">
294 <Annotation Term="OData.Description" String="The drive media type is solid state or flash memory."/>
295 </Member>
296 <Member Name="SMR">
297 <Annotation Term="OData.Description" String="The drive media type is shingled magnetic recording."/>
298 </Member>
299 </EnumType>
300
301 <EnumType Name="HotspareType">
302 <Member Name="None">
Ed Tanouscb103132019-10-08 11:34:22 -0700303 <Annotation Term="OData.Description" String="The drive is not currently a hot spare."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700304 </Member>
305 <Member Name="Global">
Ed Tanouscb103132019-10-08 11:34:22 -0700306 <Annotation Term="OData.Description" String="The drive is currently serving as a hot spare for all other drives in the storage system."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700307 </Member>
308 <Member Name="Chassis">
Ed Tanouscb103132019-10-08 11:34:22 -0700309 <Annotation Term="OData.Description" String="The drive is currently serving as a hot spare for all other drives in the chassis."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700310 </Member>
311 <Member Name="Dedicated">
Ed Tanouscb103132019-10-08 11:34:22 -0700312 <Annotation Term="OData.Description" String="The drive is currently serving as a hot spare for a user-defined set of drives."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700313 </Member>
314 </EnumType>
315
316 <EnumType Name="EncryptionAbility">
317 <Member Name="None">
Ed Tanouscb103132019-10-08 11:34:22 -0700318 <Annotation Term="OData.Description" String="The drive is not capable of self-encryption."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700319 </Member>
320 <Member Name="SelfEncryptingDrive">
Ed Tanouscb103132019-10-08 11:34:22 -0700321 <Annotation Term="OData.Description" String="The drive is capable of self-encryption per the Trusted Computing Group's Self Encrypting Drive Standard."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700322 </Member>
323 <Member Name="Other">
Ed Tanouscb103132019-10-08 11:34:22 -0700324 <Annotation Term="OData.Description" String="The drive is capable of self-encryption through some other means."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700325 </Member>
326 </EnumType>
327
328 <EnumType Name="EncryptionStatus">
329 <Member Name="Unecrypted">
330 <Annotation Term="OData.Description" String="The drive is not currently encrypted."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600331 <Annotation Term="Redfish.Revisions">
332 <Collection>
333 <Record>
334 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
335 <PropertyValue Property="Version" String="v1_1_0"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700336 <PropertyValue Property="Description" String="This value has been deprecated in favor of Unencrypted."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600337 </Record>
338 </Collection>
339 </Annotation>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700340 </Member>
341 <Member Name="Unlocked">
Ed Tanouscb103132019-10-08 11:34:22 -0700342 <Annotation Term="OData.Description" String="The drive is currently encrypted but the data is accessible to the user in unencrypted form."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700343 </Member>
344 <Member Name="Locked">
Ed Tanouscb103132019-10-08 11:34:22 -0700345 <Annotation Term="OData.Description" String="The drive is currently encrypted and the data is not accessible to the user. However, the system can unlock the drive automatically."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700346 </Member>
347 <Member Name="Foreign">
348 <Annotation Term="OData.Description" String="The drive is currently encrypted, the data is not accessible to the user, and the system requires user intervention to expose the data."/>
349 </Member>
350 <Member Name="Unencrypted">
351 <Annotation Term="OData.Description" String="The drive is not currently encrypted."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600352 <Annotation Term="Redfish.Revisions">
353 <Collection>
354 <Record>
355 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
356 <PropertyValue Property="Version" String="v1_1_0"/>
357 </Record>
358 </Collection>
359 </Annotation>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700360 </Member>
361 </EnumType>
362
363 <EnumType Name="StatusIndicator">
364 <Member Name="OK">
365 <Annotation Term="OData.Description" String="The drive is OK."/>
366 </Member>
367 <Member Name="Fail">
368 <Annotation Term="OData.Description" String="The drive has failed."/>
369 </Member>
370 <Member Name="Rebuild">
371 <Annotation Term="OData.Description" String="The drive is being rebuilt."/>
372 </Member>
373 <Member Name="PredictiveFailureAnalysis">
Ed Tanouscb103132019-10-08 11:34:22 -0700374 <Annotation Term="OData.Description" String="The drive still works but is predicted to fail soon."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700375 </Member>
376 <Member Name="Hotspare">
Ed Tanouscb103132019-10-08 11:34:22 -0700377 <Annotation Term="OData.Description" String="The drive has been marked to automatically rebuild and replace a failed drive."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700378 </Member>
379 <Member Name="InACriticalArray">
Ed Tanouscb103132019-10-08 11:34:22 -0700380 <Annotation Term="OData.Description" String="The array to which this drive belongs has been degraded."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700381 </Member>
382 <Member Name="InAFailedArray">
Ed Tanouscb103132019-10-08 11:34:22 -0700383 <Annotation Term="OData.Description" String="The array to which this drive belongs has failed."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700384 </Member>
385 </EnumType>
386
387 </Schema>
388
389 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Drive.v1_0_1">
390 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
391 <Annotation Term="OData.Description" String="This version was created to show the EncryptionStatus enumerated list was updated."/>
392 <EntityType Name="Drive" BaseType="Drive.v1_0_0.Drive"/>
393 </Schema>
394
395 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Drive.v1_0_2">
396 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
397 <Annotation Term="OData.Description" String="This version was created to add explicit Permissions annotations to all properties for clarity."/>
398 <EntityType Name="Drive" BaseType="Drive.v1_0_1.Drive"/>
399 </Schema>
400
401 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Drive.v1_0_3">
402 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700403 <Annotation Term="OData.Description" String="This version was created to fix supported types and to remove the Nullable facet on NavigationProperties of the Collection type and to use Redfish.Deprecated on certain enumerated values."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700404 <EntityType Name="Drive" BaseType="Drive.v1_0_2.Drive"/>
405 </Schema>
406
407 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Drive.v1_0_4">
408 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700409 <Annotation Term="OData.Description" String="This version was created to change Identifier and Location to their abstract base types, and IndicatorLED and Protocol to use the unversioned definition. It was also created to correct the short and long descriptions in the defined Actions."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700410 <EntityType Name="Drive" BaseType="Drive.v1_0_3.Drive"/>
411 </Schema>
412
Ed Tanous530520e2019-01-02 13:41:37 -0800413 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Drive.v1_0_5">
414 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
415 <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 add missing percent units onto existing properties."/>
416 <EntityType Name="Drive" BaseType="Drive.v1_0_4.Drive"/>
417 </Schema>
418
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600419 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Drive.v1_0_6">
420 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700421 <Annotation Term="OData.Description" String="This version was created to use the new Revisions annotation. It was also created to change the VolumeCollection reference to Swordfish."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600422 <EntityType Name="Drive" BaseType="Drive.v1_0_5.Drive"/>
423 </Schema>
424
Ed Tanouscb103132019-10-08 11:34:22 -0700425 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Drive.v1_0_7">
426 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
427 <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."/>
428 <EntityType Name="Drive" BaseType="Drive.v1_0_6.Drive"/>
429 </Schema>
430
431 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Drive.v1_0_8">
432 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
433 <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
434 <EntityType Name="Drive" BaseType="Drive.v1_0_7.Drive"/>
435 </Schema>
436
Jason M. Billsea4aa752018-06-05 13:29:11 -0700437 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Drive.v1_1_0">
438 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600439 <Annotation Term="Redfish.Release" String="2016.2"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700440
441 <EntityType Name="Drive" BaseType="Drive.v1_0_1.Drive">
442 <Property Name="Operations" Type="Collection(Drive.v1_1_0.Operations)" Nullable="false">
443 <Annotation Term="OData.Description" String="The operations currently running on the Drive."/>
444 <Annotation Term="OData.LongDescription" String="This property shall contain a list of all operations currently running on the Drive."/>
445 </Property>
446 </EntityType>
447
448 <ComplexType Name="Links" BaseType="Drive.v1_0_0.Links">
449 <NavigationProperty Name="Endpoints" Type="Collection(Endpoint.Endpoint)">
450 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700451 <Annotation Term="OData.Description" String="An array of links to the endpoints that connect to this drive."/>
452 <Annotation Term="OData.LongDescription" String="This property shall contain a link to the Resources of the Endpoint type with which this drive is associated."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700453 <Annotation Term="OData.AutoExpandReferences"/>
454 </NavigationProperty>
455 </ComplexType>
456
457 <ComplexType Name="Operations">
458 <Annotation Term="OData.AdditionalProperties" Bool="false"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700459 <Annotation Term="OData.Description" String="An operation currently running on this Resource."/>
460 <Annotation Term="OData.LongDescription" String="This type shall describe a currently running operation on the Resource."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700461 <Property Name="OperationName" Type="Edm.String">
462 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
463 <Annotation Term="OData.Description" String="The name of the operation."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700464 <Annotation Term="OData.LongDescription" String="This property shall contain a string of the name of the operation."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700465 </Property>
466 <Property Name="PercentageComplete" Type="Edm.Int64">
467 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
468 <Annotation Term="OData.Description" String="The percentage of the operation that has been completed."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700469 <Annotation Term="OData.LongDescription" String="This property shall contain an interger of the percentage of the operation that has been completed."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800470 <Annotation Term="Measures.Unit" String="%"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700471 </Property>
472 <NavigationProperty Name="AssociatedTask" Type="Task.Task" Nullable="false">
473 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700474 <Annotation Term="OData.Description" String="The link to the task associated with the operation, if any."/>
475 <Annotation Term="OData.LongDescription" String="This property shall contain a link to a Resource of type Task that represents the task associated with the operation."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700476 </NavigationProperty>
477 </ComplexType>
478
479 </Schema>
480
481 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Drive.v1_1_1">
482 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
483 <Annotation Term="OData.Description" String="This version was created to show annotations in previous namespaces were updated."/>
484 <EntityType Name="Drive" BaseType="Drive.v1_1_0.Drive"/>
485 </Schema>
486
487 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Drive.v1_1_2">
488 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700489 <Annotation Term="OData.Description" String="This version was created to fix supported types to remove the Nullable facet on NavigationProperties of the Collection type and to use Redfish.Deprecated on certain enumerated values."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700490 <EntityType Name="Drive" BaseType="Drive.v1_1_1.Drive"/>
491 </Schema>
492
493 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Drive.v1_1_3">
494 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700495 <Annotation Term="OData.Description" String="This version was created to migrate the Operations definition, to change Identifier and Location to their abstract base types, and IndicatorLED, Protocol, and Operations to use the unversioned definition. It was also created to correct the short and long descriptions in the defined Actions."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700496 <EntityType Name="Drive" BaseType="Drive.v1_1_2.Drive"/>
497 </Schema>
498
Ed Tanous530520e2019-01-02 13:41:37 -0800499 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Drive.v1_1_4">
500 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
501 <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 add missing percent units onto existing properties."/>
502 <EntityType Name="Drive" BaseType="Drive.v1_1_3.Drive"/>
503 </Schema>
504
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600505 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Drive.v1_1_5">
506 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700507 <Annotation Term="OData.Description" String="This version was created to use the new Revisions annotation. It was also created to change the VolumeCollection reference to Swordfish."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600508 <EntityType Name="Drive" BaseType="Drive.v1_1_4.Drive"/>
509 </Schema>
510
Ed Tanouscb103132019-10-08 11:34:22 -0700511 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Drive.v1_1_6">
512 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
513 <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."/>
514 <EntityType Name="Drive" BaseType="Drive.v1_1_5.Drive"/>
515 </Schema>
516
517 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Drive.v1_1_7">
518 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
519 <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
520 <EntityType Name="Drive" BaseType="Drive.v1_1_6.Drive"/>
521 </Schema>
522
Jason M. Billsea4aa752018-06-05 13:29:11 -0700523 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Drive.v1_2_0">
524 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600525 <Annotation Term="Redfish.Release" String="2017.1"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700526 <EntityType Name="Drive" BaseType="Drive.v1_1_2.Drive"/>
527
528 <ComplexType Name="Links" BaseType="Drive.v1_1_0.Links">
529 <NavigationProperty Name="Chassis" Type="Chassis.Chassis" Nullable="false">
530 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700531 <Annotation Term="OData.Description" String="The link to the chassis that contains this drive."/>
532 <Annotation Term="OData.LongDescription" String="This property shall contain a link to a Resource of type Chassis that represents the physical container associated with this drive."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700533 <Annotation Term="OData.AutoExpandReferences"/>
534 </NavigationProperty>
535 </ComplexType>
536 </Schema>
537
538 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Drive.v1_2_1">
539 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700540 <Annotation Term="OData.Description" String="This version was created to migrate the Operations definition, to change Identifier and Location to their abstract base types, and IndicatorLED, Protocol, and Operations to use the unversioned definition. It was also created to correct the short and long descriptions in the defined Actions."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700541 <EntityType Name="Drive" BaseType="Drive.v1_2_0.Drive"/>
542 </Schema>
543
Ed Tanous530520e2019-01-02 13:41:37 -0800544 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Drive.v1_2_2">
545 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
546 <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 add missing percent units onto existing properties."/>
547 <EntityType Name="Drive" BaseType="Drive.v1_2_1.Drive"/>
548 </Schema>
549
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600550 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Drive.v1_2_3">
551 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700552 <Annotation Term="OData.Description" String="This version was created to use the new Revisions annotation. It was also created to change the VolumeCollection reference to Swordfish."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600553 <EntityType Name="Drive" BaseType="Drive.v1_2_2.Drive"/>
554 </Schema>
555
Ed Tanouscb103132019-10-08 11:34:22 -0700556 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Drive.v1_2_4">
557 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
558 <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."/>
559 <EntityType Name="Drive" BaseType="Drive.v1_2_3.Drive"/>
560 </Schema>
561
562 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Drive.v1_2_5">
563 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
564 <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
565 <EntityType Name="Drive" BaseType="Drive.v1_2_4.Drive"/>
566 </Schema>
567
Jason M. Billsea4aa752018-06-05 13:29:11 -0700568 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Drive.v1_3_0">
569 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600570 <Annotation Term="Redfish.Release" String="2017.3"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700571 <EntityType Name="Drive" BaseType="Drive.v1_2_1.Drive">
572 <NavigationProperty Name="Assembly" Type="Assembly.Assembly" ContainsTarget="true" Nullable="false">
573 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700574 <Annotation Term="OData.Description" String="The link to the assembly associated with this drive."/>
575 <Annotation Term="OData.LongDescription" String="This property shall contain a link to a Resource of type Assembly."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700576 <Annotation Term="OData.AutoExpandReferences"/>
577 </NavigationProperty>
578 </EntityType>
579 </Schema>
580
Ed Tanous530520e2019-01-02 13:41:37 -0800581 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Drive.v1_3_1">
582 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
583 <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 add missing percent units onto existing properties."/>
584 <EntityType Name="Drive" BaseType="Drive.v1_3_0.Drive"/>
585 </Schema>
586
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600587 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Drive.v1_3_2">
588 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700589 <Annotation Term="OData.Description" String="This version was created to use the new Revisions annotation. It was also created to change the VolumeCollection reference to Swordfish."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600590 <EntityType Name="Drive" BaseType="Drive.v1_3_1.Drive"/>
591 </Schema>
592
Ed Tanouscb103132019-10-08 11:34:22 -0700593 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Drive.v1_3_3">
594 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
595 <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."/>
596 <EntityType Name="Drive" BaseType="Drive.v1_3_2.Drive"/>
597 </Schema>
598
599 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Drive.v1_3_4">
600 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
601 <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
602 <EntityType Name="Drive" BaseType="Drive.v1_3_3.Drive"/>
603 </Schema>
604
Jason M. Billsea4aa752018-06-05 13:29:11 -0700605 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Drive.v1_4_0">
606 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600607 <Annotation Term="Redfish.Release" String="2018.1"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700608 <EntityType Name="Drive" BaseType="Drive.v1_3_0.Drive">
609 <Property Name="PhysicalLocation" Type="Resource.Location" Nullable="false">
Ed Tanouscb103132019-10-08 11:34:22 -0700610 <Annotation Term="OData.Description" String="The location of the drive."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700611 <Annotation Term="OData.LongDescription" String="This property shall contain location information of the associated drive."/>
612 </Property>
613 </EntityType>
614 </Schema>
615
Ed Tanous530520e2019-01-02 13:41:37 -0800616 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Drive.v1_4_1">
617 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
618 <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 add missing percent units onto existing properties."/>
619 <EntityType Name="Drive" BaseType="Drive.v1_4_0.Drive"/>
620 </Schema>
621
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600622 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Drive.v1_4_2">
623 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700624 <Annotation Term="OData.Description" String="This version was created to use the new Revisions annotation. It was also created to change the VolumeCollection reference to Swordfish."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600625 <EntityType Name="Drive" BaseType="Drive.v1_4_1.Drive"/>
626 </Schema>
627
Ed Tanouscb103132019-10-08 11:34:22 -0700628 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Drive.v1_4_3">
629 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
630 <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."/>
631 <EntityType Name="Drive" BaseType="Drive.v1_4_2.Drive"/>
632 </Schema>
633
634 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Drive.v1_4_4">
635 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
636 <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
637 <EntityType Name="Drive" BaseType="Drive.v1_4_3.Drive"/>
638 </Schema>
639
Ed Tanous530520e2019-01-02 13:41:37 -0800640 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Drive.v1_5_0">
641 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600642 <Annotation Term="Redfish.Release" String="2018.2"/>
Ed Tanous530520e2019-01-02 13:41:37 -0800643 <EntityType Name="Drive" BaseType="Drive.v1_4_1.Drive">
644 <Property Name="HotspareReplacementMode" Type="Drive.v1_5_0.HotspareReplacementModeType">
645 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700646 <Annotation Term="OData.Description" String="The replacement mode for the hot spare drive."/>
647 <Annotation Term="OData.LongDescription" String="This property shall indicate whether a commissioned hot spare continues to serve as a hot spare after the failed drive is replaced."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800648 </Property>
649 </EntityType>
650
651 <EnumType Name="HotspareReplacementModeType">
652 <Member Name="Revertible">
Ed Tanouscb103132019-10-08 11:34:22 -0700653 <Annotation Term="OData.Description" String="The hot spare drive that is commissioned due to a drive failure reverts to a hot spare after the failed drive is replaced and rebuilt."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800654 </Member>
655 <Member Name="NonRevertible">
Ed Tanouscb103132019-10-08 11:34:22 -0700656 <Annotation Term="OData.Description" String="The hot spare drive that is commissioned due to a drive failure remains as a data drive and does not revert to a hot spare if the failed drive is replaced."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800657 </Member>
658 </EnumType>
659 </Schema>
660
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600661 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Drive.v1_5_1">
662 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700663 <Annotation Term="OData.Description" String="This version was created to use the new Revisions annotation. It was also created to change the VolumeCollection reference to Swordfish."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600664 <EntityType Name="Drive" BaseType="Drive.v1_5_0.Drive"/>
665 </Schema>
666
Ed Tanouscb103132019-10-08 11:34:22 -0700667 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Drive.v1_5_2">
668 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
669 <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."/>
670 <EntityType Name="Drive" BaseType="Drive.v1_5_1.Drive"/>
671 </Schema>
672
673 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Drive.v1_5_3">
674 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
675 <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
676 <EntityType Name="Drive" BaseType="Drive.v1_5_2.Drive"/>
677 </Schema>
678
679 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Drive.v1_6_0">
680 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
681 <Annotation Term="Redfish.Release" String="2019.1"/>
682
683 <EntityType Name="Drive" BaseType="Drive.v1_5_2.Drive"/>
684
685 <ComplexType Name="Links" BaseType="Drive.v1_2_0.Links">
686 <NavigationProperty Name="PCIeFunctions" Type="Collection(PCIeFunction.PCIeFunction)">
687 <Annotation Term="OData.Description" String="An array of links to the PCIe functions that the drive produces."/>
688 <Annotation Term="OData.LongDescription" String="This property shall link to a Resource of type PCIeFunction that represents the PCIe functions associated with this Resource."/>
689 <Annotation Term="OData.AutoExpandReferences"/>
690 </NavigationProperty>
691 </ComplexType>
692 </Schema>
693
694 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Drive.v1_6_1">
695 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
696 <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
697 <EntityType Name="Drive" BaseType="Drive.v1_6_0.Drive"/>
698 </Schema>
699
700 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Drive.v1_7_0">
701 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
702 <Annotation Term="Redfish.Release" String="2019.2"/>
703 <Annotation Term="OData.Description" String="This version was created to add a WriteCacheEnabled property and reset action for Drive."/>
704 <EntityType Name="Drive" BaseType="Drive.v1_6_0.Drive">
705 <Property Name="WriteCacheEnabled" Type="Edm.Boolean">
706 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
707 <Annotation Term="OData.Description" String="An indication of whether the drive write cache is enabled."/>
708 <Annotation Term="OData.LongDescription" String="This property shall indicate whether the drive write cache is enabled."/>
709 </Property>
710 </EntityType>
711 </Schema>
712
Jason M. Billsea4aa752018-06-05 13:29:11 -0700713 </edmx:DataServices>
714</edmx:Edmx>