1*720c9898SEd Tanous<?xml version="1.0" encoding="UTF-8"?>
2*720c9898SEd Tanous<!---->
3*720c9898SEd Tanous<!--################################################################################       -->
4*720c9898SEd Tanous<!--# Redfish Schema:  EthernetInterfaceCollection                                         -->
5*720c9898SEd Tanous<!--#                                                                                      -->
6*720c9898SEd Tanous<!--# For a detailed change log, see the README file contained in the DSP8010 bundle,      -->
7*720c9898SEd Tanous<!--# available at http://www.dmtf.org/standards/redfish                                   -->
8*720c9898SEd Tanous<!--# Copyright 2014-2023 DMTF.                                                            -->
9*720c9898SEd Tanous<!--# For the full DMTF copyright policy, see http://www.dmtf.org/about/policies/copyright -->
10*720c9898SEd Tanous<!--################################################################################       -->
11*720c9898SEd Tanous<!---->
12*720c9898SEd Tanous<edmx:Edmx xmlns:edmx="http://docs.oasis-open.org/odata/ns/edmx" Version="4.0">
13*720c9898SEd Tanous
14*720c9898SEd Tanous  <edmx:Reference Uri="http://docs.oasis-open.org/odata/odata/v4.0/errata03/csd01/complete/vocabularies/Org.OData.Core.V1.xml">
15*720c9898SEd Tanous    <edmx:Include Namespace="Org.OData.Core.V1" Alias="OData"/>
16*720c9898SEd Tanous  </edmx:Reference>
17*720c9898SEd Tanous  <edmx:Reference Uri="http://docs.oasis-open.org/odata/odata/v4.0/errata03/csd01/complete/vocabularies/Org.OData.Capabilities.V1.xml">
18*720c9898SEd Tanous    <edmx:Include Namespace="Org.OData.Capabilities.V1" Alias="Capabilities"/>
19*720c9898SEd Tanous  </edmx:Reference>
20*720c9898SEd Tanous  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Resource_v1.xml">
21*720c9898SEd Tanous    <edmx:Include Namespace="Resource.v1_0_0"/>
22*720c9898SEd Tanous  </edmx:Reference>
23*720c9898SEd Tanous  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/RedfishExtensions_v1.xml">
24*720c9898SEd Tanous    <edmx:Include Namespace="RedfishExtensions.v1_0_0" Alias="Redfish"/>
25*720c9898SEd Tanous  </edmx:Reference>
26*720c9898SEd Tanous  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/EthernetInterface_v1.xml">
27*720c9898SEd Tanous    <edmx:Include Namespace="EthernetInterface"/>
28*720c9898SEd Tanous  </edmx:Reference>
29*720c9898SEd Tanous
30*720c9898SEd Tanous  <edmx:DataServices>
31*720c9898SEd Tanous
32*720c9898SEd Tanous    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EthernetInterfaceCollection">
33*720c9898SEd Tanous      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
34*720c9898SEd Tanous
35*720c9898SEd Tanous      <EntityType Name="EthernetInterfaceCollection" BaseType="Resource.v1_0_0.ResourceCollection">
36*720c9898SEd Tanous        <Annotation Term="OData.Description" String="The collection of EthernetInterface resource instances."/>
37*720c9898SEd Tanous        <Annotation Term="OData.LongDescription" String="This resource shall represent a resource collection of EthernetInterface instances for a Redfish implementation."/>
38*720c9898SEd Tanous        <Annotation Term="Capabilities.InsertRestrictions">
39*720c9898SEd Tanous          <Record>
40*720c9898SEd Tanous            <PropertyValue Property="Insertable" Bool="true"/>
41*720c9898SEd Tanous          </Record>
42*720c9898SEd Tanous        </Annotation>
43*720c9898SEd Tanous        <Annotation Term="Capabilities.UpdateRestrictions">
44*720c9898SEd Tanous          <Record>
45*720c9898SEd Tanous            <PropertyValue Property="Updatable" Bool="false"/>
46*720c9898SEd Tanous          </Record>
47*720c9898SEd Tanous        </Annotation>
48*720c9898SEd Tanous        <Annotation Term="Capabilities.DeleteRestrictions">
49*720c9898SEd Tanous          <Record>
50*720c9898SEd Tanous            <PropertyValue Property="Deletable" Bool="false"/>
51*720c9898SEd Tanous          </Record>
52*720c9898SEd Tanous        </Annotation>
53*720c9898SEd Tanous        <Annotation Term="Redfish.Uris">
54*720c9898SEd Tanous          <Collection>
55*720c9898SEd Tanous            <String>/redfish/v1/Managers/{ManagerId}/EthernetInterfaces</String>
56*720c9898SEd Tanous            <String>/redfish/v1/Managers/{ManagerId}/HostInterfaces/{HostInterfaceId}/HostEthernetInterfaces</String>
57*720c9898SEd Tanous            <String>/redfish/v1/Systems/{ComputerSystemId}/EthernetInterfaces</String>
58*720c9898SEd Tanous            <String>/redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/EthernetInterfaces</String>
59*720c9898SEd Tanous            <String>/redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/EthernetInterfaces</String>
60*720c9898SEd Tanous            <String>/redfish/v1/Systems/{ComputerSystemId}/OperatingSystem/Containers/EthernetInterfaces</String>
61*720c9898SEd Tanous            <String>/redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/OperatingSystem/Containers/EthernetInterfaces</String>
62*720c9898SEd Tanous            <String>/redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/OperatingSystem/Containers/EthernetInterfaces</String>
63*720c9898SEd Tanous            <String>/redfish/v1/Chassis/{ChassisId}/NetworkAdapters/{NetworkAdapterId}/NetworkDeviceFunctions/{NetworkDeviceFunctionId}/EthernetInterfaces</String>
64*720c9898SEd Tanous          </Collection>
65*720c9898SEd Tanous        </Annotation>
66*720c9898SEd Tanous        <NavigationProperty Name="Members" Type="Collection(EthernetInterface.EthernetInterface)">
67*720c9898SEd Tanous          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
68*720c9898SEd Tanous          <Annotation Term="OData.Description" String="The members of this collection."/>
69*720c9898SEd Tanous          <Annotation Term="OData.LongDescription" String="This property shall contain an array of links to the members of this collection."/>
70*720c9898SEd Tanous          <Annotation Term="OData.AutoExpandReferences"/>
71*720c9898SEd Tanous          <Annotation Term="Redfish.Required"/>
72*720c9898SEd Tanous        </NavigationProperty>
73*720c9898SEd Tanous      </EntityType>
74*720c9898SEd Tanous    </Schema>
75*720c9898SEd Tanous
76*720c9898SEd Tanous  </edmx:DataServices>
77*720c9898SEd Tanous</edmx:Edmx>
78