blob: f66fd2c731c555811b56c27e01d4980c0a51f6e2 [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: EventDestination v1.6.0 -->
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:Reference>
23 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Resource_v1.xml">
24 <edmx:Include Namespace="Resource"/>
25 <edmx:Include Namespace="Resource.v1_0_0"/>
26 </edmx:Reference>
27 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Event_v1.xml">
28 <edmx:Include Namespace="Event"/>
29 </edmx:Reference>
Ed Tanouscb103132019-10-08 11:34:22 -070030 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/MetricReportDefinition_v1.xml">
31 <edmx:Include Namespace="MetricReportDefinition"/>
32 </edmx:Reference>
Jason M. Billsea4aa752018-06-05 13:29:11 -070033
34 <edmx:DataServices>
35
36 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination">
37 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
38
39 <EntityType Name="EventDestination" BaseType="Resource.v1_0_0.Resource" Abstract="true">
Ed Tanouscb103132019-10-08 11:34:22 -070040 <Annotation Term="OData.Description" String="The EventDestination schema defines the target of an event subscription, including the event types and context to provide to the target in the Event payload."/>
41 <Annotation Term="OData.LongDescription" String="This Resource shall represent the target of an event subscription, including the event types and context to provide to the target in the Event payload."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -070042 <Annotation Term="Capabilities.InsertRestrictions">
43 <Record>
44 <PropertyValue Property="Insertable" Bool="false"/>
45 </Record>
46 </Annotation>
47 <Annotation Term="Capabilities.UpdateRestrictions">
48 <Record>
49 <PropertyValue Property="Updatable" Bool="true"/>
Ed Tanouscb103132019-10-08 11:34:22 -070050 <Annotation Term="OData.Description" String="Writable properties, such as Context, can be updated for an event destination."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -070051 </Record>
52 </Annotation>
53 <Annotation Term="Capabilities.DeleteRestrictions">
54 <Record>
Ed Tanouscb103132019-10-08 11:34:22 -070055 <PropertyValue Property="Deletable" Bool="true"/>
56 <Annotation Term="OData.Description" String="When client no longer needs to received event notifications, it can delete an event destination."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -070057 </Record>
58 </Annotation>
Ed Tanous530520e2019-01-02 13:41:37 -080059 <Annotation Term="Redfish.Uris">
60 <Collection>
61 <String>/redfish/v1/EventService/Subscriptions/{EventDestinationId}</String>
62 </Collection>
63 </Annotation>
Jason M. Billsea4aa752018-06-05 13:29:11 -070064 </EntityType>
65
Ed Tanouscb103132019-10-08 11:34:22 -070066 <Action Name="ResumeSubscription" IsBound="true">
67 <Annotation Term="OData.Description" String="This action resumes a suspended event subscription."/>
68 <Annotation Term="OData.LongDescription" String="This action shall resume a suspended event subscription, which affects the subscription status."/>
69 <Parameter Name="EventDestination" Type="EventDestination.v1_2_0.Actions"/>
70 </Action>
71
Ed Tanous530520e2019-01-02 13:41:37 -080072 <EnumType Name="EventFormatType">
Marri Devender Raod45d2d02019-01-21 10:11:34 -060073 <Annotation Term="Redfish.Revisions">
74 <Collection>
75 <Record>
76 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
77 <PropertyValue Property="Version" String="v1_4_0"/>
78 </Record>
79 </Collection>
80 </Annotation>
Ed Tanous530520e2019-01-02 13:41:37 -080081 <Member Name="Event">
Ed Tanouscb103132019-10-08 11:34:22 -070082 <Annotation Term="OData.Description" String="The subscription destination receives JSON bodies of the Resource of type Event."/>
Ed Tanous530520e2019-01-02 13:41:37 -080083 </Member>
84 <Member Name="MetricReport">
Ed Tanouscb103132019-10-08 11:34:22 -070085 <Annotation Term="OData.Description" String="The subscription destination receives JSON bodies of the Resource of type MetricReport."/>
Ed Tanous530520e2019-01-02 13:41:37 -080086 </Member>
87 </EnumType>
88
Jason M. Billsea4aa752018-06-05 13:29:11 -070089 </Schema>
90
91 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_0_0">
92 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -060093 <Annotation Term="Redfish.Release" String="1.0"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -070094
95 <EntityType Name="EventDestination" BaseType="EventDestination.EventDestination">
96 <Property Name="Destination" Type="Edm.String" Nullable="false">
97 <Annotation Term="Redfish.RequiredOnCreate"/>
98 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -070099 <Annotation Term="OData.Description" String="The URI of the destination event receiver."/>
100 <Annotation Term="OData.LongDescription" String="This property shall contain a URI to the destination where the events are sent."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700101 <Annotation Term="OData.IsURL"/>
102 </Property>
103 <Property Name="EventTypes" Type="Collection(Event.EventType)" Nullable="false">
Jason M. Billsea4aa752018-06-05 13:29:11 -0700104 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700105 <Annotation Term="OData.Description" String="The types of events that are sent to the destination."/>
106 <Annotation Term="OData.LongDescription" String="This property shall contain an array that contains the types of events that shall be sent to the destination. To specify that a client is subscribing for Metric Reports, the EventTypes property should include 'MetricReport'. If the subscription does not include this property, the service shall use a single element with a default of `Other`."/>
107 <Annotation Term="Redfish.Revisions">
108 <Collection>
109 <Record>
110 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
111 <PropertyValue Property="Version" String="v1_5_0"/>
112 <PropertyValue Property="Description" String="This property has been deprecated. Starting with Redfish Specification v1.6 (Event v1.3), subscriptions are based on the RegistryPrefix and ResourceType properties and not on the EventType property. Use EventFormatType to create subscriptions for Metric Reports. If the subscription does not include this property, the service shall use a single element with a default of `Other`."/>
113 </Record>
114 </Collection>
115 </Annotation>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700116 </Property>
117 <Property Name="Context" Type="Edm.String">
118 <Annotation Term="Redfish.Required"/>
119 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
120 <Annotation Term="OData.Description" String="A client-supplied string that is stored with the event destination subscription."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700121 <Annotation Term="OData.LongDescription" String="This property shall contain a client-supplied context that remains with the connection through the connection's lifetime."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700122 </Property>
123 <Property Name="Protocol" Type="EventDestination.v1_0_0.EventDestinationProtocol" Nullable="false">
124 <Annotation Term="Redfish.RequiredOnCreate"/>
125 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
126 <Annotation Term="OData.Description" String="The protocol type of the event connection."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700127 <Annotation Term="OData.LongDescription" String="This property shall contain the protocol type that the event uses to send the event to the destination. A `Redfish` value shall indicate that the event type shall adhere to the type defined in the Redfish Specification."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700128 </Property>
129 <Property Name="HttpHeaders" Type="Collection(EventDestination.v1_0_0.HttpHeaderProperty)" Nullable="false">
Ed Tanouscb103132019-10-08 11:34:22 -0700130 <Annotation Term="OData.Description" String="An array of settings for HTTP headers, such as authorization information. This array is null or an empty array in responses. An empty array is the preferred return value on read operations."/>
131 <Annotation Term="OData.LongDescription" String="This property shall contain an object consisting of the names and values of of HTTP header to be included with every event POST to the Event Destination. This object shall be null or an empty array in responses. An empty array is the preferred return value in responses."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700132 </Property>
133 </EntityType>
134
135 <EnumType Name="EventDestinationProtocol">
136 <Member Name="Redfish">
Ed Tanouscb103132019-10-08 11:34:22 -0700137 <Annotation Term="OData.Description" String="The destination follows the Redfish Specification for event notifications."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700138 </Member>
139 </EnumType>
140
141 <ComplexType Name="HttpHeaderProperty">
142 <Annotation Term="OData.AdditionalProperties" Bool="false"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700143 <Annotation Term="OData.Description" String="The HTTP header value is the property value. The header name is the property name."/>
144 <Annotation Term="OData.LongDescription" String="This type shall contain the HTTP header name and value to include with every event POST to the event eestination."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700145 <Annotation Term="Redfish.DynamicPropertyPatterns">
146 <Collection>
147 <Record>
148 <PropertyValue Property="Pattern" String="^[^:\\s]+$"/>
149 <PropertyValue Property="Type" String="Edm.String"/>
150 </Record>
151 </Collection>
152 </Annotation>
153 </ComplexType>
154
155 </Schema>
156
157 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_0_2">
158 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
159 <Annotation Term="OData.Description" String="This version was created to show annotations in previous namespaces were updated."/>
160 <EntityType Name="EventDestination" BaseType="EventDestination.v1_0_0.EventDestination"/>
161 </Schema>
162
163 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_0_3">
164 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
165 <Annotation Term="OData.Description" String="This version was created to add explicit Permissions annotations to all properties for clarity."/>
166 <EntityType Name="EventDestination" BaseType="EventDestination.v1_0_2.EventDestination"/>
167 </Schema>
168
169 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_0_4">
170 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
171 <Annotation Term="OData.Description" String="This version was created to show annotations in previous namespaces were updated."/>
172 <EntityType Name="EventDestination" BaseType="EventDestination.v1_0_3.EventDestination"/>
173 </Schema>
174
175 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_0_5">
176 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700177 <Annotation Term="OData.Description" String="This version was created to change EventType to use the unversioned definition. It was also created to add descriptions to various enumerated values."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700178 <EntityType Name="EventDestination" BaseType="EventDestination.v1_0_4.EventDestination"/>
179 </Schema>
180
Ed Tanous530520e2019-01-02 13:41:37 -0800181 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_0_6">
182 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
183 <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."/>
184 <EntityType Name="EventDestination" BaseType="EventDestination.v1_0_5.EventDestination"/>
185 </Schema>
186
Ed Tanouscb103132019-10-08 11:34:22 -0700187 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_0_7">
188 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
189 <Annotation Term="OData.Description" String="This version was created to update the descriptions for HttpHeaders. It was also created to force the regeneration of JSON Schema so that URI properties use the uri-reference format."/>
190 <EntityType Name="EventDestination" BaseType="EventDestination.v1_0_6.EventDestination"/>
191 </Schema>
192
193 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_0_8">
194 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
195 <Annotation Term="OData.Description" String="This version was created to update the descriptions for HttpHeaders. It was also was created to update descriptions that this schema defines."/>
196 <EntityType Name="EventDestination" BaseType="EventDestination.v1_0_7.EventDestination"/>
197 </Schema>
198
Jason M. Billsea4aa752018-06-05 13:29:11 -0700199 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_1_0">
200 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600201 <Annotation Term="Redfish.Release" String="2016.2"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700202 <EntityType Name="EventDestination" BaseType="EventDestination.v1_0_2.EventDestination">
203 <NavigationProperty Name="OriginResources" Type="Collection(Resource.ItemOrCollection)">
204 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700205 <Annotation Term="OData.Description" String="The array of Resources for which the service sends only related events. If this property is absent or the array is empty, the service sends the events that originate from any Resource to the subscriber."/>
206 <Annotation Term="OData.LongDescription" String="This property shall specify an array of Resources, Resource Collections, or Referenceable Members that are the only allowable values for the OriginOfCondition property within an EventRecord that the service sends to the subscriber. The service shall not send events that originate from Resources, Resource Collections, or Referenceable Members, and that this array does not contain, to the subscriber. If this property is absent or the array is empty, the service shall send events that originate from any Resource, Resource Collection, or Referenceable Member to the subscriber."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700207 </NavigationProperty>
208 <Property Name="MessageIds" Type="Collection(Edm.String)">
209 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700210 <Annotation Term="OData.Description" String="The list of MessageIds that the service sends. If this property is absent or the array is empty, events with any MessageId are sent to the subscriber."/>
211 <Annotation Term="OData.LongDescription" String="This property shall specify an array of MessageIds that are the only allowable values for the MessageId property within an EventRecord sent to the subscriber. Events with MessageIds that are not contained in this array shall not be sent to the subscriber. If this property is absent or the array is empty, the service shall send events with any MessageId to the subscriber."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700212 </Property>
213 </EntityType>
214 </Schema>
215
216 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_1_1">
217 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
218 <Annotation Term="OData.Description" String="This version was created to add explicit Permissions annotations to all properties for clarity."/>
219 <EntityType Name="EventDestination" BaseType="EventDestination.v1_1_0.EventDestination"/>
220 </Schema>
221
222 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_1_2">
223 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
224 <Annotation Term="OData.Description" String="This version was created to show annotations in previous namespaces were updated."/>
225 <EntityType Name="EventDestination" BaseType="EventDestination.v1_1_1.EventDestination"/>
226 </Schema>
227
228 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_1_3">
229 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
230 <Annotation Term="OData.Description" String="This version was created to show annotations in previous namespaces were updated."/>
231 <EntityType Name="EventDestination" BaseType="EventDestination.v1_1_2.EventDestination"/>
232 </Schema>
233
234 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_1_4">
235 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700236 <Annotation Term="OData.Description" String="This version was created to change EventType to use the unversioned definition. It was also created to add descriptions to various enumerated values."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700237 <EntityType Name="EventDestination" BaseType="EventDestination.v1_1_3.EventDestination"/>
238 </Schema>
239
Ed Tanous530520e2019-01-02 13:41:37 -0800240 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_1_5">
241 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
242 <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."/>
243 <EntityType Name="EventDestination" BaseType="EventDestination.v1_1_4.EventDestination"/>
244 </Schema>
245
Ed Tanouscb103132019-10-08 11:34:22 -0700246 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_1_6">
247 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
248 <Annotation Term="OData.Description" String="This version was created to update the descriptions for HttpHeaders. It was also created to force the regeneration of JSON Schema so that URI properties use the uri-reference format."/>
249 <EntityType Name="EventDestination" BaseType="EventDestination.v1_1_5.EventDestination"/>
250 </Schema>
251
252 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_1_7">
253 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
254 <Annotation Term="OData.Description" String="This version was created to update the descriptions for HttpHeaders. It was also was created to update descriptions that this schema defines."/>
255 <EntityType Name="EventDestination" BaseType="EventDestination.v1_1_6.EventDestination"/>
256 </Schema>
257
Jason M. Billsea4aa752018-06-05 13:29:11 -0700258 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_2_0">
259 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600260 <Annotation Term="Redfish.Release" String="2017.1"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700261 <EntityType Name="EventDestination" BaseType="EventDestination.v1_1_2.EventDestination">
262 <Property Name="Actions" Type="EventDestination.v1_2_0.Actions" Nullable="false">
Ed Tanouscb103132019-10-08 11:34:22 -0700263 <Annotation Term="OData.Description" String="The available actions for this Resource."/>
264 <Annotation Term="OData.LongDescription" String="This property shall contain the available actions for this Resource."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700265 </Property>
266 </EntityType>
267
268 <ComplexType Name="Actions">
269 <Annotation Term="OData.AdditionalProperties" Bool="false"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700270 <Annotation Term="OData.Description" String="The available actions for this Resource."/>
271 <Annotation Term="OData.LongDescription" String="This type shall contain the available actions for this Resource."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800272 <Property Name="Oem" Type="EventDestination.v1_2_0.OemActions" Nullable="false">
Ed Tanouscb103132019-10-08 11:34:22 -0700273 <Annotation Term="OData.Description" String="The available OEM-specific actions for this Resource."/>
274 <Annotation Term="OData.LongDescription" String="This property shall contain the available OEM-specific actions for this Resource."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800275 </Property>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700276 </ComplexType>
277
278 <ComplexType Name="OemActions">
279 <Annotation Term="OData.AdditionalProperties" Bool="true"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700280 <Annotation Term="OData.Description" String="The available OEM-specific actions for this Resource."/>
281 <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 -0700282 </ComplexType>
283 </Schema>
284
285 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_2_1">
286 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
287 <Annotation Term="OData.Description" String="This version was created to show annotations in previous namespaces were updated."/>
288 <EntityType Name="EventDestination" BaseType="EventDestination.v1_2_0.EventDestination"/>
289 </Schema>
290
291 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_2_2">
292 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700293 <Annotation Term="OData.Description" String="This version was created to change EventType to use the unversioned definition. It was also created to add descriptions to various enumerated values."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700294 <EntityType Name="EventDestination" BaseType="EventDestination.v1_2_1.EventDestination"/>
295 </Schema>
296
Ed Tanous530520e2019-01-02 13:41:37 -0800297 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_2_3">
298 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
299 <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."/>
300 <EntityType Name="EventDestination" BaseType="EventDestination.v1_2_2.EventDestination"/>
301 </Schema>
302
Ed Tanouscb103132019-10-08 11:34:22 -0700303 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_2_4">
304 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
305 <Annotation Term="OData.Description" String="This version was created to update the descriptions for HttpHeaders. It was also created to force the regeneration of JSON Schema so that URI properties use the uri-reference format."/>
306 <EntityType Name="EventDestination" BaseType="EventDestination.v1_2_3.EventDestination"/>
307 </Schema>
308
309 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_2_5">
310 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
311 <Annotation Term="OData.Description" String="This version was created to update the descriptions for HttpHeaders. It was also was created to update descriptions that this schema defines."/>
312 <EntityType Name="EventDestination" BaseType="EventDestination.v1_2_4.EventDestination"/>
313 </Schema>
314
Jason M. Billsea4aa752018-06-05 13:29:11 -0700315 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_3_0">
316 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600317 <Annotation Term="Redfish.Release" String="2018.1"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700318 <EntityType Name="EventDestination" BaseType="EventDestination.v1_2_2.EventDestination">
319 <Property Name="SubscriptionType" Type="EventDestination.v1_3_0.SubscriptionType">
320 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700321 <Annotation Term="OData.Description" String="The subscription type for events."/>
322 <Annotation Term="OData.LongDescription" String="This property shall indicate the type of subscription for events. If this property is not present, the SubscriptionType shall be assumed to be RedfishEvent."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700323 <Annotation Term="Redfish.Required"/>
324 </Property>
325 </EntityType>
326
327 <EnumType Name="SubscriptionType">
328 <Member Name="RedfishEvent">
Ed Tanouscb103132019-10-08 11:34:22 -0700329 <Annotation Term="OData.Description" String="The subscription follows the Redfish Specification for event notifications. To send an event notification, a service sends an HTTP POST to the subscriber's destination URI."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700330 </Member>
331 <Member Name="SSE">
332 <Annotation Term="OData.Description" String="The subscription follows the HTML5 Server-Sent Event definition for event notifications."/>
333 </Member>
334 </EnumType>
335 </Schema>
336
Ed Tanous530520e2019-01-02 13:41:37 -0800337 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_3_1">
338 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
339 <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."/>
340 <EntityType Name="EventDestination" BaseType="EventDestination.v1_3_0.EventDestination"/>
341 </Schema>
342
Ed Tanouscb103132019-10-08 11:34:22 -0700343 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_3_2">
344 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
345 <Annotation Term="OData.Description" String="This version was created to update the descriptions for HttpHeaders. It was also created to force the regeneration of JSON Schema so that URI properties use the uri-reference format."/>
346 <EntityType Name="EventDestination" BaseType="EventDestination.v1_3_1.EventDestination"/>
347 </Schema>
348
349 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_3_3">
350 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
351 <Annotation Term="OData.Description" String="This version was created to update the descriptions for HttpHeaders. It was also was created to update descriptions that this schema defines."/>
352 <EntityType Name="EventDestination" BaseType="EventDestination.v1_3_2.EventDestination"/>
353 </Schema>
354
Ed Tanous530520e2019-01-02 13:41:37 -0800355 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_4_0">
356 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600357 <Annotation Term="Redfish.Release" String="2018.2"/>
Ed Tanous530520e2019-01-02 13:41:37 -0800358 <Annotation Term="OData.Description" String="This version was created to add the RegistryPrefix, ResourceType and SubordinateResources method of eventing."/>
359 <EntityType Name="EventDestination" BaseType="EventDestination.v1_3_0.EventDestination">
360 <Property Name="RegistryPrefixes" Type="Collection(Edm.String)">
361 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700362 <Annotation Term="OData.Description" String="The list of the prefixes for the Message Registries that contain the MessageIds that are sent to this event destination."/>
363 <Annotation Term="OData.LongDescription" String="This property shall contain the array of the prefixes of the Message Registries that contain the MessageIds in the Events that shall be sent to the EventDestination. If this property is absent or the array is empty, the service shall send events with MessageIds from any Message Registry."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800364 </Property>
365 <Property Name="ResourceTypes" Type="Collection(Edm.String)">
366 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700367 <Annotation Term="OData.Description" String="The list of Resource Type values (Schema names) that correspond to the OriginOfCondition. The version and full namespace should not be specified."/>
368 <Annotation Term="OData.LongDescription" String="This property shall specify an array of Resource Type values. When an event is generated, if the OriginOfCondition's Resource Type matches a value in this array, the event shall be sent to the event destination (unless it would be filtered by other property conditions such as RegistryPrefix). If this property is absent or the array is empty, the service shall send Events from any Resource type to the subscriber. This property shall contain only the general namespace for the type and not the versioned value. For example, it shall not contain Task.v1_2_0.Task and instead shall contain Task. To specify that a client is subscribing to metric reports, the EventTypes property should include `MetricReport`."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800369 </Property>
370 <Property Name="SubordinateResources" Type="Edm.Boolean">
371 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700372 <Annotation Term="OData.Description" String="An indication of whether the subscription is for events in the OriginResources array and its subordinate Resources. If `true` and the OriginResources array is specified, the subscription is for events in the OriginResources array and its subordinate Resources. Note that Resources associated through the Links section are not considered subordinate. If `false` and the OriginResources array is specified, the subscription shall be for events in the OriginResources array only. If the OriginResources array is not present, this property shall have no relevance."/>
373 <Annotation Term="OData.LongDescription" String="This property shall indicate whether the subscription is for events in the OriginResources array and its subordinate Resources. If `true` and the OriginResources array is specified, the subscription is for events in the OriginResources array and its subordinate Resources. Note that Resources associated through the Links section are not considered subordinate. If `false` and the OriginResources array is specified, the subscription shall be for events in the OriginResources array only. If the OriginResources array is not present, this property shall have no relevance."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800374 </Property>
375 <Property Name="EventFormatType" Type="EventDestination.EventFormatType">
376 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700377 <Annotation Term="OData.Description" String="The content types of the message that are sent to the EventDestination."/>
378 <Annotation Term="OData.LongDescription" String="This property shall indicate the content types of the message that this service sends to the EventDestination. If this property is not present, the EventFormatType shall be assumed to be Event."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800379 </Property>
380 </EntityType>
381 </Schema>
382
Ed Tanouscb103132019-10-08 11:34:22 -0700383 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_4_1">
384 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
385 <Annotation Term="OData.Description" String="This version was created to update the descriptions for HttpHeaders. It was also created to force the regeneration of JSON Schema so that URI properties use the uri-reference format. It was also created to update the descriptions for EventTypes and ResourceTypes, regarding MetricReports."/>
386 <EntityType Name="EventDestination" BaseType="EventDestination.v1_4_0.EventDestination"/>
387 </Schema>
388
389 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_4_2">
390 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
391 <Annotation Term="OData.Description" String="This version was created to update the descriptions for HttpHeaders. It was also was created to update descriptions that this schema defines."/>
392 <EntityType Name="EventDestination" BaseType="EventDestination.v1_4_1.EventDestination"/>
393 </Schema>
394
395 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_5_0">
396 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
397 <Annotation Term="Redfish.Release" String="2019.1"/>
398 <Annotation Term="OData.Description" String="This version was created to deprecate the EventTypes property."/>
399 <EntityType Name="EventDestination" BaseType="EventDestination.v1_4_1.EventDestination"/>
400 </Schema>
401
402 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_5_1">
403 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
404 <Annotation Term="OData.Description" String="This version was created to update the descriptions for HttpHeaders. It was also was created to update descriptions that this schema defines."/>
405 <EntityType Name="EventDestination" BaseType="EventDestination.v1_5_0.EventDestination"/>
406 </Schema>
407
408 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_6_0">
409 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
410 <Annotation Term="Redfish.Release" String="2019.2"/>
411 <Annotation Term="OData.Description" String="This version was created to add DeliveryRetryPolicy."/>
412 <EntityType Name="EventDestination" BaseType="EventDestination.v1_5_0.EventDestination">
413 <Property Name="DeliveryRetryPolicy" Type="EventDestination.v1_6_0.DeliveryRetryPolicy">
414 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
415 <Annotation Term="OData.Description" String="This property shall contain the subscription delivery retry policy for events, where the subscription type is RedfishEvent."/>
416 <Annotation Term="OData.LongDescription" String="This property shall indicate the subscription delivery retry policy for events where the subscription type is RedfishEvent. If this property is not present, the policy shall be assumed to be TerminateAfterRetries."/>
417 </Property>
418 <Property Name="Status" Type="Resource.Status" Nullable="false">
419 <Annotation Term="OData.Description" String="This property shall contain the status of the subscription."/>
420 <Annotation Term="OData.LongDescription" String="This property shall contain the status of the subscription."/>
421 </Property>
422 <NavigationProperty Name="MetricReportDefinitions" Type="Collection(MetricReportDefinition.MetricReportDefinition)">
423 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
424 <Annotation Term="OData.Description" String="A list of metric report definitions for which the service only sends related metric reports. If this property is absent or the array is empty, metric reports that originate from any metric report definition are sent to the subscriber."/>
425 <Annotation Term="OData.LongDescription" String="This property shall specify an array of metric report definitions that are the only allowable generators of metric reports for this subscription. Metric reports originating from metric report definitions not contained in this array shall not be sent to the subscriber. If this property is absent or the array is empty, the service shall send metric reports originating from any metric report definition to the subscriber."/>
426 </NavigationProperty>
427 </EntityType>
428
429 <EnumType Name="DeliveryRetryPolicy">
430 <Member Name="TerminateAfterRetries">
431 <Annotation Term="OData.Description" String="The subscription is terminated after the maximum number of retries is reached."/>
432 </Member>
433 <Member Name="SuspendRetries">
434 <Annotation Term="OData.Description" String="The subscription is suspended after the maximum number of retries is reached."/>
435 </Member>
436 <Member Name="RetryForever">
437 <Annotation Term="OData.Description" String="The subscription is not suspended or terminated, and attempts at delivery of future events shall continue even after the after the maximum number of retries is reached."/>
438 </Member>
439 </EnumType>
440 </Schema>
441
Jason M. Billsea4aa752018-06-05 13:29:11 -0700442 </edmx:DataServices>
443</edmx:Edmx>