blob: 1af0392a21d7f7bca786e67f6bb8727985e6d278 [file] [log] [blame]
Ed Tanouscb103132019-10-08 11:34:22 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!---->
3<!--################################################################################ -->
4<!--# Redfish Schema: VLanNetworkInterface v1.1.4 -->
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 -->
Gunnar Millsa778c022020-05-12 12:20:36 -05008<!--# Copyright 2014-2020 DMTF. -->
Ed Tanouscb103132019-10-08 11:34:22 -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.v1_0_0"/>
26 </edmx:Reference>
27
28 <edmx:DataServices>
29
30 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VLanNetworkInterface">
31 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
32
33 <EntityType Name="VLanNetworkInterface" BaseType="Resource.v1_0_0.Resource" Abstract="true">
34 <Annotation Term="OData.Description" String="The VLanNetworkInterface schema describes a VLAN network instance that is available on a manager, system, or other device."/>
35 <Annotation Term="OData.LongDescription" String="This Resource contains information for a VLAN network instance that is available on a manager, system, or other device for a Redfish implementation."/>
36 <Annotation Term="Capabilities.InsertRestrictions">
37 <Record>
38 <PropertyValue Property="Insertable" Bool="false"/>
39 </Record>
40 </Annotation>
41 <Annotation Term="Capabilities.UpdateRestrictions">
42 <Record>
43 <PropertyValue Property="Updatable" Bool="true"/>
44 <Annotation Term="OData.Description" String="VLAN network interfaces can be updated to enable or disable them or change their VLAN IDs."/>
45 </Record>
46 </Annotation>
47 <Annotation Term="Capabilities.DeleteRestrictions">
48 <Record>
49 <PropertyValue Property="Deletable" Bool="true"/>
50 <Annotation Term="OData.Description" String="In some implementations, VLAN network interfaces can be deleted. However, because other implementations may keep a fixed number of interfaces in the collection, they do not allow deletion of interfaces."/>
51 </Record>
52 </Annotation>
53 <Annotation Term="Redfish.Uris">
54 <Collection>
55 <String>/redfish/v1/Chassis/{ChassisId}/NetworkAdapters/{NetworkAdapterId}/NetworkDeviceFunctions/{NetworkDeviceFunctionId}/Ethernet/VLANs/{VLanNetworkInterfaceId}</String>
56 <String>/redfish/v1/Managers/{ManagerId}/EthernetInterfaces/{EthernetInterfaceId}/VLANs/{VLanNetworkInterfaceId}</String>
57 <String>/redfish/v1/Systems/{ComputerSystemId}/EthernetInterfaces/{EthernetInterfaceId}/VLANs/{VLanNetworkInterfaceId}</String>
58 <String>/redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/EthernetInterfaces/{EthernetInterfaceId}/VLANs/{VLanNetworkInterfaceId}</String>
59 <String>/redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/EthernetInterfaces/{EthernetInterfaceId}/VLANs/{VLanNetworkInterfaceId}</String>
60 <String>/redfish/v1/ResourceBlocks/{ResourceBlockId}/EthernetInterfaces/{EthernetInterfaceId}/VLANs/{VLanNetworkInterfaceId}</String>
61 <String>/redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/EthernetInterfaces/{EthernetInterfaceId}/VLANs/{VLanNetworkInterfaceId}</String>
62 </Collection>
63 </Annotation>
64 </EntityType>
65
66 <ComplexType Name="VLAN" Abstract="true">
67 <Annotation Term="OData.AdditionalProperties" Bool="false"/>
68 <Annotation Term="OData.Description" String="The attributes of a VLAN."/>
69 <Annotation Term="OData.LongDescription" String="This type shall contain any attributes of a VLAN."/>
70 </ComplexType>
71
72 </Schema>
73
74 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VLanNetworkInterface.v1_0_0">
75 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
76 <Annotation Term="Redfish.Release" String="1.0"/>
77
78 <EntityType Name="VLanNetworkInterface" BaseType="VLanNetworkInterface.VLanNetworkInterface">
79 <Annotation Term="OData.Description" String="The attributes of a VLAN."/>
80 <Annotation Term="OData.LongDescription" String="The VLanNetworkInterface Schema shall contain any attributes of a VLAN."/>
81 <Property Name="VLANEnable" Type="Edm.Boolean">
82 <Annotation Term="Redfish.RequiredOnCreate"/>
83 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
84 <Annotation Term="OData.Description" String="An indication of whether this VLAN is enabled for this interface."/>
85 <Annotation Term="OData.LongDescription" String="This property shall indicate whether this VLAN is enabled for this interface."/>
86 </Property>
87 <Property Name="VLANId" Type="VLanNetworkInterface.v1_0_0.VLANId">
88 <Annotation Term="Redfish.RequiredOnCreate"/>
89 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
90 <Annotation Term="OData.Description" String="The ID for this VLAN."/>
91 <Annotation Term="OData.LongDescription" String="This property shall contain the ID for this VLAN."/>
92 </Property>
93 </EntityType>
94
95 <ComplexType Name="VLAN" BaseType="VLanNetworkInterface.VLAN">
96 <Property Name="VLANEnable" Type="Edm.Boolean">
97 <Annotation Term="Redfish.RequiredOnCreate"/>
98 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
99 <Annotation Term="OData.Description" String="An indication of whether this VLAN is enabled for this VLAN network interface."/>
100 <Annotation Term="OData.LongDescription" String="This property shall indicate whether this VLAN is enabled for this VLAN network interface."/>
101 </Property>
102 <Property Name="VLANId" Type="VLanNetworkInterface.v1_0_0.VLANId">
103 <Annotation Term="Redfish.RequiredOnCreate"/>
104 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
105 <Annotation Term="OData.Description" String="The ID for this VLAN."/>
106 <Annotation Term="OData.LongDescription" String="This property shall contain the ID for this VLAN."/>
107 </Property>
108 </ComplexType>
109
110 <TypeDefinition Name="VLANId" UnderlyingType="Edm.Int64">
111 <Annotation Term="Validation.Minimum" Int="0"/>
112 <Annotation Term="Validation.Maximum" Int="4094"/>
113 </TypeDefinition>
114
115 </Schema>
116
117 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VLanNetworkInterface.v1_0_1">
118 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
119 <Annotation Term="OData.Description" String="This version was created to show that annotations in previous namespaces were updated."/>
120 <EntityType Name="VLanNetworkInterface" BaseType="VLanNetworkInterface.v1_0_0.VLanNetworkInterface"/>
121 </Schema>
122
123 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VLanNetworkInterface.v1_0_2">
124 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
125 <Annotation Term="OData.Description" String="This version was created to show that annotations in previous namespaces were updated."/>
126 <EntityType Name="VLanNetworkInterface" BaseType="VLanNetworkInterface.v1_0_1.VLanNetworkInterface"/>
127 </Schema>
128
129 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VLanNetworkInterface.v1_0_3">
130 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
131 <Annotation Term="OData.Description" String="This version was created to add explicit Permissions annotations to all properties for clarity."/>
132 <EntityType Name="VLanNetworkInterface" BaseType="VLanNetworkInterface.v1_0_2.VLanNetworkInterface"/>
133 </Schema>
134
135 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VLanNetworkInterface.v1_0_4">
136 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
137 <Annotation Term="OData.Description" String="This version was created to show that annotations in previous namespaces were updated."/>
138 <EntityType Name="VLanNetworkInterface" BaseType="VLanNetworkInterface.v1_0_3.VLanNetworkInterface"/>
139 </Schema>
140
141 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VLanNetworkInterface.v1_0_5">
142 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
143 <Annotation Term="OData.Description" String="This version was created to add an abstract base type for VLAN."/>
144 <EntityType Name="VLanNetworkInterface" BaseType="VLanNetworkInterface.v1_0_4.VLanNetworkInterface"/>
145 </Schema>
146
147 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VLanNetworkInterface.v1_0_6">
148 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
149 <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."/>
150 <EntityType Name="VLanNetworkInterface" BaseType="VLanNetworkInterface.v1_0_5.VLanNetworkInterface"/>
151 </Schema>
152
153 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VLanNetworkInterface.v1_0_7">
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 URI properties use the uri-reference format."/>
156 <EntityType Name="VLanNetworkInterface" BaseType="VLanNetworkInterface.v1_0_6.VLanNetworkInterface"/>
157 </Schema>
158
159 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VLanNetworkInterface.v1_0_8">
160 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
161 <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
162 <EntityType Name="VLanNetworkInterface" BaseType="VLanNetworkInterface.v1_0_7.VLanNetworkInterface"/>
163 </Schema>
164
165 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VLanNetworkInterface.v1_1_0">
166 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
167 <Annotation Term="Redfish.Release" String="2017.1"/>
168 <EntityType Name="VLanNetworkInterface" BaseType="VLanNetworkInterface.v1_0_4.VLanNetworkInterface">
169 <Property Name="Actions" Type="VLanNetworkInterface.v1_1_0.Actions" Nullable="false">
170 <Annotation Term="OData.Description" String="The available actions for this Resource."/>
171 <Annotation Term="OData.LongDescription" String="This property shall contain the available actions for this Resource."/>
172 </Property>
173 </EntityType>
174
175 <ComplexType Name="Actions">
176 <Annotation Term="OData.AdditionalProperties" Bool="false"/>
177 <Annotation Term="OData.Description" String="The available actions for this Resource."/>
178 <Annotation Term="OData.LongDescription" String="This type shall contain the available actions for this Resource."/>
179 <Property Name="Oem" Type="VLanNetworkInterface.v1_1_0.OemActions" Nullable="false">
180 <Annotation Term="OData.Description" String="The available OEM-specific actions for this Resource."/>
181 <Annotation Term="OData.LongDescription" String="This property shall contain the available OEM-specific actions for this Resource."/>
182 </Property>
183 </ComplexType>
184
185 <ComplexType Name="OemActions">
186 <Annotation Term="OData.AdditionalProperties" Bool="true"/>
187 <Annotation Term="OData.Description" String="The available OEM-specific actions for this Resource."/>
188 <Annotation Term="OData.LongDescription" String="This type shall contain the available OEM-specific actions for this Resource."/>
189 </ComplexType>
190 </Schema>
191
192 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VLanNetworkInterface.v1_1_1">
193 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
194 <Annotation Term="OData.Description" String="This version was created to add an abstract base type for VLAN."/>
195 <EntityType Name="VLanNetworkInterface" BaseType="VLanNetworkInterface.v1_1_0.VLanNetworkInterface"/>
196 </Schema>
197
198 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VLanNetworkInterface.v1_1_2">
199 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
200 <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."/>
201 <EntityType Name="VLanNetworkInterface" BaseType="VLanNetworkInterface.v1_1_1.VLanNetworkInterface"/>
202 </Schema>
203
204 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VLanNetworkInterface.v1_1_3">
205 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
206 <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."/>
207 <EntityType Name="VLanNetworkInterface" BaseType="VLanNetworkInterface.v1_1_2.VLanNetworkInterface"/>
208 </Schema>
209
210 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VLanNetworkInterface.v1_1_4">
211 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
212 <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
213 <EntityType Name="VLanNetworkInterface" BaseType="VLanNetworkInterface.v1_1_3.VLanNetworkInterface"/>
214 </Schema>
215
216 </edmx:DataServices>
217</edmx:Edmx>