blob: 7c55f27702d19675a3047ec2eb446645f84ff24b [file] [log] [blame]
Jason M. Billsea4aa752018-06-05 13:29:11 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!---->
3<!--################################################################################ -->
Gunnar Mills09b9d452020-02-11 13:27:39 -06004<!--# Redfish Schema: MemoryDomain v1.3.0 -->
Jason M. Billsea4aa752018-06-05 13:29:11 -07005<!--# -->
6<!--# For a detailed change log, see the README file contained in the DSP8010 bundle, -->
7<!--# available at http://www.dmtf.org/standards/redfish -->
Gunnar Millsa778c022020-05-12 12:20:36 -05008<!--# Copyright 2014-2020 DMTF. -->
Jason M. Billsea4aa752018-06-05 13:29:11 -07009<!--# For the full DMTF copyright policy, see http://www.dmtf.org/about/policies/copyright -->
10<!--################################################################################ -->
11<!---->
12<edmx:Edmx xmlns:edmx="http://docs.oasis-open.org/odata/ns/edmx" Version="4.0">
13
14 <edmx:Reference Uri="http://docs.oasis-open.org/odata/odata/v4.0/errata03/csd01/complete/vocabularies/Org.OData.Core.V1.xml">
15 <edmx:Include Namespace="Org.OData.Core.V1" Alias="OData"/>
16 </edmx:Reference>
Ed Tanous530520e2019-01-02 13:41:37 -080017 <edmx:Reference Uri="http://docs.oasis-open.org/odata/odata/v4.0/errata03/csd01/complete/vocabularies/Org.OData.Capabilities.V1.xml">
18 <edmx:Include Namespace="Org.OData.Capabilities.V1" Alias="Capabilities"/>
19 </edmx:Reference>
Jason M. Billsea4aa752018-06-05 13:29:11 -070020 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Resource_v1.xml">
Gunnar Mills09b9d452020-02-11 13:27:39 -060021 <edmx:Include Namespace="Resource"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -070022 <edmx:Include Namespace="Resource.v1_0_0"/>
23 </edmx:Reference>
24 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/RedfishExtensions_v1.xml">
25 <edmx:Include Namespace="RedfishExtensions.v1_0_0" Alias="Redfish"/>
26 </edmx:Reference>
27 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Memory_v1.xml">
28 <edmx:Include Namespace="Memory"/>
29 </edmx:Reference>
30 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/MemoryChunksCollection_v1.xml">
31 <edmx:Include Namespace="MemoryChunksCollection"/>
32 </edmx:Reference>
Gunnar Mills09b9d452020-02-11 13:27:39 -060033 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/MediaController_v1.xml">
34 <edmx:Include Namespace="MediaController"/>
35 </edmx:Reference>
Jason M. Billsea4aa752018-06-05 13:29:11 -070036
37 <edmx:DataServices>
38
39 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MemoryDomain">
40 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
41
42 <EntityType Name="MemoryDomain" BaseType="Resource.v1_0_0.Resource" Abstract="true">
Ed Tanouscb103132019-10-08 11:34:22 -070043 <Annotation Term="OData.Description" String="The MemoryDomain schema describes a memory domain and its configuration. Memory domains indicate to the client which memory, or DIMMs, can be grouped together in memory chunks to represent addressable memory."/>
44 <Annotation Term="OData.LongDescription" String="This Resource shall represent memory domains in a Redfish implementation."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -070045 <Annotation Term="OData.AdditionalProperties" Bool="false"/>
Ed Tanous530520e2019-01-02 13:41:37 -080046 <Annotation Term="Capabilities.InsertRestrictions">
47 <Record>
48 <PropertyValue Property="Insertable" Bool="false"/>
49 </Record>
50 </Annotation>
51 <Annotation Term="Capabilities.UpdateRestrictions">
52 <Record>
53 <PropertyValue Property="Updatable" Bool="false"/>
54 </Record>
55 </Annotation>
56 <Annotation Term="Capabilities.DeleteRestrictions">
57 <Record>
58 <PropertyValue Property="Deletable" Bool="false"/>
59 </Record>
60 </Annotation>
61 <Annotation Term="Redfish.Uris">
62 <Collection>
63 <String>/redfish/v1/Systems/{ComputerSystemId}/MemoryDomains/{MemoryDomainId}</String>
Gunnar Mills09b9d452020-02-11 13:27:39 -060064 <String>/redfish/v1/Chassis/{ChassisId}/MemoryDomains/{MemoryDomainId}</String>
Ed Tanous530520e2019-01-02 13:41:37 -080065 <String>/redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/MemoryDomains/{MemoryDomainId}</String>
Marri Devender Raod45d2d02019-01-21 10:11:34 -060066 <String>/redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/MemoryDomains/{MemoryDomainId}</String>
Ed Tanous530520e2019-01-02 13:41:37 -080067 </Collection>
68 </Annotation>
Jason M. Billsea4aa752018-06-05 13:29:11 -070069 </EntityType>
70
71 </Schema>
72
73 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MemoryDomain.v1_0_0">
74 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -060075 <Annotation Term="Redfish.Release" String="2016.2"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -070076
77 <EntityType Name="MemoryDomain" BaseType="MemoryDomain.MemoryDomain">
78
79 <Property Name="AllowsMemoryChunkCreation" Type="Edm.Boolean" DefaultValue="false">
80 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -070081 <Annotation Term="OData.Description" String="An indication of whether this memory domain supports the creation of memory chunks."/>
82 <Annotation Term="OData.LongDescription" String="This property shall indicate whether this memory domain supports the creation of memory chunks."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -070083 </Property>
84 <Property Name="AllowsBlockProvisioning" Type="Edm.Boolean" DefaultValue="false">
85 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -070086 <Annotation Term="OData.Description" String="An indication of whether this memory domain supports the provisioning of blocks of memory."/>
87 <Annotation Term="OData.LongDescription" String="This property shall indicate whether this memory domain supports the creation of blocks of memory."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -070088 </Property>
Ed Tanouscb103132019-10-08 11:34:22 -070089 <NavigationProperty Name="MemoryChunks" Type="MemoryChunksCollection.MemoryChunksCollection" ContainsTarget="true" Nullable="false">
Jason M. Billsea4aa752018-06-05 13:29:11 -070090 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -070091 <Annotation Term="OData.Description" String="The link to the collection of memory chunks associated with this memory domain."/>
92 <Annotation Term="OData.LongDescription" String="This property shall contain a link to a Resource Collection of type MemoryChunkCollection."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -070093 <Annotation Term="OData.AutoExpandReferences"/>
94 </NavigationProperty>
Ed Tanouscb103132019-10-08 11:34:22 -070095 <Property Name="InterleavableMemorySets" Type="Collection(MemoryDomain.v1_0_0.MemorySet)" Nullable="false">
96 <Annotation Term="OData.Description" String="The interleave sets for the memory chunk."/>
97 <Annotation Term="OData.LongDescription" String="This property shall represent the interleave sets for the memory chunk."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -070098 </Property>
99 </EntityType>
100
101 <ComplexType Name="MemorySet">
Ed Tanouscb103132019-10-08 11:34:22 -0700102 <Annotation Term="OData.Description" String="The interleave sets for a memory chunk."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700103 <Annotation Term="OData.LongDescription" String="This type shall represent the interleave sets for a memory chunk."/>
104 <NavigationProperty Name="MemorySet" Type="Collection(Memory.Memory)">
105 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700106 <Annotation Term="OData.Description" String="The set of memory for a particular interleave set."/>
107 <Annotation Term="OData.LongDescription" String="The values in this array shall be links to Resources of the Memory type."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700108 <Annotation Term="OData.AutoExpandReferences"/>
109 </NavigationProperty>
110 </ComplexType>
111
112 </Schema>
113
114 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MemoryDomain.v1_0_1">
115 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700116 <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 -0700117 <EntityType Name="MemoryDomain" BaseType="MemoryDomain.v1_0_0.MemoryDomain"/>
118 </Schema>
119
120 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MemoryDomain.v1_0_2">
121 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700122 <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 -0700123 <EntityType Name="MemoryDomain" BaseType="MemoryDomain.v1_0_1.MemoryDomain"/>
124 </Schema>
125
Ed Tanous530520e2019-01-02 13:41:37 -0800126 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MemoryDomain.v1_0_3">
127 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
128 <Annotation Term="OData.Description" String="This version was created to force the regeneration of JSON Schema so that OData properties are marked as required, and integer properties are marked as integer rather than number."/>
129 <EntityType Name="MemoryDomain" BaseType="MemoryDomain.v1_0_2.MemoryDomain"/>
130 </Schema>
131
Ed Tanouscb103132019-10-08 11:34:22 -0700132 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MemoryDomain.v1_0_4">
133 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
134 <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. It was also created to add a missing term on MemoryChunks and InterleavableMemorySets to not allow them to be null."/>
135 <EntityType Name="MemoryDomain" BaseType="MemoryDomain.v1_0_3.MemoryDomain"/>
136 </Schema>
137
138 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MemoryDomain.v1_0_5">
139 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
140 <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
141 <EntityType Name="MemoryDomain" BaseType="MemoryDomain.v1_0_4.MemoryDomain"/>
142 </Schema>
143
Jason M. Billsea4aa752018-06-05 13:29:11 -0700144 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MemoryDomain.v1_1_0">
145 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600146 <Annotation Term="Redfish.Release" String="2016.3"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700147 <EntityType Name="MemoryDomain" BaseType="MemoryDomain.v1_0_1.MemoryDomain">
148 <Property Name="AllowsMirroring" Type="Edm.Boolean" DefaultValue="false">
149 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700150 <Annotation Term="OData.Description" String="An indication of whether this memory domain supports the creation of memory chunks with mirroring enabled."/>
151 <Annotation Term="OData.LongDescription" String="This property shall indicate whether this memory domain supports the creation of memory chunks with mirroring enabled."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700152 </Property>
153 <Property Name="AllowsSparing" Type="Edm.Boolean" DefaultValue="false">
154 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700155 <Annotation Term="OData.Description" String="An indication of whether this memory domain supports the creation of memory chunks with sparing enabled."/>
156 <Annotation Term="OData.LongDescription" String="This property shall indicate whether this memory domain supports the creation of memory chunks with sparing enabled."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700157 </Property>
158 </EntityType>
159 </Schema>
160
161 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MemoryDomain.v1_1_1">
162 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700163 <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 -0700164 <EntityType Name="MemoryDomain" BaseType="MemoryDomain.v1_1_0.MemoryDomain"/>
165 </Schema>
166
Ed Tanous530520e2019-01-02 13:41:37 -0800167 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MemoryDomain.v1_1_2">
168 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
169 <Annotation Term="OData.Description" String="This version was created to force the regeneration of JSON Schema so that OData properties are marked as required, and integer properties are marked as integer rather than number."/>
170 <EntityType Name="MemoryDomain" BaseType="MemoryDomain.v1_1_1.MemoryDomain"/>
171 </Schema>
172
Ed Tanouscb103132019-10-08 11:34:22 -0700173 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MemoryDomain.v1_1_3">
174 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
175 <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. It was also created to add a missing term on MemoryChunks and InterleavableMemorySets to not allow them to be null."/>
176 <EntityType Name="MemoryDomain" BaseType="MemoryDomain.v1_1_2.MemoryDomain"/>
177 </Schema>
178
179 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MemoryDomain.v1_1_4">
180 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
181 <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
182 <EntityType Name="MemoryDomain" BaseType="MemoryDomain.v1_1_3.MemoryDomain"/>
183 </Schema>
184
Jason M. Billsea4aa752018-06-05 13:29:11 -0700185 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MemoryDomain.v1_2_0">
186 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600187 <Annotation Term="Redfish.Release" String="2017.1"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700188 <EntityType Name="MemoryDomain" BaseType="MemoryDomain.v1_1_1.MemoryDomain">
189 <Property Name="Actions" Type="MemoryDomain.v1_2_0.Actions" Nullable="false">
Ed Tanouscb103132019-10-08 11:34:22 -0700190 <Annotation Term="OData.Description" String="The available actions for this Resource."/>
191 <Annotation Term="OData.LongDescription" String="This property shall contain the available actions for this Resource."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700192 </Property>
193 </EntityType>
194
195 <ComplexType Name="Actions">
196 <Annotation Term="OData.AdditionalProperties" Bool="false"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700197 <Annotation Term="OData.Description" String="The available actions for this Resource."/>
198 <Annotation Term="OData.LongDescription" String="This type shall contain the available actions for this Resource."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800199 <Property Name="Oem" Type="MemoryDomain.v1_2_0.OemActions" Nullable="false">
Ed Tanouscb103132019-10-08 11:34:22 -0700200 <Annotation Term="OData.Description" String="The available OEM-specific actions for this Resource."/>
201 <Annotation Term="OData.LongDescription" String="This property shall contain the available OEM-specific actions for this Resource."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800202 </Property>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700203 </ComplexType>
204
205 <ComplexType Name="OemActions">
206 <Annotation Term="OData.AdditionalProperties" Bool="true"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700207 <Annotation Term="OData.Description" String="The available OEM-specific actions for this Resource."/>
208 <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 -0700209 </ComplexType>
210 </Schema>
211
Ed Tanous530520e2019-01-02 13:41:37 -0800212 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MemoryDomain.v1_2_1">
213 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
214 <Annotation Term="OData.Description" String="This version was created to force the regeneration of JSON Schema so that OData properties are marked as required, and integer properties are marked as integer rather than number."/>
215 <EntityType Name="MemoryDomain" BaseType="MemoryDomain.v1_2_0.MemoryDomain"/>
216 </Schema>
217
Ed Tanouscb103132019-10-08 11:34:22 -0700218 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MemoryDomain.v1_2_2">
219 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
220 <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. It was also created to add a missing term on MemoryChunks and InterleavableMemorySets to not allow them to be null."/>
221 <EntityType Name="MemoryDomain" BaseType="MemoryDomain.v1_2_1.MemoryDomain"/>
222 </Schema>
223
224 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MemoryDomain.v1_2_3">
225 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
226 <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
227 <EntityType Name="MemoryDomain" BaseType="MemoryDomain.v1_2_2.MemoryDomain"/>
228 </Schema>
229
Gunnar Mills09b9d452020-02-11 13:27:39 -0600230 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MemoryDomain.v1_3_0">
231 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
232 <Annotation Term="Redfish.Release" String="2019.4"/>
233
234 <EntityType Name="MemoryDomain" BaseType="MemoryDomain.v1_2_3.MemoryDomain">
235 <Property Name="Links" Type="MemoryDomain.v1_3_0.Links" Nullable="false">
236 <Annotation Term="OData.Description" String="The links to other Resources that are related to this Resource."/>
237 <Annotation Term="OData.LongDescription" String="The Redfish Specification-described Links Property shall contain links to Resources related to but not subordinate to this Resource."/>
238 </Property>
239 </EntityType>
240
241 <ComplexType Name="Links" BaseType="Resource.Links">
242 <Annotation Term="OData.Description" String="The links to other Resources that are related to this Resource."/>
243 <Annotation Term="OData.LongDescription" String="The Redfish Specification-described type shall contain links to Resources related to but not subordinate to this Resource."/>
244 <NavigationProperty Name="MediaControllers" Type="Collection(MediaController.MediaController)">
245 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
246 <Annotation Term="OData.Description" String="An array of links to the media controllers for this memory domain."/>
247 <Annotation Term="OData.LongDescription" String="This property shall contain an array of links to Resources of type MediaController that are associated with this memory domain."/>
248 <Annotation Term="OData.AutoExpandReferences"/>
249 </NavigationProperty>
250 </ComplexType>
251 </Schema>
252
Jason M. Billsea4aa752018-06-05 13:29:11 -0700253 </edmx:DataServices>
254</edmx:Edmx>