1<?xml version="1.0" encoding="UTF-8"?>
2<!---->
3<!--################################################################################       -->
4<!--# Redfish Schema:  VirtualMedia v1.6.3                                                 -->
5<!--#                                                                                      -->
6<!--# For a detailed change log, see the README file contained in the DSP8010 bundle,      -->
7<!--# available at http://www.dmtf.org/standards/redfish                                   -->
8<!--# Copyright 2014-2023 DMTF.                                                            -->
9<!--# For the full DMTF copyright policy, see http://www.dmtf.org/about/policies/copyright -->
10<!--################################################################################       -->
11<!---->
12<edmx:Edmx xmlns:edmx="http://docs.oasis-open.org/odata/ns/edmx" Version="4.0">
13
14  <edmx:Reference Uri="http://docs.oasis-open.org/odata/odata/v4.0/errata03/csd01/complete/vocabularies/Org.OData.Core.V1.xml">
15    <edmx:Include Namespace="Org.OData.Core.V1" Alias="OData"/>
16  </edmx:Reference>
17  <edmx:Reference Uri="http://docs.oasis-open.org/odata/odata/v4.0/errata03/csd01/complete/vocabularies/Org.OData.Capabilities.V1.xml">
18    <edmx:Include Namespace="Org.OData.Capabilities.V1" Alias="Capabilities"/>
19  </edmx:Reference>
20  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Resource_v1.xml">
21    <edmx:Include Namespace="Resource"/>
22    <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/CertificateCollection_v1.xml">
28    <edmx:Include Namespace="CertificateCollection"/>
29  </edmx:Reference>
30
31  <edmx:DataServices>
32
33    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia">
34      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
35
36      <EntityType Name="VirtualMedia" BaseType="Resource.v1_0_0.Resource" Abstract="true">
37        <Annotation Term="OData.Description" String="The VirtualMedia schema contains properties related to the monitor and control of an instance of virtual media, such as a remote CD, DVD, or USB device.  A manager for a system or device provides virtual media functionality."/>
38        <Annotation Term="OData.LongDescription" String="This resource shall represent a virtual media service for a Redfish implementation."/>
39        <Annotation Term="Capabilities.InsertRestrictions">
40          <Record>
41            <PropertyValue Property="Insertable" Bool="false"/>
42          </Record>
43        </Annotation>
44        <Annotation Term="Capabilities.UpdateRestrictions">
45          <Record>
46            <PropertyValue Property="Updatable" Bool="true"/>
47            <Annotation Term="OData.Description" String="Properties, such as Image, Inserted, and WriteProtected, can be updated for a VirtualMedia instance."/>
48          </Record>
49        </Annotation>
50        <Annotation Term="Capabilities.DeleteRestrictions">
51          <Record>
52            <PropertyValue Property="Deletable" Bool="false"/>
53          </Record>
54        </Annotation>
55        <Annotation Term="Redfish.Uris">
56          <Collection>
57            <String>/redfish/v1/Managers/{ManagerId}/VirtualMedia/{VirtualMediaId}</String>
58            <String>/redfish/v1/Systems/{ComputerSystemId}/VirtualMedia/{VirtualMediaId}</String>
59            <String>/redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/VirtualMedia/{VirtualMediaId}</String>
60            <String>/redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/VirtualMedia/{VirtualMediaId}</String>
61          </Collection>
62        </Annotation>
63        <Annotation Term="Redfish.DeprecatedUris">
64          <Collection>
65            <String>/redfish/v1/Managers/{ManagerId}/VirtualMedia/{VirtualMediaId}</String>
66          </Collection>
67        </Annotation>
68      </EntityType>
69
70      <Action Name="InsertMedia" IsBound="true">
71        <Annotation Term="OData.Description" String="This action attaches remote media to virtual media."/>
72        <Annotation Term="OData.LongDescription" String="This action shall attach remote media to virtual media."/>
73        <Annotation Term="Redfish.Revisions">
74          <Collection>
75            <Record>
76              <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
77              <PropertyValue Property="Version" String="v1_2_0"/>
78            </Record>
79          </Collection>
80        </Annotation>
81        <Parameter Name="VirtualMedia" Type="VirtualMedia.v1_1_0.Actions"/>
82        <Parameter Name="Image" Type="Edm.String" Nullable="false">
83          <Annotation Term="OData.Description" String="The URI of the media to attach to the virtual media."/>
84          <Annotation Term="OData.LongDescription" String="This parameter shall contain the URI of the media to be attached to the virtual media.  This parameter may specify an absolute URI to remote media or a relative URI to media local to the implementation.  A service may allow a relative URI to reference a SoftwareInventory resource."/>
85        </Parameter>
86        <Parameter Name="Inserted" Type="Edm.Boolean">
87          <Annotation Term="OData.Description" String="An indication of whether the image is treated as inserted upon completion of the action.  The default is `true`."/>
88          <Annotation Term="OData.LongDescription" String="This parameter shall contain whether the image is treated as inserted upon completion of the action.  If the client does not provide this parameter, the service shall default this value to `true`."/>
89        </Parameter>
90        <Parameter Name="WriteProtected" Type="Edm.Boolean">
91          <Annotation Term="OData.Description" String="An indication of whether the remote media is treated as write-protected.  The default is `true`."/>
92          <Annotation Term="OData.LongDescription" String="This parameter shall contain whether the remote media is treated as write-protected.  If the client does not provide this parameter, the service shall default this value to `true`."/>
93        </Parameter>
94        <Parameter Name="UserName" Type="Edm.String">
95          <Annotation Term="OData.Description" String="The username to access the URI specified by the Image parameter."/>
96          <Annotation Term="OData.LongDescription" String="This parameter shall contain the username to access the URI specified by the Image parameter."/>
97          <Annotation Term="Redfish.Revisions">
98            <Collection>
99              <Record>
100                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
101                <PropertyValue Property="Version" String="v1_3_0"/>
102              </Record>
103            </Collection>
104          </Annotation>
105        </Parameter>
106        <Parameter Name="Password" Type="Edm.String">
107          <Annotation Term="OData.Description" String="The password to access the URI specified by the Image parameter."/>
108          <Annotation Term="OData.LongDescription" String="This parameter shall contain the password to access the URI specified by the Image parameter."/>
109          <Annotation Term="Redfish.Revisions">
110            <Collection>
111              <Record>
112                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
113                <PropertyValue Property="Version" String="v1_3_0"/>
114              </Record>
115            </Collection>
116          </Annotation>
117        </Parameter>
118        <Parameter Name="TransferProtocolType" Type="VirtualMedia.v1_3_0.TransferProtocolType">
119          <Annotation Term="OData.Description" String="The network protocol to use with the image."/>
120          <Annotation Term="OData.LongDescription" String="This parameter shall contain the network protocol to use with the specified image URI."/>
121          <Annotation Term="Redfish.Revisions">
122            <Collection>
123              <Record>
124                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
125                <PropertyValue Property="Version" String="v1_3_0"/>
126              </Record>
127            </Collection>
128          </Annotation>
129        </Parameter>
130        <Parameter Name="TransferMethod" Type="VirtualMedia.v1_3_0.TransferMethod">
131          <Annotation Term="OData.Description" String="The transfer method to use with the image."/>
132          <Annotation Term="OData.LongDescription" String="This parameter shall contain the transfer method to use with the specified image URI."/>
133          <Annotation Term="Redfish.Revisions">
134            <Collection>
135              <Record>
136                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
137                <PropertyValue Property="Version" String="v1_3_0"/>
138              </Record>
139            </Collection>
140          </Annotation>
141        </Parameter>
142      </Action>
143
144      <Action Name="EjectMedia" IsBound="true">
145        <Annotation Term="OData.Description" String="This action detaches remote media from virtual media."/>
146        <Annotation Term="OData.LongDescription" String="This action shall detach the remote media from the virtual media.  At the completion of the operation, inserted shall be set to `false` and the image name shall be cleared."/>
147        <Annotation Term="Redfish.Revisions">
148          <Collection>
149            <Record>
150              <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
151              <PropertyValue Property="Version" String="v1_2_0"/>
152            </Record>
153          </Collection>
154        </Annotation>
155        <Parameter Name="VirtualMedia" Type="VirtualMedia.v1_1_0.Actions"/>
156      </Action>
157    </Schema>
158
159    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_0_0">
160      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
161      <Annotation Term="Redfish.Release" String="1.0"/>
162
163      <EntityType Name="VirtualMedia" BaseType="VirtualMedia.VirtualMedia">
164        <Property Name="ImageName" Type="Edm.String">
165          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
166          <Annotation Term="OData.Description" String="The current image name."/>
167          <Annotation Term="OData.LongDescription" String="This property shall contain the name of the image."/>
168        </Property>
169        <Property Name="Image" Type="Edm.String">
170          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
171          <Annotation Term="OData.Description" String="The URI of the location of the selected image."/>
172          <Annotation Term="OData.LongDescription" String="This property shall contain the URI of the media attached to the virtual media.  This value may specify an absolute URI to remote media or a relative URI to media local to the implementation.  A service may allow a relative URI to reference a SoftwareInventory resource.  The value `null` shall indicate no image connection."/>
173          <Annotation Term="OData.IsURL"/>
174        </Property>
175        <Property Name="MediaTypes" Type="Collection(VirtualMedia.v1_0_0.MediaType)" Nullable="false">
176          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
177          <Annotation Term="OData.Description" String="The media types supported as virtual media."/>
178          <Annotation Term="OData.LongDescription" String="This property shall contain an array of the supported media types for this connection."/>
179        </Property>
180        <Property Name="ConnectedVia" Type="VirtualMedia.v1_0_0.ConnectedVia">
181          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
182          <Annotation Term="OData.Description" String="The current virtual media connection method."/>
183          <Annotation Term="OData.LongDescription" String="This property shall contain the current connection method from a client to the virtual media that this resource represents."/>
184        </Property>
185        <Property Name="Inserted" Type="Edm.Boolean">
186          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
187          <Annotation Term="OData.Description" String="An indication of whether virtual media is inserted into the virtual device."/>
188          <Annotation Term="OData.LongDescription" String="This property shall indicate whether media is present in the virtual media device."/>
189        </Property>
190        <Property Name="WriteProtected" Type="Edm.Boolean">
191          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
192          <Annotation Term="OData.Description" String="An indication of whether the media is write-protected."/>
193          <Annotation Term="OData.LongDescription" String="This property shall indicate whether the remote device media prevents writing to that media."/>
194        </Property>
195      </EntityType>
196
197      <EnumType Name="MediaType">
198        <Member Name="CD">
199          <Annotation Term="OData.Description" String="A CD-ROM format (ISO) image."/>
200        </Member>
201        <Member Name="Floppy">
202          <Annotation Term="OData.Description" String="A floppy disk image."/>
203        </Member>
204        <Member Name="USBStick">
205          <Annotation Term="OData.Description" String="An emulation of a USB storage device."/>
206        </Member>
207        <Member Name="DVD">
208          <Annotation Term="OData.Description" String="A DVD-ROM format image."/>
209        </Member>
210      </EnumType>
211
212      <EnumType Name="ConnectedVia">
213        <Member Name="NotConnected">
214          <Annotation Term="OData.Description" String="No current connection."/>
215        </Member>
216        <Member Name="URI">
217          <Annotation Term="OData.Description" String="Connected to a URI location."/>
218        </Member>
219        <Member Name="Applet">
220          <Annotation Term="OData.Description" String="Connected to a client application."/>
221        </Member>
222        <Member Name="Oem">
223          <Annotation Term="OData.Description" String="Connected through an OEM-defined method."/>
224        </Member>
225      </EnumType>
226    </Schema>
227
228    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_0_2">
229      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
230      <Annotation Term="OData.Description" String="This version was created to show annotations in previous namespaces were updated."/>
231      <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_0_0.VirtualMedia"/>
232    </Schema>
233
234    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_0_3">
235      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
236      <Annotation Term="OData.Description" String="This version was created to show annotations in previous namespaces were updated."/>
237      <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_0_2.VirtualMedia"/>
238    </Schema>
239
240    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_0_4">
241      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
242      <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."/>
243      <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_0_3.VirtualMedia"/>
244    </Schema>
245
246    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_0_5">
247      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
248      <Annotation Term="OData.Description" String="This version was created to use the new revisions annotation."/>
249      <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_0_4.VirtualMedia"/>
250    </Schema>
251
252    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_0_6">
253      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
254      <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."/>
255      <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_0_5.VirtualMedia"/>
256    </Schema>
257
258    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_0_7">
259      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
260      <Annotation Term="OData.Description" String="This version was created to update the Password description.  It was also created to update descriptions that this schema defines."/>
261      <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_0_6.VirtualMedia"/>
262    </Schema>
263
264    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_0_8">
265      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
266      <Annotation Term="OData.Description" String="This version was created to clarify the usage of Image when mounting media from a local source."/>
267      <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_0_7.VirtualMedia"/>
268    </Schema>
269
270    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_0_9">
271      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
272      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
273      <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_0_8.VirtualMedia"/>
274    </Schema>
275
276    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_1_0">
277      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
278      <Annotation Term="Redfish.Release" String="2017.1"/>
279
280      <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_0_3.VirtualMedia">
281        <Property Name="Actions" Type="VirtualMedia.v1_1_0.Actions" Nullable="false">
282          <Annotation Term="OData.Description" String="The available actions for this resource."/>
283          <Annotation Term="OData.LongDescription" String="This property shall contain the available actions for this resource."/>
284        </Property>
285      </EntityType>
286
287      <ComplexType Name="Actions">
288        <Annotation Term="OData.AdditionalProperties" Bool="false"/>
289        <Annotation Term="OData.Description" String="The available actions for this resource."/>
290        <Annotation Term="OData.LongDescription" String="This type shall contain the available actions for this resource."/>
291        <Property Name="Oem" Type="VirtualMedia.v1_1_0.OemActions" Nullable="false">
292          <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/>
293          <Annotation Term="OData.LongDescription" String="This property shall contain the available OEM-specific actions for this resource."/>
294        </Property>
295      </ComplexType>
296
297      <ComplexType Name="OemActions">
298        <Annotation Term="OData.AdditionalProperties" Bool="true"/>
299        <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/>
300        <Annotation Term="OData.LongDescription" String="This type shall contain the available OEM-specific actions for this resource."/>
301      </ComplexType>
302    </Schema>
303
304    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_1_1">
305      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
306      <Annotation Term="OData.Description" String="This version was created to update the descriptions that this schema defines."/>
307      <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_1_0.VirtualMedia"/>
308    </Schema>
309
310    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_1_2">
311      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
312      <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."/>
313      <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_1_1.VirtualMedia"/>
314    </Schema>
315
316    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_1_3">
317      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
318      <Annotation Term="OData.Description" String="This version was created to use the new revisions annotation."/>
319      <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_1_2.VirtualMedia"/>
320    </Schema>
321
322    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_1_4">
323      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
324      <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."/>
325      <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_1_3.VirtualMedia"/>
326    </Schema>
327
328    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_1_5">
329      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
330      <Annotation Term="OData.Description" String="This version was created to update the Password description.  It was also created to update descriptions that this schema defines."/>
331      <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_1_4.VirtualMedia"/>
332    </Schema>
333
334    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_1_6">
335      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
336      <Annotation Term="OData.Description" String="This version was created to clarify the usage of Image when mounting media from a local source."/>
337      <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_1_5.VirtualMedia"/>
338    </Schema>
339
340    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_1_7">
341      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
342      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
343      <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_1_6.VirtualMedia"/>
344    </Schema>
345
346    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_2_0">
347      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
348      <Annotation Term="Redfish.Release" String="2017.3"/>
349      <Annotation Term="OData.Description" String="This version was created to change the permissions of Image, Inserted, and WriteProtected and to add the InsertMedia and EjectMedia actions."/>
350
351      <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_1_1.VirtualMedia"/>
352    </Schema>
353
354    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_2_1">
355      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
356      <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."/>
357      <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_2_0.VirtualMedia"/>
358    </Schema>
359
360    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_2_2">
361      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
362      <Annotation Term="OData.Description" String="This version was created to use the new revisions annotation."/>
363      <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_2_1.VirtualMedia"/>
364    </Schema>
365
366    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_2_3">
367      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
368      <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."/>
369      <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_2_2.VirtualMedia"/>
370    </Schema>
371
372    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_2_4">
373      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
374      <Annotation Term="OData.Description" String="This version was created to update the Password description.  It was also created to update descriptions that this schema defines."/>
375      <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_2_3.VirtualMedia"/>
376    </Schema>
377
378    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_2_5">
379      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
380      <Annotation Term="OData.Description" String="This version was created to clarify the usage of Image when mounting media from a local source."/>
381      <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_2_4.VirtualMedia"/>
382    </Schema>
383
384    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_2_6">
385      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
386      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
387      <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_2_5.VirtualMedia"/>
388    </Schema>
389
390    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_3_0">
391      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
392      <Annotation Term="Redfish.Release" String="2018.3"/>
393      <Annotation Term="OData.Description" String="This version was created to add new parameters for the InsertMedia action.  It was also created to add new properties to define the image transfer protocol configuration."/>
394
395      <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_2_2.VirtualMedia">
396        <Property Name="UserName" Type="Edm.String">
397          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
398          <Annotation Term="OData.Description" String="The user name to access the Image parameter-specified URI."/>
399          <Annotation Term="OData.LongDescription" String="This parameter shall represent the user name to access the Image parameter-specified URI."/>
400        </Property>
401        <Property Name="Password" Type="Edm.String">
402          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
403          <Annotation Term="OData.Description" String="The password to access the Image parameter-specified URI.  This property is`null` in responses."/>
404          <Annotation Term="OData.LongDescription" String="This parameter shall represent the password to access the Image parameter-specified URI.  The value shall be `null` in responses."/>
405        </Property>
406        <Property Name="TransferProtocolType" Type="VirtualMedia.v1_3_0.TransferProtocolType">
407          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
408          <Annotation Term="OData.Description" String="The network protocol to use with the image."/>
409          <Annotation Term="OData.LongDescription" String="This parameter shall represent the network protocol to use with the specified image URI."/>
410        </Property>
411        <Property Name="TransferMethod" Type="VirtualMedia.v1_3_0.TransferMethod">
412          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
413          <Annotation Term="OData.Description" String="The transfer method to use with the Image."/>
414          <Annotation Term="OData.LongDescription" String="This parameter shall describe how the image transfer occurs."/>
415        </Property>
416      </EntityType>
417
418      <EnumType Name="TransferProtocolType">
419        <Member Name="CIFS">
420          <Annotation Term="OData.Description" String="Common Internet File System (CIFS)."/>
421        </Member>
422        <Member Name="FTP">
423          <Annotation Term="OData.Description" String="File Transfer Protocol (FTP)."/>
424        </Member>
425        <Member Name="SFTP">
426          <Annotation Term="OData.Description" String="Secure File Transfer Protocol (SFTP)."/>
427        </Member>
428        <Member Name="HTTP">
429          <Annotation Term="OData.Description" String="Hypertext Transfer Protocol (HTTP)."/>
430        </Member>
431        <Member Name="HTTPS">
432          <Annotation Term="OData.Description" String="Hypertext Transfer Protocol Secure (HTTPS)."/>
433        </Member>
434        <Member Name="NFS">
435          <Annotation Term="OData.Description" String="Network File System (NFS)."/>
436        </Member>
437        <Member Name="SCP">
438          <Annotation Term="OData.Description" String="Secure Copy Protocol (SCP)."/>
439        </Member>
440        <Member Name="TFTP">
441          <Annotation Term="OData.Description" String="Trivial File Transfer Protocol (TFTP)."/>
442        </Member>
443        <Member Name="OEM">
444          <Annotation Term="OData.Description" String="A manufacturer-defined protocol."/>
445        </Member>
446      </EnumType>
447
448      <EnumType Name="TransferMethod">
449        <Member Name="Stream">
450          <Annotation Term="OData.Description" String="Stream image file data from the source URI."/>
451        </Member>
452        <Member Name="Upload">
453          <Annotation Term="OData.Description" String="Upload the entire image file from the source URI to the service."/>
454        </Member>
455      </EnumType>
456    </Schema>
457
458    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_3_1">
459      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
460      <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."/>
461      <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_3_0.VirtualMedia"/>
462    </Schema>
463
464    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_3_2">
465      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
466      <Annotation Term="OData.Description" String="This version was created to update the Password description.  It was also created to update descriptions that this schema defines."/>
467      <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_3_1.VirtualMedia"/>
468    </Schema>
469
470    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_3_3">
471      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
472      <Annotation Term="OData.Description" String="This version was created to clarify the usage of Image when mounting media from a local source."/>
473      <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_3_2.VirtualMedia"/>
474    </Schema>
475
476    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_3_4">
477      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
478      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
479      <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_3_3.VirtualMedia"/>
480    </Schema>
481
482    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_4_0">
483      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
484      <Annotation Term="Redfish.Release" String="2021.1"/>
485      <Annotation Term="OData.Description" String="This version was created to add the Status, Certificates, and VerifyCertificate properties."/>
486
487      <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_3_2.VirtualMedia">
488        <Property Name="Status" Type="Resource.Status" Nullable="false">
489          <Annotation Term="OData.Description" String="The status and health of the resource and its subordinate or dependent resources."/>
490          <Annotation Term="OData.LongDescription" String="This property shall contain any status or health properties of the resource."/>
491        </Property>
492        <NavigationProperty Name="Certificates" Type="CertificateCollection.CertificateCollection" ContainsTarget="true" Nullable="false">
493          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
494          <Annotation Term="OData.Description" String="The link to a collection of server certificates for the server referenced by the Image property."/>
495          <Annotation Term="OData.LongDescription" String="This property shall contain a link to a resource collection of type CertificateCollection that represents the server certificates for the server referenced by the Image property.  If VerifyCertificate is `true`, services shall compare the certificates in this collection with the certificate obtained during handshaking with the image server in order to verify the identity of the image server prior to completing the remote media connection.  If the server cannot be verified, the service shall not complete the remote media connection.  If VerifyCertificate is `false`, the service shall not perform certificate verification with certificates in this collection.  Regardless of the contents of this collection, services may perform additional verification based on other factors, such as the configuration of the SecurityPolicy resource."/>
496          <Annotation Term="OData.AutoExpandReferences"/>
497        </NavigationProperty>
498        <Property Name="VerifyCertificate" Type="Edm.Boolean">
499          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
500          <Annotation Term="OData.Description" String="An indication of whether the service will verify the certificate of the server referenced by the Image property prior to completing the remote media connection."/>
501          <Annotation Term="OData.LongDescription" String="This property shall indicate whether the service will verify the certificate of the server referenced by the Image property prior to completing the remote media connection with the certificates found in the collection referenced by the Certificates property.  If this property is not supported by the service, it shall be assumed to be `false`.  This property should default to `false` in order to maintain compatibility with older clients.  Regardless of the value of this property, services may perform additional verification based on other factors, such as the configuration of the SecurityPolicy resource."/>
502        </Property>
503      </EntityType>
504    </Schema>
505
506    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_4_1">
507      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
508      <Annotation Term="OData.Description" String="This version was created to clarify the usage of Image when mounting media from a local source."/>
509      <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_4_0.VirtualMedia"/>
510    </Schema>
511
512    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_4_2">
513      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
514      <Annotation Term="OData.Description" String="This version was created to clarify the behavior of VerifyCertificate when not supported or configured."/>
515      <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_4_1.VirtualMedia"/>
516    </Schema>
517
518    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_4_3">
519      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
520      <Annotation Term="OData.Description" String="This version was created to clarify that other certificate verification might be performed by the service due to other policies in the service."/>
521      <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_4_2.VirtualMedia"/>
522    </Schema>
523
524    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_4_4">
525      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
526      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
527      <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_4_3.VirtualMedia"/>
528    </Schema>
529
530    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_5_0">
531      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
532      <Annotation Term="Redfish.Release" String="2021.2"/>
533
534      <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_4_1.VirtualMedia">
535        <NavigationProperty Name="ClientCertificates" Type="CertificateCollection.CertificateCollection" ContainsTarget="true" Nullable="false">
536          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
537          <Annotation Term="OData.Description" String="The link to a collection of client identity certificates provided to the server referenced by the Image property."/>
538          <Annotation Term="OData.LongDescription" String="This property shall contain a link to a resource collection of type CertificateCollection that represents the client identity certificates that are provided to the server referenced by the Image property as part of TLS handshaking."/>
539          <Annotation Term="OData.AutoExpandReferences"/>
540        </NavigationProperty>
541      </EntityType>
542    </Schema>
543
544    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_5_1">
545      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
546      <Annotation Term="OData.Description" String="This version was created to clarify the behavior of VerifyCertificate when not supported or configured."/>
547      <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_5_0.VirtualMedia"/>
548    </Schema>
549
550    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_5_2">
551      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
552      <Annotation Term="OData.Description" String="This version was created to clarify that other certificate verification might be performed by the service due to other policies in the service."/>
553      <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_5_1.VirtualMedia"/>
554    </Schema>
555
556    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_5_3">
557      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
558      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
559      <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_5_2.VirtualMedia"/>
560    </Schema>
561
562    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_6_0">
563      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
564      <Annotation Term="Redfish.Release" String="2022.3"/>
565
566      <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_5_2.VirtualMedia">
567        <Property Name="EjectPolicy" Type="VirtualMedia.v1_6_0.EjectPolicy">
568          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
569          <Annotation Term="OData.Description" String="The ejection policy for the virtual media."/>
570          <Annotation Term="OData.LongDescription" String="This property shall contain the ejection policy for the virtual media."/>
571        </Property>
572        <Property Name="EjectTimeout" Type="Edm.Duration">
573          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
574          <Annotation Term="OData.Description" String="Timeout value before the virtual media is automatically ejected."/>
575          <Annotation Term="OData.LongDescription" String="This property shall indicate the amount of time before virtual media is automatically ejected when EjectPolicy contains `Timed`."/>
576        </Property>
577      </EntityType>
578
579      <EnumType Name="EjectPolicy">
580        <Member Name="OnPowerOff">
581          <Annotation Term="OData.Description" String="The virtual media ejection occurs during a system power or reset event."/>
582        </Member>
583        <Member Name="Session">
584          <Annotation Term="OData.Description" String="The virtual media ejection occurs when a session is terminated.  The session might be outside the Redfish service."/>
585        </Member>
586        <Member Name="Timed">
587          <Annotation Term="OData.Description" String="The virtual media ejection occurs when a timer configured by the EjectTimeout property expires."/>
588        </Member>
589        <Member Name="AfterUse">
590          <Annotation Term="OData.Description" String="The virtual media ejection occurs after the media is used."/>
591        </Member>
592        <Member Name="Persistent">
593          <Annotation Term="OData.Description" String="The virtual media mount information persists indefinitely."/>
594        </Member>
595      </EnumType>
596    </Schema>
597
598    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_6_1">
599      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
600      <Annotation Term="OData.Description" String="This version was created to correct the regular expression pattern for duration properties in JSON Schema and OpenAPI to not allow for negative values."/>
601      <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_6_0.VirtualMedia"/>
602    </Schema>
603
604    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_6_2">
605      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
606      <Annotation Term="OData.Description" String="This version was created to remove normative language from non-normative descriptions."/>
607      <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_6_1.VirtualMedia"/>
608    </Schema>
609
610    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_6_3">
611      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
612      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
613      <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_6_2.VirtualMedia"/>
614    </Schema>
615
616  </edmx:DataServices>
617</edmx:Edmx>
618