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