| <?xml version="1.0" encoding="UTF-8"?> |
| <!----> |
| <!--################################################################################ --> |
| <!--# Redfish Schema: VirtualMedia v1.3.2 --> |
| <!--# --> |
| <!--# For a detailed change log, see the README file contained in the DSP8010 bundle, --> |
| <!--# available at http://www.dmtf.org/standards/redfish --> |
| <!--# Copyright 2014-2019 DMTF. --> |
| <!--# For the full DMTF copyright policy, see http://www.dmtf.org/about/policies/copyright --> |
| <!--################################################################################ --> |
| <!----> |
| <edmx:Edmx xmlns:edmx="http://docs.oasis-open.org/odata/ns/edmx" Version="4.0"> |
| |
| <edmx:Reference Uri="http://docs.oasis-open.org/odata/odata/v4.0/errata03/csd01/complete/vocabularies/Org.OData.Core.V1.xml"> |
| <edmx:Include Namespace="Org.OData.Core.V1" Alias="OData"/> |
| </edmx:Reference> |
| <edmx:Reference Uri="http://docs.oasis-open.org/odata/odata/v4.0/errata03/csd01/complete/vocabularies/Org.OData.Capabilities.V1.xml"> |
| <edmx:Include Namespace="Org.OData.Capabilities.V1" Alias="Capabilities"/> |
| </edmx:Reference> |
| <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Resource_v1.xml"> |
| <edmx:Include Namespace="Resource.v1_0_0"/> |
| </edmx:Reference> |
| <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/RedfishExtensions_v1.xml"> |
| <edmx:Include Namespace="RedfishExtensions.v1_0_0" Alias="Redfish"/> |
| </edmx:Reference> |
| |
| <edmx:DataServices> |
| |
| <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia"> |
| <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
| |
| <EntityType Name="VirtualMedia" BaseType="Resource.v1_0_0.Resource" Abstract="true"> |
| <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."/> |
| <Annotation Term="OData.LongDescription" String="This Resource shall represent a virtual media service for a Redfish implementation."/> |
| <Annotation Term="Capabilities.InsertRestrictions"> |
| <Record> |
| <PropertyValue Property="Insertable" Bool="false"/> |
| </Record> |
| </Annotation> |
| <Annotation Term="Capabilities.UpdateRestrictions"> |
| <Record> |
| <PropertyValue Property="Updatable" Bool="true"/> |
| <Annotation Term="OData.Description" String="Properties, such as Image, Inserted, and WriteProtected, can be updated for a VirtualMedia instance."/> |
| </Record> |
| </Annotation> |
| <Annotation Term="Capabilities.DeleteRestrictions"> |
| <Record> |
| <PropertyValue Property="Deletable" Bool="false"/> |
| </Record> |
| </Annotation> |
| <Annotation Term="Redfish.Uris"> |
| <Collection> |
| <String>/redfish/v1/Managers/{ManagerId}/VirtualMedia/{VirtualMediaId}</String> |
| </Collection> |
| </Annotation> |
| </EntityType> |
| |
| <Action Name="InsertMedia" IsBound="true"> |
| <Annotation Term="OData.Description" String="This action attaches remote media to virtual media."/> |
| <Annotation Term="OData.LongDescription" String="This action shall attach remote media to virtual media."/> |
| <Annotation Term="Redfish.Revisions"> |
| <Collection> |
| <Record> |
| <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/> |
| <PropertyValue Property="Version" String="v1_2_0"/> |
| </Record> |
| </Collection> |
| </Annotation> |
| <Parameter Name="VirtualMedia" Type="VirtualMedia.v1_1_0.Actions"/> |
| <Parameter Name="Image" Type="Edm.String" Nullable="false"> |
| <Annotation Term="OData.Description" String="The URI of the remote media to attach to the virtual media."/> |
| <Annotation Term="OData.LongDescription" String="This parameter shall specify the URI of the remote media to be attached to the virtual media."/> |
| </Parameter> |
| <Parameter Name="Inserted" Type="Edm.Boolean"> |
| <Annotation Term="OData.Description" String="An indication of whether the image is treated as inserted upon completion of the action. The default is `true`."/> |
| <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`."/> |
| </Parameter> |
| <Parameter Name="WriteProtected" Type="Edm.Boolean"> |
| <Annotation Term="OData.Description" String="An indication of whether the remote media is treated as write-protected. The default is `true`."/> |
| <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`."/> |
| </Parameter> |
| <Parameter Name="UserName" Type="Edm.String"> |
| <Annotation Term="OData.Description" String="The user name to access the Image parameter-specified URI."/> |
| <Annotation Term="OData.LongDescription" String="This parameter shall contain the user name to access the Image parameter-specified URI."/> |
| <Annotation Term="Redfish.Revisions"> |
| <Collection> |
| <Record> |
| <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/> |
| <PropertyValue Property="Version" String="v1_3_0"/> |
| </Record> |
| </Collection> |
| </Annotation> |
| </Parameter> |
| <Parameter Name="Password" Type="Edm.String"> |
| <Annotation Term="OData.Description" String="The password to access the Image parameter-specified URI."/> |
| <Annotation Term="OData.LongDescription" String="This parameter shall represent the password to access the Image parameter-specified URI."/> |
| <Annotation Term="Redfish.Revisions"> |
| <Collection> |
| <Record> |
| <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/> |
| <PropertyValue Property="Version" String="v1_3_0"/> |
| </Record> |
| </Collection> |
| </Annotation> |
| </Parameter> |
| <Parameter Name="TransferProtocolType" Type="VirtualMedia.v1_3_0.TransferProtocolType"> |
| <Annotation Term="OData.Description" String="The network protocol to use with the image."/> |
| <Annotation Term="OData.LongDescription" String="This parameter shall represent the network protocol to use with the specified image URI."/> |
| <Annotation Term="Redfish.Revisions"> |
| <Collection> |
| <Record> |
| <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/> |
| <PropertyValue Property="Version" String="v1_3_0"/> |
| </Record> |
| </Collection> |
| </Annotation> |
| </Parameter> |
| <Parameter Name="TransferMethod" Type="VirtualMedia.v1_3_0.TransferMethod"> |
| <Annotation Term="OData.Description" String="The transfer method to use with the Image."/> |
| <Annotation Term="OData.LongDescription" String="This parameter shall describe how the image transfer occurs."/> |
| <Annotation Term="Redfish.Revisions"> |
| <Collection> |
| <Record> |
| <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/> |
| <PropertyValue Property="Version" String="v1_3_0"/> |
| </Record> |
| </Collection> |
| </Annotation> |
| </Parameter> |
| </Action> |
| |
| <Action Name="EjectMedia" IsBound="true"> |
| <Annotation Term="OData.Description" String="This action detaches remote media from virtual media."/> |
| <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."/> |
| <Annotation Term="Redfish.Revisions"> |
| <Collection> |
| <Record> |
| <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/> |
| <PropertyValue Property="Version" String="v1_2_0"/> |
| </Record> |
| </Collection> |
| </Annotation> |
| <Parameter Name="VirtualMedia" Type="VirtualMedia.v1_1_0.Actions"/> |
| </Action> |
| |
| </Schema> |
| |
| <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_0_0"> |
| <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
| <Annotation Term="Redfish.Release" String="1.0"/> |
| |
| <EntityType Name="VirtualMedia" BaseType="VirtualMedia.VirtualMedia"> |
| <Property Name="ImageName" Type="Edm.String"> |
| <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> |
| <Annotation Term="OData.Description" String="The current image name."/> |
| <Annotation Term="OData.LongDescription" String="This property shall contain the name of the image."/> |
| </Property> |
| <Property Name="Image" Type="Edm.String"> |
| <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> |
| <Annotation Term="OData.Description" String="The URI of the location of the selected image."/> |
| <Annotation Term="OData.LongDescription" String="This property shall contain an URI. A null value indicated no image connection."/> |
| <Annotation Term="OData.IsURL"/> |
| </Property> |
| <Property Name="MediaTypes" Type="Collection(VirtualMedia.v1_0_0.MediaType)" Nullable="false"> |
| <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> |
| <Annotation Term="OData.Description" String="The media types supported as virtual media."/> |
| <Annotation Term="OData.LongDescription" String="The values of this array shall be the supported media types for this connection."/> |
| </Property> |
| <Property Name="ConnectedVia" Type="VirtualMedia.v1_0_0.ConnectedVia"> |
| <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> |
| <Annotation Term="OData.Description" String="The current virtual media connection method."/> |
| <Annotation Term="OData.LongDescription" String="This property shall contain the current connection method from a client to the virtual media that this Resource represents."/> |
| </Property> |
| <Property Name="Inserted" Type="Edm.Boolean"> |
| <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> |
| <Annotation Term="OData.Description" String="An indication of whether virtual media is inserted into the virtual device."/> |
| <Annotation Term="OData.LongDescription" String="This property shall indicate whether media is present in the virtual media device."/> |
| </Property> |
| <Property Name="WriteProtected" Type="Edm.Boolean"> |
| <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> |
| <Annotation Term="OData.Description" String="An indication of whether the media is write-protected."/> |
| <Annotation Term="OData.LongDescription" String="This property shall indicate whether the remote device media prevents writing to that media."/> |
| </Property> |
| </EntityType> |
| |
| <EnumType Name="MediaType"> |
| <Member Name="CD"> |
| <Annotation Term="OData.Description" String="A CD-ROM format (ISO) image."/> |
| </Member> |
| <Member Name="Floppy"> |
| <Annotation Term="OData.Description" String="A floppy disk image."/> |
| </Member> |
| <Member Name="USBStick"> |
| <Annotation Term="OData.Description" String="An emulation of a USB storage device."/> |
| </Member> |
| <Member Name="DVD"> |
| <Annotation Term="OData.Description" String="A DVD-ROM format image."/> |
| </Member> |
| </EnumType> |
| |
| <EnumType Name="ConnectedVia"> |
| <Member Name="NotConnected"> |
| <Annotation Term="OData.Description" String="No current connection."/> |
| </Member> |
| <Member Name="URI"> |
| <Annotation Term="OData.Description" String="Connected to a URI location."/> |
| </Member> |
| <Member Name="Applet"> |
| <Annotation Term="OData.Description" String="Connected to a client application."/> |
| </Member> |
| <Member Name="Oem"> |
| <Annotation Term="OData.Description" String="Connected through an OEM-defined method."/> |
| </Member> |
| </EnumType> |
| |
| </Schema> |
| |
| <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_0_2"> |
| <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
| <Annotation Term="OData.Description" String="This version was created to show annotations in previous namespaces were updated."/> |
| <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_0_0.VirtualMedia"/> |
| </Schema> |
| |
| <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_0_3"> |
| <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
| <Annotation Term="OData.Description" String="This version was created to show annotations in previous namespaces were updated."/> |
| <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_0_2.VirtualMedia"/> |
| </Schema> |
| |
| <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_0_4"> |
| <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
| <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."/> |
| <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_0_3.VirtualMedia"/> |
| </Schema> |
| |
| <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_0_5"> |
| <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
| <Annotation Term="OData.Description" String="This version was created to use the new Revisions annotation."/> |
| <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_0_4.VirtualMedia"/> |
| </Schema> |
| |
| <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_0_6"> |
| <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
| <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."/> |
| <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_0_5.VirtualMedia"/> |
| </Schema> |
| |
| <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_0_7"> |
| <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
| <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."/> |
| <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_0_6.VirtualMedia"/> |
| </Schema> |
| |
| <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_1_0"> |
| <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
| <Annotation Term="Redfish.Release" String="2017.1"/> |
| <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_0_3.VirtualMedia"> |
| <Property Name="Actions" Type="VirtualMedia.v1_1_0.Actions" Nullable="false"> |
| <Annotation Term="OData.Description" String="The available actions for this Resource."/> |
| <Annotation Term="OData.LongDescription" String="This property shall contain the available actions for this Resource."/> |
| </Property> |
| </EntityType> |
| |
| <ComplexType Name="Actions"> |
| <Annotation Term="OData.AdditionalProperties" Bool="false"/> |
| <Annotation Term="OData.Description" String="The available actions for this Resource."/> |
| <Annotation Term="OData.LongDescription" String="This type shall contain the available actions for this Resource."/> |
| <Property Name="Oem" Type="VirtualMedia.v1_1_0.OemActions" Nullable="false"> |
| <Annotation Term="OData.Description" String="The available OEM-specific actions for this Resource."/> |
| <Annotation Term="OData.LongDescription" String="This property shall contain the available OEM-specific actions for this Resource."/> |
| </Property> |
| </ComplexType> |
| |
| <ComplexType Name="OemActions"> |
| <Annotation Term="OData.AdditionalProperties" Bool="true"/> |
| <Annotation Term="OData.Description" String="The available OEM-specific actions for this Resource."/> |
| <Annotation Term="OData.LongDescription" String="This type shall contain the available OEM-specific actions for this Resource."/> |
| </ComplexType> |
| </Schema> |
| |
| <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_1_1"> |
| <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
| <Annotation Term="OData.Description" String="This version was created to update the descriptions that this schema defines."/> |
| <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_1_0.VirtualMedia"/> |
| </Schema> |
| |
| <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_1_2"> |
| <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
| <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."/> |
| <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_1_1.VirtualMedia"/> |
| </Schema> |
| |
| <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_1_3"> |
| <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
| <Annotation Term="OData.Description" String="This version was created to use the new Revisions annotation."/> |
| <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_1_2.VirtualMedia"/> |
| </Schema> |
| |
| <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_1_4"> |
| <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
| <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."/> |
| <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_1_3.VirtualMedia"/> |
| </Schema> |
| |
| <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_1_5"> |
| <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
| <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."/> |
| <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_1_4.VirtualMedia"/> |
| </Schema> |
| |
| <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_2_0"> |
| <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
| <Annotation Term="Redfish.Release" String="2017.3"/> |
| <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."/> |
| <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_1_1.VirtualMedia"/> |
| </Schema> |
| |
| <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_2_1"> |
| <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
| <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."/> |
| <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_2_0.VirtualMedia"/> |
| </Schema> |
| |
| <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_2_2"> |
| <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
| <Annotation Term="OData.Description" String="This version was created to use the new Revisions annotation."/> |
| <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_2_1.VirtualMedia"/> |
| </Schema> |
| |
| <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_2_3"> |
| <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
| <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."/> |
| <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_2_2.VirtualMedia"/> |
| </Schema> |
| |
| <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_2_4"> |
| <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
| <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."/> |
| <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_2_3.VirtualMedia"/> |
| </Schema> |
| |
| <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_3_0"> |
| <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
| <Annotation Term="Redfish.Release" String="2018.3"/> |
| <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."/> |
| |
| <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_2_2.VirtualMedia"> |
| <Property Name="UserName" Type="Edm.String"> |
| <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> |
| <Annotation Term="OData.Description" String="The user name to access the Image parameter-specified URI."/> |
| <Annotation Term="OData.LongDescription" String="This parameter shall represent the user name to access the Image parameter-specified URI."/> |
| </Property> |
| <Property Name="Password" Type="Edm.String"> |
| <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> |
| <Annotation Term="OData.Description" String="The password to access the Image parameter-specified URI. This property is null in responses."/> |
| <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."/> |
| </Property> |
| <Property Name="TransferProtocolType" Type="VirtualMedia.v1_3_0.TransferProtocolType"> |
| <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> |
| <Annotation Term="OData.Description" String="The network protocol to use with the image."/> |
| <Annotation Term="OData.LongDescription" String="This parameter shall represent the network protocol to use with the specified image URI."/> |
| </Property> |
| <Property Name="TransferMethod" Type="VirtualMedia.v1_3_0.TransferMethod"> |
| <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> |
| <Annotation Term="OData.Description" String="The transfer method to use with the Image."/> |
| <Annotation Term="OData.LongDescription" String="This parameter shall describe how the image transfer occurs."/> |
| </Property> |
| </EntityType> |
| |
| <EnumType Name="TransferProtocolType"> |
| <Member Name="CIFS"> |
| <Annotation Term="OData.Description" String="Common Internet File System (CIFS)."/> |
| </Member> |
| <Member Name="FTP"> |
| <Annotation Term="OData.Description" String="File Transfer Protocol (FTP)."/> |
| </Member> |
| <Member Name="SFTP"> |
| <Annotation Term="OData.Description" String="Secure File Transfer Protocol (SFTP)."/> |
| </Member> |
| <Member Name="HTTP"> |
| <Annotation Term="OData.Description" String="Hypertext Transfer Protocol (HTTP)."/> |
| </Member> |
| <Member Name="HTTPS"> |
| <Annotation Term="OData.Description" String="Hypertext Transfer Protocol Secure (HTTPS)."/> |
| </Member> |
| <Member Name="NFS"> |
| <Annotation Term="OData.Description" String="Network File System (NFS)."/> |
| </Member> |
| <Member Name="SCP"> |
| <Annotation Term="OData.Description" String="Secure Copy Protocol (SCP)."/> |
| </Member> |
| <Member Name="TFTP"> |
| <Annotation Term="OData.Description" String="Trivial File Transfer Protocol (TFTP)."/> |
| </Member> |
| <Member Name="OEM"> |
| <Annotation Term="OData.Description" String="A manufacturer-defined protocol."/> |
| </Member> |
| </EnumType> |
| |
| <EnumType Name="TransferMethod"> |
| <Member Name="Stream"> |
| <Annotation Term="OData.Description" String="Stream image file data from the source URI."/> |
| </Member> |
| <Member Name="Upload"> |
| <Annotation Term="OData.Description" String="Upload the entire image file from the source URI to the service."/> |
| </Member> |
| </EnumType> |
| </Schema> |
| |
| <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_3_1"> |
| <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
| <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."/> |
| <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_3_0.VirtualMedia"/> |
| </Schema> |
| |
| <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_3_2"> |
| <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
| <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."/> |
| <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_3_1.VirtualMedia"/> |
| </Schema> |
| |
| </edmx:DataServices> |
| </edmx:Edmx> |