blob: dfb535295af255231ac78817f82caca1c015fc6b [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: Memory 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 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.Measures.V1.xml">
18 <edmx:Include Namespace="Org.OData.Measures.V1" Alias="Measures"/>
19 </edmx:Reference>
Jason M. Billsea4aa752018-06-05 13:29:11 -070020 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/RedfishExtensions_v1.xml">
21 <edmx:Include Namespace="RedfishExtensions.v1_0_0" Alias="Redfish"/>
22 <edmx:Include Namespace="Validation.v1_0_0" Alias="Validation"/>
23 </edmx:Reference>
24 <edmx:Reference Uri="http://docs.oasis-open.org/odata/odata/v4.0/errata03/csd01/complete/vocabularies/Org.OData.Capabilities.V1.xml">
25 <edmx:Include Namespace="Org.OData.Capabilities.V1" Alias="Capabilities"/>
26 </edmx:Reference>
27 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Resource_v1.xml">
28 <edmx:Include Namespace="Resource"/>
29 <edmx:Include Namespace="Resource.v1_0_0"/>
30 </edmx:Reference>
Jason M. Billsea4aa752018-06-05 13:29:11 -070031 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/MemoryMetrics_v1.xml">
32 <edmx:Include Namespace="MemoryMetrics"/>
33 </edmx:Reference>
34 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Chassis_v1.xml">
35 <edmx:Include Namespace="Chassis"/>
36 </edmx:Reference>
37 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Assembly_v1.xml">
38 <edmx:Include Namespace="Assembly"/>
39 </edmx:Reference>
40
41 <edmx:DataServices>
42
43 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory">
44 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
45
46 <EntityType Name="Memory" BaseType="Resource.v1_0_0.Resource" Abstract="true">
47 <Annotation Term="OData.Description" String="This is the schema definition of the Memory and its configuration."/>
48 <Annotation Term="OData.LongDescription" String="This resource shall be used to represent the Memory in a Redfish implementation."/>
49 <Annotation Term="OData.AdditionalProperties" Bool="false"/>
50 <Annotation Term="Capabilities.InsertRestrictions">
51 <Record>
52 <PropertyValue Property="Insertable" Bool="false"/>
53 </Record>
54 </Annotation>
55 <Annotation Term="Capabilities.UpdateRestrictions">
56 <Record>
57 <PropertyValue Property="Updatable" Bool="false"/>
58 </Record>
59 </Annotation>
60 <Annotation Term="Capabilities.DeleteRestrictions">
61 <Record>
62 <PropertyValue Property="Deletable" Bool="false"/>
63 </Record>
64 </Annotation>
Ed Tanous530520e2019-01-02 13:41:37 -080065 <Annotation Term="Redfish.Uris">
66 <Collection>
67 <String>/redfish/v1/Systems/{ComputerSystemId}/Memory/{MemoryId}</String>
68 <String>/redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Memory/{MemoryId}</String>
69 <String>/redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Memory/{MemoryId}</String>
Marri Devender Raod45d2d02019-01-21 10:11:34 -060070 <String>/redfish/v1/ResourceBlocks/{ResourceBlockId}/Memory/{MemoryId}</String>
71 <String>/redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Memory/{MemoryId}</String>
Ed Tanous530520e2019-01-02 13:41:37 -080072 </Collection>
73 </Annotation>
Jason M. Billsea4aa752018-06-05 13:29:11 -070074 </EntityType>
75
76 <Action Name="UnlockUnit" IsBound="true">
77 <Annotation Term="OData.Description" String="This defines the action for unlocking given regions."/>
78 <Annotation Term="OData.LongDescription" String="This action shall apply the supplied passphrase to the supplied region for the purpose of unlocking the given regions."/>
79 <Parameter Name="Memory" Type="Memory.v1_0_0.Actions"/>
80 <Parameter Name="RegionId" Type="Edm.String" Nullable="false">
81 <Annotation Term="OData.Description" String="Memory region ID for which this action to be applied."/>
82 <Annotation Term="OData.LongDescription" String="The value of this property shall be the Memory region ID for which this action to be applied."/>
83 </Parameter>
84 <Parameter Name="Passphrase" Type="Edm.String" Nullable="false">
85 <Annotation Term="OData.Description" String="Passphrase for doing the operation."/>
86 <Annotation Term="OData.LongDescription" String="The value of this property shall be the passphrase used in this actionn."/>
87 </Parameter>
88 </Action>
89
90 <Action Name="SecureEraseUnit" IsBound="true">
Ed Tanous530520e2019-01-02 13:41:37 -080091 <Annotation Term="OData.Description" String="This defines the action for securely erasing given regions using the NIST SP800-88 Purge: Cryptograhic Erase."/>
92 <Annotation Term="OData.LongDescription" String="This action shall securely erase the supplied region provided the supplied passphrase matches that of the given region using the NIST SP800-88 Purge: Cryptographic Erase. Use the OverwriteUnit method to perform NIST SP800-88 Purge: Overwrite."/>
93 <Parameter Name="Memory" Type="Memory.v1_0_0.Actions"/>
94 <Parameter Name="RegionId" Type="Edm.String" Nullable="false">
95 <Annotation Term="OData.Description" String="Memory region ID for which this action to be applied."/>
96 <Annotation Term="OData.LongDescription" String="The value of this property shall be the Memory region ID for which this action to be applied."/>
97 </Parameter>
98 <Parameter Name="Passphrase" Type="Edm.String" Nullable="false">
99 <Annotation Term="OData.Description" String="Passphrase for doing the operation."/>
100 <Annotation Term="OData.LongDescription" String="The value of this property shall be the passphrase used in this action."/>
101 </Parameter>
102 </Action>
103
104 <Action Name="OverwriteUnit" IsBound="true">
105 <Annotation Term="OData.Description" String="This defines the action for securely erasing given regions using the NIST SP800-88 Purge: Overwrite."/>
106 <Annotation Term="OData.LongDescription" String="This action shall securely erase the supplied region provided the supplied passphrase matches that of the given region using the NIST SP800-88 Purge: Overwrite. Use the SecureEraseUnit method to perform NIST SP800-88 Purge: Cryptographic Erase."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600107 <Annotation Term="Redfish.Revisions">
108 <Collection>
109 <Record>
110 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
111 <PropertyValue Property="Version" String="v1_6_0"/>
112 </Record>
113 </Collection>
114 </Annotation>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700115 <Parameter Name="Memory" Type="Memory.v1_0_0.Actions"/>
116 <Parameter Name="RegionId" Type="Edm.String" Nullable="false">
117 <Annotation Term="OData.Description" String="Memory region ID for which this action to be applied."/>
118 <Annotation Term="OData.LongDescription" String="The value of this property shall be the Memory region ID for which this action to be applied."/>
119 </Parameter>
120 <Parameter Name="Passphrase" Type="Edm.String" Nullable="false">
121 <Annotation Term="OData.Description" String="Passphrase for doing the operation."/>
122 <Annotation Term="OData.LongDescription" String="The value of this property shall be the passphrase used in this action."/>
123 </Parameter>
124 </Action>
125
126 <Action Name="SetPassphrase" IsBound="true">
127 <Annotation Term="OData.Description" String="Set passphrase for the given regions."/>
128 <Annotation Term="OData.LongDescription" String="This action shall apply the supplied passphrase to the supplied region."/>
129 <Parameter Name="Memory" Type="Memory.v1_0_0.Actions"/>
130 <Parameter Name="RegionId" Type="Edm.String" Nullable="false">
131 <Annotation Term="OData.Description" String="Memory region ID for which this action to be applied."/>
132 <Annotation Term="OData.LongDescription" String="The value of this property shall be the Memory region ID for which this action to be applied."/>
133 </Parameter>
134 <Parameter Name="Passphrase" Type="Edm.String" Nullable="false">
135 <Annotation Term="OData.Description" String="Passphrase for doing the operation."/>
136 <Annotation Term="OData.LongDescription" String="The value of this property shall be the passphrase used in this action."/>
137 </Parameter>
138 </Action>
139
140 <Action Name="DisablePassphrase" IsBound="true">
141 <Annotation Term="OData.Description" String="Disable passphrase for given regions."/>
142 <Annotation Term="OData.LongDescription" String="This action shall disaple the need for passphrases on the supplied region provided the supplied passphrase matches that of the region."/>
143 <Parameter Name="Memory" Type="Memory.v1_0_0.Actions"/>
144 <Parameter Name="RegionId" Type="Edm.String" Nullable="false">
145 <Annotation Term="OData.Description" String="Memory region ID for which this action to be applied."/>
146 <Annotation Term="OData.LongDescription" String="The value of this property shall be the Memory region ID for which this action to be applied."/>
147 </Parameter>
148 <Parameter Name="Passphrase" Type="Edm.String" Nullable="false">
149 <Annotation Term="OData.Description" String="Passphrase for doing the operation."/>
150 <Annotation Term="OData.LongDescription" String="The value of this property shall be the passphrase used in this action."/>
151 </Parameter>
152 </Action>
153 </Schema>
154
155 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_0_0">
156 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600157 <Annotation Term="Redfish.Release" String="2016.1"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700158
159 <EntityType Name="Memory" BaseType="Memory.Memory">
160 <Annotation Term="OData.Description" String="This is the schema definition for definition of a Memory and its configuration."/>
161 <Annotation Term="OData.AdditionalProperties" Bool="false"/>
162
163 <Property Name="MemoryType" Type="Memory.v1_0_0.MemoryType">
164 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
165 <Annotation Term="OData.Description" String="The type of Memory."/>
166 <Annotation Term="OData.LongDescription" String="The value of this property shall be the type of Memory represented by this resource."/>
167 </Property>
168 <Property Name="MemoryDeviceType" Type="Memory.v1_0_0.MemoryDeviceType">
169 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
170 <Annotation Term="OData.Description" String="Type details of the Memory."/>
171 <Annotation Term="OData.LongDescription" String="The value of this property shall be the Memory Device Type as defined by SMBIOS."/>
172 </Property>
173 <Property Name="BaseModuleType" Type="Memory.v1_0_0.BaseModuleType">
174 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
175 <Annotation Term="OData.Description" String="The base module type of Memory."/>
176 <Annotation Term="OData.LongDescription" String="The value of this property shall be the base module type of Memory."/>
177 </Property>
178 <Property Name="MemoryMedia" Type="Collection(Memory.v1_0_0.MemoryMedia)" Nullable="false">
179 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
180 <Annotation Term="OData.Description" String="Media of this Memory."/>
181 <Annotation Term="OData.LongDescription" String="The value of this property shall be the media types of this Memory."/>
182 </Property>
183 <Property Name="CapacityMiB" Type="Edm.Int64">
184 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
185 <Annotation Term="OData.Description" String="Memory Capacity in mebibytes (MiB)."/>
186 <Annotation Term="OData.LongDescription" String="The value of this property shall be the Memory capacity in MiB."/>
187 <Annotation Term="Measures.Unit" String="MiBy"/>
188 </Property>
189 <Property Name="DataWidthBits" Type="Edm.Int64">
190 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
191 <Annotation Term="OData.Description" String="Data Width in bits."/>
192 <Annotation Term="OData.LongDescription" String="The value of this property shall be the data width in bits."/>
193 </Property>
194 <Property Name="BusWidthBits" Type="Edm.Int64">
195 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
196 <Annotation Term="OData.Description" String="Bus Width in bits."/>
197 <Annotation Term="OData.LongDescription" String="The value of this property shall be the bus width in bits."/>
198 </Property>
199 <Property Name="Manufacturer" Type="Edm.String">
200 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
201 <Annotation Term="OData.Description" String="The Memory manufacturer."/>
202 <Annotation Term="OData.LongDescription" String="This property shall contain a string which identifies the manufacturer of the Memory."/>
203 </Property>
204 <Property Name="SerialNumber" Type="Edm.String">
205 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
206 <Annotation Term="OData.Description" String="The product serial number of this device."/>
207 <Annotation Term="OData.LongDescription" String="This property shall indicate the serial number as provided by the manufacturer of this Memory."/>
208 </Property>
209 <Property Name="PartNumber" Type="Edm.String">
210 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
211 <Annotation Term="OData.Description" String="The product part number of this device."/>
212 <Annotation Term="OData.LongDescription" String="This property shall indicate the part number as provided by the manufacturer of this Memory."/>
213 </Property>
214 <Property Name="AllowedSpeedsMHz" Type="Collection(Edm.Int64)" Nullable="false">
215 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
216 <Annotation Term="OData.Description" String="Speed bins supported by this Memory."/>
217 <Annotation Term="OData.LongDescription" String="The value of this property shall be the speed supported by this Memory."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800218 <Annotation Term="Measures.Unit" String="MHz"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700219 </Property>
220 <Property Name="FirmwareRevision" Type="Edm.String">
221 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
222 <Annotation Term="OData.Description" String="Revision of firmware on the Memory controller."/>
223 <Annotation Term="OData.LongDescription" String="The value of this property shall be the revision of firmware on the Memory controller."/>
224 </Property>
225 <Property Name="FirmwareApiVersion" Type="Edm.String">
226 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
227 <Annotation Term="OData.Description" String="Version of API supported by the firmware."/>
228 <Annotation Term="OData.LongDescription" String="The value of this property shall be the version of API supported by the firmware."/>
229 </Property>
230 <Property Name="FunctionClasses" Type="Collection(Edm.String)" Nullable="false">
Jason M. Billsea4aa752018-06-05 13:29:11 -0700231 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
232 <Annotation Term="OData.Description" String="Function Classes by the Memory."/>
233 <Annotation Term="OData.LongDescription" String="The value of this property shall be the function classes by the Memory."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600234 <Annotation Term="Redfish.Revisions">
235 <Collection>
236 <Record>
237 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
238 <PropertyValue Property="Version" String="v1_3_0"/>
239 <PropertyValue Property="Description" String="This property has been Deprecated in favor of OperatingMemoryModes at the root of the resource, or MemoryClassification found within RegionSet."/>
240 </Record>
241 </Collection>
242 </Annotation>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700243 </Property>
244 <Property Name="VendorID" Type="Edm.String">
Jason M. Billsea4aa752018-06-05 13:29:11 -0700245 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
246 <Annotation Term="OData.Description" String="Vendor ID."/>
247 <Annotation Term="OData.LongDescription" String="The value of this property shall be the vendor ID of the Memory."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600248 <Annotation Term="Redfish.Revisions">
249 <Collection>
250 <Record>
251 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
252 <PropertyValue Property="Version" String="v1_3_0"/>
253 <PropertyValue Property="Description" String="This property has been Deprecated in favor of ModuleManufacturerID."/>
254 </Record>
255 </Collection>
256 </Annotation>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700257 </Property>
258 <Property Name="DeviceID" Type="Edm.String">
Jason M. Billsea4aa752018-06-05 13:29:11 -0700259 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
260 <Annotation Term="OData.Description" String="Device ID."/>
261 <Annotation Term="OData.LongDescription" String="The value of this property shall be the device ID of the Memory."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600262 <Annotation Term="Redfish.Revisions">
263 <Collection>
264 <Record>
265 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
266 <PropertyValue Property="Version" String="v1_3_0"/>
267 <PropertyValue Property="Description" String="This property has been Deprecated in favor of ModuleProductID."/>
268 </Record>
269 </Collection>
270 </Annotation>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700271 </Property>
272 <Property Name="SubsystemVendorID" Type="Edm.String">
Jason M. Billsea4aa752018-06-05 13:29:11 -0700273 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
274 <Annotation Term="OData.Description" String="SubSystem Vendor ID."/>
275 <Annotation Term="OData.LongDescription" String="The value of this property shall be the subsystem Vendor ID of the Memory."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600276 <Annotation Term="Redfish.Revisions">
277 <Collection>
278 <Record>
279 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
280 <PropertyValue Property="Version" String="v1_3_0"/>
281 <PropertyValue Property="Description" String="This property has been Deprecated in favor of MemorySubsystemControllerManufacturerID."/>
282 </Record>
283 </Collection>
284 </Annotation>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700285 </Property>
286 <Property Name="SubsystemDeviceID" Type="Edm.String">
Jason M. Billsea4aa752018-06-05 13:29:11 -0700287 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
288 <Annotation Term="OData.Description" String="Subsystem Device ID."/>
289 <Annotation Term="OData.LongDescription" String="The value of this property shall be the subsystem Device ID of the Memory."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600290 <Annotation Term="Redfish.Revisions">
291 <Collection>
292 <Record>
293 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
294 <PropertyValue Property="Version" String="v1_3_0"/>
295 <PropertyValue Property="Description" String="This property has been Deprecated in favor of MemorySubsystemControllerProductID."/>
296 </Record>
297 </Collection>
298 </Annotation>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700299 </Property>
300 <Property Name="MaxTDPMilliWatts" Type="Collection(Edm.Int64)" Nullable="false">
301 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
302 <Annotation Term="OData.Description" String="Maximum TDPs in milli Watts."/>
303 <Annotation Term="OData.LongDescription" String="The value of this property shall be the maximum power budgets supported by the Memory in milli Watts."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800304 <Annotation Term="Measures.Unit" String="mW"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700305 </Property>
306 <Property Name="SecurityCapabilities" Type="Memory.v1_0_0.SecurityCapabilities" Nullable="false">
307 <Annotation Term="OData.Description" String="This object contains security capabilities of the Memory."/>
308 <Annotation Term="OData.LongDescription" String="This object shall contain properties which describe the security capabilities of the Memory."/>
309 </Property>
310 <Property Name="SpareDeviceCount" Type="Edm.Int64">
311 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
312 <Annotation Term="OData.Description" String="Number of unused spare devices available in the Memory."/>
313 <Annotation Term="OData.LongDescription" String="The value of this property shall be the number of unused spare devices available in the Memory. If memory devices fails, the spare device could be used."/>
314 </Property>
315 <Property Name="RankCount" Type="Edm.Int64">
316 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
317 <Annotation Term="OData.Description" String="Number of ranks available in the Memory."/>
318 <Annotation Term="OData.LongDescription" String="The value of this property shall be number of ranks available in the Memory. The ranks could be used for spare or interleave."/>
319 </Property>
320 <Property Name="DeviceLocator" Type="Edm.String">
321 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
322 <Annotation Term="OData.Description" String="Location of the Memory in the platform."/>
323 <Annotation Term="OData.LongDescription" String="The value of this property shall be location of the Memory in the platform, typically marked in the silk screen."/>
324 </Property>
325 <Property Name="MemoryLocation" Type="Memory.v1_0_0.MemoryLocation" Nullable="false">
326 <Annotation Term="OData.Description" String="Memory connection information to sockets and memory controllers."/>
327 <Annotation Term="OData.LongDescription" String="This object shall contain properties which describe the Memory connection information to sockets and memory controllers."/>
328 </Property>
329 <Property Name="ErrorCorrection" Type="Memory.v1_0_0.ErrorCorrection">
330 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
331 <Annotation Term="OData.Description" String="Error correction scheme supported for this memory."/>
332 <Annotation Term="OData.LongDescription" String="The value of this property shall be the error correction scheme supported for this memory."/>
333 </Property>
334 <Property Name="OperatingSpeedMhz" Type="Edm.Int64">
335 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
336 <Annotation Term="OData.Description" String="Operating speed of Memory in MHz or MT/s as appropriate."/>
337 <Annotation Term="OData.LongDescription" String="The value of this property shall be the operating speed of Memory in MHz or MT/s (mega-transfers per second) as reported by the memory device. Memory devices which operate at their bus speed shall report the operating speed in MHz (bus speed), while memory device which transfer data faster than their bus speed (e.g. DDR memory) shall report the operating speed in MT/s (mega-transfers/second). In any case, the reported value shall match the conventionally reported values for the technology utilized by the memory device."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800338 <Annotation Term="Measures.Unit" String="MHz"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700339 </Property>
340 <Property Name="VolatileRegionSizeLimitMiB" Type="Edm.Int64">
341 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
342 <Annotation Term="OData.Description" String="Total size of volatile regions in mebibytes (MiB)."/>
343 <Annotation Term="OData.LongDescription" String="The value of this property shall be the total size of volatile regions in MiB."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800344 <Annotation Term="Measures.Unit" String="MiBy"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700345 </Property>
346 <Property Name="PersistentRegionSizeLimitMiB" Type="Edm.Int64">
347 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
348 <Annotation Term="OData.Description" String="Total size of persistent regions in mebibytes (MiB)."/>
349 <Annotation Term="OData.LongDescription" String="The value of this property shall be the total size of persistent regions in MiB."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800350 <Annotation Term="Measures.Unit" String="MiBy"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700351 </Property>
352 <Property Name="Regions" Type="Collection(Memory.v1_0_0.RegionSet)" Nullable="false">
353 <Annotation Term="OData.Description" String="Memory regions information within the Memory."/>
354 <Annotation Term="OData.LongDescription" String="The value of this property shall be the memory region information within the Memory."/>
355 </Property>
356 <Property Name="OperatingMemoryModes" Type="Collection(Memory.v1_0_0.OperatingMemoryModes)" Nullable="false">
357 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
358 <Annotation Term="OData.Description" String="Memory modes supported by the Memory."/>
359 <Annotation Term="OData.LongDescription" String="The value of this property shall be the memory modes supported by the Memory."/>
360 </Property>
361 <Property Name="PowerManagementPolicy" Type="Memory.v1_0_0.PowerManagementPolicy" Nullable="false">
362 <Annotation Term="OData.Description" String="Power management policy information."/>
363 <Annotation Term="OData.LongDescription" String="This object shall contain properties which describe the power management policy for the current resource."/>
364 </Property>
365 <Property Name="IsSpareDeviceEnabled" Type="Edm.Boolean" DefaultValue="false">
366 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
367 <Annotation Term="OData.Description" String="Spare device enabled status."/>
368 <Annotation Term="OData.LongDescription" String="The value of this property shall be true if a spare device is enabled for this Memory."/>
369 </Property>
370 <Property Name="IsRankSpareEnabled" Type="Edm.Boolean" DefaultValue="false">
371 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
372 <Annotation Term="OData.Description" String="Rank spare enabled status."/>
373 <Annotation Term="OData.LongDescription" String="The value of this property shall be true if a rank spare is enabled for this Memory."/>
374 </Property>
375 <NavigationProperty Name="Metrics" Type="MemoryMetrics.MemoryMetrics" ContainsTarget="true" Nullable="false">
376 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
377 <Annotation Term="OData.Description" String="A reference to the Metrics associated with this Memory."/>
378 <Annotation Term="OData.LongDescription" String="A reference to the Metrics associated with this Memory."/>
379 <Annotation Term="OData.AutoExpandReferences"/>
380 </NavigationProperty>
381 <Property Name="Actions" Type="Memory.v1_0_0.Actions" Nullable="false">
382 <Annotation Term="OData.Description" String="The available actions for this resource."/>
383 <Annotation Term="OData.LongDescription" String="The Actions property shall contain the available actions for this resource."/>
384 </Property>
385 </EntityType>
386
387 <EnumType Name="MemoryType">
388 <Member Name="DRAM">
389 <Annotation Term="OData.Description" String="The memory module is composed of volatile memory."/>
390 <Annotation Term="OData.LongDescription" String="This memory type shall represent volatile DRAM."/>
391 </Member>
392 <Member Name="NVDIMM_N">
393 <Annotation Term="OData.Description" String="The memory module is composed of volatile memory backed by non-volatile memory."/>
394 <Annotation Term="OData.LongDescription" String="This memory type shall represent NVDIMM_N as defined by JEDEC."/>
395 </Member>
396 <Member Name="NVDIMM_F">
397 <Annotation Term="OData.Description" String="The memory module is composed of non-volatile memory."/>
398 <Annotation Term="OData.LongDescription" String="This memory type shall represent NVDIMM_F as defined by JEDEC."/>
399 </Member>
400 <Member Name="NVDIMM_P">
401 <Annotation Term="OData.Description" String="The memory module is composed of a combination of non-volatile and volatile memory."/>
402 <Annotation Term="OData.LongDescription" String="This memory type shall represent NVDIMM_P as defined by JEDEC."/>
403 </Member>
Ed Tanous530520e2019-01-02 13:41:37 -0800404 <Member Name="IntelOptane">
405 <Annotation Term="OData.Description" String="The memory module is Intel Optane DC Persistent Memory and composed of a combination of non-volatile and volatile memory."/>
406 <Annotation Term="OData.LongDescription" String="This memory type shall represent Intel Optane DC Persistent Memory."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600407 <Annotation Term="Redfish.Revisions">
408 <Collection>
409 <Record>
410 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
411 <PropertyValue Property="Version" String="v1_6_0"/>
412 </Record>
413 </Collection>
414 </Annotation>
Ed Tanous530520e2019-01-02 13:41:37 -0800415 </Member>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700416 </EnumType>
417
418 <EnumType Name="MemoryDeviceType">
419 <Member Name="DDR">
420 <Annotation Term="OData.Description" String="DDR."/>
421 </Member>
422 <Member Name="DDR2">
423 <Annotation Term="OData.Description" String="DDR2."/>
424 </Member>
425 <Member Name="DDR3">
426 <Annotation Term="OData.Description" String="DDR3."/>
427 </Member>
428 <Member Name="DDR4">
429 <Annotation Term="OData.Description" String="DDR4."/>
430 </Member>
431 <Member Name="DDR4_SDRAM">
432 <Annotation Term="OData.Description" String="DDR4 SDRAM."/>
433 </Member>
434 <Member Name="DDR4E_SDRAM">
435 <Annotation Term="OData.Description" String="DDR4E SDRAM."/>
436 </Member>
437 <Member Name="LPDDR4_SDRAM">
438 <Annotation Term="OData.Description" String="LPDDR4 SDRAM."/>
439 </Member>
440 <Member Name="DDR3_SDRAM">
441 <Annotation Term="OData.Description" String="DDR3 SDRAM."/>
442 </Member>
443 <Member Name="LPDDR3_SDRAM">
444 <Annotation Term="OData.Description" String="LPDDR3 SDRAM."/>
445 </Member>
446 <Member Name="DDR2_SDRAM">
447 <Annotation Term="OData.Description" String="DDR2 SDRAM."/>
448 </Member>
449 <Member Name="DDR2_SDRAM_FB_DIMM">
450 <Annotation Term="OData.Description" String="DDR2 SDRAM FB_DIMM."/>
451 </Member>
452 <Member Name="DDR2_SDRAM_FB_DIMM_PROBE">
453 <Annotation Term="OData.Description" String="DDR2 SDRAM FB_DIMM PROBE."/>
454 </Member>
455 <Member Name="DDR_SGRAM">
456 <Annotation Term="OData.Description" String="DDR SGRAM."/>
457 </Member>
458 <Member Name="DDR_SDRAM">
459 <Annotation Term="OData.Description" String="DDR SDRAM."/>
460 </Member>
461 <Member Name="ROM">
462 <Annotation Term="OData.Description" String="ROM."/>
463 </Member>
464 <Member Name="SDRAM">
465 <Annotation Term="OData.Description" String="SDRAM."/>
466 </Member>
467 <Member Name="EDO">
468 <Annotation Term="OData.Description" String="EDO."/>
469 </Member>
470 <Member Name="FastPageMode">
471 <Annotation Term="OData.Description" String="Fast Page Mode."/>
472 </Member>
473 <Member Name="PipelinedNibble">
474 <Annotation Term="OData.Description" String="Pipelined Nibble."/>
475 </Member>
476 <Member Name="Logical">
477 <Annotation Term="OData.Description" String="Logical Non-volatile device."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600478 <Annotation Term="Redfish.Revisions">
479 <Collection>
480 <Record>
481 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
482 <PropertyValue Property="Version" String="v1_4_0"/>
483 </Record>
484 </Collection>
485 </Annotation>
486 </Member>
487 <Member Name="HBM">
488 <Annotation Term="OData.Description" String="High Bandwidth Memory."/>
489 <Annotation Term="Redfish.Revisions">
490 <Collection>
491 <Record>
492 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
493 <PropertyValue Property="Version" String="v1_7_0"/>
494 </Record>
495 </Collection>
496 </Annotation>
497 </Member>
498 <Member Name="HBM2">
499 <Annotation Term="OData.Description" String="High Bandwidth Memory 2."/>
500 <Annotation Term="Redfish.Revisions">
501 <Collection>
502 <Record>
503 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
504 <PropertyValue Property="Version" String="v1_7_0"/>
505 </Record>
506 </Collection>
507 </Annotation>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700508 </Member>
509 </EnumType>
510
511 <EnumType Name="BaseModuleType">
512 <Member Name="RDIMM">
513 <Annotation Term="OData.Description" String="Registered DIMM."/>
514 </Member>
515 <Member Name="UDIMM">
516 <Annotation Term="OData.Description" String="UDIMM."/>
517 </Member>
518 <Member Name="SO_DIMM">
519 <Annotation Term="OData.Description" String="SO_DIMM."/>
520 </Member>
521 <Member Name="LRDIMM">
522 <Annotation Term="OData.Description" String="Load Reduced."/>
523 </Member>
524 <Member Name="Mini_RDIMM">
525 <Annotation Term="OData.Description" String="Mini_RDIMM."/>
526 </Member>
527 <Member Name="Mini_UDIMM">
528 <Annotation Term="OData.Description" String="Mini_UDIMM."/>
529 </Member>
530 <Member Name="SO_RDIMM_72b">
531 <Annotation Term="OData.Description" String="SO_RDIMM_72b."/>
532 </Member>
533 <Member Name="SO_UDIMM_72b">
534 <Annotation Term="OData.Description" String="SO_UDIMM_72b."/>
535 </Member>
536 <Member Name="SO_DIMM_16b">
537 <Annotation Term="OData.Description" String="SO_DIMM_16b."/>
538 </Member>
539 <Member Name="SO_DIMM_32b">
540 <Annotation Term="OData.Description" String="SO_DIMM_32b."/>
541 </Member>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600542 <Member Name="Die">
543 <Annotation Term="OData.Description" String="A die within a package."/>
544 <Annotation Term="Redfish.Revisions">
545 <Collection>
546 <Record>
547 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
548 <PropertyValue Property="Version" String="v1_7_0"/>
549 </Record>
550 </Collection>
551 </Annotation>
552 </Member>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700553 </EnumType>
554
555 <EnumType Name="MemoryMedia">
556 <Member Name="DRAM">
557 <Annotation Term="OData.Description" String="DRAM media."/>
558 </Member>
559 <Member Name="NAND">
560 <Annotation Term="OData.Description" String="NAND media."/>
561 </Member>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600562 <Member Name="Intel3DXPoint">
563 <Annotation Term="OData.Description" String="Intel 3D XPoint media."/>
564 <Annotation Term="Redfish.Revisions">
565 <Collection>
566 <Record>
567 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
568 <PropertyValue Property="Version" String="v1_7_0"/>
569 </Record>
570 </Collection>
571 </Annotation>
572 </Member>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700573 <Member Name="Proprietary">
574 <Annotation Term="OData.Description" String="Proprietary media."/>
575 </Member>
576 </EnumType>
577
578 <ComplexType Name="SecurityCapabilities">
579 <Annotation Term="OData.AdditionalProperties" Bool="false"/>
580 <Annotation Term="OData.Description" String="This type contains security capabilities of a Memory entity."/>
581 <Annotation Term="OData.LongDescription" String="This type shall contain properties which describe the security capabilities of a Memory entity."/>
582 <Property Name="PassphraseCapable" Type="Edm.Boolean">
583 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
584 <Annotation Term="OData.Description" String="Memory passphrase set capability."/>
585 <Annotation Term="OData.LongDescription" String="Memory passphrase set capability."/>
586 </Property>
587 <Property Name="MaxPassphraseCount" Type="Edm.Int64">
588 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
589 <Annotation Term="OData.Description" String="Maximum number of passphrases supported for this Memory."/>
590 <Annotation Term="OData.LongDescription" String="Maximum number of passphrases supported for this Memory."/>
591 </Property>
592 <Property Name="SecurityStates" Type="Collection(Memory.v1_0_0.SecurityStates)" Nullable="false">
593 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
594 <Annotation Term="OData.Description" String="Security states supported by the Memory."/>
595 <Annotation Term="OData.LongDescription" String="Security states supported by the Memory."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600596 <Annotation Term="Redfish.Revisions">
597 <Collection>
598 <Record>
599 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
600 <PropertyValue Property="Version" String="v1_7_0"/>
601 <PropertyValue Property="Description" String="This property has been deprecated in favor of using the individual PassphraseCapable, DataLockCapable and ConfigurationLockCapable properties."/>
602 </Record>
603 </Collection>
604 </Annotation>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700605 </Property>
606 </ComplexType>
607
608 <EnumType Name="SecurityStates">
609 <Member Name="Enabled">
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600610 <Annotation Term="OData.Description" String="Secure mode is enabled and access to the data is allowed."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700611 </Member>
612 <Member Name="Disabled">
613 <Annotation Term="OData.Description" String="Secure mode is disabled."/>
614 </Member>
615 <Member Name="Unlocked">
616 <Annotation Term="OData.Description" String="Secure mode is enabled and access to the data is unlocked."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600617 <Annotation Term="Redfish.Revisions">
618 <Collection>
619 <Record>
620 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
621 <PropertyValue Property="Version" String="v1_7_0"/>
622 <PropertyValue Property="Description" String="This value has been deprecated in favor of 'Enabled' to indicate normal security operation."/>
623 </Record>
624 </Collection>
625 </Annotation>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700626 </Member>
627 <Member Name="Locked">
628 <Annotation Term="OData.Description" String="Secure mode is enabled and access to the data is locked."/>
629 </Member>
630 <Member Name="Frozen">
631 <Annotation Term="OData.Description" String="Secure state is frozen and can not be modified until reset."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600632 <Annotation Term="Redfish.Revisions">
633 <Collection>
634 <Record>
635 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
636 <PropertyValue Property="Version" String="v1_7_0"/>
637 <PropertyValue Property="Description" String="This value has been deprecated in favor of using the ConfigurationLocked to indicate that the configuration has been frozen."/>
638 </Record>
639 </Collection>
640 </Annotation>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700641 </Member>
642 <Member Name="Passphraselimit">
643 <Annotation Term="OData.Description" String="Number of attempts to unlock the Memory exceeded limit."/>
644 </Member>
645 </EnumType>
646
647 <ComplexType Name="MemoryLocation">
648 <Annotation Term="OData.AdditionalProperties" Bool="false"/>
649 <Annotation Term="OData.Description" String="Memory connection information to sockets and memory controllers."/>
650 <Annotation Term="OData.LongDescription" String="This type shall contain properties which describe the Memory connection information to sockets and memory controllers."/>
651 <Property Name="Socket" Type="Edm.Int64">
652 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
653 <Annotation Term="OData.Description" String="Socket number in which Memory is connected."/>
654 <Annotation Term="OData.LongDescription" String="Socket number in which Memory is connected."/>
655 </Property>
656 <Property Name="MemoryController" Type="Edm.Int64">
657 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
658 <Annotation Term="OData.Description" String="Memory controller number in which Memory is connected."/>
659 <Annotation Term="OData.LongDescription" String="Memory controller number in which Memory is connected."/>
660 </Property>
661 <Property Name="Channel" Type="Edm.Int64">
662 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
663 <Annotation Term="OData.Description" String="Channel number in which Memory is connected."/>
664 <Annotation Term="OData.LongDescription" String="Channel number in which Memory is connected."/>
665 </Property>
666 <Property Name="Slot" Type="Edm.Int64">
667 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
668 <Annotation Term="OData.Description" String="Slot number in which Memory is connected."/>
669 <Annotation Term="OData.LongDescription" String="Slot number in which Memory is connected."/>
670 </Property>
671 </ComplexType>
672
673 <EnumType Name="ErrorCorrection">
674 <Member Name="NoECC">
675 <Annotation Term="OData.Description" String="No ECC available."/>
676 </Member>
677 <Member Name="SingleBitECC">
678 <Annotation Term="OData.Description" String="Single bit Data error can be corrected by ECC."/>
679 </Member>
680 <Member Name="MultiBitECC">
681 <Annotation Term="OData.Description" String="Multi-bit Data errors can be corrected by ECC."/>
682 </Member>
683 <Member Name="AddressParity">
684 <Annotation Term="OData.Description" String="Address Parity errors can be corrected."/>
685 </Member>
686 </EnumType>
687
688 <ComplexType Name="RegionSet">
689 <Annotation Term="OData.AdditionalProperties" Bool="false"/>
690 <Annotation Term="OData.Description" String="Memory region information within a Memory entity."/>
691 <Annotation Term="OData.LongDescription" String="This type shall describe the memory region information within a Memory entity."/>
692 <Property Name="RegionId" Type="Edm.String">
693 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
694 <Annotation Term="OData.Description" String="Unique region ID representing a specific region within the Memory."/>
695 <Annotation Term="OData.LongDescription" String="Unique region ID representing a specific region within the Memory."/>
696 </Property>
697 <Property Name="MemoryClassification" Type="Memory.v1_0_0.MemoryClassification">
698 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
699 <Annotation Term="OData.Description" String="Classification of memory occupied by the given memory region."/>
700 <Annotation Term="OData.LongDescription" String="Classification of memory occupied by the given memory region."/>
701 </Property>
702 <Property Name="OffsetMiB" Type="Edm.Int64">
703 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
704 <Annotation Term="OData.Description" String="Offset with in the Memory that corresponds to the starting of this memory region in mebibytes (MiB)."/>
705 <Annotation Term="OData.LongDescription" String="Offset with in the Memory that corresponds to the starting of this memory region in MiB."/>
706 <Annotation Term="Measures.Unit" String="MiBy"/>
707 </Property>
708 <Property Name="SizeMiB" Type="Edm.Int64">
709 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
710 <Annotation Term="OData.Description" String="Size of this memory region in mebibytes (MiB)."/>
711 <Annotation Term="OData.LongDescription" String="Size of this memory region in MiB."/>
712 <Annotation Term="Measures.Unit" String="MiBy"/>
713 </Property>
714 <Property Name="PassphraseState" Type="Edm.Boolean">
Jason M. Billsea4aa752018-06-05 13:29:11 -0700715 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
716 <Annotation Term="OData.Description" String="State of the passphrase for this region."/>
717 <Annotation Term="OData.LongDescription" String="State of the passphrase for this region."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600718 <Annotation Term="Redfish.Revisions">
719 <Collection>
720 <Record>
721 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
722 <PropertyValue Property="Version" String="v1_5_0"/>
723 <PropertyValue Property="Description" String="This property has been Deprecated in favor of PassphraseEnabled found within RegionSet."/>
724 </Record>
725 </Collection>
726 </Annotation>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700727 </Property>
728 </ComplexType>
729
730 <EnumType Name="MemoryClassification">
731 <Member Name="Volatile">
732 <Annotation Term="OData.Description" String="Volatile memory."/>
733 </Member>
734 <Member Name="ByteAccessiblePersistent">
735 <Annotation Term="OData.Description" String="Byte accessible persistent memory."/>
736 </Member>
737 <Member Name="Block">
738 <Annotation Term="OData.Description" String="Block accesible memory."/>
739 </Member>
740 </EnumType>
741
742 <EnumType Name="OperatingMemoryModes">
743 <Member Name="Volatile">
744 <Annotation Term="OData.Description" String="Volatile memory."/>
745 </Member>
746 <Member Name="PMEM">
747 <Annotation Term="OData.Description" String="Persistent memory, byte accesible through system address space."/>
748 </Member>
749 <Member Name="Block">
750 <Annotation Term="OData.Description" String="Block accessible system memory."/>
751 </Member>
752 </EnumType>
753
754 <ComplexType Name="PowerManagementPolicy">
755 <Annotation Term="OData.AdditionalProperties" Bool="false"/>
756 <Annotation Term="OData.Description" String="Power management policy information."/>
757 <Annotation Term="OData.LongDescription" String="This type shall contain properties which describe the power management policy for the current resource."/>
758 <Property Name="PolicyEnabled" Type="Edm.Boolean">
759 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
760 <Annotation Term="OData.Description" String="Power management policy enabled status."/>
761 <Annotation Term="OData.LongDescription" String="Power management policy enabled status."/>
762 </Property>
763 <Property Name="MaxTDPMilliWatts" Type="Edm.Int64">
764 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
765 <Annotation Term="OData.Description" String="Maximum TDP in milli watts."/>
766 <Annotation Term="OData.LongDescription" String="Maximum TDP in milli watts."/>
767 <Annotation Term="Measures.Unit" String="mW"/>
768 </Property>
769 <Property Name="PeakPowerBudgetMilliWatts" Type="Edm.Int64">
770 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
771 <Annotation Term="OData.Description" String="Peak power budget in milli watts."/>
772 <Annotation Term="OData.LongDescription" String="Peak power budget in milli watts."/>
773 <Annotation Term="Measures.Unit" String="mW"/>
774 </Property>
775 <Property Name="AveragePowerBudgetMilliWatts" Type="Edm.Int64">
776 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
777 <Annotation Term="OData.Description" String="Average power budget in milli watts."/>
778 <Annotation Term="OData.LongDescription" String="Average power budget in milli watts."/>
779 <Annotation Term="Measures.Unit" String="mW"/>
780 </Property>
781 </ComplexType>
782
783 <ComplexType Name="Actions">
784 <Annotation Term="OData.AdditionalProperties" Bool="false"/>
785 <Annotation Term="OData.Description" String="The available actions for this resource."/>
786 <Annotation Term="OData.LongDescription" String="This type shall contain the available actions for this resource."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800787 <Property Name="Oem" Type="Memory.v1_0_0.OemActions" Nullable="false">
788 <Annotation Term="OData.Description" String="This property contains the available OEM specific actions for this resource."/>
789 <Annotation Term="OData.LongDescription" String="This property shall contain any additional OEM actions for this resource."/>
790 </Property>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700791 </ComplexType>
792
793 <ComplexType Name="OemActions">
794 <Annotation Term="OData.AdditionalProperties" Bool="true"/>
795 <Annotation Term="OData.Description" String="The available OEM specific actions for this resource."/>
796 <Annotation Term="OData.LongDescription" String="This type shall contain any additional OEM actions for this resource."/>
797 </ComplexType>
798
799 </Schema>
800
801 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_0_1">
802 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
803 <Annotation Term="OData.Description" String="This version was created to show annotations in previous namespaces were updated."/>
804 <EntityType Name="Memory" BaseType="Memory.v1_0_0.Memory"/>
805 </Schema>
806
807 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_0_2">
808 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
809 <Annotation Term="OData.Description" String="This version was created to show annotations in previous namespaces were updated."/>
810 <EntityType Name="Memory" BaseType="Memory.v1_0_1.Memory"/>
811 </Schema>
812
813 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_0_3">
814 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
815 <Annotation Term="OData.Description" String="This version was created to add requirements on the action parameters to show they are mandatory via Nullable=false. It was also created to update the description of OperatingSpeedMHz."/>
816 <EntityType Name="Memory" BaseType="Memory.v1_0_2.Memory"/>
817 </Schema>
818
Ed Tanous530520e2019-01-02 13:41:37 -0800819 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_0_4">
820 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
821 <Annotation Term="OData.Description" String="This version was created to add Units annotations on various properties. It was also 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."/>
822 <EntityType Name="Memory" BaseType="Memory.v1_0_3.Memory"/>
823 </Schema>
824
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600825 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_0_5">
826 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
827 <Annotation Term="OData.Description" String="This version was created to make use of the new Revisions annotation."/>
828 <EntityType Name="Memory" BaseType="Memory.v1_0_4.Memory"/>
829 </Schema>
830
Jason M. Billsea4aa752018-06-05 13:29:11 -0700831 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_1_0">
832 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600833 <Annotation Term="Redfish.Release" String="2016.3"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700834 <EntityType Name="Memory" BaseType="Memory.v1_0_1.Memory">
Ed Tanous530520e2019-01-02 13:41:37 -0800835 <Property Name="Status" Type="Resource.Status" Nullable="false">
836 <Annotation Term="OData.Description" String="This property describes the status and health of the resource and its children."/>
837 <Annotation Term="OData.LongDescription" String="This property shall contain any status or health properties of the resource."/>
838 </Property>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700839 </EntityType>
840 </Schema>
841
842 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_1_1">
843 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
844 <Annotation Term="OData.Description" String="This version was created to show annotations in previous namespaces were updated."/>
845 <EntityType Name="Memory" BaseType="Memory.v1_1_0.Memory"/>
846 </Schema>
847
848 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_1_2">
849 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
850 <Annotation Term="OData.Description" String="This version was created to add requirements on the action parameters to show they are mandatory via Nullable=false. It was also created to update the description of OperatingSpeedMHz."/>
851 <EntityType Name="Memory" BaseType="Memory.v1_1_1.Memory"/>
852 </Schema>
853
Ed Tanous530520e2019-01-02 13:41:37 -0800854 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_1_3">
855 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
856 <Annotation Term="OData.Description" String="This version was created to add Units annotations on various properties. It was also 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."/>
857 <EntityType Name="Memory" BaseType="Memory.v1_1_2.Memory"/>
858 </Schema>
859
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600860 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_1_4">
861 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
862 <Annotation Term="OData.Description" String="This version was created to make use of the new Revisions annotation."/>
863 <EntityType Name="Memory" BaseType="Memory.v1_1_3.Memory"/>
864 </Schema>
865
Jason M. Billsea4aa752018-06-05 13:29:11 -0700866 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_2_0">
867 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600868 <Annotation Term="Redfish.Release" String="2017.1"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700869 <EntityType Name="Memory" BaseType="Memory.v1_1_1.Memory">
870 <Property Name="VolatileRegionNumberLimit" Type="Edm.Int64">
871 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
872 <Annotation Term="OData.Description" String="Total number of volatile regions this Memory can support."/>
873 <Annotation Term="OData.LongDescription" String="The value of this property shall be the total number of volatile regions this Memory can support."/>
874 </Property>
875 <Property Name="PersistentRegionNumberLimit" Type="Edm.Int64">
876 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
877 <Annotation Term="OData.Description" String="Total number of persistent regions this Memory can support."/>
878 <Annotation Term="OData.LongDescription" String="The value of this property shall be the total number of persistent regions this Memory can support."/>
879 </Property>
880 <Property Name="VolatileRegionSizeMaxMiB" Type="Edm.Int64">
881 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
882 <Annotation Term="OData.Description" String="Maximum size of a single volatile region in mebibytes (MiB)."/>
883 <Annotation Term="OData.LongDescription" String="The value of this property shall be the maximum size of a single volatile regions in MiB."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800884 <Annotation Term="Measures.Unit" String="MiBy"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700885 </Property>
886 <Property Name="PersistentRegionSizeMaxMiB" Type="Edm.Int64">
887 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
888 <Annotation Term="OData.Description" String="Maximum size of a single persistent region in mebibytes (MiB)."/>
889 <Annotation Term="OData.LongDescription" String="The value of this property shall be the maximum size of a single persistent regions in MiB."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800890 <Annotation Term="Measures.Unit" String="MiBy"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700891 </Property>
892 <Property Name="AllocationIncrementMiB" Type="Edm.Int64">
893 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
894 <Annotation Term="OData.Description" String="The size of the smallest unit of allocation for a memory region in mebibytes (MiB)."/>
895 <Annotation Term="OData.LongDescription" String="The value of this property shall be the allocation increment for regions, measured in MiB."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800896 <Annotation Term="Measures.Unit" String="MiBy"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700897 </Property>
898 <Property Name="AllocationAlignmentMiB" Type="Edm.Int64">
899 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
900 <Annotation Term="OData.Description" String="The boundary which memory regions are allocated on, measured in mebibytes (MiB)."/>
901 <Annotation Term="OData.LongDescription" String="The value of this property shall be thealignment boundary on which memory regions are allocated, measured in MiB."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800902 <Annotation Term="Measures.Unit" String="MiBy"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700903 </Property>
904 <Property Name="Links" Type="Memory.v1_2_0.Links" Nullable="false">
905 <Annotation Term="OData.Description" String="Contains references to other resources that are related to this resource."/>
906 <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."/>
907 </Property>
908 </EntityType>
909
910 <ComplexType Name="Links" BaseType="Resource.Links">
911 <Annotation Term="OData.Description" String="Contains references to other resources that are related to this resource."/>
912 <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."/>
913 <NavigationProperty Name="Chassis" Type="Chassis.Chassis" Nullable="false">
914 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
915 <Annotation Term="OData.Description" String="A reference to the Chassis which contains this Memory."/>
916 <Annotation Term="OData.LongDescription" String="The value of this property shall be a reference to a resource of type Chassis that represent the physical container associated with this Memory."/>
917 <Annotation Term="OData.AutoExpandReferences"/>
918 </NavigationProperty>
919 </ComplexType>
920 </Schema>
921
922 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_2_1">
923 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
924 <Annotation Term="OData.Description" String="This version was created to add requirements on the action parameters to show they are mandatory via Nullable=false. It was also created to update the description of OperatingSpeedMHz."/>
925 <EntityType Name="Memory" BaseType="Memory.v1_2_0.Memory"/>
926 </Schema>
927
Ed Tanous530520e2019-01-02 13:41:37 -0800928 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_2_2">
929 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
930 <Annotation Term="OData.Description" String="This version was created to add Units annotations on various properties. It was also 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."/>
931 <EntityType Name="Memory" BaseType="Memory.v1_2_1.Memory"/>
932 </Schema>
933
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600934 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_2_3">
935 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
936 <Annotation Term="OData.Description" String="This version was created to make use of the new Revisions annotation."/>
937 <EntityType Name="Memory" BaseType="Memory.v1_2_2.Memory"/>
938 </Schema>
939
Jason M. Billsea4aa752018-06-05 13:29:11 -0700940 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_3_0">
941 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600942 <Annotation Term="Redfish.Release" String="2017.2"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700943 <EntityType Name="Memory" BaseType="Memory.v1_2_0.Memory">
944 <Property Name="ModuleManufacturerID" Type="Edm.String">
945 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
946 <Annotation Term="OData.Description" String="The manufacturer ID of this memory module."/>
947 <Annotation Term="OData.LongDescription" String="The value of this property shall be the two byte manufacturer ID of this memory module as defined by JEDEC in JEP-106."/>
948 <Annotation Term="Validation.Pattern" String="^0[xX](([a-fA-F]|[0-9]){2}){2}$"/>
949 </Property>
950 <Property Name="ModuleProductID" Type="Edm.String">
951 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
952 <Annotation Term="OData.Description" String="The product ID of this memory module."/>
953 <Annotation Term="OData.LongDescription" String="The value of this property shall be the two byte product ID of this memory module as defined by the manufacturer."/>
954 <Annotation Term="Validation.Pattern" String="^0[xX](([a-fA-F]|[0-9]){2}){2}$"/>
955 </Property>
956 <Property Name="MemorySubsystemControllerManufacturerID" Type="Edm.String">
957 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
958 <Annotation Term="OData.Description" String="The manufacturer ID of the memory subsystem controller of this memory module."/>
959 <Annotation Term="OData.LongDescription" String="The value of this property shall be the two byte manufacturer ID of the memory subsystem controller of this memory module as defined by JEDEC in JEP-106."/>
960 <Annotation Term="Validation.Pattern" String="^0[xX](([a-fA-F]|[0-9]){2}){2}$"/>
961 </Property>
962 <Property Name="MemorySubsystemControllerProductID" Type="Edm.String">
963 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
964 <Annotation Term="OData.Description" String="The product ID of the memory subsystem controller of this memory module."/>
965 <Annotation Term="OData.LongDescription" String="The value of this property shall be the two byte product ID of the memory subsystem controller of this memory module as defined by the manufacturer."/>
966 <Annotation Term="Validation.Pattern" String="^0[xX](([a-fA-F]|[0-9]){2}){2}$"/>
967 </Property>
968 </EntityType>
969 </Schema>
970
971 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_3_1">
972 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
973 <Annotation Term="OData.Description" String="This version was created to add requirements on the action parameters to show they are mandatory via Nullable=false. It was also created to update the description of OperatingSpeedMHz."/>
974 <EntityType Name="Memory" BaseType="Memory.v1_3_0.Memory"/>
975 </Schema>
976
Ed Tanous530520e2019-01-02 13:41:37 -0800977 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_3_2">
978 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
979 <Annotation Term="OData.Description" String="This version was created to add Units annotations on various properties. It was also 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."/>
980 <EntityType Name="Memory" BaseType="Memory.v1_3_1.Memory"/>
981 </Schema>
982
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600983 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_3_3">
984 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
985 <Annotation Term="OData.Description" String="This version was created to make use of the new Revisions annotation."/>
986 <EntityType Name="Memory" BaseType="Memory.v1_3_2.Memory"/>
987 </Schema>
988
Jason M. Billsea4aa752018-06-05 13:29:11 -0700989 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_4_0">
990 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600991 <Annotation Term="Redfish.Release" String="2017.3"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700992 <EntityType Name="Memory" BaseType="Memory.v1_3_1.Memory">
993 <Property Name="VolatileSizeMiB" Type="Edm.Int64">
994 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
995 <Annotation Term="OData.Description" String="Total size of the volitile portion memory in MiB."/>
996 <Annotation Term="OData.LongDescription" String="The value of this property shall be the total size of the volatile portion memory in MiB."/>
997 <Annotation Term="Measures.Unit" String="MiBy"/>
998 </Property>
999 <Property Name="NonVolatileSizeMiB" Type="Edm.Int64">
1000 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1001 <Annotation Term="OData.Description" String="Total size of the non-volatile portion memory in MiB."/>
1002 <Annotation Term="OData.LongDescription" String="The value of this property shall be the total size of the non-volatile portion memory in MiB."/>
1003 <Annotation Term="Measures.Unit" String="MiBy"/>
1004 </Property>
1005 <Property Name="CacheSizeMiB" Type="Edm.Int64">
1006 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1007 <Annotation Term="OData.Description" String="Total size of the cache portion memory in MiB."/>
1008 <Annotation Term="OData.LongDescription" String="The value of this property shall be the total size of the cache portion memory in MiB."/>
1009 <Annotation Term="Measures.Unit" String="MiBy"/>
1010 </Property>
1011 <Property Name="LogicalSizeMiB" Type="Edm.Int64">
1012 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1013 <Annotation Term="OData.Description" String="Total size of the logical memory in MiB."/>
1014 <Annotation Term="OData.LongDescription" String="The value of this property shall be the total size of the logical memory in MiB."/>
1015 <Annotation Term="Measures.Unit" String="MiBy"/>
1016 </Property>
Ed Tanous530520e2019-01-02 13:41:37 -08001017 <Property Name="Location" Type="Resource.Location" Nullable="false">
1018 <Annotation Term="OData.Description" String="The Location of the memory."/>
1019 <Annotation Term="OData.LongDescription" String="This property shall contain location information of the associated memory."/>
1020 </Property>
Jason M. Billsea4aa752018-06-05 13:29:11 -07001021 <NavigationProperty Name="Assembly" Type="Assembly.Assembly" Nullable="false">
1022 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1023 <Annotation Term="OData.Description" String="A reference to the Assembly resource associated with this memory."/>
1024 <Annotation Term="OData.LongDescription" String="The value of this property shall be a link to a resource of type Assembly."/>
1025 <Annotation Term="OData.AutoExpandReferences"/>
1026 </NavigationProperty>
1027 </EntityType>
1028 </Schema>
1029
1030 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_4_1">
1031 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1032 <Annotation Term="OData.Description" String="This version was created to update descriptions to match the editorial style used in other Redfish schemas."/>
1033 <EntityType Name="Memory" BaseType="Memory.v1_4_0.Memory"/>
1034 </Schema>
1035
Ed Tanous530520e2019-01-02 13:41:37 -08001036 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_4_2">
1037 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1038 <Annotation Term="OData.Description" String="This version was created to add Units annotations on various properties. It was also 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."/>
1039 <EntityType Name="Memory" BaseType="Memory.v1_4_1.Memory"/>
1040 </Schema>
1041
Marri Devender Raod45d2d02019-01-21 10:11:34 -06001042 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_4_3">
1043 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1044 <Annotation Term="OData.Description" String="This version was created to make use of the new Revisions annotation."/>
1045 <EntityType Name="Memory" BaseType="Memory.v1_4_2.Memory"/>
1046 </Schema>
1047
Jason M. Billsea4aa752018-06-05 13:29:11 -07001048 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_5_0">
1049 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -06001050 <Annotation Term="Redfish.Release" String="2018.1"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -07001051 <EntityType Name="Memory" BaseType="Memory.v1_4_1.Memory"/>
1052
1053 <ComplexType Name="RegionSet" BaseType="Memory.v1_0_0.RegionSet">
1054 <Property Name="PassphraseEnabled" Type="Edm.Boolean">
1055 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1056 <Annotation Term="OData.Description" String="Indicates if the passphrase is enabled for this region."/>
1057 <Annotation Term="OData.LongDescription" String="The value of this property shall be a boolean indicating if the passphrase is enabled for this region."/>
1058 </Property>
1059 </ComplexType>
1060 </Schema>
1061
Ed Tanous530520e2019-01-02 13:41:37 -08001062 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_5_1">
1063 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1064 <Annotation Term="OData.Description" String="This version was created to add Units annotations on various properties. It was also 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."/>
1065 <EntityType Name="Memory" BaseType="Memory.v1_5_0.Memory"/>
1066 </Schema>
1067
Marri Devender Raod45d2d02019-01-21 10:11:34 -06001068 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_5_2">
1069 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1070 <Annotation Term="OData.Description" String="This version was created to make use of the new Revisions annotation."/>
1071 <EntityType Name="Memory" BaseType="Memory.v1_5_1.Memory"/>
1072 </Schema>
1073
Ed Tanous530520e2019-01-02 13:41:37 -08001074 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_6_0">
1075 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -06001076 <Annotation Term="Redfish.Release" String="2018.2"/>
Ed Tanous530520e2019-01-02 13:41:37 -08001077 <Annotation Term="OData.Description" String="This version was created to change the LongDescription of SecureEraseUnit. It was also created to define a new OverwriteUnit action. It also adds IntelOptane to the MemoryType list."/>
1078 <EntityType Name="Memory" BaseType="Memory.v1_5_1.Memory"/>
1079 </Schema>
1080
Marri Devender Raod45d2d02019-01-21 10:11:34 -06001081 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_6_1">
1082 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1083 <Annotation Term="OData.Description" String="This version was created to make use of the new Revisions annotation."/>
1084 <EntityType Name="Memory" BaseType="Memory.v1_6_0.Memory"/>
1085 </Schema>
1086
1087 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_7_0">
1088 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1089 <Annotation Term="Redfish.Release" String="2018.3"/>
1090 <Annotation Term="OData.Description" String="This version was created to add 3DXPoint to the MediaType enum. It was also created to add SecurityState, add ConfigurationLocked, add 3DXPoint to the MediaType enumerations, and to replace SecurityStates with individual capability properties."/>
1091 <EntityType Name="Memory" BaseType="Memory.v1_6_1.Memory">
1092 <Property Name="SecurityState" Type="Memory.v1_0_0.SecurityStates">
1093 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
1094 <Annotation Term="OData.Description" String="The current security state of this Memory."/>
1095 <Annotation Term="OData.LongDescription" String="The value of this property shall be the current security state of this memory."/>
1096 </Property>
1097 <Property Name="ConfigurationLocked" Type="Edm.Boolean">
1098 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1099 <Annotation Term="OData.Description" String="Indicates that the configuration of this memory has been locked."/>
1100 <Annotation Term="OData.LongDescription" String="The value of this property shall be the current configuration lock state of this memory. True shall indicate that the configuration is locked and cannot be altered. False shall indicate that the configuration is not locked and may be altered."/>
1101 </Property>
1102 </EntityType>
1103
1104 <ComplexType Name="SecurityCapabilities" BaseType="Memory.v1_0_0.SecurityCapabilities">
1105 <Property Name="ConfigurationLockCapable" Type="Edm.Boolean">
1106 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1107 <Annotation Term="OData.Description" String="Support for locking the configuration."/>
1108 <Annotation Term="OData.LongDescription" String="The value of this property shall indicate whether this memory supports the locking (freezing) of the configuration."/>
1109 </Property>
1110 <Property Name="DataLockCapable" Type="Edm.Boolean">
1111 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1112 <Annotation Term="OData.Description" String="Support for data locking."/>
1113 <Annotation Term="OData.LongDescription" String="The value of this property shall indicate whether this memory supports the locking of data access."/>
1114 </Property>
1115 <Property Name="PassphraseLockLimit" Type="Edm.Int64">
1116 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1117 <Annotation Term="OData.Description" String="Maximum number of incorrect passphrase attempts allowed before memory is locked."/>
1118 <Annotation Term="OData.LongDescription" String="The value of this property shall be the maximum number of incorrect passphase access attempts allowed before access to data is locked. A value of zero shall indicate that there is no limit to the number of attempts."/>
1119 </Property>
1120 </ComplexType>
1121 </Schema>
1122
Jason M. Billsea4aa752018-06-05 13:29:11 -07001123 </edmx:DataServices>
1124</edmx:Edmx>