blob: 8efeb09464fd26aa816dd6ee238a08be681e6b4b [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: EthernetInterface v1.5.1 -->
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 -->
Ed Tanouscb103132019-10-08 11:34:22 -07008<!--# Copyright 2014-2019 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/RedfishExtensions_v1.xml">
21 <edmx:Include Namespace="RedfishExtensions.v1_0_0" Alias="Redfish"/>
22 <edmx:Include Namespace="Validation.v1_0_0" Alias="Validation"/>
23 </edmx:Reference>
24 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Resource_v1.xml">
25 <edmx:Include Namespace="Resource"/>
26 <edmx:Include Namespace="Resource.v1_0_0"/>
27 </edmx:Reference>
28 <edmx:Reference Uri="http://docs.oasis-open.org/odata/odata/v4.0/errata03/csd01/complete/vocabularies/Org.OData.Measures.V1.xml">
29 <edmx:Include Namespace="Org.OData.Measures.V1" Alias="Measures"/>
30 </edmx:Reference>
31 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/IPAddresses_v1.xml">
32 <edmx:Include Namespace="IPAddresses"/>
33 </edmx:Reference>
34 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/VLanNetworkInterface_v1.xml">
35 <edmx:Include Namespace="VLanNetworkInterface"/>
36 </edmx:Reference>
37 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/VLanNetworkInterfaceCollection_v1.xml">
38 <edmx:Include Namespace="VLanNetworkInterfaceCollection"/>
39 </edmx:Reference>
40 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Endpoint_v1.xml">
41 <edmx:Include Namespace="Endpoint"/>
42 </edmx:Reference>
43 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/HostInterface_v1.xml">
44 <edmx:Include Namespace="HostInterface"/>
45 </edmx:Reference>
46 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Chassis_v1.xml">
47 <edmx:Include Namespace="Chassis"/>
48 </edmx:Reference>
49
50 <edmx:DataServices>
51
52 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EthernetInterface">
53 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
54
55 <EntityType Name="EthernetInterface" BaseType="Resource.v1_0_0.Resource" Abstract="true">
Ed Tanouscb103132019-10-08 11:34:22 -070056 <Annotation Term="OData.Description" String="The EthernetInterface schema represents a single, logical Ethernet interface or network interface controller (NIC)."/>
57 <Annotation Term="OData.LongDescription" String="This Resource contains NIC Resources as part of the Redfish Specification."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -070058 <Annotation Term="Capabilities.InsertRestrictions">
59 <Record>
60 <PropertyValue Property="Insertable" Bool="false"/>
61 </Record>
62 </Annotation>
63 <Annotation Term="Capabilities.UpdateRestrictions">
64 <Record>
65 <PropertyValue Property="Updatable" Bool="true"/>
Ed Tanouscb103132019-10-08 11:34:22 -070066 <Annotation Term="OData.Description" String="Any writable properties, such as addressing and link information, can be updated for Ethernet interfaces."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -070067 </Record>
68 </Annotation>
69 <Annotation Term="Capabilities.DeleteRestrictions">
70 <Record>
71 <PropertyValue Property="Deletable" Bool="false"/>
72 </Record>
73 </Annotation>
Ed Tanous530520e2019-01-02 13:41:37 -080074 <Annotation Term="Redfish.Uris">
75 <Collection>
76 <String>/redfish/v1/Managers/{ManagerId}/EthernetInterfaces/{EthernetInterfaceId}</String>
77 <String>/redfish/v1/Systems/{ComputerSystemId}/EthernetInterfaces/{EthernetInterfaceId}</String>
78 <String>/redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/EthernetInterfaces/{EthernetInterfaceId}</String>
79 <String>/redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/EthernetInterfaces/{EthernetInterfaceId}</String>
Marri Devender Raod45d2d02019-01-21 10:11:34 -060080 <String>/redfish/v1/ResourceBlocks/{ResourceBlockId}/EthernetInterfaces/{EthernetInterfaceId}</String>
81 <String>/redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/EthernetInterfaces/{EthernetInterfaceId}</String>
Ed Tanous530520e2019-01-02 13:41:37 -080082 </Collection>
83 </Annotation>
Jason M. Billsea4aa752018-06-05 13:29:11 -070084 </EntityType>
85
86 </Schema>
87
88 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EthernetInterface.v1_0_0">
89 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -060090 <Annotation Term="Redfish.Release" String="1.0"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -070091
92 <EntityType Name="EthernetInterface" BaseType="EthernetInterface.EthernetInterface">
Jason M. Billsea4aa752018-06-05 13:29:11 -070093 <Property Name="UefiDevicePath" Type="Edm.String">
94 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
95 <Annotation Term="OData.Description" String="The UEFI device path for this interface."/>
Ed Tanouscb103132019-10-08 11:34:22 -070096 <Annotation Term="OData.LongDescription" String="This property shall contain the UEFI device path to the device that implements this interface, or port."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -070097 </Property>
Ed Tanous530520e2019-01-02 13:41:37 -080098 <Property Name="Status" Type="Resource.Status" Nullable="false">
Ed Tanouscb103132019-10-08 11:34:22 -070099 <Annotation Term="OData.Description" String="The status and health of the Resource and its subordinate or dependent Resources."/>
100 <Annotation Term="OData.LongDescription" String="This property shall contain any status or health properties of the Resource."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800101 </Property>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700102 <Property Name="InterfaceEnabled" Type="Edm.Boolean">
103 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700104 <Annotation Term="OData.Description" String="An indication of whether this interface is enabled."/>
105 <Annotation Term="OData.LongDescription" String="This property shall indicate whether this interface is enabled."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700106 </Property>
107 <Property Name="PermanentMACAddress" Type="EthernetInterface.v1_0_0.MACAddress">
108 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700109 <Annotation Term="OData.Description" String="The permanent MAC address assigned to this interface, or port."/>
110 <Annotation Term="OData.LongDescription" String="This property shall contain the permanent MAC address of this interface, or port. Typically, this value is programmed during manufacturing. This address is not assignable."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700111 </Property>
112 <Property Name="MACAddress" Type="EthernetInterface.v1_0_0.MACAddress">
113 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700114 <Annotation Term="OData.Description" String="The currently configured MAC address of the interface, or logical port."/>
115 <Annotation Term="OData.LongDescription" String="This property shall contain the effective current MAC address of this interface. If an assignable MAC address is not supported, this value is a read-only alias of the PermanentMACAddress."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700116 </Property>
117 <Property Name="SpeedMbps" Type="Edm.Int64">
118 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700119 <Annotation Term="OData.Description" String="The current speed, in Mbps, of this interface."/>
120 <Annotation Term="OData.LongDescription" String="This property shall contain the link speed of the interface, in Mbps. This property shall be writable only when the AutoNeg property is `false`."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700121 <Annotation Term="Measures.Unit" String="Mbit/s"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700122 </Property>
123 <Property Name="AutoNeg" Type="Edm.Boolean">
124 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700125 <Annotation Term="OData.Description" String="An indication of whether the speed and duplex are automatically negotiated and configured on this interface."/>
126 <Annotation Term="OData.LongDescription" String="This property shall indicate whether the speed and duplex are automatically negotiated and configured on this interface."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700127 </Property>
128 <Property Name="FullDuplex" Type="Edm.Boolean">
129 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700130 <Annotation Term="OData.Description" String="An indication of whether full-duplex mode is enabled on the Ethernet connection for this interface."/>
131 <Annotation Term="OData.LongDescription" String="This property shall indicate whether full-duplex mode is enabled on the Ethernet connection for this interface."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700132 </Property>
133 <Property Name="MTUSize" Type="Edm.Int64">
134 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700135 <Annotation Term="OData.Description" String="The currently configured maximum transmission unit (MTU), in bytes, on this interface."/>
136 <Annotation Term="OData.LongDescription" String="This property shall contain the size, in bytes, of largest protocol data unit (PDU) that can be passed in an Ethernet (MAC) frame on this interface."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700137 </Property>
138 <Property Name="HostName" Type="Edm.String">
139 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700140 <Annotation Term="OData.Description" String="The DNS host name, without any domain information."/>
141 <Annotation Term="OData.LongDescription" String="This property shall contain DNS host name for this interface."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700142 </Property>
143 <Property Name="FQDN" Type="Edm.String">
144 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700145 <Annotation Term="OData.Description" String="The complete, fully qualified domain name that DNS obtains for this interface."/>
146 <Annotation Term="OData.LongDescription" String="This property shall contain the fully qualified domain name that DNS obtains for this interface."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700147 </Property>
148 <Property Name="MaxIPv6StaticAddresses" Type="Edm.Int64">
149 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700150 <Annotation Term="OData.Description" String="The maximum number of static IPv6 addresses that can be configured on this interface."/>
151 <Annotation Term="OData.LongDescription" String="This property shall indicate the number of array items supported by IPv6StaticAddresses, or the maximum number of static IPv6 addresses that can be configured on this interface."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700152 </Property>
Ed Tanouscb103132019-10-08 11:34:22 -0700153 <Property Name="VLAN" Type="VLanNetworkInterface.VLAN" Nullable="false">
154 <Annotation Term="OData.Description" String="If this network interface supports more than one VLAN, this property is absent. VLAN collections appear in the Link section of this Resource."/>
155 <Annotation Term="OData.LongDescription" String="This property shall contain the VLAN for this interface. If this interface supports more than one VLAN, the VLAN property shall be absent and, instead, the VLAN collection link shall be present."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700156 </Property>
157 <Property Name="IPv4Addresses" Type="Collection(IPAddresses.IPv4Address)" Nullable="false">
158 <Annotation Term="OData.Description" String="The IPv4 addresses currently assigned to this interface."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700159 <Annotation Term="OData.LongDescription" String="This property shall contain an array of objects that represent the IPv4 connection characteristics for this interface. It is recommended that this property be regarded as read-only with configuration of static addresses performed by updating the values within IPv4StaticAddessses. Services may reject updates to this array for this reason."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700160 </Property>
Ed Tanouscb103132019-10-08 11:34:22 -0700161 <Property Name="IPv6AddressPolicyTable" Type="Collection(EthernetInterface.v1_0_0.IPv6AddressPolicyEntry)">
162 <Annotation Term="OData.Description" String="An array that represents the RFC6724-defined address selection policy table."/>
163 <Annotation Term="OData.LongDescription" String="This property shall contain an array of objects that represent the RFC6724-defined address selection policy table."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700164 </Property>
165 <Property Name="IPv6Addresses" Type="Collection(IPAddresses.IPv6Address)" Nullable="false">
Ed Tanouscb103132019-10-08 11:34:22 -0700166 <Annotation Term="OData.Description" String="An array of the currently assigned IPv6 addresses on this interface."/>
167 <Annotation Term="OData.LongDescription" String="This property shall contain an array of objects that represent the IPv6 connection characteristics for this interface."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700168 </Property>
Ed Tanouscb103132019-10-08 11:34:22 -0700169 <Property Name="IPv6StaticAddresses" Type="Collection(IPAddresses.IPv6StaticAddress)">
170 <Annotation Term="OData.Description" String="An array of the IPv6 static addresses to assign on this interface."/>
171 <Annotation Term="OData.LongDescription" String="This property shall contain an array of objects that represent the IPv6 static connection characteristics for this interface."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700172 </Property>
173 <Property Name="IPv6DefaultGateway" Type="Edm.String">
174 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700175 <Annotation Term="OData.Description" String="The IPv6 default gateway address in use on this interface."/>
176 <Annotation Term="OData.LongDescription" String="This property shall contain the current IPv6 default gateway address in use on this interface."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700177 <Annotation Term="Redfish.IPv6Format"/>
178 </Property>
179 <Property Name="NameServers" Type="Collection(Edm.String)" Nullable="false">
180 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700181 <Annotation Term="OData.Description" String="The DNS servers in use on this interface."/>
182 <Annotation Term="OData.LongDescription" String="This property shall contain the DNS servers in use on this interface."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700183 </Property>
184 <NavigationProperty Name="VLANs" Type="VLanNetworkInterfaceCollection.VLanNetworkInterfaceCollection" ContainsTarget="true" Nullable="false">
185 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700186 <Annotation Term="OData.Description" String="The link to a collection of VLANs, which applies only if the interface supports more than one VLAN. If this property applies, the VLANEnabled and VLANId properties do not apply."/>
187 <Annotation Term="OData.LongDescription" String="This property shall contain a link to a collection of VLAN Resources, which applies only if the interface supports more than one VLAN. If this property is present, the VLANEnabled and VLANId properties shall not be present."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700188 <Annotation Term="OData.AutoExpandReferences"/>
189 </NavigationProperty>
190 </EntityType>
191
192 <TypeDefinition Name="MACAddress" UnderlyingType="Edm.String">
193 <Annotation Term="Validation.Pattern" String="^([0-9A-Fa-f]{2}[:-]){5}([0-9A-Fa-f]{2})$"/>
194 </TypeDefinition>
195
196 <ComplexType Name="IPv6AddressPolicyEntry">
197 <Annotation Term="OData.AdditionalProperties" Bool="false"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700198 <Annotation Term="OData.Description" String="The entry in the RFC6724-defined address selection policy table."/>
199 <Annotation Term="OData.LongDescription" String="This type shall describe an entry in the RFC6724-defined address selection policy table."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700200 <Property Name="Prefix" Type="Edm.String">
201 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700202 <Annotation Term="OData.Description" String="The IPv6 address prefix, as defined in RFC6724, section 2.1."/>
203 <Annotation Term="OData.LongDescription" String="This property shall contain the IPv6 address prefix for this table entry, as defined in RFC6724, section 2.1."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700204 <Annotation Term="Redfish.IPv6Format"/>
205 </Property>
206 <Property Name="Precedence" Type="Edm.Int64">
207 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700208 <Annotation Term="OData.Description" String="The IPv6 precedence, as defined in RFC6724, section 2.1."/>
209 <Annotation Term="OData.LongDescription" String="This property shall contain the IPv6 precedence value for this table entry, as defined in RFC6724, section 2.1."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700210 <Annotation Term="Validation.Minimum" Int="1"/>
211 <Annotation Term="Validation.Maximum" Int="100"/>
212 </Property>
213 <Property Name="Label" Type="Edm.Int64">
214 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700215 <Annotation Term="OData.Description" String="The IPv6 label, as defined in RFC6724, section 2.1."/>
216 <Annotation Term="OData.LongDescription" String="This property shall contain the IPv6 label value for this table entry, as defined in RFC6724, section 2.1."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700217 <Annotation Term="Validation.Minimum" Int="0"/>
218 <Annotation Term="Validation.Maximum" Int="100"/>
219 </Property>
220 </ComplexType>
221 </Schema>
222
223 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EthernetInterface.v1_0_2">
224 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700225 <Annotation Term="OData.Description" String="This version was created to show that annotations in previous namespaces were updated."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700226 <EntityType Name="EthernetInterface" BaseType="EthernetInterface.v1_0_0.EthernetInterface"/>
227 </Schema>
228
229 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EthernetInterface.v1_0_3">
230 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
231 <Annotation Term="OData.Description" String="This version was created to add explicit Permissions annotations to all properties for clarity."/>
232 <EntityType Name="EthernetInterface" BaseType="EthernetInterface.v1_0_2.EthernetInterface"/>
233 </Schema>
234
235 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EthernetInterface.v1_0_4">
236 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700237 <Annotation Term="OData.Description" String="This version was created to show that annotations in previous namespaces were updated."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700238 <EntityType Name="EthernetInterface" BaseType="EthernetInterface.v1_0_3.EthernetInterface"/>
239 </Schema>
240
241 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EthernetInterface.v1_0_5">
242 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700243 <Annotation Term="OData.Description" String="This version was created to change IPAddresses and VLanNetworkInterface structures to their abstract base types."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700244 <EntityType Name="EthernetInterface" BaseType="EthernetInterface.v1_0_4.EthernetInterface"/>
245 </Schema>
246
Ed Tanous530520e2019-01-02 13:41:37 -0800247 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EthernetInterface.v1_0_6">
248 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
249 <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."/>
250 <EntityType Name="EthernetInterface" BaseType="EthernetInterface.v1_0_5.EthernetInterface"/>
251 </Schema>
252
Ed Tanouscb103132019-10-08 11:34:22 -0700253 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EthernetInterface.v1_0_7">
254 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
255 <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, and to add a missing term to several properties to disallow them from being null."/>
256 <EntityType Name="EthernetInterface" BaseType="EthernetInterface.v1_0_6.EthernetInterface"/>
257 </Schema>
258
259 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EthernetInterface.v1_0_8">
260 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
261 <Annotation Term="OData.Description" String="This version was created to allow for null to be used in several writable properties that are arrays. It was also created to update the description for the SpeedMbps property. It was also created to update descriptions that this schema defines."/>
262 <EntityType Name="EthernetInterface" BaseType="EthernetInterface.v1_0_7.EthernetInterface"/>
263 </Schema>
264
Jason M. Billsea4aa752018-06-05 13:29:11 -0700265 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EthernetInterface.v1_1_0">
266 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600267 <Annotation Term="Redfish.Release" String="2016.2"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700268 <EntityType Name="EthernetInterface" BaseType="EthernetInterface.v1_0_2.EthernetInterface">
269 <Property Name="LinkStatus" Type="EthernetInterface.v1_1_0.LinkStatus">
270 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700271 <Annotation Term="OData.Description" String="The link status of this interface, or port."/>
272 <Annotation Term="OData.LongDescription" String="This property shall contain the link status of this interface, or port."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700273 </Property>
274 <Property Name="Links" Type="EthernetInterface.v1_1_0.Links" Nullable="false">
Ed Tanouscb103132019-10-08 11:34:22 -0700275 <Annotation Term="OData.Description" String="The links to other Resources that are related to this Resource."/>
276 <Annotation Term="OData.LongDescription" String="The Redfish Specification-described Links Property shall contain links to Resources related to but not subordinate to this Resource."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700277 </Property>
278 </EntityType>
279
280 <EnumType Name="LinkStatus">
281 <Member Name="LinkUp">
282 <Annotation Term="OData.Description" String="The link is available for communication on this interface."/>
283 </Member>
284 <Member Name="NoLink">
Ed Tanouscb103132019-10-08 11:34:22 -0700285 <Annotation Term="OData.Description" String="No link or connection is detected on this interface."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700286 </Member>
287 <Member Name="LinkDown">
Ed Tanouscb103132019-10-08 11:34:22 -0700288 <Annotation Term="OData.Description" String="No link is detected on this interface, but the interface is connected."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700289 </Member>
290 </EnumType>
291
292 <ComplexType Name="Links" BaseType="Resource.Links">
Ed Tanouscb103132019-10-08 11:34:22 -0700293 <Annotation Term="OData.Description" String="The links to other Resources that are related to this Resource."/>
294 <Annotation Term="OData.LongDescription" String="The Redfish Specification-described type shall contain links to Resources related to but not subordinate to this Resource."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700295 <NavigationProperty Name="Endpoints" Type="Collection(Endpoint.Endpoint)">
296 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700297 <Annotation Term="OData.Description" String="An array of links to the endpoints that connect to this Ethernet interface."/>
298 <Annotation Term="OData.LongDescription" String="This property shall contain a link to the Resources of the Endpoint type with which this Ethernet interface is associated."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700299 <Annotation Term="OData.AutoExpandReferences"/>
300 </NavigationProperty>
301 </ComplexType>
302 </Schema>
303
304 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EthernetInterface.v1_1_1">
305 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
306 <Annotation Term="OData.Description" String="This version was created to add explicit Permissions annotations to all properties for clarity."/>
307 <EntityType Name="EthernetInterface" BaseType="EthernetInterface.v1_1_0.EthernetInterface"/>
308 </Schema>
309
310 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EthernetInterface.v1_1_2">
311 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700312 <Annotation Term="OData.Description" String="This version was created to remove the Nullable facet from NavigationProperties of the Collection type."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700313 <EntityType Name="EthernetInterface" BaseType="EthernetInterface.v1_1_1.EthernetInterface"/>
314 </Schema>
315
316 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EthernetInterface.v1_1_3">
317 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700318 <Annotation Term="OData.Description" String="This version was created to change IPAddresses and VLanNetworkInterface structures to their abstract base types."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700319 <EntityType Name="EthernetInterface" BaseType="EthernetInterface.v1_1_2.EthernetInterface"/>
320 </Schema>
321
Ed Tanous530520e2019-01-02 13:41:37 -0800322 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EthernetInterface.v1_1_4">
323 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
324 <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."/>
325 <EntityType Name="EthernetInterface" BaseType="EthernetInterface.v1_1_3.EthernetInterface"/>
326 </Schema>
327
Ed Tanouscb103132019-10-08 11:34:22 -0700328 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EthernetInterface.v1_1_5">
329 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
330 <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, and to add a missing term to several properties to disallow them from being null."/>
331 <EntityType Name="EthernetInterface" BaseType="EthernetInterface.v1_1_4.EthernetInterface"/>
332 </Schema>
333
334 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EthernetInterface.v1_1_6">
335 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
336 <Annotation Term="OData.Description" String="This version was created to allow for null to be used in several writable properties that are arrays. It was also created to update the description for the SpeedMbps property. It was also created to update descriptions that this schema defines."/>
337 <EntityType Name="EthernetInterface" BaseType="EthernetInterface.v1_1_5.EthernetInterface"/>
338 </Schema>
339
Jason M. Billsea4aa752018-06-05 13:29:11 -0700340 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EthernetInterface.v1_2_0">
341 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600342 <Annotation Term="Redfish.Release" String="2016.3"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700343 <EntityType Name="EthernetInterface" BaseType="EthernetInterface.v1_1_1.EthernetInterface"/>
344
345 <ComplexType Name="Links" BaseType="EthernetInterface.v1_1_0.Links">
346 <NavigationProperty Name="HostInterface" Type="HostInterface.HostInterface" Nullable="false">
347 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700348 <Annotation Term="OData.Description" String="The link to a Host Interface that is associated with this Ethernet interface."/>
349 <Annotation Term="OData.LongDescription" String="This property shall contain a link to a Resource of type HostInterface that represents the interface that a host uses to communicate with a manager."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700350 <Annotation Term="OData.AutoExpandReferences"/>
351 </NavigationProperty>
352 </ComplexType>
353 </Schema>
354
355 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EthernetInterface.v1_2_1">
356 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700357 <Annotation Term="OData.Description" String="This version was created to remove the Nullable facet on NavigationProperties of the Collection type."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700358 <EntityType Name="EthernetInterface" BaseType="EthernetInterface.v1_2_0.EthernetInterface"/>
359 </Schema>
360
361 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EthernetInterface.v1_2_2">
362 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700363 <Annotation Term="OData.Description" String="This version was created to change IPAddresses and VLanNetworkInterface structures to their abstract base types."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700364 <EntityType Name="EthernetInterface" BaseType="EthernetInterface.v1_2_1.EthernetInterface"/>
365 </Schema>
366
Ed Tanous530520e2019-01-02 13:41:37 -0800367 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EthernetInterface.v1_2_3">
368 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
369 <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."/>
370 <EntityType Name="EthernetInterface" BaseType="EthernetInterface.v1_2_2.EthernetInterface"/>
371 </Schema>
372
Ed Tanouscb103132019-10-08 11:34:22 -0700373 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EthernetInterface.v1_2_4">
374 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
375 <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, and to add a missing term to several properties to disallow them from being null."/>
376 <EntityType Name="EthernetInterface" BaseType="EthernetInterface.v1_2_3.EthernetInterface"/>
377 </Schema>
378
379 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EthernetInterface.v1_2_5">
380 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
381 <Annotation Term="OData.Description" String="This version was created to allow for null to be used in several writable properties that are arrays. It was also created to update the description for the SpeedMbps property. It was also created to update descriptions that this schema defines."/>
382 <EntityType Name="EthernetInterface" BaseType="EthernetInterface.v1_2_4.EthernetInterface"/>
383 </Schema>
384
Jason M. Billsea4aa752018-06-05 13:29:11 -0700385 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EthernetInterface.v1_3_0">
386 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600387 <Annotation Term="Redfish.Release" String="2017.1"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700388 <EntityType Name="EthernetInterface" BaseType="EthernetInterface.v1_2_1.EthernetInterface">
389 <Property Name="Actions" Type="EthernetInterface.v1_3_0.Actions" Nullable="false">
Ed Tanouscb103132019-10-08 11:34:22 -0700390 <Annotation Term="OData.Description" String="The available actions for this Resource."/>
391 <Annotation Term="OData.LongDescription" String="This property shall contain the available actions for this Resource."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700392 </Property>
393 </EntityType>
394
395 <ComplexType Name="Links" BaseType="EthernetInterface.v1_2_0.Links">
396 <NavigationProperty Name="Chassis" Type="Chassis.Chassis" Nullable="false">
397 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700398 <Annotation Term="OData.Description" String="The link to the chassis that contains this Ethernet interface."/>
399 <Annotation Term="OData.LongDescription" String="This property shall contain a link to a Resource of type Chassis that represent the physical container associated with this Ethernet interface."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700400 <Annotation Term="OData.AutoExpandReferences"/>
401 </NavigationProperty>
402 </ComplexType>
403
404 <ComplexType Name="Actions">
405 <Annotation Term="OData.AdditionalProperties" Bool="false"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700406 <Annotation Term="OData.Description" String="The available actions for this Resource."/>
407 <Annotation Term="OData.LongDescription" String="This type shall contain the available actions for this Resource."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800408 <Property Name="Oem" Type="EthernetInterface.v1_3_0.OemActions" Nullable="false">
Ed Tanouscb103132019-10-08 11:34:22 -0700409 <Annotation Term="OData.Description" String="The available OEM-specific actions for this Resource."/>
410 <Annotation Term="OData.LongDescription" String="This property shall contain the available OEM-specific actions for this Resource."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800411 </Property>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700412 </ComplexType>
413
414 <ComplexType Name="OemActions">
415 <Annotation Term="OData.AdditionalProperties" Bool="true"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700416 <Annotation Term="OData.Description" String="The available OEM-specific actions for this Resource."/>
417 <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 -0700418 </ComplexType>
419 </Schema>
420
421 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EthernetInterface.v1_3_1">
422 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700423 <Annotation Term="OData.Description" String="This version was created to change IPAddresses and VLanNetworkInterface structures to their abstract base types."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700424 <EntityType Name="EthernetInterface" BaseType="EthernetInterface.v1_3_0.EthernetInterface"/>
425 </Schema>
426
Ed Tanous530520e2019-01-02 13:41:37 -0800427 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EthernetInterface.v1_3_2">
428 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
429 <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."/>
430 <EntityType Name="EthernetInterface" BaseType="EthernetInterface.v1_3_1.EthernetInterface"/>
431 </Schema>
432
Ed Tanouscb103132019-10-08 11:34:22 -0700433 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EthernetInterface.v1_3_3">
434 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
435 <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, and to add a missing term to several properties to disallow them from being null."/>
436 <EntityType Name="EthernetInterface" BaseType="EthernetInterface.v1_3_2.EthernetInterface"/>
437 </Schema>
438
439 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EthernetInterface.v1_3_4">
440 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
441 <Annotation Term="OData.Description" String="This version was created to allow for null to be used in several writable properties that are arrays. It was also created to update the description for the SpeedMbps property. It was also created to update descriptions that this schema defines."/>
442 <EntityType Name="EthernetInterface" BaseType="EthernetInterface.v1_3_3.EthernetInterface"/>
443 </Schema>
444
Jason M. Billsea4aa752018-06-05 13:29:11 -0700445 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EthernetInterface.v1_4_0">
446 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600447 <Annotation Term="Redfish.Release" String="2017.3"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700448 <EntityType Name="EthernetInterface" BaseType="EthernetInterface.v1_3_1.EthernetInterface">
Ed Tanouscb103132019-10-08 11:34:22 -0700449 <Property Name="DHCPv4" Type="EthernetInterface.v1_4_0.DHCPv4Configuration" Nullable="false">
Jason M. Billsea4aa752018-06-05 13:29:11 -0700450 <Annotation Term="OData.Description" String="DHCPv4 configuration for this interface."/>
451 <Annotation Term="OData.LongDescription" String="This property shall contain the configuration of DHCP v4."/>
452 </Property>
Ed Tanouscb103132019-10-08 11:34:22 -0700453 <Property Name="DHCPv6" Type="EthernetInterface.v1_4_0.DHCPv6Configuration" Nullable="false">
Jason M. Billsea4aa752018-06-05 13:29:11 -0700454 <Annotation Term="OData.Description" String="DHCPv6 configuration for this interface."/>
455 <Annotation Term="OData.LongDescription" String="This property shall contain the configuration of DHCP v6."/>
456 </Property>
Ed Tanouscb103132019-10-08 11:34:22 -0700457 <Property Name="StatelessAddressAutoConfig" Type="EthernetInterface.v1_4_0.StatelessAddressAutoConfiguration" Nullable="false">
458 <Annotation Term="OData.Description" String="Stateless address autoconfiguration (SLAAC) parameters for this interface."/>
459 <Annotation Term="OData.LongDescription" String="This object shall contain the IPv4 and IPv6 stateless address automatic configuration (SLAAC) properties for this interface."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700460 </Property>
Ed Tanouscb103132019-10-08 11:34:22 -0700461 <Property Name="IPv6StaticDefaultGateways" Type="Collection(IPAddresses.IPv6GatewayStaticAddress)">
Jason M. Billsea4aa752018-06-05 13:29:11 -0700462 <Annotation Term="OData.Description" String="The IPv6 static default gateways for this interface."/>
463 <Annotation Term="OData.LongDescription" String="The values in this array shall represent the IPv6 static default gateway addresses for this interface."/>
464 </Property>
Ed Tanouscb103132019-10-08 11:34:22 -0700465 <Property Name="StaticNameServers" Type="Collection(Edm.String)">
Jason M. Billsea4aa752018-06-05 13:29:11 -0700466 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700467 <Annotation Term="OData.Description" String="The statically-defined set of DNS server IPv4 and IPv6 addresses."/>
468 <Annotation Term="OData.LongDescription" String="This property shall contain the statically-defined set of DNS server IP addresses to use when DHCP provisioning is not enabled for name server configuration. As an implementation option, they may also be used in addition to DHCP-provided addresses, or in cases where the DHCP server provides no DNS assigments."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700469 </Property>
Ed Tanouscb103132019-10-08 11:34:22 -0700470 <Property Name="IPv4StaticAddresses" Type="Collection(IPAddresses.IPv4Address)">
Jason M. Billsea4aa752018-06-05 13:29:11 -0700471 <Annotation Term="OData.Description" String="The IPv4 static addresses assigned to this interface."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700472 <Annotation Term="OData.LongDescription" String="This property shall contain an array of objects that represent all IPv4 static addresses assigned to, but not necessarily in use by, this interface. The IPv4Addresses property shall also list the addresses that this interface uses ."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700473 </Property>
474 </EntityType>
475
476 <ComplexType Name="DHCPv4Configuration">
477 <Annotation Term="OData.AdditionalProperties" Bool="false"/>
478 <Annotation Term="OData.Description" String="DHCPv4 configuration for this interface."/>
479 <Annotation Term="OData.LongDescription" String="This type shall describe the configuration of DHCP v4."/>
480 <Property Name="DHCPEnabled" Type="Edm.Boolean">
481 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700482 <Annotation Term="OData.Description" String="An indication of whether DHCP v4 is enabled on this Ethernet interface."/>
483 <Annotation Term="OData.LongDescription" String="This property shall indicate whether DHCP v4 is enabled for this Ethernet interface."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700484 </Property>
485 <Property Name="UseDNSServers" Type="Edm.Boolean">
486 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700487 <Annotation Term="OData.Description" String="An indication of whether this interface uses DHCP v4-supplied DNS servers."/>
488 <Annotation Term="OData.LongDescription" String="This property shall indicate whether the interface uses DHCP v4-supplied DNS servers."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700489 </Property>
490 <Property Name="UseDomainName" Type="Edm.Boolean">
491 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700492 <Annotation Term="OData.Description" String="An indication of whether this interface uses a DHCP v4-supplied domain name."/>
493 <Annotation Term="OData.LongDescription" String="This property shall indicate whether the interface uses a DHCP v4-supplied domain name."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700494 </Property>
495 <Property Name="UseGateway" Type="Edm.Boolean">
496 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700497 <Annotation Term="OData.Description" String="An indication of whether this interface uses a DHCP v4-supplied gateway."/>
498 <Annotation Term="OData.LongDescription" String="This property shall indicate whether the interface uses a DHCP v4-supplied gateway."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700499 </Property>
500 <Property Name="UseNTPServers" Type="Edm.Boolean">
501 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700502 <Annotation Term="OData.Description" String="An indication of whether the interface uses DHCP v4-supplied NTP servers."/>
503 <Annotation Term="OData.LongDescription" String="This property shall indicate whether the interface uses DHCP v4-supplied NTP servers."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700504 </Property>
505 <Property Name="UseStaticRoutes" Type="Edm.Boolean">
506 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700507 <Annotation Term="OData.Description" String="An indication of whether the interface uses DHCP v4-supplied static routes."/>
508 <Annotation Term="OData.LongDescription" String="This property shall indicate whether the interface uses a DHCP v4-supplied static routes."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700509 </Property>
510 </ComplexType>
511
512 <ComplexType Name="DHCPv6Configuration">
513 <Annotation Term="OData.AdditionalProperties" Bool="false"/>
514 <Annotation Term="OData.Description" String="DHCPv6 configuration for this interface."/>
515 <Annotation Term="OData.LongDescription" String="This type shall describe the configuration of DHCP v6."/>
516 <Property Name="OperatingMode" Type="EthernetInterface.v1_4_0.DHCPv6OperatingMode">
517 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
518 <Annotation Term="OData.Description" String="Determines the DHCPv6 operating mode for this interface."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700519 <Annotation Term="OData.LongDescription" String="This property shall control the operating mode of DHCPv6 on this interface. DHCPv6 stateful mode configures addresses, and when it is enabled, stateless mode is also implicitly enabled."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700520 </Property>
521 <Property Name="UseDNSServers" Type="Edm.Boolean">
522 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700523 <Annotation Term="OData.Description" String="An indication of whether the interface uses DHCP v6-supplied DNS servers."/>
524 <Annotation Term="OData.LongDescription" String="This property shall indicate whether the interface uses DHCP v6-supplied DNS servers."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700525 </Property>
526 <Property Name="UseDomainName" Type="Edm.Boolean">
527 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700528 <Annotation Term="OData.Description" String="An indication of whether the interface uses a domain name supplied through DHCP v6 stateless mode."/>
529 <Annotation Term="OData.LongDescription" String="This property shall indicate whether the interface uses a domain name supplied through DHCP v6 stateless mode."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700530 </Property>
531 <Property Name="UseNTPServers" Type="Edm.Boolean">
532 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700533 <Annotation Term="OData.Description" String="An indication of whether the interface uses DHCP v6-supplied NTP servers."/>
534 <Annotation Term="OData.LongDescription" String="This property shall indicate whether the interface uses DHCP v6-supplied NTP servers."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700535 </Property>
536 <Property Name="UseRapidCommit" Type="Edm.Boolean">
537 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700538 <Annotation Term="OData.Description" String="An indication of whether the interface uses DHCP v6 rapid commit mode for stateful mode address assignments. Do not enable this option in networks where more than one DHCP v6 server is configured to provide address assignments."/>
539 <Annotation Term="OData.LongDescription" String="This property shall indicate whether the interface uses DHCP v6 rapid commit mode for stateful mode address assignments."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700540 </Property>
541 </ComplexType>
542
543 <EnumType Name="DHCPv6OperatingMode">
544 <Member Name="Stateful">
545 <Annotation Term="OData.Description" String="DHCPv6 stateful mode."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700546 <Annotation Term="OData.LongDescription" String="DHCPv6 shall operate in stateful mode on this interface. DHCPv6 stateful mode configures addresses, and when it is enabled, stateless mode is also implicitly enabled."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700547 </Member>
548 <Member Name="Stateless">
549 <Annotation Term="OData.Description" String="DHCPv6 stateless mode."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700550 <Annotation Term="OData.LongDescription" String="DHCPv6 shall operate in stateless mode on this interface. DHCPv6 stateless mode allows configuring the interface using DHCP options but does not configure addresses. It is always enabled by default whenever DHCPv6 Stateful mode is also enabled."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700551 </Member>
552 <Member Name="Disabled">
553 <Annotation Term="OData.Description" String="DHCPv6 is disabled."/>
554 <Annotation Term="OData.LongDescription" String="DHCPv6 shall be disabled for this interface."/>
555 </Member>
556 </EnumType>
557
558 <ComplexType Name="StatelessAddressAutoConfiguration">
559 <Annotation Term="OData.AdditionalProperties" Bool="false"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700560 <Annotation Term="OData.Description" String="Stateless address autoconfiguration (SLAAC) parameters for this interface."/>
561 <Annotation Term="OData.LongDescription" String="This type shall describe the IPv4 and IPv6 stateless address autoconfiguration (SLAAC) for this interface."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700562 <Property Name="IPv4AutoConfigEnabled" Type="Edm.Boolean">
563 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700564 <Annotation Term="OData.Description" String="An indication of whether IPv4 stateless address autoconfiguration (SLAAC) is enabled for this interface."/>
565 <Annotation Term="OData.LongDescription" String="This property shall indicate whether IPv4 stateless address autoconfiguration (SLAAC) is enabled for this interface."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700566 </Property>
567 <Property Name="IPv6AutoConfigEnabled" Type="Edm.Boolean">
568 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700569 <Annotation Term="OData.Description" String="An indication of whether IPv6 stateless address autoconfiguration (SLAAC) is enabled for this interface."/>
570 <Annotation Term="OData.LongDescription" String="This property shall indicate whether IPv6 stateless address autoconfiguration (SLAAC) is enabled for this interface."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700571 </Property>
572 </ComplexType>
573
574 </Schema>
575
Ed Tanous530520e2019-01-02 13:41:37 -0800576 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EthernetInterface.v1_4_1">
577 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700578 <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, and corrects the type in IPv6StaticDefaultGateways."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800579 <EntityType Name="EthernetInterface" BaseType="EthernetInterface.v1_4_0.EthernetInterface"/>
580 </Schema>
581
Ed Tanouscb103132019-10-08 11:34:22 -0700582 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EthernetInterface.v1_4_2">
583 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
584 <Annotation Term="OData.Description" String="This version allows for null in StaticNameServers, forces the regeneration of JSON Schema so that URI properties use the uri-reference format, and to add a missing term to several properties to disallow them from being null."/>
585 <EntityType Name="EthernetInterface" BaseType="EthernetInterface.v1_4_1.EthernetInterface"/>
586 </Schema>
587
588 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EthernetInterface.v1_4_3">
589 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
590 <Annotation Term="OData.Description" String="This version was created to allow for null to be used in several writable properties that are arrays. It was also created to update the description for the SpeedMbps property. It was also created to update descriptions that this schema defines."/>
591 <EntityType Name="EthernetInterface" BaseType="EthernetInterface.v1_4_2.EthernetInterface"/>
592 </Schema>
593
594 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EthernetInterface.v1_5_0">
595 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
596 <Annotation Term="Redfish.Release" String="2019.1"/>
597 <EntityType Name="EthernetInterface" BaseType="EthernetInterface.v1_4_2.EthernetInterface"/>
598
599 <ComplexType Name="DHCPv4Configuration" BaseType="EthernetInterface.v1_4_0.DHCPv4Configuration">
600 <Property Name="FallbackAddress" Type="EthernetInterface.v1_5_0.DHCPFallback">
601 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
602 <Annotation Term="OData.Description" String="DHCPv4 fallback address method for this interface."/>
603 <Annotation Term="OData.LongDescription" String="This property shall contain the fallback address method of DHCPv4."/>
604 </Property>
605 </ComplexType>
606
607 <EnumType Name="DHCPFallback">
608 <Member Name="Static">
609 <Annotation Term="OData.Description" String="Fall back to a static address specified by IPv4StaticAddresses."/>
610 <Annotation Term="OData.LongDescription" String="DHCP shall fall back to a static address specified by IPv4StaticAddresses."/>
611 </Member>
612 <Member Name="AutoConfig">
613 <Annotation Term="OData.Description" String="Fall back to an autoconfigured address."/>
614 <Annotation Term="OData.LongDescription" String="DHCP shall fall back to an address generated by the implementation."/>
615 </Member>
616 <Member Name="None">
617 <Annotation Term="OData.Description" String="Continue attempting DHCP without a fallback address."/>
618 <Annotation Term="OData.LongDescription" String="DHCP shall continue trying to obtain an address without falling back to a fixed address."/>
619 </Member>
620 </EnumType>
621 </Schema>
622
623 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EthernetInterface.v1_5_1">
624 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
625 <Annotation Term="OData.Description" String="This version was created to allow for null to be used in several writable properties that are arrays. It was also created to update the description for the SpeedMbps property. It was also created to update descriptions that this schema defines."/>
626 <EntityType Name="EthernetInterface" BaseType="EthernetInterface.v1_5_0.EthernetInterface"/>
627 </Schema>
628
Jason M. Billsea4aa752018-06-05 13:29:11 -0700629 </edmx:DataServices>
630</edmx:Edmx>