blob: 5cbe363970e012397db1fdba16d82a34f3ce6f1c [file] [log] [blame]
Jason M. Billsea4aa752018-06-05 13:29:11 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!---->
3<!--################################################################################ -->
Ed Tanouscb103132019-10-08 11:34:22 -07004<!--# Redfish Schema: VirtualMedia v1.3.2 -->
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>
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.v1_0_0"/>
22 </edmx:Reference>
23 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/RedfishExtensions_v1.xml">
24 <edmx:Include Namespace="RedfishExtensions.v1_0_0" Alias="Redfish"/>
25 </edmx:Reference>
26
27 <edmx:DataServices>
28
29 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia">
30 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
31
32 <EntityType Name="VirtualMedia" BaseType="Resource.v1_0_0.Resource" Abstract="true">
Ed Tanouscb103132019-10-08 11:34:22 -070033 <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."/>
34 <Annotation Term="OData.LongDescription" String="This Resource shall represent a virtual media service for a Redfish implementation."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -070035 <Annotation Term="Capabilities.InsertRestrictions">
36 <Record>
37 <PropertyValue Property="Insertable" Bool="false"/>
38 </Record>
39 </Annotation>
40 <Annotation Term="Capabilities.UpdateRestrictions">
41 <Record>
Ed Tanous530520e2019-01-02 13:41:37 -080042 <PropertyValue Property="Updatable" Bool="true"/>
Ed Tanouscb103132019-10-08 11:34:22 -070043 <Annotation Term="OData.Description" String="Properties, such as Image, Inserted, and WriteProtected, can be updated for a VirtualMedia instance."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -070044 </Record>
45 </Annotation>
46 <Annotation Term="Capabilities.DeleteRestrictions">
47 <Record>
48 <PropertyValue Property="Deletable" Bool="false"/>
49 </Record>
50 </Annotation>
Ed Tanous530520e2019-01-02 13:41:37 -080051 <Annotation Term="Redfish.Uris">
52 <Collection>
53 <String>/redfish/v1/Managers/{ManagerId}/VirtualMedia/{VirtualMediaId}</String>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -050054 <String>/redfish/v1/Systems/{ComputerSystemId}/VirtualMedia/{VirtualMediaId}</String>
55 <String>/redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/VirtualMedia/{VirtualMediaId}</String>
56 <String>/redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/VirtualMedia/{VirtualMediaId}</String>
Ed Tanous530520e2019-01-02 13:41:37 -080057 </Collection>
58 </Annotation>
Jason M. Billsea4aa752018-06-05 13:29:11 -070059 </EntityType>
60
61 <Action Name="InsertMedia" IsBound="true">
Ed Tanouscb103132019-10-08 11:34:22 -070062 <Annotation Term="OData.Description" String="This action attaches remote media to virtual media."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -070063 <Annotation Term="OData.LongDescription" String="This action shall attach remote media to virtual media."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -060064 <Annotation Term="Redfish.Revisions">
65 <Collection>
66 <Record>
67 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
68 <PropertyValue Property="Version" String="v1_2_0"/>
69 </Record>
70 </Collection>
71 </Annotation>
Jason M. Billsea4aa752018-06-05 13:29:11 -070072 <Parameter Name="VirtualMedia" Type="VirtualMedia.v1_1_0.Actions"/>
73 <Parameter Name="Image" Type="Edm.String" Nullable="false">
74 <Annotation Term="OData.Description" String="The URI of the remote media to attach to the virtual media."/>
Ed Tanouscb103132019-10-08 11:34:22 -070075 <Annotation Term="OData.LongDescription" String="This parameter shall specify the URI of the remote media to be attached to the virtual media."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -070076 </Parameter>
77 <Parameter Name="Inserted" Type="Edm.Boolean">
Ed Tanouscb103132019-10-08 11:34:22 -070078 <Annotation Term="OData.Description" String="An indication of whether the image is treated as inserted upon completion of the action. The default is `true`."/>
79 <Annotation Term="OData.LongDescription" String="This parameter shall indicate 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`."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -070080 </Parameter>
81 <Parameter Name="WriteProtected" Type="Edm.Boolean">
Ed Tanouscb103132019-10-08 11:34:22 -070082 <Annotation Term="OData.Description" String="An indication of whether the remote media is treated as write-protected. The default is `true`."/>
83 <Annotation Term="OData.LongDescription" String="This parameter shall indicate 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`."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -070084 </Parameter>
Marri Devender Raod45d2d02019-01-21 10:11:34 -060085 <Parameter Name="UserName" Type="Edm.String">
Ed Tanouscb103132019-10-08 11:34:22 -070086 <Annotation Term="OData.Description" String="The user name to access the Image parameter-specified URI."/>
87 <Annotation Term="OData.LongDescription" String="This parameter shall contain the user name to access the Image parameter-specified URI."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -060088 <Annotation Term="Redfish.Revisions">
89 <Collection>
90 <Record>
91 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
92 <PropertyValue Property="Version" String="v1_3_0"/>
93 </Record>
94 </Collection>
95 </Annotation>
96 </Parameter>
97 <Parameter Name="Password" Type="Edm.String">
Ed Tanouscb103132019-10-08 11:34:22 -070098 <Annotation Term="OData.Description" String="The password to access the Image parameter-specified URI."/>
99 <Annotation Term="OData.LongDescription" String="This parameter shall represent the password to access the Image parameter-specified URI."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600100 <Annotation Term="Redfish.Revisions">
101 <Collection>
102 <Record>
103 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
104 <PropertyValue Property="Version" String="v1_3_0"/>
105 </Record>
106 </Collection>
107 </Annotation>
108 </Parameter>
109 <Parameter Name="TransferProtocolType" Type="VirtualMedia.v1_3_0.TransferProtocolType">
Ed Tanouscb103132019-10-08 11:34:22 -0700110 <Annotation Term="OData.Description" String="The network protocol to use with the image."/>
111 <Annotation Term="OData.LongDescription" String="This parameter shall represent the network protocol to use with the specified image URI."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600112 <Annotation Term="Redfish.Revisions">
113 <Collection>
114 <Record>
115 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
116 <PropertyValue Property="Version" String="v1_3_0"/>
117 </Record>
118 </Collection>
119 </Annotation>
120 </Parameter>
121 <Parameter Name="TransferMethod" Type="VirtualMedia.v1_3_0.TransferMethod">
Ed Tanouscb103132019-10-08 11:34:22 -0700122 <Annotation Term="OData.Description" String="The transfer method to use with the Image."/>
123 <Annotation Term="OData.LongDescription" String="This parameter shall describe how the image transfer occurs."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600124 <Annotation Term="Redfish.Revisions">
125 <Collection>
126 <Record>
127 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
128 <PropertyValue Property="Version" String="v1_3_0"/>
129 </Record>
130 </Collection>
131 </Annotation>
132 </Parameter>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700133 </Action>
134
135 <Action Name="EjectMedia" IsBound="true">
Ed Tanouscb103132019-10-08 11:34:22 -0700136 <Annotation Term="OData.Description" String="This action detaches remote media from virtual media."/>
137 <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."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600138 <Annotation Term="Redfish.Revisions">
139 <Collection>
140 <Record>
141 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
142 <PropertyValue Property="Version" String="v1_2_0"/>
143 </Record>
144 </Collection>
145 </Annotation>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700146 <Parameter Name="VirtualMedia" Type="VirtualMedia.v1_1_0.Actions"/>
147 </Action>
148
149 </Schema>
150
151 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_0_0">
152 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600153 <Annotation Term="Redfish.Release" String="1.0"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700154
155 <EntityType Name="VirtualMedia" BaseType="VirtualMedia.VirtualMedia">
156 <Property Name="ImageName" Type="Edm.String">
157 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
158 <Annotation Term="OData.Description" String="The current image name."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700159 <Annotation Term="OData.LongDescription" String="This property shall contain the name of the image."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700160 </Property>
161 <Property Name="Image" Type="Edm.String">
162 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700163 <Annotation Term="OData.Description" String="The URI of the location of the selected image."/>
164 <Annotation Term="OData.LongDescription" String="This property shall contain an URI. A null value indicated no image connection."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700165 <Annotation Term="OData.IsURL"/>
166 </Property>
167 <Property Name="MediaTypes" Type="Collection(VirtualMedia.v1_0_0.MediaType)" Nullable="false">
168 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700169 <Annotation Term="OData.Description" String="The media types supported as virtual media."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700170 <Annotation Term="OData.LongDescription" String="The values of this array shall be the supported media types for this connection."/>
171 </Property>
172 <Property Name="ConnectedVia" Type="VirtualMedia.v1_0_0.ConnectedVia">
173 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700174 <Annotation Term="OData.Description" String="The current virtual media connection method."/>
175 <Annotation Term="OData.LongDescription" String="This property shall contain the current connection method from a client to the virtual media that this Resource represents."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700176 </Property>
177 <Property Name="Inserted" Type="Edm.Boolean">
178 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700179 <Annotation Term="OData.Description" String="An indication of whether virtual media is inserted into the virtual device."/>
180 <Annotation Term="OData.LongDescription" String="This property shall indicate whether media is present in the virtual media device."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700181 </Property>
182 <Property Name="WriteProtected" Type="Edm.Boolean">
183 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700184 <Annotation Term="OData.Description" String="An indication of whether the media is write-protected."/>
185 <Annotation Term="OData.LongDescription" String="This property shall indicate whether the remote device media prevents writing to that media."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700186 </Property>
187 </EntityType>
188
189 <EnumType Name="MediaType">
190 <Member Name="CD">
191 <Annotation Term="OData.Description" String="A CD-ROM format (ISO) image."/>
192 </Member>
193 <Member Name="Floppy">
194 <Annotation Term="OData.Description" String="A floppy disk image."/>
195 </Member>
196 <Member Name="USBStick">
197 <Annotation Term="OData.Description" String="An emulation of a USB storage device."/>
198 </Member>
199 <Member Name="DVD">
200 <Annotation Term="OData.Description" String="A DVD-ROM format image."/>
201 </Member>
202 </EnumType>
203
204 <EnumType Name="ConnectedVia">
205 <Member Name="NotConnected">
206 <Annotation Term="OData.Description" String="No current connection."/>
207 </Member>
208 <Member Name="URI">
209 <Annotation Term="OData.Description" String="Connected to a URI location."/>
210 </Member>
211 <Member Name="Applet">
212 <Annotation Term="OData.Description" String="Connected to a client application."/>
213 </Member>
214 <Member Name="Oem">
Ed Tanouscb103132019-10-08 11:34:22 -0700215 <Annotation Term="OData.Description" String="Connected through an OEM-defined method."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700216 </Member>
217 </EnumType>
218
219 </Schema>
220
221 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_0_2">
222 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
223 <Annotation Term="OData.Description" String="This version was created to show annotations in previous namespaces were updated."/>
224 <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_0_0.VirtualMedia"/>
225 </Schema>
226
227 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_0_3">
228 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
229 <Annotation Term="OData.Description" String="This version was created to show annotations in previous namespaces were updated."/>
230 <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_0_2.VirtualMedia"/>
231 </Schema>
232
Ed Tanous530520e2019-01-02 13:41:37 -0800233 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_0_4">
234 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
235 <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."/>
236 <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_0_3.VirtualMedia"/>
237 </Schema>
238
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600239 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_0_5">
240 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700241 <Annotation Term="OData.Description" String="This version was created to use the new Revisions annotation."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600242 <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_0_4.VirtualMedia"/>
243 </Schema>
244
Ed Tanouscb103132019-10-08 11:34:22 -0700245 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_0_6">
246 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
247 <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."/>
248 <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_0_5.VirtualMedia"/>
249 </Schema>
250
251 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_0_7">
252 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
253 <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."/>
254 <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_0_6.VirtualMedia"/>
255 </Schema>
256
Jason M. Billsea4aa752018-06-05 13:29:11 -0700257 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_1_0">
258 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600259 <Annotation Term="Redfish.Release" String="2017.1"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700260 <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_0_3.VirtualMedia">
261 <Property Name="Actions" Type="VirtualMedia.v1_1_0.Actions" Nullable="false">
Ed Tanouscb103132019-10-08 11:34:22 -0700262 <Annotation Term="OData.Description" String="The available actions for this Resource."/>
263 <Annotation Term="OData.LongDescription" String="This property shall contain the available actions for this Resource."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700264 </Property>
265 </EntityType>
266
267 <ComplexType Name="Actions">
268 <Annotation Term="OData.AdditionalProperties" Bool="false"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700269 <Annotation Term="OData.Description" String="The available actions for this Resource."/>
270 <Annotation Term="OData.LongDescription" String="This type shall contain the available actions for this Resource."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800271 <Property Name="Oem" Type="VirtualMedia.v1_1_0.OemActions" Nullable="false">
Ed Tanouscb103132019-10-08 11:34:22 -0700272 <Annotation Term="OData.Description" String="The available OEM-specific actions for this Resource."/>
273 <Annotation Term="OData.LongDescription" String="This property shall contain the available OEM-specific actions for this Resource."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800274 </Property>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700275 </ComplexType>
276
277 <ComplexType Name="OemActions">
278 <Annotation Term="OData.AdditionalProperties" Bool="true"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700279 <Annotation Term="OData.Description" String="The available OEM-specific actions for this Resource."/>
280 <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 -0700281 </ComplexType>
282 </Schema>
283
284 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_1_1">
285 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700286 <Annotation Term="OData.Description" String="This version was created to update the descriptions that this schema defines."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700287 <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_1_0.VirtualMedia"/>
288 </Schema>
289
Ed Tanous530520e2019-01-02 13:41:37 -0800290 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_1_2">
291 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
292 <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."/>
293 <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_1_1.VirtualMedia"/>
294 </Schema>
295
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600296 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_1_3">
297 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700298 <Annotation Term="OData.Description" String="This version was created to use the new Revisions annotation."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600299 <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_1_2.VirtualMedia"/>
300 </Schema>
301
Ed Tanouscb103132019-10-08 11:34:22 -0700302 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_1_4">
303 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
304 <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."/>
305 <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_1_3.VirtualMedia"/>
306 </Schema>
307
308 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_1_5">
309 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
310 <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."/>
311 <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_1_4.VirtualMedia"/>
312 </Schema>
313
Jason M. Billsea4aa752018-06-05 13:29:11 -0700314 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_2_0">
315 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600316 <Annotation Term="Redfish.Release" String="2017.3"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700317 <Annotation Term="OData.Description" String="This version was created to change the permissions of Image, Inserted, and WriteProtected and to add the InsertMedia and InjectMedia actions."/>
318 <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_1_1.VirtualMedia"/>
319 </Schema>
320
Ed Tanous530520e2019-01-02 13:41:37 -0800321 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_2_1">
322 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
323 <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."/>
324 <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_2_0.VirtualMedia"/>
325 </Schema>
326
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600327 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_2_2">
328 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700329 <Annotation Term="OData.Description" String="This version was created to use the new Revisions annotation."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600330 <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_2_1.VirtualMedia"/>
331 </Schema>
332
Ed Tanouscb103132019-10-08 11:34:22 -0700333 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_2_3">
334 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
335 <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."/>
336 <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_2_2.VirtualMedia"/>
337 </Schema>
338
339 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_2_4">
340 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
341 <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."/>
342 <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_2_3.VirtualMedia"/>
343 </Schema>
344
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600345 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_3_0">
346 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
347 <Annotation Term="Redfish.Release" String="2018.3"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700348 <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."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600349
350 <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_2_2.VirtualMedia">
351 <Property Name="UserName" Type="Edm.String">
352 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700353 <Annotation Term="OData.Description" String="The user name to access the Image parameter-specified URI."/>
354 <Annotation Term="OData.LongDescription" String="This parameter shall represent the user name to access the Image parameter-specified URI."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600355 </Property>
356 <Property Name="Password" Type="Edm.String">
357 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700358 <Annotation Term="OData.Description" String="The password to access the Image parameter-specified URI. This property is null in responses."/>
359 <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."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600360 </Property>
361 <Property Name="TransferProtocolType" Type="VirtualMedia.v1_3_0.TransferProtocolType">
362 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700363 <Annotation Term="OData.Description" String="The network protocol to use with the image."/>
364 <Annotation Term="OData.LongDescription" String="This parameter shall represent the network protocol to use with the specified image URI."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600365 </Property>
366 <Property Name="TransferMethod" Type="VirtualMedia.v1_3_0.TransferMethod">
367 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700368 <Annotation Term="OData.Description" String="The transfer method to use with the Image."/>
369 <Annotation Term="OData.LongDescription" String="This parameter shall describe how the image transfer occurs."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600370 </Property>
371 </EntityType>
372
373 <EnumType Name="TransferProtocolType">
374 <Member Name="CIFS">
Ed Tanouscb103132019-10-08 11:34:22 -0700375 <Annotation Term="OData.Description" String="Common Internet File System (CIFS)."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600376 </Member>
377 <Member Name="FTP">
Ed Tanouscb103132019-10-08 11:34:22 -0700378 <Annotation Term="OData.Description" String="File Transfer Protocol (FTP)."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600379 </Member>
380 <Member Name="SFTP">
Ed Tanouscb103132019-10-08 11:34:22 -0700381 <Annotation Term="OData.Description" String="Secure File Transfer Protocol (SFTP)."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600382 </Member>
383 <Member Name="HTTP">
Ed Tanouscb103132019-10-08 11:34:22 -0700384 <Annotation Term="OData.Description" String="Hypertext Transfer Protocol (HTTP)."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600385 </Member>
386 <Member Name="HTTPS">
Ed Tanouscb103132019-10-08 11:34:22 -0700387 <Annotation Term="OData.Description" String="Hypertext Transfer Protocol Secure (HTTPS)."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600388 </Member>
389 <Member Name="NFS">
Ed Tanouscb103132019-10-08 11:34:22 -0700390 <Annotation Term="OData.Description" String="Network File System (NFS)."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600391 </Member>
392 <Member Name="SCP">
Ed Tanouscb103132019-10-08 11:34:22 -0700393 <Annotation Term="OData.Description" String="Secure Copy Protocol (SCP)."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600394 </Member>
395 <Member Name="TFTP">
Ed Tanouscb103132019-10-08 11:34:22 -0700396 <Annotation Term="OData.Description" String="Trivial File Transfer Protocol (TFTP)."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600397 </Member>
398 <Member Name="OEM">
Ed Tanouscb103132019-10-08 11:34:22 -0700399 <Annotation Term="OData.Description" String="A manufacturer-defined protocol."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600400 </Member>
401 </EnumType>
402
403 <EnumType Name="TransferMethod">
404 <Member Name="Stream">
405 <Annotation Term="OData.Description" String="Stream image file data from the source URI."/>
406 </Member>
407 <Member Name="Upload">
408 <Annotation Term="OData.Description" String="Upload the entire image file from the source URI to the service."/>
409 </Member>
410 </EnumType>
411 </Schema>
412
Ed Tanouscb103132019-10-08 11:34:22 -0700413 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_3_1">
414 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
415 <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."/>
416 <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_3_0.VirtualMedia"/>
417 </Schema>
418
419 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_3_2">
420 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
421 <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."/>
422 <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_3_1.VirtualMedia"/>
423 </Schema>
424
Jason M. Billsea4aa752018-06-05 13:29:11 -0700425 </edmx:DataServices>
426</edmx:Edmx>