1<?xml version="1.0" encoding="UTF-8"?> 2<!----> 3<!--################################################################################ --> 4<!--# Redfish Schema: DriveCollection --> 5<!--# --> 6<!--# For a detailed change log, see the README file contained in the DSP8010 bundle, --> 7<!--# available at http://www.dmtf.org/standards/redfish --> 8<!--# Copyright 2014-2023 DMTF. --> 9<!--# Portions Copyright 2015-2020 Storage Networking Industry Association (SNIA), USA. --> 10<!--# For the full DMTF copyright policy, see http://www.dmtf.org/about/policies/copyright --> 11<!--################################################################################ --> 12<!----> 13<edmx:Edmx xmlns:edmx="http://docs.oasis-open.org/odata/ns/edmx" Version="4.0"> 14 15 <edmx:Reference Uri="http://docs.oasis-open.org/odata/odata/v4.0/errata03/csd01/complete/vocabularies/Org.OData.Core.V1.xml"> 16 <edmx:Include Namespace="Org.OData.Core.V1" Alias="OData"/> 17 </edmx:Reference> 18 <edmx:Reference Uri="http://docs.oasis-open.org/odata/odata/v4.0/errata03/csd01/complete/vocabularies/Org.OData.Capabilities.V1.xml"> 19 <edmx:Include Namespace="Org.OData.Capabilities.V1" Alias="Capabilities"/> 20 </edmx:Reference> 21 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Resource_v1.xml"> 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/Drive_v1.xml"> 28 <edmx:Include Namespace="Drive"/> 29 </edmx:Reference> 30 31 <edmx:DataServices> 32 33 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="DriveCollection"> 34 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 35 36 <EntityType Name="DriveCollection" BaseType="Resource.v1_0_0.ResourceCollection"> 37 <Annotation Term="OData.Description" String="The collection of Drive resource instances."/> 38 <Annotation Term="OData.LongDescription" String="This resource shall represent a resource collection of Drive instances for a Redfish implementation."/> 39 <Annotation Term="Capabilities.InsertRestrictions"> 40 <Record> 41 <PropertyValue Property="Insertable" Bool="false"/> 42 </Record> 43 </Annotation> 44 <Annotation Term="Capabilities.UpdateRestrictions"> 45 <Record> 46 <PropertyValue Property="Updatable" Bool="false"/> 47 </Record> 48 </Annotation> 49 <Annotation Term="Capabilities.DeleteRestrictions"> 50 <Record> 51 <PropertyValue Property="Deletable" Bool="false"/> 52 </Record> 53 </Annotation> 54 <Annotation Term="Redfish.Uris"> 55 <Collection> 56 <String>/redfish/v1/Chassis/{ChassisId}/Drives</String> 57 <String>/redfish/v1/Storage/{StorageId}/FileSystems/{FileSystemId}/CapacitySources/{CapacitySourceId}/ProvidingDrives</String> 58 <String>/redfish/v1/Storage/{StorageId}/StoragePools/{StoragePoolId}/CapacitySources/{CapacitySourceId}/ProvidingDrives</String> 59 <String>/redfish/v1/Storage/{StorageId}/Volumes/{VolumeId}/CapacitySources/{CapacitySourceId}/ProvidingDrives</String> 60 <String>/redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/FileSystems/{FileSystemId}/CapacitySources/{CapacitySourceId}/ProvidingDrives</String> 61 <String>/redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/StoragePools/{StoragePoolId}/CapacitySources/{CapacitySourceId}/ProvidingDrives</String> 62 <String>/redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/Volumes/{VolumeId}/CapacitySources/{CapacitySourceId}/ProvidingDrives</String> 63 <String>/redfish/v1/StorageServices/{StorageServiceId}/Drives</String> 64 <String>/redfish/v1/StorageServices/{StorageServiceId}/FileSystems/{FileSystemId}/CapacitySources/{CapacitySourceId}/ProvidingDrives</String> 65 <String>/redfish/v1/StorageServices/{StorageServiceId}/StoragePools/{StoragePoolId}/CapacitySources/{CapacitySourceId}/ProvidingDrives</String> 66 <String>/redfish/v1/StorageServices/{StorageServiceId}/Volumes/{VolumeId}/CapacitySources/{CapacitySourceId}/ProvidingDrives</String> 67 </Collection> 68 </Annotation> 69 <NavigationProperty Name="Members" Type="Collection(Drive.Drive)"> 70 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 71 <Annotation Term="OData.Description" String="The members of this collection."/> 72 <Annotation Term="OData.LongDescription" String="This property shall contain an array of links to the members of this collection."/> 73 <Annotation Term="OData.AutoExpandReferences"/> 74 <Annotation Term="Redfish.Required"/> 75 </NavigationProperty> 76 </EntityType> 77 </Schema> 78 79 </edmx:DataServices> 80</edmx:Edmx> 81