blob: 45b82921b9cf44824c93c8fa371d14b35036bf26 [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: Memory v1.8.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>
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">
Ed Tanouscb103132019-10-08 11:34:22 -070047 <Annotation Term="OData.Description" String="The schema definition of the memory and its configuration."/>
48 <Annotation Term="OData.LongDescription" String="This Resource contains the memory in a Redfish implementation."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -070049 <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">
Ed Tanouscb103132019-10-08 11:34:22 -070077 <Annotation Term="OData.Description" String="This contains the action for unlocking given regions."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -070078 <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">
Ed Tanouscb103132019-10-08 11:34:22 -070081 <Annotation Term="OData.Description" String="The memory region ID to which to apply this action."/>
82 <Annotation Term="OData.LongDescription" String="This property shall contain the memory region ID to which to apply this action."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -070083 </Parameter>
84 <Parameter Name="Passphrase" Type="Edm.String" Nullable="false">
Ed Tanouscb103132019-10-08 11:34:22 -070085 <Annotation Term="OData.Description" String="The passphrase required to complete the operation."/>
86 <Annotation Term="OData.LongDescription" String="This property shall contain the passphrase required to complete this actionn."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -070087 </Parameter>
88 </Action>
89
90 <Action Name="SecureEraseUnit" IsBound="true">
Ed Tanouscb103132019-10-08 11:34:22 -070091 <Annotation Term="OData.Description" String="This contains 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."/>
Ed Tanous530520e2019-01-02 13:41:37 -080093 <Parameter Name="Memory" Type="Memory.v1_0_0.Actions"/>
94 <Parameter Name="RegionId" Type="Edm.String" Nullable="false">
Ed Tanouscb103132019-10-08 11:34:22 -070095 <Annotation Term="OData.Description" String="The memory region ID to which to apply this action."/>
96 <Annotation Term="OData.LongDescription" String="This property shall contain the memory region ID to which to apply this action."/>
Ed Tanous530520e2019-01-02 13:41:37 -080097 </Parameter>
98 <Parameter Name="Passphrase" Type="Edm.String" Nullable="false">
99 <Annotation Term="OData.Description" String="Passphrase for doing the operation."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700100 <Annotation Term="OData.LongDescription" String="This property shall contain the passphrase used in this action."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800101 </Parameter>
102 </Action>
103
104 <Action Name="OverwriteUnit" IsBound="true">
Ed Tanouscb103132019-10-08 11:34:22 -0700105 <Annotation Term="OData.Description" String="This contains 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">
Ed Tanouscb103132019-10-08 11:34:22 -0700117 <Annotation Term="OData.Description" String="The memory region ID to which to apply this action."/>
118 <Annotation Term="OData.LongDescription" String="This property shall contain the memory region ID to which to apply this action."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700119 </Parameter>
120 <Parameter Name="Passphrase" Type="Edm.String" Nullable="false">
121 <Annotation Term="OData.Description" String="Passphrase for doing the operation."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700122 <Annotation Term="OData.LongDescription" String="This property shall contain the passphrase used in this action."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700123 </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">
Ed Tanouscb103132019-10-08 11:34:22 -0700131 <Annotation Term="OData.Description" String="The memory region ID to which to apply this action."/>
132 <Annotation Term="OData.LongDescription" String="This property shall contain the memory region ID to which to apply this action."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700133 </Parameter>
134 <Parameter Name="Passphrase" Type="Edm.String" Nullable="false">
135 <Annotation Term="OData.Description" String="Passphrase for doing the operation."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700136 <Annotation Term="OData.LongDescription" String="This property shall contain the passphrase used in this action."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700137 </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">
Ed Tanouscb103132019-10-08 11:34:22 -0700145 <Annotation Term="OData.Description" String="The memory region ID to which to apply this action."/>
146 <Annotation Term="OData.LongDescription" String="This property shall contain the memory region ID to which to apply this action."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700147 </Parameter>
148 <Parameter Name="Passphrase" Type="Edm.String" Nullable="false">
149 <Annotation Term="OData.Description" String="Passphrase for doing the operation."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700150 <Annotation Term="OData.LongDescription" String="This property shall contain the passphrase used in this action."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700151 </Parameter>
152 </Action>
Ed Tanouscb103132019-10-08 11:34:22 -0700153
154 <Action Name="Reset" IsBound="true">
155 <Parameter Name="Memory" Type="Memory.v1_0_0.Actions"/>
156 <Parameter Name="ResetType" Type="Resource.ResetType">
157 <Annotation Term="OData.Description" String="The type of reset."/>
158 <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."/>
159 </Parameter>
160 <Annotation Term="OData.Description" String="This action resets this memory."/>
161 <Annotation Term="OData.LongDescription" String="This action shall reset this memory."/>
162 <Annotation Term="Redfish.Revisions">
163 <Collection>
164 <Record>
165 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
166 <PropertyValue Property="Version" String="v1_8_0"/>
167 </Record>
168 </Collection>
169 </Annotation>
170 </Action>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700171 </Schema>
172
173 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_0_0">
174 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600175 <Annotation Term="Redfish.Release" String="2016.1"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700176
177 <EntityType Name="Memory" BaseType="Memory.Memory">
Ed Tanouscb103132019-10-08 11:34:22 -0700178 <Annotation Term="OData.Description" String="The schema for definition of a memory and its configuration."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700179 <Annotation Term="OData.AdditionalProperties" Bool="false"/>
180
181 <Property Name="MemoryType" Type="Memory.v1_0_0.MemoryType">
182 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700183 <Annotation Term="OData.Description" String="The type of memory."/>
184 <Annotation Term="OData.LongDescription" String="This property shall contain the type of memory that this Resource represents."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700185 </Property>
186 <Property Name="MemoryDeviceType" Type="Memory.v1_0_0.MemoryDeviceType">
187 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700188 <Annotation Term="OData.Description" String="Type details of the memory."/>
189 <Annotation Term="OData.LongDescription" String="This property shall contain the Memory Device Type as defined by SMBIOS."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700190 </Property>
191 <Property Name="BaseModuleType" Type="Memory.v1_0_0.BaseModuleType">
192 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700193 <Annotation Term="OData.Description" String="The base module type of the memory."/>
194 <Annotation Term="OData.LongDescription" String="This property shall contain the base module type of the memory."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700195 </Property>
196 <Property Name="MemoryMedia" Type="Collection(Memory.v1_0_0.MemoryMedia)" Nullable="false">
197 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700198 <Annotation Term="OData.Description" String="Media of this memory."/>
199 <Annotation Term="OData.LongDescription" String="This property shall contain the media types of this memory."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700200 </Property>
201 <Property Name="CapacityMiB" Type="Edm.Int64">
202 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700203 <Annotation Term="OData.Description" String="Memory capacity in mebibytes (MiB)."/>
204 <Annotation Term="OData.LongDescription" String="This property shall contain the memory capacity in MiB."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700205 <Annotation Term="Measures.Unit" String="MiBy"/>
206 </Property>
207 <Property Name="DataWidthBits" Type="Edm.Int64">
208 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700209 <Annotation Term="OData.Description" String="Data width in bits."/>
210 <Annotation Term="OData.LongDescription" String="This property shall contain the data width in bits."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700211 </Property>
212 <Property Name="BusWidthBits" Type="Edm.Int64">
213 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700214 <Annotation Term="OData.Description" String="The bus width, in bits."/>
215 <Annotation Term="OData.LongDescription" String="This property shall contain the bus width, in bits."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700216 </Property>
217 <Property Name="Manufacturer" Type="Edm.String">
218 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700219 <Annotation Term="OData.Description" String="The memory manufacturer."/>
220 <Annotation Term="OData.LongDescription" String="This property shall contain the manufacturer of the memory."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700221 </Property>
222 <Property Name="SerialNumber" Type="Edm.String">
223 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
224 <Annotation Term="OData.Description" String="The product serial number of this device."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700225 <Annotation Term="OData.LongDescription" String="This property shall indicate the serial number as provided by the manufacturer of this memory."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700226 </Property>
227 <Property Name="PartNumber" Type="Edm.String">
228 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
229 <Annotation Term="OData.Description" String="The product part number of this device."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700230 <Annotation Term="OData.LongDescription" String="This property shall indicate the part number as provided by the manufacturer of this memory."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700231 </Property>
232 <Property Name="AllowedSpeedsMHz" Type="Collection(Edm.Int64)" Nullable="false">
233 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700234 <Annotation Term="OData.Description" String="Speeds supported by this memory."/>
235 <Annotation Term="OData.LongDescription" String="This property shall contain the speed supported by this memory."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800236 <Annotation Term="Measures.Unit" String="MHz"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700237 </Property>
238 <Property Name="FirmwareRevision" Type="Edm.String">
239 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700240 <Annotation Term="OData.Description" String="Revision of firmware on the memory controller."/>
241 <Annotation Term="OData.LongDescription" String="This property shall contain the revision of firmware on the memory controller."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700242 </Property>
243 <Property Name="FirmwareApiVersion" Type="Edm.String">
244 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
245 <Annotation Term="OData.Description" String="Version of API supported by the firmware."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700246 <Annotation Term="OData.LongDescription" String="This property shall contain the version of API supported by the firmware."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700247 </Property>
248 <Property Name="FunctionClasses" Type="Collection(Edm.String)" Nullable="false">
Jason M. Billsea4aa752018-06-05 13:29:11 -0700249 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700250 <Annotation Term="OData.Description" String="Function classes by the memory."/>
251 <Annotation Term="OData.LongDescription" String="This property shall contain the function classes by the memory."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600252 <Annotation Term="Redfish.Revisions">
253 <Collection>
254 <Record>
255 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
256 <PropertyValue Property="Version" String="v1_3_0"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700257 <PropertyValue Property="Description" String="This property has been deprecated in favor of OperatingMemoryModes at the root of the Resource, or MemoryClassification found within RegionSet."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600258 </Record>
259 </Collection>
260 </Annotation>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700261 </Property>
262 <Property Name="VendorID" Type="Edm.String">
Jason M. Billsea4aa752018-06-05 13:29:11 -0700263 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
264 <Annotation Term="OData.Description" String="Vendor ID."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700265 <Annotation Term="OData.LongDescription" String="This property shall contain the vendor ID of the memory."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600266 <Annotation Term="Redfish.Revisions">
267 <Collection>
268 <Record>
269 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
270 <PropertyValue Property="Version" String="v1_3_0"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700271 <PropertyValue Property="Description" String="This property has been deprecated in favor of ModuleManufacturerID."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600272 </Record>
273 </Collection>
274 </Annotation>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700275 </Property>
276 <Property Name="DeviceID" Type="Edm.String">
Jason M. Billsea4aa752018-06-05 13:29:11 -0700277 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
278 <Annotation Term="OData.Description" String="Device ID."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700279 <Annotation Term="OData.LongDescription" String="This property shall contain the device ID of the memory."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600280 <Annotation Term="Redfish.Revisions">
281 <Collection>
282 <Record>
283 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
284 <PropertyValue Property="Version" String="v1_3_0"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700285 <PropertyValue Property="Description" String="This property has been deprecated in favor of ModuleProductID."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600286 </Record>
287 </Collection>
288 </Annotation>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700289 </Property>
290 <Property Name="SubsystemVendorID" Type="Edm.String">
Jason M. Billsea4aa752018-06-05 13:29:11 -0700291 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700292 <Annotation Term="OData.Description" String="SubSystem vendor ID."/>
293 <Annotation Term="OData.LongDescription" String="This property shall contain the subsystem vendor ID of the memory."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600294 <Annotation Term="Redfish.Revisions">
295 <Collection>
296 <Record>
297 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
298 <PropertyValue Property="Version" String="v1_3_0"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700299 <PropertyValue Property="Description" String="This property has been deprecated in favor of MemorySubsystemControllerManufacturerID."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600300 </Record>
301 </Collection>
302 </Annotation>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700303 </Property>
304 <Property Name="SubsystemDeviceID" Type="Edm.String">
Jason M. Billsea4aa752018-06-05 13:29:11 -0700305 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700306 <Annotation Term="OData.Description" String="Subsystem device ID."/>
307 <Annotation Term="OData.LongDescription" String="This property shall contain the subsystem device ID of the memory."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600308 <Annotation Term="Redfish.Revisions">
309 <Collection>
310 <Record>
311 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
312 <PropertyValue Property="Version" String="v1_3_0"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700313 <PropertyValue Property="Description" String="This property has been deprecated in favor of MemorySubsystemControllerProductID."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600314 </Record>
315 </Collection>
316 </Annotation>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700317 </Property>
318 <Property Name="MaxTDPMilliWatts" Type="Collection(Edm.Int64)" Nullable="false">
319 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700320 <Annotation Term="OData.Description" String="Set of maximum power budgets supported by the memory in milliwatts."/>
321 <Annotation Term="OData.LongDescription" String="This property shall contain an array of maximum power budgets supported by the memory in milliwatts."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800322 <Annotation Term="Measures.Unit" String="mW"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700323 </Property>
324 <Property Name="SecurityCapabilities" Type="Memory.v1_0_0.SecurityCapabilities" Nullable="false">
Ed Tanouscb103132019-10-08 11:34:22 -0700325 <Annotation Term="OData.Description" String="Security capabilities of the memory."/>
326 <Annotation Term="OData.LongDescription" String="This property shall contain properties that describe the security capabilities of the memory."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700327 </Property>
328 <Property Name="SpareDeviceCount" Type="Edm.Int64">
329 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700330 <Annotation Term="OData.Description" String="Number of unused spare devices available in the memory."/>
331 <Annotation Term="OData.LongDescription" String="This property shall contain the number of unused spare devices available in the memory. If memory devices fails, the spare device could be used."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700332 </Property>
333 <Property Name="RankCount" Type="Edm.Int64">
334 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700335 <Annotation Term="OData.Description" String="Number of ranks available in the memory."/>
336 <Annotation Term="OData.LongDescription" String="This property shall contain the number of ranks available in the memory. The ranks could be used for spare or interleave."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700337 </Property>
338 <Property Name="DeviceLocator" Type="Edm.String">
339 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700340 <Annotation Term="OData.Description" String="Location of the memory in the platform."/>
341 <Annotation Term="OData.LongDescription" String="This property shall contain location of the memory in the platform, typically marked in the silk screen."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700342 </Property>
343 <Property Name="MemoryLocation" Type="Memory.v1_0_0.MemoryLocation" Nullable="false">
344 <Annotation Term="OData.Description" String="Memory connection information to sockets and memory controllers."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700345 <Annotation Term="OData.LongDescription" String="This object shall contain properties that describe the memory connection information to sockets and memory controllers."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700346 </Property>
347 <Property Name="ErrorCorrection" Type="Memory.v1_0_0.ErrorCorrection">
348 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
349 <Annotation Term="OData.Description" String="Error correction scheme supported for this memory."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700350 <Annotation Term="OData.LongDescription" String="This property shall contain the error correction scheme supported for this memory."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700351 </Property>
352 <Property Name="OperatingSpeedMhz" Type="Edm.Int64">
353 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700354 <Annotation Term="OData.Description" String="Operating speed of memory in MHz or MT/s as appropriate."/>
355 <Annotation Term="OData.LongDescription" String="This property shall contain the operating speed of memory in MHz or MT/s (mega-transfers per second) as reported by the memory device. memory devices that operate at their bus speed shall report the operating speed in MHz (bus speed), while memory devices that transfer data faster than their bus speed, such as 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 used by the memory device."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800356 <Annotation Term="Measures.Unit" String="MHz"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700357 </Property>
358 <Property Name="VolatileRegionSizeLimitMiB" Type="Edm.Int64">
359 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
360 <Annotation Term="OData.Description" String="Total size of volatile regions in mebibytes (MiB)."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700361 <Annotation Term="OData.LongDescription" String="This property shall contain the total size of volatile regions in MiB."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800362 <Annotation Term="Measures.Unit" String="MiBy"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700363 </Property>
364 <Property Name="PersistentRegionSizeLimitMiB" Type="Edm.Int64">
365 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
366 <Annotation Term="OData.Description" String="Total size of persistent regions in mebibytes (MiB)."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700367 <Annotation Term="OData.LongDescription" String="This property shall contain the total size of persistent regions in MiB."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800368 <Annotation Term="Measures.Unit" String="MiBy"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700369 </Property>
370 <Property Name="Regions" Type="Collection(Memory.v1_0_0.RegionSet)" Nullable="false">
Ed Tanouscb103132019-10-08 11:34:22 -0700371 <Annotation Term="OData.Description" String="Memory regions information within the memory."/>
372 <Annotation Term="OData.LongDescription" String="This property shall contain the memory region information within the memory."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700373 </Property>
374 <Property Name="OperatingMemoryModes" Type="Collection(Memory.v1_0_0.OperatingMemoryModes)" Nullable="false">
375 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700376 <Annotation Term="OData.Description" String="Memory modes supported by the memory."/>
377 <Annotation Term="OData.LongDescription" String="This property shall contain the memory modes supported by the memory."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700378 </Property>
379 <Property Name="PowerManagementPolicy" Type="Memory.v1_0_0.PowerManagementPolicy" Nullable="false">
380 <Annotation Term="OData.Description" String="Power management policy information."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700381 <Annotation Term="OData.LongDescription" String="This object shall contain properties that describe the power management policy for this Resource."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700382 </Property>
383 <Property Name="IsSpareDeviceEnabled" Type="Edm.Boolean" DefaultValue="false">
384 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700385 <Annotation Term="OData.Description" String="An indication of whether a spare device is enabled for this memory."/>
386 <Annotation Term="OData.LongDescription" String="This property shall indicate whether the spare device is enabled."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700387 </Property>
388 <Property Name="IsRankSpareEnabled" Type="Edm.Boolean" DefaultValue="false">
389 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700390 <Annotation Term="OData.Description" String="An indication of whether rank spare is enabled for this memory."/>
391 <Annotation Term="OData.LongDescription" String="This property shall indicate whether rank spare is enabled for this memory."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700392 </Property>
393 <NavigationProperty Name="Metrics" Type="MemoryMetrics.MemoryMetrics" ContainsTarget="true" Nullable="false">
394 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700395 <Annotation Term="OData.Description" String="The link to the Metrics associated with this memory."/>
396 <Annotation Term="OData.LongDescription" String="The link to the metrics associated with this memory."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700397 <Annotation Term="OData.AutoExpandReferences"/>
398 </NavigationProperty>
399 <Property Name="Actions" Type="Memory.v1_0_0.Actions" Nullable="false">
Ed Tanouscb103132019-10-08 11:34:22 -0700400 <Annotation Term="OData.Description" String="The available actions for this Resource."/>
401 <Annotation Term="OData.LongDescription" String="This property shall contain the available actions for this Resource."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700402 </Property>
403 </EntityType>
404
405 <EnumType Name="MemoryType">
406 <Member Name="DRAM">
Ed Tanouscb103132019-10-08 11:34:22 -0700407 <Annotation Term="OData.Description" String="The memory module is comprised of volatile memory."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700408 <Annotation Term="OData.LongDescription" String="This memory type shall represent volatile DRAM."/>
409 </Member>
410 <Member Name="NVDIMM_N">
Ed Tanouscb103132019-10-08 11:34:22 -0700411 <Annotation Term="OData.Description" String="The memory module is comprised of volatile memory backed by non-volatile memory."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700412 <Annotation Term="OData.LongDescription" String="This memory type shall represent NVDIMM_N as defined by JEDEC."/>
413 </Member>
414 <Member Name="NVDIMM_F">
Ed Tanouscb103132019-10-08 11:34:22 -0700415 <Annotation Term="OData.Description" String="The memory module is comprised of non-volatile memory."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700416 <Annotation Term="OData.LongDescription" String="This memory type shall represent NVDIMM_F as defined by JEDEC."/>
417 </Member>
418 <Member Name="NVDIMM_P">
Ed Tanouscb103132019-10-08 11:34:22 -0700419 <Annotation Term="OData.Description" String="The memory module is comprised of a combination of non-volatile and volatile memory."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700420 <Annotation Term="OData.LongDescription" String="This memory type shall represent NVDIMM_P as defined by JEDEC."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700421 </Member>
Ed Tanous530520e2019-01-02 13:41:37 -0800422 <Member Name="IntelOptane">
Ed Tanouscb103132019-10-08 11:34:22 -0700423 <Annotation Term="OData.Description" String="The memory module is an Intel Optane DC Persistent Memory Module."/>
424 <Annotation Term="OData.LongDescription" String="This memory type shall represent an Intel Optane DC Persistent Memory Module."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600425 <Annotation Term="Redfish.Revisions">
426 <Collection>
427 <Record>
428 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
429 <PropertyValue Property="Version" String="v1_6_0"/>
430 </Record>
431 </Collection>
432 </Annotation>
Ed Tanous530520e2019-01-02 13:41:37 -0800433 </Member>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700434 </EnumType>
435
436 <EnumType Name="MemoryDeviceType">
437 <Member Name="DDR">
438 <Annotation Term="OData.Description" String="DDR."/>
439 </Member>
440 <Member Name="DDR2">
441 <Annotation Term="OData.Description" String="DDR2."/>
442 </Member>
443 <Member Name="DDR3">
444 <Annotation Term="OData.Description" String="DDR3."/>
445 </Member>
446 <Member Name="DDR4">
447 <Annotation Term="OData.Description" String="DDR4."/>
448 </Member>
449 <Member Name="DDR4_SDRAM">
450 <Annotation Term="OData.Description" String="DDR4 SDRAM."/>
451 </Member>
452 <Member Name="DDR4E_SDRAM">
453 <Annotation Term="OData.Description" String="DDR4E SDRAM."/>
454 </Member>
455 <Member Name="LPDDR4_SDRAM">
456 <Annotation Term="OData.Description" String="LPDDR4 SDRAM."/>
457 </Member>
458 <Member Name="DDR3_SDRAM">
459 <Annotation Term="OData.Description" String="DDR3 SDRAM."/>
460 </Member>
461 <Member Name="LPDDR3_SDRAM">
462 <Annotation Term="OData.Description" String="LPDDR3 SDRAM."/>
463 </Member>
464 <Member Name="DDR2_SDRAM">
465 <Annotation Term="OData.Description" String="DDR2 SDRAM."/>
466 </Member>
467 <Member Name="DDR2_SDRAM_FB_DIMM">
468 <Annotation Term="OData.Description" String="DDR2 SDRAM FB_DIMM."/>
469 </Member>
470 <Member Name="DDR2_SDRAM_FB_DIMM_PROBE">
471 <Annotation Term="OData.Description" String="DDR2 SDRAM FB_DIMM PROBE."/>
472 </Member>
473 <Member Name="DDR_SGRAM">
474 <Annotation Term="OData.Description" String="DDR SGRAM."/>
475 </Member>
476 <Member Name="DDR_SDRAM">
477 <Annotation Term="OData.Description" String="DDR SDRAM."/>
478 </Member>
479 <Member Name="ROM">
480 <Annotation Term="OData.Description" String="ROM."/>
481 </Member>
482 <Member Name="SDRAM">
483 <Annotation Term="OData.Description" String="SDRAM."/>
484 </Member>
485 <Member Name="EDO">
486 <Annotation Term="OData.Description" String="EDO."/>
487 </Member>
488 <Member Name="FastPageMode">
489 <Annotation Term="OData.Description" String="Fast Page Mode."/>
490 </Member>
491 <Member Name="PipelinedNibble">
492 <Annotation Term="OData.Description" String="Pipelined Nibble."/>
493 </Member>
494 <Member Name="Logical">
495 <Annotation Term="OData.Description" String="Logical Non-volatile device."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600496 <Annotation Term="Redfish.Revisions">
497 <Collection>
498 <Record>
499 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
500 <PropertyValue Property="Version" String="v1_4_0"/>
501 </Record>
502 </Collection>
503 </Annotation>
504 </Member>
505 <Member Name="HBM">
506 <Annotation Term="OData.Description" String="High Bandwidth Memory."/>
507 <Annotation Term="Redfish.Revisions">
508 <Collection>
509 <Record>
510 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
511 <PropertyValue Property="Version" String="v1_7_0"/>
512 </Record>
513 </Collection>
514 </Annotation>
515 </Member>
516 <Member Name="HBM2">
517 <Annotation Term="OData.Description" String="High Bandwidth Memory 2."/>
518 <Annotation Term="Redfish.Revisions">
519 <Collection>
520 <Record>
521 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
522 <PropertyValue Property="Version" String="v1_7_0"/>
523 </Record>
524 </Collection>
525 </Annotation>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700526 </Member>
527 </EnumType>
528
529 <EnumType Name="BaseModuleType">
530 <Member Name="RDIMM">
531 <Annotation Term="OData.Description" String="Registered DIMM."/>
532 </Member>
533 <Member Name="UDIMM">
534 <Annotation Term="OData.Description" String="UDIMM."/>
535 </Member>
536 <Member Name="SO_DIMM">
537 <Annotation Term="OData.Description" String="SO_DIMM."/>
538 </Member>
539 <Member Name="LRDIMM">
540 <Annotation Term="OData.Description" String="Load Reduced."/>
541 </Member>
542 <Member Name="Mini_RDIMM">
543 <Annotation Term="OData.Description" String="Mini_RDIMM."/>
544 </Member>
545 <Member Name="Mini_UDIMM">
546 <Annotation Term="OData.Description" String="Mini_UDIMM."/>
547 </Member>
548 <Member Name="SO_RDIMM_72b">
549 <Annotation Term="OData.Description" String="SO_RDIMM_72b."/>
550 </Member>
551 <Member Name="SO_UDIMM_72b">
552 <Annotation Term="OData.Description" String="SO_UDIMM_72b."/>
553 </Member>
554 <Member Name="SO_DIMM_16b">
555 <Annotation Term="OData.Description" String="SO_DIMM_16b."/>
556 </Member>
557 <Member Name="SO_DIMM_32b">
558 <Annotation Term="OData.Description" String="SO_DIMM_32b."/>
559 </Member>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600560 <Member Name="Die">
561 <Annotation Term="OData.Description" String="A die within a package."/>
562 <Annotation Term="Redfish.Revisions">
563 <Collection>
564 <Record>
565 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
566 <PropertyValue Property="Version" String="v1_7_0"/>
567 </Record>
568 </Collection>
569 </Annotation>
570 </Member>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700571 </EnumType>
572
573 <EnumType Name="MemoryMedia">
574 <Member Name="DRAM">
575 <Annotation Term="OData.Description" String="DRAM media."/>
576 </Member>
577 <Member Name="NAND">
578 <Annotation Term="OData.Description" String="NAND media."/>
579 </Member>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600580 <Member Name="Intel3DXPoint">
581 <Annotation Term="OData.Description" String="Intel 3D XPoint media."/>
582 <Annotation Term="Redfish.Revisions">
583 <Collection>
584 <Record>
585 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
586 <PropertyValue Property="Version" String="v1_7_0"/>
587 </Record>
588 </Collection>
589 </Annotation>
590 </Member>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700591 <Member Name="Proprietary">
592 <Annotation Term="OData.Description" String="Proprietary media."/>
593 </Member>
594 </EnumType>
595
596 <ComplexType Name="SecurityCapabilities">
597 <Annotation Term="OData.AdditionalProperties" Bool="false"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700598 <Annotation Term="OData.Description" String="This type contains security capabilities of a memory device."/>
599 <Annotation Term="OData.LongDescription" String="This type shall contain properties that describe the security capabilities of a memory device."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700600 <Property Name="PassphraseCapable" Type="Edm.Boolean">
601 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700602 <Annotation Term="OData.Description" String="An indication of whether the memory is passphrase capable."/>
603 <Annotation Term="OData.LongDescription" String="This property shall indicate whether the memory is passphrase capable."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700604 </Property>
605 <Property Name="MaxPassphraseCount" Type="Edm.Int64">
606 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700607 <Annotation Term="OData.Description" String="Maximum number of passphrases supported for this memory."/>
608 <Annotation Term="OData.LongDescription" String="This property shall contain the maximum number of passphrases supported for this memory."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700609 </Property>
610 <Property Name="SecurityStates" Type="Collection(Memory.v1_0_0.SecurityStates)" Nullable="false">
611 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700612 <Annotation Term="OData.Description" String="Security states supported by the memory."/>
613 <Annotation Term="OData.LongDescription" String="This property shall contain the security states supported by the memory."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600614 <Annotation Term="Redfish.Revisions">
Ed Tanouscb103132019-10-08 11:34:22 -0700615 <Collection>
616 <Record>
617 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
618 <PropertyValue Property="Version" String="v1_7_0"/>
619 <PropertyValue Property="Description" String="This property has been deprecated in favor of using the individual PassphraseCapable, DataLockCapable and ConfigurationLockCapable properties."/>
620 </Record>
621 </Collection>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600622 </Annotation>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700623 </Property>
624 </ComplexType>
625
626 <EnumType Name="SecurityStates">
627 <Member Name="Enabled">
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600628 <Annotation Term="OData.Description" String="Secure mode is enabled and access to the data is allowed."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700629 </Member>
630 <Member Name="Disabled">
631 <Annotation Term="OData.Description" String="Secure mode is disabled."/>
632 </Member>
633 <Member Name="Unlocked">
634 <Annotation Term="OData.Description" String="Secure mode is enabled and access to the data is unlocked."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600635 <Annotation Term="Redfish.Revisions">
Ed Tanouscb103132019-10-08 11:34:22 -0700636 <Collection>
637 <Record>
638 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
639 <PropertyValue Property="Version" String="v1_7_0"/>
640 <PropertyValue Property="Description" String="This value has been deprecated in favor of 'Enabled' to indicate normal security operation."/>
641 </Record>
642 </Collection>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600643 </Annotation>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700644 </Member>
645 <Member Name="Locked">
646 <Annotation Term="OData.Description" String="Secure mode is enabled and access to the data is locked."/>
647 </Member>
648 <Member Name="Frozen">
Ed Tanouscb103132019-10-08 11:34:22 -0700649 <Annotation Term="OData.Description" String="Secure state is frozen and cannot be modified until reset."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600650 <Annotation Term="Redfish.Revisions">
Ed Tanouscb103132019-10-08 11:34:22 -0700651 <Collection>
652 <Record>
653 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
654 <PropertyValue Property="Version" String="v1_7_0"/>
655 <PropertyValue Property="Description" String="This value has been deprecated in favor of using the ConfigurationLocked to indicate that the configuration has been frozen."/>
656 </Record>
657 </Collection>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600658 </Annotation>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700659 </Member>
660 <Member Name="Passphraselimit">
Ed Tanouscb103132019-10-08 11:34:22 -0700661 <Annotation Term="OData.Description" String="Number of attempts to unlock the memory exceeded limit."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700662 </Member>
663 </EnumType>
664
665 <ComplexType Name="MemoryLocation">
666 <Annotation Term="OData.AdditionalProperties" Bool="false"/>
667 <Annotation Term="OData.Description" String="Memory connection information to sockets and memory controllers."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700668 <Annotation Term="OData.LongDescription" String="This type shall contain properties that describe the memory connection information to sockets and memory controllers."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700669 <Property Name="Socket" Type="Edm.Int64">
670 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700671 <Annotation Term="OData.Description" String="The socket number to which the memory is connected."/>
672 <Annotation Term="OData.LongDescription" String="This property shall contain the socket number to which the memory is connected."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700673 </Property>
674 <Property Name="MemoryController" Type="Edm.Int64">
675 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700676 <Annotation Term="OData.Description" String="The memory controller number to which the memory is connected."/>
677 <Annotation Term="OData.LongDescription" String="This property shall contain the memory controller number to which the memory is connected."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700678 </Property>
679 <Property Name="Channel" Type="Edm.Int64">
680 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700681 <Annotation Term="OData.Description" String="The channel number to which the memory is connected."/>
682 <Annotation Term="OData.LongDescription" String="This property shall contain the channel number to which the memory is connected."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700683 </Property>
684 <Property Name="Slot" Type="Edm.Int64">
685 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700686 <Annotation Term="OData.Description" String="The slot number to which the memory is connected."/>
687 <Annotation Term="OData.LongDescription" String="This property shall contain the slot number to which the memory is connected."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700688 </Property>
689 </ComplexType>
690
691 <EnumType Name="ErrorCorrection">
692 <Member Name="NoECC">
693 <Annotation Term="OData.Description" String="No ECC available."/>
694 </Member>
695 <Member Name="SingleBitECC">
Ed Tanouscb103132019-10-08 11:34:22 -0700696 <Annotation Term="OData.Description" String="Single bit data errors can be corrected by ECC."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700697 </Member>
698 <Member Name="MultiBitECC">
Ed Tanouscb103132019-10-08 11:34:22 -0700699 <Annotation Term="OData.Description" String="Multibit data errors can be corrected by ECC."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700700 </Member>
701 <Member Name="AddressParity">
Ed Tanouscb103132019-10-08 11:34:22 -0700702 <Annotation Term="OData.Description" String="Address parity errors can be corrected."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700703 </Member>
704 </EnumType>
705
706 <ComplexType Name="RegionSet">
707 <Annotation Term="OData.AdditionalProperties" Bool="false"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700708 <Annotation Term="OData.Description" String="Memory region information within a memory device."/>
709 <Annotation Term="OData.LongDescription" String="This type shall describe the memory region information within a memory device."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700710 <Property Name="RegionId" Type="Edm.String">
711 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700712 <Annotation Term="OData.Description" String="Unique region ID representing a specific region within the memory."/>
713 <Annotation Term="OData.LongDescription" String="This property shall contain the unique region ID representing a specific region within the memory."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700714 </Property>
715 <Property Name="MemoryClassification" Type="Memory.v1_0_0.MemoryClassification">
716 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700717 <Annotation Term="OData.Description" String="The classification of memory that the memory region occupies."/>
718 <Annotation Term="OData.LongDescription" String="This property shall contain the classification of memory that the memory region occupies."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700719 </Property>
720 <Property Name="OffsetMiB" Type="Edm.Int64">
721 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700722 <Annotation Term="OData.Description" String="Offset within the memory that corresponds to the start of this memory region in mebibytes (MiB)."/>
723 <Annotation Term="OData.LongDescription" String="This property shall contain the offset within the memory that corresponds to the start of this memory region in MiB."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700724 <Annotation Term="Measures.Unit" String="MiBy"/>
725 </Property>
726 <Property Name="SizeMiB" Type="Edm.Int64">
727 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
728 <Annotation Term="OData.Description" String="Size of this memory region in mebibytes (MiB)."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700729 <Annotation Term="OData.LongDescription" String="This property shall contain the size of this memory region in MiB."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700730 <Annotation Term="Measures.Unit" String="MiBy"/>
731 </Property>
732 <Property Name="PassphraseState" Type="Edm.Boolean">
Jason M. Billsea4aa752018-06-05 13:29:11 -0700733 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700734 <Annotation Term="OData.Description" String="An indication of whether the state of the passphrase for this region is enabled."/>
735 <Annotation Term="OData.LongDescription" String="This property shall indicate whether the state of the passphrase for this region is enabled."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600736 <Annotation Term="Redfish.Revisions">
737 <Collection>
738 <Record>
739 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
740 <PropertyValue Property="Version" String="v1_5_0"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700741 <PropertyValue Property="Description" String="This property has been deprecated in favor of PassphraseEnabled found within RegionSet."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600742 </Record>
743 </Collection>
744 </Annotation>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700745 </Property>
746 </ComplexType>
747
748 <EnumType Name="MemoryClassification">
749 <Member Name="Volatile">
750 <Annotation Term="OData.Description" String="Volatile memory."/>
751 </Member>
752 <Member Name="ByteAccessiblePersistent">
Ed Tanouscb103132019-10-08 11:34:22 -0700753 <Annotation Term="OData.Description" String="Byte-accessible persistent memory."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700754 </Member>
755 <Member Name="Block">
Ed Tanouscb103132019-10-08 11:34:22 -0700756 <Annotation Term="OData.Description" String="Block-accesible memory."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700757 </Member>
758 </EnumType>
759
760 <EnumType Name="OperatingMemoryModes">
761 <Member Name="Volatile">
762 <Annotation Term="OData.Description" String="Volatile memory."/>
763 </Member>
764 <Member Name="PMEM">
Ed Tanouscb103132019-10-08 11:34:22 -0700765 <Annotation Term="OData.Description" String="Persistent memory, byte-accesible through system address space."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700766 </Member>
767 <Member Name="Block">
Ed Tanouscb103132019-10-08 11:34:22 -0700768 <Annotation Term="OData.Description" String="Block-accessible system memory."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700769 </Member>
770 </EnumType>
771
772 <ComplexType Name="PowerManagementPolicy">
773 <Annotation Term="OData.AdditionalProperties" Bool="false"/>
774 <Annotation Term="OData.Description" String="Power management policy information."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700775 <Annotation Term="OData.LongDescription" String="This type shall contain properties that describe the power management policy for this Resource."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700776 <Property Name="PolicyEnabled" Type="Edm.Boolean">
777 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700778 <Annotation Term="OData.Description" String="An indication of whether the power management policy is enabled."/>
779 <Annotation Term="OData.LongDescription" String="This property shall indicate whether the power management policy is enabled."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700780 </Property>
781 <Property Name="MaxTDPMilliWatts" Type="Edm.Int64">
782 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700783 <Annotation Term="OData.Description" String="Maximum TDP in milliwatts."/>
784 <Annotation Term="OData.LongDescription" String="This property shall contain the maximum TDP in milliwatts."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700785 <Annotation Term="Measures.Unit" String="mW"/>
786 </Property>
787 <Property Name="PeakPowerBudgetMilliWatts" Type="Edm.Int64">
788 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700789 <Annotation Term="OData.Description" String="Peak power budget, in milliwatts."/>
790 <Annotation Term="OData.LongDescription" String="This property shall contain the peak power budget, in milliwatts."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700791 <Annotation Term="Measures.Unit" String="mW"/>
792 </Property>
793 <Property Name="AveragePowerBudgetMilliWatts" Type="Edm.Int64">
794 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700795 <Annotation Term="OData.Description" String="Average power budget, in milliwatts."/>
796 <Annotation Term="OData.LongDescription" String="This property shall contain the average power budget, in milliwatts."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700797 <Annotation Term="Measures.Unit" String="mW"/>
798 </Property>
799 </ComplexType>
800
801 <ComplexType Name="Actions">
802 <Annotation Term="OData.AdditionalProperties" Bool="false"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700803 <Annotation Term="OData.Description" String="The available actions for this Resource."/>
804 <Annotation Term="OData.LongDescription" String="This type shall contain the available actions for this Resource."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800805 <Property Name="Oem" Type="Memory.v1_0_0.OemActions" Nullable="false">
Ed Tanouscb103132019-10-08 11:34:22 -0700806 <Annotation Term="OData.Description" String="The available OEM-specific actions for this Resource."/>
807 <Annotation Term="OData.LongDescription" String="This property shall contain the available OEM-specific actions for this Resource."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800808 </Property>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700809 </ComplexType>
810
811 <ComplexType Name="OemActions">
812 <Annotation Term="OData.AdditionalProperties" Bool="true"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700813 <Annotation Term="OData.Description" String="The available OEM-specific actions for this Resource."/>
814 <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 -0700815 </ComplexType>
816
817 </Schema>
818
819 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_0_1">
820 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700821 <Annotation Term="OData.Description" String="This version was created to show that annotations in previous namespaces were updated."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700822 <EntityType Name="Memory" BaseType="Memory.v1_0_0.Memory"/>
823 </Schema>
824
825 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_0_2">
826 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700827 <Annotation Term="OData.Description" String="This version was created to show that annotations in previous namespaces were updated."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700828 <EntityType Name="Memory" BaseType="Memory.v1_0_1.Memory"/>
829 </Schema>
830
831 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_0_3">
832 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700833 <Annotation Term="OData.Description" String="This version was created to add requirements on the action parameters to show they are mandatory through Nullable=false. It was also created to update the description of OperatingSpeedMHz."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700834 <EntityType Name="Memory" BaseType="Memory.v1_0_2.Memory"/>
835 </Schema>
836
Ed Tanous530520e2019-01-02 13:41:37 -0800837 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_0_4">
838 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
839 <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."/>
840 <EntityType Name="Memory" BaseType="Memory.v1_0_3.Memory"/>
841 </Schema>
842
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600843 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_0_5">
844 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700845 <Annotation Term="OData.Description" String="This version was created to use the new Revisions annotation."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600846 <EntityType Name="Memory" BaseType="Memory.v1_0_4.Memory"/>
847 </Schema>
848
Ed Tanouscb103132019-10-08 11:34:22 -0700849 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_0_6">
850 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
851 <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."/>
852 <EntityType Name="Memory" BaseType="Memory.v1_0_5.Memory"/>
853 </Schema>
854
855 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_0_7">
856 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
857 <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
858 <EntityType Name="Memory" BaseType="Memory.v1_0_6.Memory"/>
859 </Schema>
860
Jason M. Billsea4aa752018-06-05 13:29:11 -0700861 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_1_0">
862 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600863 <Annotation Term="Redfish.Release" String="2016.3"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700864 <EntityType Name="Memory" BaseType="Memory.v1_0_1.Memory">
Ed Tanous530520e2019-01-02 13:41:37 -0800865 <Property Name="Status" Type="Resource.Status" Nullable="false">
Ed Tanouscb103132019-10-08 11:34:22 -0700866 <Annotation Term="OData.Description" String="The status and health of the Resource and its subordinate or dependent Resources."/>
867 <Annotation Term="OData.LongDescription" String="This property shall contain any status or health properties of the Resource."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800868 </Property>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700869 </EntityType>
870 </Schema>
871
872 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_1_1">
873 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700874 <Annotation Term="OData.Description" String="This version was created to show that annotations in previous namespaces were updated."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700875 <EntityType Name="Memory" BaseType="Memory.v1_1_0.Memory"/>
876 </Schema>
877
878 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_1_2">
879 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700880 <Annotation Term="OData.Description" String="This version was created to add requirements on the action parameters to show they are mandatory through Nullable=false. It was also created to update the description of OperatingSpeedMHz."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700881 <EntityType Name="Memory" BaseType="Memory.v1_1_1.Memory"/>
882 </Schema>
883
Ed Tanous530520e2019-01-02 13:41:37 -0800884 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_1_3">
885 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
886 <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."/>
887 <EntityType Name="Memory" BaseType="Memory.v1_1_2.Memory"/>
888 </Schema>
889
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600890 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_1_4">
891 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700892 <Annotation Term="OData.Description" String="This version was created to use the new Revisions annotation."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600893 <EntityType Name="Memory" BaseType="Memory.v1_1_3.Memory"/>
894 </Schema>
895
Ed Tanouscb103132019-10-08 11:34:22 -0700896 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_1_5">
897 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
898 <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."/>
899 <EntityType Name="Memory" BaseType="Memory.v1_1_4.Memory"/>
900 </Schema>
901
902 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_1_6">
903 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
904 <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
905 <EntityType Name="Memory" BaseType="Memory.v1_1_5.Memory"/>
906 </Schema>
907
Jason M. Billsea4aa752018-06-05 13:29:11 -0700908 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_2_0">
909 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600910 <Annotation Term="Redfish.Release" String="2017.1"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700911 <EntityType Name="Memory" BaseType="Memory.v1_1_1.Memory">
912 <Property Name="VolatileRegionNumberLimit" Type="Edm.Int64">
913 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700914 <Annotation Term="OData.Description" String="Total number of volatile regions this memory can support."/>
915 <Annotation Term="OData.LongDescription" String="This property shall contain the total number of volatile regions this memory can support."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700916 </Property>
917 <Property Name="PersistentRegionNumberLimit" Type="Edm.Int64">
918 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700919 <Annotation Term="OData.Description" String="Total number of persistent regions this memory can support."/>
920 <Annotation Term="OData.LongDescription" String="This property shall contain the total number of persistent regions this memory can support."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700921 </Property>
922 <Property Name="VolatileRegionSizeMaxMiB" Type="Edm.Int64">
923 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
924 <Annotation Term="OData.Description" String="Maximum size of a single volatile region in mebibytes (MiB)."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700925 <Annotation Term="OData.LongDescription" String="This property shall contain the maximum size of a single volatile regions in MiB."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800926 <Annotation Term="Measures.Unit" String="MiBy"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700927 </Property>
928 <Property Name="PersistentRegionSizeMaxMiB" Type="Edm.Int64">
929 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
930 <Annotation Term="OData.Description" String="Maximum size of a single persistent region in mebibytes (MiB)."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700931 <Annotation Term="OData.LongDescription" String="This property shall contain the maximum size of a single persistent regions in MiB."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800932 <Annotation Term="Measures.Unit" String="MiBy"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700933 </Property>
934 <Property Name="AllocationIncrementMiB" Type="Edm.Int64">
935 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
936 <Annotation Term="OData.Description" String="The size of the smallest unit of allocation for a memory region in mebibytes (MiB)."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700937 <Annotation Term="OData.LongDescription" String="This property shall contain the allocation increment for regions, measured in MiB."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800938 <Annotation Term="Measures.Unit" String="MiBy"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700939 </Property>
940 <Property Name="AllocationAlignmentMiB" Type="Edm.Int64">
941 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700942 <Annotation Term="OData.Description" String="The boundary that memory regions are allocated on, measured in mebibytes (MiB)."/>
943 <Annotation Term="OData.LongDescription" String="This property shall contain the alignment boundary on which memory regions are allocated, measured in MiB."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800944 <Annotation Term="Measures.Unit" String="MiBy"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700945 </Property>
946 <Property Name="Links" Type="Memory.v1_2_0.Links" Nullable="false">
Ed Tanouscb103132019-10-08 11:34:22 -0700947 <Annotation Term="OData.Description" String="The links to other Resources that are related to this Resource."/>
948 <Annotation Term="OData.LongDescription" String="The Redfish Specification-described Links Property shall contain links to Resources related to but not subordinate to this Resource."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700949 </Property>
950 </EntityType>
951
952 <ComplexType Name="Links" BaseType="Resource.Links">
Ed Tanouscb103132019-10-08 11:34:22 -0700953 <Annotation Term="OData.Description" String="The links to other Resources that are related to this Resource."/>
954 <Annotation Term="OData.LongDescription" String="The Redfish Specification-described type shall contain links to Resources related to but not subordinate to this Resource."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700955 <NavigationProperty Name="Chassis" Type="Chassis.Chassis" Nullable="false">
956 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700957 <Annotation Term="OData.Description" String="The link to the chassis that contains this memory."/>
958 <Annotation Term="OData.LongDescription" String="This property shall contain a link to a Resource of type Chassis that represent the physical container associated with this memory."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700959 <Annotation Term="OData.AutoExpandReferences"/>
960 </NavigationProperty>
961 </ComplexType>
962 </Schema>
963
964 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_2_1">
965 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700966 <Annotation Term="OData.Description" String="This version was created to add requirements on the action parameters to show they are mandatory through Nullable=false. It was also created to update the description of OperatingSpeedMHz."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700967 <EntityType Name="Memory" BaseType="Memory.v1_2_0.Memory"/>
968 </Schema>
969
Ed Tanous530520e2019-01-02 13:41:37 -0800970 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_2_2">
971 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
972 <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."/>
973 <EntityType Name="Memory" BaseType="Memory.v1_2_1.Memory"/>
974 </Schema>
975
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600976 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_2_3">
977 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700978 <Annotation Term="OData.Description" String="This version was created to use the new Revisions annotation."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600979 <EntityType Name="Memory" BaseType="Memory.v1_2_2.Memory"/>
980 </Schema>
981
Ed Tanouscb103132019-10-08 11:34:22 -0700982 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_2_4">
983 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
984 <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."/>
985 <EntityType Name="Memory" BaseType="Memory.v1_2_3.Memory"/>
986 </Schema>
987
988 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_2_5">
989 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
990 <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
991 <EntityType Name="Memory" BaseType="Memory.v1_2_4.Memory"/>
992 </Schema>
993
Jason M. Billsea4aa752018-06-05 13:29:11 -0700994 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_3_0">
995 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600996 <Annotation Term="Redfish.Release" String="2017.2"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700997 <EntityType Name="Memory" BaseType="Memory.v1_2_0.Memory">
998 <Property Name="ModuleManufacturerID" Type="Edm.String">
999 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1000 <Annotation Term="OData.Description" String="The manufacturer ID of this memory module."/>
Ed Tanouscb103132019-10-08 11:34:22 -07001001 <Annotation Term="OData.LongDescription" String="This property shall contain the two byte manufacturer ID of this memory module as defined by JEDEC in JEP-106."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -07001002 <Annotation Term="Validation.Pattern" String="^0[xX](([a-fA-F]|[0-9]){2}){2}$"/>
1003 </Property>
1004 <Property Name="ModuleProductID" Type="Edm.String">
1005 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1006 <Annotation Term="OData.Description" String="The product ID of this memory module."/>
Ed Tanouscb103132019-10-08 11:34:22 -07001007 <Annotation Term="OData.LongDescription" String="This property shall contain the two byte product ID of this memory module as defined by the manufacturer."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -07001008 <Annotation Term="Validation.Pattern" String="^0[xX](([a-fA-F]|[0-9]){2}){2}$"/>
1009 </Property>
1010 <Property Name="MemorySubsystemControllerManufacturerID" Type="Edm.String">
1011 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1012 <Annotation Term="OData.Description" String="The manufacturer ID of the memory subsystem controller of this memory module."/>
Ed Tanouscb103132019-10-08 11:34:22 -07001013 <Annotation Term="OData.LongDescription" String="This property shall contain the two byte manufacturer ID of the memory subsystem controller of this memory module as defined by JEDEC in JEP-106."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -07001014 <Annotation Term="Validation.Pattern" String="^0[xX](([a-fA-F]|[0-9]){2}){2}$"/>
1015 </Property>
1016 <Property Name="MemorySubsystemControllerProductID" Type="Edm.String">
1017 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1018 <Annotation Term="OData.Description" String="The product ID of the memory subsystem controller of this memory module."/>
Ed Tanouscb103132019-10-08 11:34:22 -07001019 <Annotation Term="OData.LongDescription" String="This property shall contain the two byte product ID of the memory subsystem controller of this memory module as defined by the manufacturer."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -07001020 <Annotation Term="Validation.Pattern" String="^0[xX](([a-fA-F]|[0-9]){2}){2}$"/>
1021 </Property>
1022 </EntityType>
1023 </Schema>
1024
1025 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_3_1">
1026 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -07001027 <Annotation Term="OData.Description" String="This version was created to add requirements on the action parameters to show they are mandatory through Nullable=false. It was also created to update the description of OperatingSpeedMHz."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -07001028 <EntityType Name="Memory" BaseType="Memory.v1_3_0.Memory"/>
1029 </Schema>
1030
Ed Tanous530520e2019-01-02 13:41:37 -08001031 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_3_2">
1032 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1033 <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."/>
1034 <EntityType Name="Memory" BaseType="Memory.v1_3_1.Memory"/>
1035 </Schema>
1036
Marri Devender Raod45d2d02019-01-21 10:11:34 -06001037 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_3_3">
1038 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -07001039 <Annotation Term="OData.Description" String="This version was created to use the new Revisions annotation."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -06001040 <EntityType Name="Memory" BaseType="Memory.v1_3_2.Memory"/>
1041 </Schema>
1042
Ed Tanouscb103132019-10-08 11:34:22 -07001043 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_3_4">
1044 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1045 <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."/>
1046 <EntityType Name="Memory" BaseType="Memory.v1_3_3.Memory"/>
1047 </Schema>
1048
1049 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_3_5">
1050 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1051 <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
1052 <EntityType Name="Memory" BaseType="Memory.v1_3_4.Memory"/>
1053 </Schema>
1054
Jason M. Billsea4aa752018-06-05 13:29:11 -07001055 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_4_0">
1056 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -06001057 <Annotation Term="Redfish.Release" String="2017.3"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -07001058 <EntityType Name="Memory" BaseType="Memory.v1_3_1.Memory">
1059 <Property Name="VolatileSizeMiB" Type="Edm.Int64">
1060 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1061 <Annotation Term="OData.Description" String="Total size of the volitile portion memory in MiB."/>
Ed Tanouscb103132019-10-08 11:34:22 -07001062 <Annotation Term="OData.LongDescription" String="This property shall contain the total size of the volatile portion memory in MiB."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -07001063 <Annotation Term="Measures.Unit" String="MiBy"/>
1064 </Property>
1065 <Property Name="NonVolatileSizeMiB" Type="Edm.Int64">
1066 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1067 <Annotation Term="OData.Description" String="Total size of the non-volatile portion memory in MiB."/>
Ed Tanouscb103132019-10-08 11:34:22 -07001068 <Annotation Term="OData.LongDescription" String="This property shall contain the total size of the non-volatile portion memory in MiB."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -07001069 <Annotation Term="Measures.Unit" String="MiBy"/>
1070 </Property>
1071 <Property Name="CacheSizeMiB" Type="Edm.Int64">
1072 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1073 <Annotation Term="OData.Description" String="Total size of the cache portion memory in MiB."/>
Ed Tanouscb103132019-10-08 11:34:22 -07001074 <Annotation Term="OData.LongDescription" String="This property shall contain the total size of the cache portion memory in MiB."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -07001075 <Annotation Term="Measures.Unit" String="MiBy"/>
1076 </Property>
1077 <Property Name="LogicalSizeMiB" Type="Edm.Int64">
1078 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1079 <Annotation Term="OData.Description" String="Total size of the logical memory in MiB."/>
Ed Tanouscb103132019-10-08 11:34:22 -07001080 <Annotation Term="OData.LongDescription" String="This property shall contain the total size of the logical memory in MiB."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -07001081 <Annotation Term="Measures.Unit" String="MiBy"/>
1082 </Property>
Ed Tanous530520e2019-01-02 13:41:37 -08001083 <Property Name="Location" Type="Resource.Location" Nullable="false">
Ed Tanouscb103132019-10-08 11:34:22 -07001084 <Annotation Term="OData.Description" String="The location of the memory."/>
Ed Tanous530520e2019-01-02 13:41:37 -08001085 <Annotation Term="OData.LongDescription" String="This property shall contain location information of the associated memory."/>
1086 </Property>
Jason M. Billsea4aa752018-06-05 13:29:11 -07001087 <NavigationProperty Name="Assembly" Type="Assembly.Assembly" Nullable="false">
1088 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -07001089 <Annotation Term="OData.Description" String="The link to the assembly Resource associated with this memory."/>
1090 <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 -07001091 <Annotation Term="OData.AutoExpandReferences"/>
1092 </NavigationProperty>
1093 </EntityType>
1094 </Schema>
1095
1096 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_4_1">
1097 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1098 <Annotation Term="OData.Description" String="This version was created to update descriptions to match the editorial style used in other Redfish schemas."/>
1099 <EntityType Name="Memory" BaseType="Memory.v1_4_0.Memory"/>
1100 </Schema>
1101
Ed Tanous530520e2019-01-02 13:41:37 -08001102 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_4_2">
1103 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1104 <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."/>
1105 <EntityType Name="Memory" BaseType="Memory.v1_4_1.Memory"/>
1106 </Schema>
1107
Marri Devender Raod45d2d02019-01-21 10:11:34 -06001108 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_4_3">
1109 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -07001110 <Annotation Term="OData.Description" String="This version was created to use the new Revisions annotation."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -06001111 <EntityType Name="Memory" BaseType="Memory.v1_4_2.Memory"/>
1112 </Schema>
1113
Ed Tanouscb103132019-10-08 11:34:22 -07001114 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_4_4">
1115 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1116 <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."/>
1117 <EntityType Name="Memory" BaseType="Memory.v1_4_3.Memory"/>
1118 </Schema>
1119
1120 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_4_5">
1121 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1122 <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
1123 <EntityType Name="Memory" BaseType="Memory.v1_4_4.Memory"/>
1124 </Schema>
1125
Jason M. Billsea4aa752018-06-05 13:29:11 -07001126 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_5_0">
1127 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -06001128 <Annotation Term="Redfish.Release" String="2018.1"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -07001129 <EntityType Name="Memory" BaseType="Memory.v1_4_1.Memory"/>
1130
1131 <ComplexType Name="RegionSet" BaseType="Memory.v1_0_0.RegionSet">
1132 <Property Name="PassphraseEnabled" Type="Edm.Boolean">
1133 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -07001134 <Annotation Term="OData.Description" String="An indication of whether the passphrase is enabled for this region."/>
1135 <Annotation Term="OData.LongDescription" String="This property shall indicate whether the passphrase is enabled for this region."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -07001136 </Property>
1137 </ComplexType>
1138 </Schema>
1139
Ed Tanous530520e2019-01-02 13:41:37 -08001140 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_5_1">
1141 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1142 <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."/>
1143 <EntityType Name="Memory" BaseType="Memory.v1_5_0.Memory"/>
1144 </Schema>
1145
Marri Devender Raod45d2d02019-01-21 10:11:34 -06001146 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_5_2">
1147 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -07001148 <Annotation Term="OData.Description" String="This version was created to use the new Revisions annotation."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -06001149 <EntityType Name="Memory" BaseType="Memory.v1_5_1.Memory"/>
1150 </Schema>
1151
Ed Tanouscb103132019-10-08 11:34:22 -07001152 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_5_3">
1153 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1154 <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."/>
1155 <EntityType Name="Memory" BaseType="Memory.v1_5_2.Memory"/>
1156 </Schema>
1157
1158 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_5_4">
1159 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1160 <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
1161 <EntityType Name="Memory" BaseType="Memory.v1_5_3.Memory"/>
1162 </Schema>
1163
Ed Tanous530520e2019-01-02 13:41:37 -08001164 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_6_0">
1165 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -06001166 <Annotation Term="Redfish.Release" String="2018.2"/>
Ed Tanouscb103132019-10-08 11:34:22 -07001167 <Annotation Term="OData.Description" String="This version was created to change the long description for SecureEraseUnit. It was also created to define a new OverwriteUnit action, and adds IntelOptane to the MemoryType list."/>
Ed Tanous530520e2019-01-02 13:41:37 -08001168 <EntityType Name="Memory" BaseType="Memory.v1_5_1.Memory"/>
1169 </Schema>
1170
Marri Devender Raod45d2d02019-01-21 10:11:34 -06001171 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_6_1">
1172 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -07001173 <Annotation Term="OData.Description" String="This version was created to use the new Revisions annotation."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -06001174 <EntityType Name="Memory" BaseType="Memory.v1_6_0.Memory"/>
1175 </Schema>
1176
Ed Tanouscb103132019-10-08 11:34:22 -07001177 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_6_2">
1178 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1179 <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."/>
1180 <EntityType Name="Memory" BaseType="Memory.v1_6_1.Memory"/>
1181 </Schema>
1182
1183 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_6_3">
1184 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1185 <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
1186 <EntityType Name="Memory" BaseType="Memory.v1_6_2.Memory"/>
1187 </Schema>
1188
Marri Devender Raod45d2d02019-01-21 10:11:34 -06001189 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_7_0">
1190 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1191 <Annotation Term="Redfish.Release" String="2018.3"/>
1192 <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."/>
1193 <EntityType Name="Memory" BaseType="Memory.v1_6_1.Memory">
1194 <Property Name="SecurityState" Type="Memory.v1_0_0.SecurityStates">
1195 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
Ed Tanouscb103132019-10-08 11:34:22 -07001196 <Annotation Term="OData.Description" String="The current security state of this memory."/>
1197 <Annotation Term="OData.LongDescription" String="This property shall contain the current security state of this memory."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -06001198 </Property>
1199 <Property Name="ConfigurationLocked" Type="Edm.Boolean">
1200 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -07001201 <Annotation Term="OData.Description" String="An indication of whether the configuration of this memory is locked and cannot be altered."/>
1202 <Annotation Term="OData.LongDescription" String="This property shall indicate whether the configuration of this memory is locked and cannot be altered."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -06001203 </Property>
1204 </EntityType>
1205
1206 <ComplexType Name="SecurityCapabilities" BaseType="Memory.v1_0_0.SecurityCapabilities">
1207 <Property Name="ConfigurationLockCapable" Type="Edm.Boolean">
1208 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -07001209 <Annotation Term="OData.Description" String="An indication of whether this memory supports the locking, or freezing, of the configuration."/>
1210 <Annotation Term="OData.LongDescription" String="This property shall indicate whether this memory supports the locking, or freezing, of the configuration."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -06001211 </Property>
1212 <Property Name="DataLockCapable" Type="Edm.Boolean">
1213 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -07001214 <Annotation Term="OData.Description" String="An indication of whether this memory supports data locking."/>
1215 <Annotation Term="OData.LongDescription" String="This property shall indicate whether this memory supports the locking of data access."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -06001216 </Property>
1217 <Property Name="PassphraseLockLimit" Type="Edm.Int64">
1218 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -07001219 <Annotation Term="OData.Description" String="The maximum number of incorrect passphrase attempts allowed before memory is locked."/>
1220 <Annotation Term="OData.LongDescription" String="This property shall contain the maximum number of incorrect passphase access attempts allowed before access to data is locked. If 0, the number of attempts is infinite."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -06001221 </Property>
1222 </ComplexType>
1223 </Schema>
1224
Ed Tanouscb103132019-10-08 11:34:22 -07001225 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_7_1">
1226 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1227 <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."/>
1228 <EntityType Name="Memory" BaseType="Memory.v1_7_0.Memory"/>
1229 </Schema>
1230
1231 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_7_2">
1232 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1233 <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
1234 <EntityType Name="Memory" BaseType="Memory.v1_7_1.Memory"/>
1235 </Schema>
1236
1237 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_8_0">
1238 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1239 <Annotation Term="Redfish.Release" String="2019.2"/>
1240 <Annotation Term="OData.Description" String="This version was created to add a Reset action."/>
1241 <EntityType Name="Memory" BaseType="Memory.v1_7_2.Memory"/>
1242 </Schema>
Jason M. Billsea4aa752018-06-05 13:29:11 -07001243 </edmx:DataServices>
1244</edmx:Edmx>