blob: 2a8b386830c89ccd2dd77812279df4268d652f0b [file] [log] [blame]
Ed Tanous710adfc2017-10-24 17:04:52 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!---->
3<!--################################################################################ -->
Ed Tanous530520e2019-01-02 13:41:37 -08004<!--# Redfish Schema: NetworkInterface v1.1.1-->
Ed Tanous710adfc2017-10-24 17:04:52 -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 -->
Ed Tanous530520e2019-01-02 13:41:37 -08008<!--# Copyright 2014-2018 DMTF. -->
Ed Tanous710adfc2017-10-24 17:04:52 -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 <edmx:Reference Uri="http://docs.oasis-open.org/odata/odata/v4.0/errata03/csd01/complete/vocabularies/Org.OData.Core.V1.xml">
14 <edmx:Include Namespace="Org.OData.Core.V1" Alias="OData"/>
15 </edmx:Reference>
16 <edmx:Reference Uri="http://docs.oasis-open.org/odata/odata/v4.0/errata03/csd01/complete/vocabularies/Org.OData.Capabilities.V1.xml">
17 <edmx:Include Namespace="Org.OData.Capabilities.V1" Alias="Capabilities"/>
18 </edmx:Reference>
19 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Resource_v1.xml">
20 <edmx:Include Namespace="Resource"/>
21 <edmx:Include Namespace="Resource.v1_0_0"/>
22 </edmx:Reference>
Jason M. Billsea4aa752018-06-05 13:29:11 -070023 <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>
Ed Tanous710adfc2017-10-24 17:04:52 -070026 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/NetworkAdapter_v1.xml">
27 <edmx:Include Namespace="NetworkAdapter"/>
28 </edmx:Reference>
29 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/NetworkPortCollection_v1.xml">
30 <edmx:Include Namespace="NetworkPortCollection"/>
31 </edmx:Reference>
32 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/NetworkDeviceFunctionCollection_v1.xml">
33 <edmx:Include Namespace="NetworkDeviceFunctionCollection"/>
34 </edmx:Reference>
35
36 <edmx:DataServices>
37
38 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="NetworkInterface">
Jason M. Billsea4aa752018-06-05 13:29:11 -070039 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanous710adfc2017-10-24 17:04:52 -070040
41 <EntityType Name="NetworkInterface" BaseType="Resource.v1_0_0.Resource" Abstract="true">
42 <Annotation Term="OData.Description" String="A NetworkInterface contains references linking NetworkAdapter, NetworkPort, and NetworkDeviceFunction resources and represents the functionality available to the containing system."/>
43 <Annotation Term="OData.LongDescription" String="A NetworkInterface contains references linking NetworkAdapter, NetworkPort, and NetworkDeviceFunction resources and represents the functionality available to the containing system."/>
44 <Annotation Term="Capabilities.InsertRestrictions">
45 <Record>
46 <PropertyValue Property="Insertable" Bool="false"/>
47 </Record>
48 </Annotation>
49 <Annotation Term="Capabilities.UpdateRestrictions">
50 <Record>
51 <PropertyValue Property="Updatable" Bool="false"/>
52 </Record>
53 </Annotation>
54 <Annotation Term="Capabilities.DeleteRestrictions">
55 <Record>
56 <PropertyValue Property="Deletable" Bool="false"/>
57 </Record>
58 </Annotation>
Ed Tanous530520e2019-01-02 13:41:37 -080059 <Annotation Term="Redfish.Uris">
60 <Collection>
61 <String>/redfish/v1/Systems/{ComputerSystemId}/NetworkInterfaces/{NetworkInterfaceId}</String>
62 <String>/redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/NetworkInterfaces/{NetworkInterfaceId}</String>
63 <String>/redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/NetworkInterfaces/{NetworkInterfaceId}</String>
Marri Devender Raod45d2d02019-01-21 10:11:34 -060064 <String>/redfish/v1/ResourceBlocks/{ResourceBlockId}/NetworkInterfaces/{NetworkInterfaceId}</String>
65 <String>/redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/NetworkInterfaces/{NetworkInterfaceId}</String>
Ed Tanous530520e2019-01-02 13:41:37 -080066 </Collection>
67 </Annotation>
Ed Tanous710adfc2017-10-24 17:04:52 -070068 </EntityType>
69
70 </Schema>
71
72 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="NetworkInterface.v1_0_0">
Jason M. Billsea4aa752018-06-05 13:29:11 -070073 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -060074 <Annotation Term="Redfish.Release" String="2016.3"/>
Ed Tanous710adfc2017-10-24 17:04:52 -070075
76 <EntityType Name="NetworkInterface" BaseType="NetworkInterface.NetworkInterface">
77 <Annotation Term="OData.Description" String="A NetworkInterface contains references linking NetworkAdapter, NetworkPort, and NetworkDeviceFunction resources and represents the functionality available to the containing system."/>
78 <Annotation Term="OData.LongDescription" String="A NetworkInterface contains references linking NetworkAdapter, NetworkPort, and NetworkDeviceFunction resources and represents the functionality available to the containing system."/>
Ed Tanous530520e2019-01-02 13:41:37 -080079 <Property Name="Status" Type="Resource.Status" Nullable="false">
80 <Annotation Term="OData.Description" String="This property describes the status and health of the resource and its children."/>
81 <Annotation Term="OData.LongDescription" String="This property shall contain any status or health properties of the resource."/>
82 </Property>
Ed Tanous710adfc2017-10-24 17:04:52 -070083 <Property Name="Links" Type="NetworkInterface.v1_0_0.Links" Nullable="false">
84 <Annotation Term="OData.Description" String="Links."/>
85 <Annotation Term="OData.LongDescription" String="Links for this controller."/>
86 </Property>
Jason M. Billsea4aa752018-06-05 13:29:11 -070087 <NavigationProperty Name="NetworkPorts" Type="NetworkPortCollection.NetworkPortCollection" ContainsTarget="true" Nullable="false">
Ed Tanous710adfc2017-10-24 17:04:52 -070088 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanous530520e2019-01-02 13:41:37 -080089 <Annotation Term="OData.Description" String="A reference to the collection of NetworkPorts associated with this NetworkInterface."/>
90 <Annotation Term="OData.LongDescription" String="The value of this property shall be a link to a collection of type NetworkPortCollection."/>
Ed Tanous710adfc2017-10-24 17:04:52 -070091 <Annotation Term="OData.AutoExpandReferences"/>
92 </NavigationProperty>
Jason M. Billsea4aa752018-06-05 13:29:11 -070093 <NavigationProperty Name="NetworkDeviceFunctions" Type="NetworkDeviceFunctionCollection.NetworkDeviceFunctionCollection" ContainsTarget="true" Nullable="false">
Ed Tanous710adfc2017-10-24 17:04:52 -070094 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanous530520e2019-01-02 13:41:37 -080095 <Annotation Term="OData.Description" String="A reference to the collection of NetworkDeviceFunctions associated with this NetworkInterface."/>
96 <Annotation Term="OData.LongDescription" String="The value of this property shall be a link to a collection of type NetworkDeviceFunctionCollection."/>
Ed Tanous710adfc2017-10-24 17:04:52 -070097 <Annotation Term="OData.AutoExpandReferences"/>
98 </NavigationProperty>
99 </EntityType>
100
101 <ComplexType Name="Links" BaseType="Resource.Links">
Jason M. Billsea4aa752018-06-05 13:29:11 -0700102 <Annotation Term="OData.Description" String="Contains references to other resources that are related to this resource."/>
103 <Annotation Term="OData.LongDescription" String="This type, as described by the Redfish Specification, shall contain references to resources that are related to, but not contained by (subordinate to), this resource."/>
Ed Tanous710adfc2017-10-24 17:04:52 -0700104 <NavigationProperty Name="NetworkAdapter" Type="NetworkAdapter.NetworkAdapter" Nullable="false">
105 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanous530520e2019-01-02 13:41:37 -0800106 <Annotation Term="OData.Description" String="A reference to the NetworkAdapter which contains this NetworkInterface."/>
107 <Annotation Term="OData.LongDescription" String="The value of this property shall be a reference to a resource of type NetworkAdapter that represents the physical container associated with this NetworkInterface."/>
Ed Tanous710adfc2017-10-24 17:04:52 -0700108 <Annotation Term="OData.AutoExpandReferences"/>
109 </NavigationProperty>
110 </ComplexType>
111
112 </Schema>
113
Jason M. Billsea4aa752018-06-05 13:29:11 -0700114 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="NetworkInterface.v1_0_1">
115 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
116 <Annotation Term="OData.Description" String="This version was created to show annotations in previous namespaces were updated."/>
117 <EntityType Name="NetworkInterface" BaseType="NetworkInterface.v1_0_0.NetworkInterface"/>
118 </Schema>
119
Ed Tanous530520e2019-01-02 13:41:37 -0800120 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="NetworkInterface.v1_0_2">
121 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
122 <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."/>
123 <EntityType Name="NetworkInterface" BaseType="NetworkInterface.v1_0_1.NetworkInterface"/>
124 </Schema>
125
Jason M. Billsea4aa752018-06-05 13:29:11 -0700126 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="NetworkInterface.v1_1_0">
127 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600128 <Annotation Term="Redfish.Release" String="2017.1"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700129 <EntityType Name="NetworkInterface" BaseType="NetworkInterface.v1_0_1.NetworkInterface">
130 <Property Name="Actions" Type="NetworkInterface.v1_1_0.Actions" Nullable="false">
131 <Annotation Term="OData.Description" String="The available actions for this resource."/>
132 <Annotation Term="OData.LongDescription" String="The Actions property shall contain the available actions for this resource."/>
133 </Property>
134 </EntityType>
135
136 <ComplexType Name="Actions">
137 <Annotation Term="OData.AdditionalProperties" Bool="false"/>
138 <Annotation Term="OData.Description" String="The available actions for this resource."/>
139 <Annotation Term="OData.LongDescription" String="This type shall contain the available actions for this resource."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800140 <Property Name="Oem" Type="NetworkInterface.v1_1_0.OemActions" Nullable="false">
141 <Annotation Term="OData.Description" String="This property contains the available OEM specific actions for this resource."/>
142 <Annotation Term="OData.LongDescription" String="This property shall contain any additional OEM actions for this resource."/>
143 </Property>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700144 </ComplexType>
145
146 <ComplexType Name="OemActions">
147 <Annotation Term="OData.AdditionalProperties" Bool="true"/>
148 <Annotation Term="OData.Description" String="The available OEM specific actions for this resource."/>
149 <Annotation Term="OData.LongDescription" String="This type shall contain any additional OEM actions for this resource."/>
150 </ComplexType>
151 </Schema>
152
Ed Tanous530520e2019-01-02 13:41:37 -0800153 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="NetworkInterface.v1_1_1">
154 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
155 <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."/>
156 <EntityType Name="NetworkInterface" BaseType="NetworkInterface.v1_1_0.NetworkInterface"/>
157 </Schema>
158
Ed Tanous710adfc2017-10-24 17:04:52 -0700159 </edmx:DataServices>
160</edmx:Edmx>