blob: b23c0842073cba4afdbf26f569f4e102e95b74b1 [file] [log] [blame]
Jason M. Billsea4aa752018-06-05 13:29:11 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!---->
3<!--################################################################################ -->
Sui Chen141d9432022-02-03 22:01:27 -08004<!--# Redfish Schema: EventDestination v1.11.2 -->
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 -->
Gunnar Mills10f270b2021-05-19 15:34:06 -05008<!--# Copyright 2014-2021 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"/>
Gunnar Mills6f44b752020-02-06 16:50:51 -060022 <edmx:Include Namespace="Validation.v1_0_0" Alias="Validation"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -070023 </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://redfish.dmtf.org/schemas/v1/Event_v1.xml">
29 <edmx:Include Namespace="Event"/>
30 </edmx:Reference>
Ed Tanouscb103132019-10-08 11:34:22 -070031 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/MetricReportDefinition_v1.xml">
32 <edmx:Include Namespace="MetricReportDefinition"/>
33 </edmx:Reference>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -050034 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/CertificateCollection_v1.xml">
35 <edmx:Include Namespace="CertificateCollection"/>
36 </edmx:Reference>
Jason M. Billsea4aa752018-06-05 13:29:11 -070037
38 <edmx:DataServices>
39
40 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination">
41 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
42
43 <EntityType Name="EventDestination" BaseType="Resource.v1_0_0.Resource" Abstract="true">
Ed Tanouscb103132019-10-08 11:34:22 -070044 <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."/>
45 <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 -070046 <Annotation Term="Capabilities.InsertRestrictions">
47 <Record>
48 <PropertyValue Property="Insertable" Bool="false"/>
49 </Record>
50 </Annotation>
51 <Annotation Term="Capabilities.UpdateRestrictions">
52 <Record>
53 <PropertyValue Property="Updatable" Bool="true"/>
Ed Tanouscb103132019-10-08 11:34:22 -070054 <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 -070055 </Record>
56 </Annotation>
57 <Annotation Term="Capabilities.DeleteRestrictions">
58 <Record>
Ed Tanouscb103132019-10-08 11:34:22 -070059 <PropertyValue Property="Deletable" Bool="true"/>
60 <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 -070061 </Record>
62 </Annotation>
Ed Tanous530520e2019-01-02 13:41:37 -080063 <Annotation Term="Redfish.Uris">
64 <Collection>
65 <String>/redfish/v1/EventService/Subscriptions/{EventDestinationId}</String>
66 </Collection>
67 </Annotation>
Jason M. Billsea4aa752018-06-05 13:29:11 -070068 </EntityType>
69
Ed Tanouscb103132019-10-08 11:34:22 -070070 <Action Name="ResumeSubscription" IsBound="true">
71 <Annotation Term="OData.Description" String="This action resumes a suspended event subscription."/>
72 <Annotation Term="OData.LongDescription" String="This action shall resume a suspended event subscription, which affects the subscription status."/>
73 <Parameter Name="EventDestination" Type="EventDestination.v1_2_0.Actions"/>
74 </Action>
75
Ed Tanous530520e2019-01-02 13:41:37 -080076 <EnumType Name="EventFormatType">
Marri Devender Raod45d2d02019-01-21 10:11:34 -060077 <Annotation Term="Redfish.Revisions">
78 <Collection>
79 <Record>
80 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
81 <PropertyValue Property="Version" String="v1_4_0"/>
82 </Record>
83 </Collection>
84 </Annotation>
Ed Tanous530520e2019-01-02 13:41:37 -080085 <Member Name="Event">
Gunnar Mills262d7d42021-01-20 16:28:41 -060086 <Annotation Term="OData.Description" String="The subscription destination receives an event payload."/>
87 <Annotation Term="OData.LongDescription" String="The subscription destination shall receive an event payload as defined by the value of the Protocol property."/>
Ed Tanous530520e2019-01-02 13:41:37 -080088 </Member>
89 <Member Name="MetricReport">
Gunnar Mills262d7d42021-01-20 16:28:41 -060090 <Annotation Term="OData.Description" String="The subscription destination receives a metric report."/>
91 <Annotation Term="OData.LongDescription" String="The subscription destination shall receive a metric report payload as defined by the value of the Protocol property."/>
Ed Tanous530520e2019-01-02 13:41:37 -080092 </Member>
93 </EnumType>
Jason M. Billsea4aa752018-06-05 13:29:11 -070094 </Schema>
95
96 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_0_0">
97 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -060098 <Annotation Term="Redfish.Release" String="1.0"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -070099
100 <EntityType Name="EventDestination" BaseType="EventDestination.EventDestination">
101 <Property Name="Destination" Type="Edm.String" Nullable="false">
102 <Annotation Term="Redfish.RequiredOnCreate"/>
103 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700104 <Annotation Term="OData.Description" String="The URI of the destination event receiver."/>
Gunnar Mills60c922d2021-12-01 09:28:53 -0600105 <Annotation Term="OData.LongDescription" String="This property shall contain a URI to the destination where the events are sent. If Protocol is `SMTP`, the URI shall follow the RFC6068-described format. SNMP URIs shall be consistent with RFC4088. Specifically, for SNMPv3, if a username is specified in the SNMP URI, the SNMPv3 authentication and encryption configuration associated with that user shall be utilized in the SNMPv3 traps. Syslog URIs shall be consistent with RFC3986 and contain the scheme `syslog://`. Server-sent event destinations shall be in the form `redfish-sse://ip:port` where `ip` and `port` are the IP address and the port of the client with the open SSE connection. For other URIs, such as HTTP or HTTPS, they shall be consistent with RFC3986."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700106 <Annotation Term="OData.IsURL"/>
107 </Property>
108 <Property Name="EventTypes" Type="Collection(Event.EventType)" Nullable="false">
Jason M. Billsea4aa752018-06-05 13:29:11 -0700109 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700110 <Annotation Term="OData.Description" String="The types of events that are sent to the destination."/>
111 <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`."/>
112 <Annotation Term="Redfish.Revisions">
113 <Collection>
114 <Record>
115 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
116 <PropertyValue Property="Version" String="v1_5_0"/>
117 <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`."/>
118 </Record>
119 </Collection>
120 </Annotation>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700121 </Property>
122 <Property Name="Context" Type="Edm.String">
123 <Annotation Term="Redfish.Required"/>
124 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
125 <Annotation Term="OData.Description" String="A client-supplied string that is stored with the event destination subscription."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700126 <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 -0700127 </Property>
128 <Property Name="Protocol" Type="EventDestination.v1_0_0.EventDestinationProtocol" Nullable="false">
129 <Annotation Term="Redfish.RequiredOnCreate"/>
130 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
131 <Annotation Term="OData.Description" String="The protocol type of the event connection."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700132 <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 -0700133 </Property>
134 <Property Name="HttpHeaders" Type="Collection(EventDestination.v1_0_0.HttpHeaderProperty)" Nullable="false">
Ed Tanouscb103132019-10-08 11:34:22 -0700135 <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."/>
136 <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 -0700137 </Property>
138 </EntityType>
139
140 <EnumType Name="EventDestinationProtocol">
141 <Member Name="Redfish">
Ed Tanouscb103132019-10-08 11:34:22 -0700142 <Annotation Term="OData.Description" String="The destination follows the Redfish Specification for event notifications."/>
Gunnar Mills262d7d42021-01-20 16:28:41 -0600143 <Annotation Term="OData.LongDescription" String="This value shall indicate the destination follows the Redfish Specification for event notifications. Destinations requesting EventFormatType of `Event` shall receive a Redfish resource of type Event. Destinations requesting EventFormatType of `MetricReport` shall receive a Redfish resource of type MetricReport."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700144 </Member>
Gunnar Mills6f44b752020-02-06 16:50:51 -0600145 <Member Name="SNMPv1">
146 <Annotation Term="OData.Description" String="The destination follows the SNMPv1 protocol for event notifications."/>
147 <Annotation Term="OData.LongDescription" String="This value shall indicate the destination follows the RFC1157-defined SNMPv1 protocol."/>
148 <Annotation Term="Redfish.Revisions">
149 <Collection>
150 <Record>
151 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
152 <PropertyValue Property="Version" String="v1_7_0"/>
153 </Record>
154 </Collection>
155 </Annotation>
156 </Member>
157 <Member Name="SNMPv2c">
158 <Annotation Term="OData.Description" String="The destination follows the SNMPv2c protocol for event notifications."/>
159 <Annotation Term="OData.LongDescription" String="This value shall indicate the destination follows the SNMPv2c protocol as defined by RFC1441 and RFC1452."/>
160 <Annotation Term="Redfish.Revisions">
161 <Collection>
162 <Record>
163 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
164 <PropertyValue Property="Version" String="v1_7_0"/>
165 </Record>
166 </Collection>
167 </Annotation>
168 </Member>
169 <Member Name="SNMPv3">
170 <Annotation Term="OData.Description" String="The destination follows the SNMPv3 protocol for event notifications."/>
171 <Annotation Term="OData.LongDescription" String="This value shall indicate the destination follows the SNMPv3 protocol as defined by RFC3411 and RFC3418."/>
172 <Annotation Term="Redfish.Revisions">
173 <Collection>
174 <Record>
175 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
176 <PropertyValue Property="Version" String="v1_7_0"/>
177 </Record>
178 </Collection>
179 </Annotation>
180 </Member>
181 <Member Name="SMTP">
182 <Annotation Term="OData.Description" String="The destination follows the SMTP specification for event notifications."/>
183 <Annotation Term="OData.LongDescription" String="This value shall indicate the destination follows the RFC5321-defined SMTP specification."/>
184 <Annotation Term="Redfish.Revisions">
185 <Collection>
186 <Record>
187 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
188 <PropertyValue Property="Version" String="v1_7_0"/>
189 </Record>
190 </Collection>
191 </Annotation>
192 </Member>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500193 <Member Name="SyslogTLS">
194 <Annotation Term="OData.Description" String="The destination follows syslog TLS-based for event notifications."/>
195 <Annotation Term="OData.LongDescription" String="This value shall indicate the destination follows the TLS-based transport for syslog as defined in RFC5424."/>
196 <Annotation Term="Redfish.Revisions">
197 <Collection>
198 <Record>
199 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
200 <PropertyValue Property="Version" String="v1_9_0"/>
201 </Record>
202 </Collection>
203 </Annotation>
204 </Member>
205 <Member Name="SyslogTCP">
206 <Annotation Term="OData.Description" String="The destination follows syslog TCP-based for event notifications."/>
207 <Annotation Term="OData.LongDescription" String="This value shall indicate the destination follows the TCP-based transport for syslog as defined in RFC6587."/>
208 <Annotation Term="Redfish.Revisions">
209 <Collection>
210 <Record>
211 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
212 <PropertyValue Property="Version" String="v1_9_0"/>
213 </Record>
214 </Collection>
215 </Annotation>
216 </Member>
217 <Member Name="SyslogUDP">
218 <Annotation Term="OData.Description" String="The destination follows syslog UDP-based for event notifications."/>
219 <Annotation Term="OData.LongDescription" String="This value shall indicate the destination follows the UDP-based transport for syslog as defined in RFC5424."/>
220 <Annotation Term="Redfish.Revisions">
221 <Collection>
222 <Record>
223 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
224 <PropertyValue Property="Version" String="v1_9_0"/>
225 </Record>
226 </Collection>
227 </Annotation>
228 </Member>
229 <Member Name="SyslogRELP">
230 <Annotation Term="OData.Description" String="The destination follows syslog RELP for event notifications."/>
231 <Annotation Term="OData.LongDescription" String="This value shall indicate the destination follows the Reliable Event Logging Protocol (RELP) transport for syslog as defined by www.rsyslog.com."/>
232 <Annotation Term="Redfish.Revisions">
233 <Collection>
234 <Record>
235 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
236 <PropertyValue Property="Version" String="v1_9_0"/>
237 </Record>
238 </Collection>
239 </Annotation>
240 </Member>
241 <Member Name="OEM">
242 <Annotation Term="OData.Description" String="The destination follows an OEM protocol for event notifications."/>
243 <Annotation Term="OData.LongDescription" String="This value shall indicate an OEM specific protocol. The OEMProtocol property shall contain the specific OEM event destination protocol."/>
244 <Annotation Term="Redfish.Revisions">
245 <Collection>
246 <Record>
247 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
248 <PropertyValue Property="Version" String="v1_9_0"/>
249 </Record>
250 </Collection>
251 </Annotation>
252 </Member>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700253 </EnumType>
254
255 <ComplexType Name="HttpHeaderProperty">
256 <Annotation Term="OData.AdditionalProperties" Bool="false"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700257 <Annotation Term="OData.Description" String="The HTTP header value is the property value. The header name is the property name."/>
Gunnar Mills6f44b752020-02-06 16:50:51 -0600258 <Annotation Term="OData.LongDescription" String="This type shall contain the HTTP header name and value to include with every event POST to the event destination."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700259 <Annotation Term="Redfish.DynamicPropertyPatterns">
260 <Collection>
261 <Record>
262 <PropertyValue Property="Pattern" String="^[^:\\s]+$"/>
263 <PropertyValue Property="Type" String="Edm.String"/>
264 </Record>
265 </Collection>
266 </Annotation>
267 </ComplexType>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700268 </Schema>
269
270 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_0_2">
271 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
272 <Annotation Term="OData.Description" String="This version was created to show annotations in previous namespaces were updated."/>
273 <EntityType Name="EventDestination" BaseType="EventDestination.v1_0_0.EventDestination"/>
274 </Schema>
275
276 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_0_3">
277 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
278 <Annotation Term="OData.Description" String="This version was created to add explicit Permissions annotations to all properties for clarity."/>
279 <EntityType Name="EventDestination" BaseType="EventDestination.v1_0_2.EventDestination"/>
280 </Schema>
281
282 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_0_4">
283 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
284 <Annotation Term="OData.Description" String="This version was created to show annotations in previous namespaces were updated."/>
285 <EntityType Name="EventDestination" BaseType="EventDestination.v1_0_3.EventDestination"/>
286 </Schema>
287
288 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_0_5">
289 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700290 <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 -0700291 <EntityType Name="EventDestination" BaseType="EventDestination.v1_0_4.EventDestination"/>
292 </Schema>
293
Ed Tanous530520e2019-01-02 13:41:37 -0800294 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_0_6">
295 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
296 <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."/>
297 <EntityType Name="EventDestination" BaseType="EventDestination.v1_0_5.EventDestination"/>
298 </Schema>
299
Ed Tanouscb103132019-10-08 11:34:22 -0700300 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_0_7">
301 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
302 <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."/>
303 <EntityType Name="EventDestination" BaseType="EventDestination.v1_0_6.EventDestination"/>
304 </Schema>
305
306 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_0_8">
307 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
308 <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."/>
309 <EntityType Name="EventDestination" BaseType="EventDestination.v1_0_7.EventDestination"/>
310 </Schema>
311
Gunnar Mills262d7d42021-01-20 16:28:41 -0600312 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_0_9">
313 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
314 <Annotation Term="OData.Description" String="This version was created to improve the descriptions for EventFormatType and EventDestinationProtocol."/>
315 <EntityType Name="EventDestination" BaseType="EventDestination.v1_0_8.EventDestination"/>
316 </Schema>
317
Gunnar Mills60c922d2021-12-01 09:28:53 -0600318 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_0_10">
319 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
320 <Annotation Term="OData.Description" String="This version was created to clarify the usage of the Destination property with server-sent events."/>
321 <EntityType Name="EventDestination" BaseType="EventDestination.v1_0_9.EventDestination"/>
322 </Schema>
323
Jason M. Billsea4aa752018-06-05 13:29:11 -0700324 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_1_0">
325 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600326 <Annotation Term="Redfish.Release" String="2016.2"/>
Gunnar Mills60c922d2021-12-01 09:28:53 -0600327
Jason M. Billsea4aa752018-06-05 13:29:11 -0700328 <EntityType Name="EventDestination" BaseType="EventDestination.v1_0_2.EventDestination">
329 <NavigationProperty Name="OriginResources" Type="Collection(Resource.ItemOrCollection)">
330 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700331 <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."/>
332 <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 -0700333 </NavigationProperty>
334 <Property Name="MessageIds" Type="Collection(Edm.String)">
335 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700336 <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."/>
337 <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 -0700338 </Property>
339 </EntityType>
340 </Schema>
341
342 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_1_1">
343 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
344 <Annotation Term="OData.Description" String="This version was created to add explicit Permissions annotations to all properties for clarity."/>
345 <EntityType Name="EventDestination" BaseType="EventDestination.v1_1_0.EventDestination"/>
346 </Schema>
347
348 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_1_2">
349 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
350 <Annotation Term="OData.Description" String="This version was created to show annotations in previous namespaces were updated."/>
351 <EntityType Name="EventDestination" BaseType="EventDestination.v1_1_1.EventDestination"/>
352 </Schema>
353
354 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_1_3">
355 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
356 <Annotation Term="OData.Description" String="This version was created to show annotations in previous namespaces were updated."/>
357 <EntityType Name="EventDestination" BaseType="EventDestination.v1_1_2.EventDestination"/>
358 </Schema>
359
360 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_1_4">
361 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700362 <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 -0700363 <EntityType Name="EventDestination" BaseType="EventDestination.v1_1_3.EventDestination"/>
364 </Schema>
365
Ed Tanous530520e2019-01-02 13:41:37 -0800366 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_1_5">
367 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
368 <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."/>
369 <EntityType Name="EventDestination" BaseType="EventDestination.v1_1_4.EventDestination"/>
370 </Schema>
371
Ed Tanouscb103132019-10-08 11:34:22 -0700372 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_1_6">
373 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
374 <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."/>
375 <EntityType Name="EventDestination" BaseType="EventDestination.v1_1_5.EventDestination"/>
376 </Schema>
377
378 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_1_7">
379 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
380 <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."/>
381 <EntityType Name="EventDestination" BaseType="EventDestination.v1_1_6.EventDestination"/>
382 </Schema>
383
Gunnar Mills262d7d42021-01-20 16:28:41 -0600384 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_1_8">
385 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
386 <Annotation Term="OData.Description" String="This version was created to improve the descriptions for EventFormatType and EventDestinationProtocol."/>
387 <EntityType Name="EventDestination" BaseType="EventDestination.v1_1_7.EventDestination"/>
388 </Schema>
389
Gunnar Mills60c922d2021-12-01 09:28:53 -0600390 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_1_9">
391 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
392 <Annotation Term="OData.Description" String="This version was created to clarify the usage of the Destination property with server-sent events."/>
393 <EntityType Name="EventDestination" BaseType="EventDestination.v1_1_8.EventDestination"/>
394 </Schema>
395
Jason M. Billsea4aa752018-06-05 13:29:11 -0700396 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_2_0">
397 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600398 <Annotation Term="Redfish.Release" String="2017.1"/>
Gunnar Mills60c922d2021-12-01 09:28:53 -0600399
Jason M. Billsea4aa752018-06-05 13:29:11 -0700400 <EntityType Name="EventDestination" BaseType="EventDestination.v1_1_2.EventDestination">
401 <Property Name="Actions" Type="EventDestination.v1_2_0.Actions" Nullable="false">
Ed Tanouscb103132019-10-08 11:34:22 -0700402 <Annotation Term="OData.Description" String="The available actions for this Resource."/>
403 <Annotation Term="OData.LongDescription" String="This property shall contain the available actions for this Resource."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700404 </Property>
405 </EntityType>
406
407 <ComplexType Name="Actions">
408 <Annotation Term="OData.AdditionalProperties" Bool="false"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700409 <Annotation Term="OData.Description" String="The available actions for this Resource."/>
410 <Annotation Term="OData.LongDescription" String="This type shall contain the available actions for this Resource."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800411 <Property Name="Oem" Type="EventDestination.v1_2_0.OemActions" Nullable="false">
Ed Tanouscb103132019-10-08 11:34:22 -0700412 <Annotation Term="OData.Description" String="The available OEM-specific actions for this Resource."/>
413 <Annotation Term="OData.LongDescription" String="This property shall contain the available OEM-specific actions for this Resource."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800414 </Property>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700415 </ComplexType>
416
417 <ComplexType Name="OemActions">
418 <Annotation Term="OData.AdditionalProperties" Bool="true"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700419 <Annotation Term="OData.Description" String="The available OEM-specific actions for this Resource."/>
420 <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 -0700421 </ComplexType>
422 </Schema>
423
424 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_2_1">
425 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
426 <Annotation Term="OData.Description" String="This version was created to show annotations in previous namespaces were updated."/>
427 <EntityType Name="EventDestination" BaseType="EventDestination.v1_2_0.EventDestination"/>
428 </Schema>
429
430 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_2_2">
431 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700432 <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 -0700433 <EntityType Name="EventDestination" BaseType="EventDestination.v1_2_1.EventDestination"/>
434 </Schema>
435
Ed Tanous530520e2019-01-02 13:41:37 -0800436 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_2_3">
437 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
438 <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."/>
439 <EntityType Name="EventDestination" BaseType="EventDestination.v1_2_2.EventDestination"/>
440 </Schema>
441
Ed Tanouscb103132019-10-08 11:34:22 -0700442 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_2_4">
443 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
444 <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."/>
445 <EntityType Name="EventDestination" BaseType="EventDestination.v1_2_3.EventDestination"/>
446 </Schema>
447
448 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_2_5">
449 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
450 <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."/>
451 <EntityType Name="EventDestination" BaseType="EventDestination.v1_2_4.EventDestination"/>
452 </Schema>
453
Gunnar Mills262d7d42021-01-20 16:28:41 -0600454 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_2_6">
455 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
456 <Annotation Term="OData.Description" String="This version was created to improve the descriptions for EventFormatType and EventDestinationProtocol."/>
457 <EntityType Name="EventDestination" BaseType="EventDestination.v1_2_5.EventDestination"/>
458 </Schema>
459
Gunnar Mills60c922d2021-12-01 09:28:53 -0600460 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_2_7">
461 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
462 <Annotation Term="OData.Description" String="This version was created to clarify the usage of the Destination property with server-sent events."/>
463 <EntityType Name="EventDestination" BaseType="EventDestination.v1_2_6.EventDestination"/>
464 </Schema>
465
Jason M. Billsea4aa752018-06-05 13:29:11 -0700466 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_3_0">
467 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600468 <Annotation Term="Redfish.Release" String="2018.1"/>
Gunnar Mills60c922d2021-12-01 09:28:53 -0600469
Jason M. Billsea4aa752018-06-05 13:29:11 -0700470 <EntityType Name="EventDestination" BaseType="EventDestination.v1_2_2.EventDestination">
471 <Property Name="SubscriptionType" Type="EventDestination.v1_3_0.SubscriptionType">
472 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700473 <Annotation Term="OData.Description" String="The subscription type for events."/>
474 <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 -0700475 <Annotation Term="Redfish.Required"/>
476 </Property>
477 </EntityType>
478
479 <EnumType Name="SubscriptionType">
480 <Member Name="RedfishEvent">
Ed Tanouscb103132019-10-08 11:34:22 -0700481 <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 -0700482 </Member>
483 <Member Name="SSE">
Gunnar Mills60c922d2021-12-01 09:28:53 -0600484 <Annotation Term="OData.Description" String="The subscription follows the HTML5 server-sent event definition for event notifications."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700485 </Member>
Gunnar Mills6f44b752020-02-06 16:50:51 -0600486 <Member Name="SNMPTrap">
487 <Annotation Term="OData.Description" String="The subscription follows the various versions of SNMP Traps for event notifications."/>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500488 <Annotation Term="OData.LongDescription" String="This value shall indicate the subscription follows the various versions of SNMP Traps for event notifications. Protocol shall specify the appropriate version of SNMP."/>
Gunnar Mills6f44b752020-02-06 16:50:51 -0600489 <Annotation Term="Redfish.Revisions">
490 <Collection>
491 <Record>
492 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
493 <PropertyValue Property="Version" String="v1_7_0"/>
494 </Record>
495 </Collection>
496 </Annotation>
497 </Member>
498 <Member Name="SNMPInform">
499 <Annotation Term="OData.Description" String="The subscription follows versions 2 and 3 of SNMP Inform for event notifications."/>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500500 <Annotation Term="OData.LongDescription" String="This value shall indicate the subscription follows versions 2 and 3 of SNMP Inform for event notifications. Protocol shall specify the appropriate version of SNMP."/>
Gunnar Mills6f44b752020-02-06 16:50:51 -0600501 <Annotation Term="Redfish.Revisions">
502 <Collection>
503 <Record>
504 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
505 <PropertyValue Property="Version" String="v1_7_0"/>
506 </Record>
507 </Collection>
508 </Annotation>
509 </Member>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500510 <Member Name="Syslog">
511 <Annotation Term="OData.Description" String="The subscription sends Syslog messages for event notifications."/>
512 <Annotation Term="OData.LongDescription" String="This value shall indicate the subscription forwards syslog messages to the event destination. Protocol shall specify the appropriate syslog protocol."/>
513 <Annotation Term="Redfish.Revisions">
514 <Collection>
515 <Record>
516 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
517 <PropertyValue Property="Version" String="v1_9_0"/>
518 </Record>
519 </Collection>
520 </Annotation>
521 </Member>
522 <Member Name="OEM">
523 <Annotation Term="OData.Description" String="The subscription is an OEM subscription."/>
524 <Annotation Term="OData.LongDescription" String="This value shall indicate an OEM subscription type. The OEMSubscriptionType property shall contain the specific OEM subscription type."/>
525 <Annotation Term="Redfish.Revisions">
526 <Collection>
527 <Record>
528 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
529 <PropertyValue Property="Version" String="v1_9_0"/>
530 </Record>
531 </Collection>
532 </Annotation>
533 </Member>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700534 </EnumType>
535 </Schema>
536
Ed Tanous530520e2019-01-02 13:41:37 -0800537 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_3_1">
538 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
539 <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."/>
540 <EntityType Name="EventDestination" BaseType="EventDestination.v1_3_0.EventDestination"/>
541 </Schema>
542
Ed Tanouscb103132019-10-08 11:34:22 -0700543 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_3_2">
544 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
545 <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."/>
546 <EntityType Name="EventDestination" BaseType="EventDestination.v1_3_1.EventDestination"/>
547 </Schema>
548
549 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_3_3">
550 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
551 <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."/>
552 <EntityType Name="EventDestination" BaseType="EventDestination.v1_3_2.EventDestination"/>
553 </Schema>
554
Gunnar Mills262d7d42021-01-20 16:28:41 -0600555 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_3_4">
556 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
557 <Annotation Term="OData.Description" String="This version was created to improve the descriptions for EventFormatType and EventDestinationProtocol."/>
558 <EntityType Name="EventDestination" BaseType="EventDestination.v1_3_3.EventDestination"/>
559 </Schema>
560
Gunnar Mills60c922d2021-12-01 09:28:53 -0600561 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_3_5">
562 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
563 <Annotation Term="OData.Description" String="This version was created to clarify the usage of the Destination property with server-sent events."/>
564 <EntityType Name="EventDestination" BaseType="EventDestination.v1_3_4.EventDestination"/>
565 </Schema>
566
Ed Tanous530520e2019-01-02 13:41:37 -0800567 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_4_0">
568 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600569 <Annotation Term="Redfish.Release" String="2018.2"/>
Ed Tanous530520e2019-01-02 13:41:37 -0800570 <Annotation Term="OData.Description" String="This version was created to add the RegistryPrefix, ResourceType and SubordinateResources method of eventing."/>
Gunnar Mills60c922d2021-12-01 09:28:53 -0600571
Ed Tanous530520e2019-01-02 13:41:37 -0800572 <EntityType Name="EventDestination" BaseType="EventDestination.v1_3_0.EventDestination">
573 <Property Name="RegistryPrefixes" Type="Collection(Edm.String)">
574 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700575 <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."/>
576 <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 -0800577 </Property>
578 <Property Name="ResourceTypes" Type="Collection(Edm.String)">
579 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700580 <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."/>
581 <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 -0800582 </Property>
583 <Property Name="SubordinateResources" Type="Edm.Boolean">
584 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700585 <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."/>
586 <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 -0800587 </Property>
588 <Property Name="EventFormatType" Type="EventDestination.EventFormatType">
589 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700590 <Annotation Term="OData.Description" String="The content types of the message that are sent to the EventDestination."/>
591 <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 -0800592 </Property>
593 </EntityType>
594 </Schema>
595
Ed Tanouscb103132019-10-08 11:34:22 -0700596 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_4_1">
597 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
598 <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."/>
599 <EntityType Name="EventDestination" BaseType="EventDestination.v1_4_0.EventDestination"/>
600 </Schema>
601
602 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_4_2">
603 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
604 <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."/>
605 <EntityType Name="EventDestination" BaseType="EventDestination.v1_4_1.EventDestination"/>
606 </Schema>
607
Gunnar Mills262d7d42021-01-20 16:28:41 -0600608 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_4_3">
609 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
610 <Annotation Term="OData.Description" String="This version was created to improve the descriptions for EventFormatType and EventDestinationProtocol."/>
611 <EntityType Name="EventDestination" BaseType="EventDestination.v1_4_2.EventDestination"/>
612 </Schema>
613
Gunnar Mills60c922d2021-12-01 09:28:53 -0600614 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_4_4">
615 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
616 <Annotation Term="OData.Description" String="This version was created to clarify the usage of the Destination property with server-sent events."/>
617 <EntityType Name="EventDestination" BaseType="EventDestination.v1_4_3.EventDestination"/>
618 </Schema>
619
Ed Tanouscb103132019-10-08 11:34:22 -0700620 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_5_0">
621 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
622 <Annotation Term="Redfish.Release" String="2019.1"/>
623 <Annotation Term="OData.Description" String="This version was created to deprecate the EventTypes property."/>
Gunnar Mills60c922d2021-12-01 09:28:53 -0600624
Ed Tanouscb103132019-10-08 11:34:22 -0700625 <EntityType Name="EventDestination" BaseType="EventDestination.v1_4_1.EventDestination"/>
626 </Schema>
627
628 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_5_1">
629 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
630 <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."/>
631 <EntityType Name="EventDestination" BaseType="EventDestination.v1_5_0.EventDestination"/>
632 </Schema>
633
Gunnar Mills262d7d42021-01-20 16:28:41 -0600634 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_5_2">
635 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
636 <Annotation Term="OData.Description" String="This version was created to improve the descriptions for EventFormatType and EventDestinationProtocol."/>
637 <EntityType Name="EventDestination" BaseType="EventDestination.v1_5_1.EventDestination"/>
638 </Schema>
639
Gunnar Mills60c922d2021-12-01 09:28:53 -0600640 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_5_3">
641 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
642 <Annotation Term="OData.Description" String="This version was created to clarify the usage of the Destination property with server-sent events."/>
643 <EntityType Name="EventDestination" BaseType="EventDestination.v1_5_2.EventDestination"/>
644 </Schema>
645
Ed Tanouscb103132019-10-08 11:34:22 -0700646 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_6_0">
647 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
648 <Annotation Term="Redfish.Release" String="2019.2"/>
649 <Annotation Term="OData.Description" String="This version was created to add DeliveryRetryPolicy."/>
Gunnar Mills6f44b752020-02-06 16:50:51 -0600650
Ed Tanouscb103132019-10-08 11:34:22 -0700651 <EntityType Name="EventDestination" BaseType="EventDestination.v1_5_0.EventDestination">
652 <Property Name="DeliveryRetryPolicy" Type="EventDestination.v1_6_0.DeliveryRetryPolicy">
653 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
Gunnar Mills262d7d42021-01-20 16:28:41 -0600654 <Annotation Term="OData.Description" String="The subscription delivery retry policy for events, where the subscription type is RedfishEvent."/>
655 <Annotation Term="OData.LongDescription" String="This property shall indicate the subscription delivery retry policy for events where the subscription type is RedfishEvent."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700656 </Property>
657 <Property Name="Status" Type="Resource.Status" Nullable="false">
658 <Annotation Term="OData.Description" String="This property shall contain the status of the subscription."/>
659 <Annotation Term="OData.LongDescription" String="This property shall contain the status of the subscription."/>
660 </Property>
661 <NavigationProperty Name="MetricReportDefinitions" Type="Collection(MetricReportDefinition.MetricReportDefinition)">
662 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
663 <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."/>
664 <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."/>
665 </NavigationProperty>
666 </EntityType>
667
668 <EnumType Name="DeliveryRetryPolicy">
669 <Member Name="TerminateAfterRetries">
670 <Annotation Term="OData.Description" String="The subscription is terminated after the maximum number of retries is reached."/>
Gunnar Mills10f270b2021-05-19 15:34:06 -0500671 <Annotation Term="OData.LongDescription" String="This value shall indicate the subscription is terminated after the maximum number of retries is reached, specified by the DeliveryRetryAttempts property in the event service."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700672 </Member>
673 <Member Name="SuspendRetries">
674 <Annotation Term="OData.Description" String="The subscription is suspended after the maximum number of retries is reached."/>
Gunnar Mills10f270b2021-05-19 15:34:06 -0500675 <Annotation Term="OData.LongDescription" String="This value shall indicate the subscription is suspended after the maximum number of retries is reached, specified by the DeliveryRetryAttempts property in the event service."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700676 </Member>
677 <Member Name="RetryForever">
Gunnar Mills262d7d42021-01-20 16:28:41 -0600678 <Annotation Term="OData.Description" String="The subscription is not suspended or terminated, and attempts at delivery of future events shall continue regardless of the number of retries."/>
Gunnar Mills10f270b2021-05-19 15:34:06 -0500679 <Annotation Term="OData.LongDescription" String="This value shall indicate the subscription is not suspended or terminated, and attempts at delivery of future events shall continue regardless of the number of retries. The interval between retries remains constant and is specified by the DeliveryRetryIntervalSeconds property in the event service."/>
Gunnar Mills262d7d42021-01-20 16:28:41 -0600680 </Member>
681 <Member Name="RetryForeverWithBackoff">
682 <Annotation Term="OData.Description" String="The subscription is not suspended or terminated, and attempts at delivery of future events shall continue regardless of the number of retries, but issued over time according to a service-defined backoff algorithm."/>
Gunnar Mills10f270b2021-05-19 15:34:06 -0500683 <Annotation Term="OData.LongDescription" String="This value shall indicate the subscription is not suspended or terminated, and attempts at delivery of future events shall continue regardless of the number of retries. Retry attempts are issued over time according to a service-defined backoff algorithm. The backoff algorithm may insert an increasing amount of delay between retry attempts and may reach a maximum."/>
Gunnar Mills262d7d42021-01-20 16:28:41 -0600684 <Annotation Term="Redfish.Revisions">
685 <Collection>
686 <Record>
687 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
688 <PropertyValue Property="Version" String="v1_10_0"/>
689 </Record>
690 </Collection>
691 </Annotation>
Ed Tanouscb103132019-10-08 11:34:22 -0700692 </Member>
693 </EnumType>
694 </Schema>
695
Gunnar Mills844b4152020-06-22 12:44:09 -0500696 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_6_1">
697 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
698 <Annotation Term="OData.Description" String="This version was created to correct typographic errors in DeliveryRetryPolicy."/>
699 <EntityType Name="EventDestination" BaseType="EventDestination.v1_6_0.EventDestination"/>
700 </Schema>
701
Gunnar Mills262d7d42021-01-20 16:28:41 -0600702 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_6_2">
703 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
704 <Annotation Term="OData.Description" String="This version was created to improve the descriptions for EventFormatType and EventDestinationProtocol. It was also updated to allow for a service to select its own DeliveryRetryPolicy if not specified by the client."/>
705 <EntityType Name="EventDestination" BaseType="EventDestination.v1_6_1.EventDestination"/>
706 </Schema>
707
Gunnar Mills10f270b2021-05-19 15:34:06 -0500708 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_6_3">
709 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
710 <Annotation Term="OData.Description" String="This version was created to correct various description to use proper normative terminology."/>
711 <EntityType Name="EventDestination" BaseType="EventDestination.v1_6_2.EventDestination"/>
712 </Schema>
713
Gunnar Mills60c922d2021-12-01 09:28:53 -0600714 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_6_4">
715 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
716 <Annotation Term="OData.Description" String="This version was created to clarify the usage of the Destination property with server-sent events."/>
717 <EntityType Name="EventDestination" BaseType="EventDestination.v1_6_3.EventDestination"/>
718 </Schema>
719
Gunnar Mills6f44b752020-02-06 16:50:51 -0600720 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_7_0">
721 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
722 <Annotation Term="Redfish.Release" String="2019.3"/>
723 <Annotation Term="OData.Description" String="This version was created to add SMTP and SNMP to EventDestinationProtocol, and SNMP to SubscriptionType."/>
724
725 <EntityType Name="EventDestination" BaseType="EventDestination.v1_6_0.EventDestination">
726 <Property Name="SNMP" Type="EventDestination.v1_7_0.SNMPSettings" Nullable="false">
727 <Annotation Term="OData.Description" String="Settings for an SNMP event destination."/>
728 <Annotation Term="OData.LongDescription" String="This property shall contain the settings for an SNMP event destination."/>
729 </Property>
730 </EntityType>
731
732 <ComplexType Name="SNMPSettings">
733 <Annotation Term="OData.AdditionalProperties" Bool="false"/>
734 <Annotation Term="OData.Description" String="Settings for an SNMP event destination."/>
735 <Annotation Term="OData.LongDescription" String="This type shall contain the settings for an SNMP event destination."/>
736 <Property Name="TrapCommunity" Type="Edm.String">
737 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
738 <Annotation Term="OData.Description" String="The SNMP trap community string."/>
739 <Annotation Term="OData.LongDescription" String="This property shall contain the SNMP trap community string. The value shall be `null` in responses."/>
740 </Property>
741 <Property Name="AuthenticationKey" Type="Edm.String">
742 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
743 <Annotation Term="OData.Description" String="The secret authentication key for SNMPv3."/>
Gunnar Mills262d7d42021-01-20 16:28:41 -0600744 <Annotation Term="OData.LongDescription" String="This property shall contain the key for SNMPv3 authentication. The value shall be `null` in responses. This property accepts a passphrase or a hex-encoded key. If the string starts with `Passphrase:`, the remainder of the string shall be the passphrase and shall be converted to the key as described in the 'Password to Key Algorithm' section of RFC3414. If the string starts with `Hex:`, then the remainder of the string shall be the key encoded in hexadecimal notation. If the string starts with neither, the full string shall be a passphrase and shall be converted to the key as described in the 'Password to Key Algorithm' section of RFC3414. The passphrase can contain any printable characters except for the double quotation mark."/>
745 <Annotation Term="Validation.Pattern" String="(^[ !#-~]+$)|(^Passphrase:[ ^[ !#-~]+$)|(^Hex:[0-9A-Fa-f]{24,96})|(^\*+$)"/>
Gunnar Mills6f44b752020-02-06 16:50:51 -0600746 </Property>
747 <Property Name="AuthenticationProtocol" Type="EventDestination.v1_7_0.SNMPAuthenticationProtocols">
748 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
749 <Annotation Term="OData.Description" String="The authentication protocol for SNMPv3."/>
750 <Annotation Term="OData.LongDescription" String="This property shall contain the SNMPv3 authentication protocol."/>
751 </Property>
752 <Property Name="EncryptionKey" Type="Edm.String">
753 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
754 <Annotation Term="OData.Description" String="The secret authentication key for SNMPv3."/>
Gunnar Mills262d7d42021-01-20 16:28:41 -0600755 <Annotation Term="OData.LongDescription" String="This property shall contain the key for SNMPv3 encryption. The value shall be `null` in responses. This property accepts a passphrase or a hex-encoded key. If the string starts with `Passphrase:`, the remainder of the string shall be the passphrase and shall be converted to the key as described in the 'Password to Key Algorithm' section of RFC3414. If the string starts with `Hex:`, then the remainder of the string shall be the key encoded in hexadecimal notation. If the string starts with neither, the full string shall be a passphrase and shall be converted to the key as described in the 'Password to Key Algorithm' section of RFC3414. The passphrase can contain any printable characters except for the double quotation mark."/>
Gunnar Mills6f44b752020-02-06 16:50:51 -0600756 <Annotation Term="Validation.Pattern" String="(^[A-Za-z0-9]+$)|(^\*+$)"/>
757 </Property>
758 <Property Name="EncryptionProtocol" Type="EventDestination.v1_7_0.SNMPEncryptionProtocols">
759 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
760 <Annotation Term="OData.Description" String="The encryption protocol for SNMPv3."/>
761 <Annotation Term="OData.LongDescription" String="This property shall contain the SNMPv3 encryption protocol."/>
762 </Property>
763 </ComplexType>
764
765 <EnumType Name="SNMPAuthenticationProtocols">
766 <Member Name="None">
767 <Annotation Term="OData.Description" String="No authentication."/>
768 <Annotation Term="OData.LongDescription" String="This value shall indicate authentication is not required."/>
769 </Member>
770 <Member Name="CommunityString">
771 <Annotation Term="OData.Description" String="Trap community string authentication."/>
772 <Annotation Term="OData.LongDescription" String="This value shall indicate authentication using SNMP community strings and the value of TrapCommunity."/>
773 </Member>
774 <Member Name="HMAC_MD5">
775 <Annotation Term="OData.Description" String="HMAC-MD5-96 authentication."/>
776 <Annotation Term="OData.LongDescription" String="This value shall indicate authentication conforms to the RFC3414-defined HMAC-MD5-96 authentication protocol."/>
777 </Member>
778 <Member Name="HMAC_SHA96">
779 <Annotation Term="OData.Description" String="HMAC-SHA-96 authentication."/>
780 <Annotation Term="OData.LongDescription" String="This value shall indicate authentication conforms to the RFC3414-defined HMAC-SHA-96 authentication protocol."/>
781 </Member>
Gunnar Mills262d7d42021-01-20 16:28:41 -0600782 <Member Name="HMAC128_SHA224">
783 <Annotation Term="OData.Description" String="HMAC-128-SHA-224 authentication."/>
784 <Annotation Term="OData.LongDescription" String="This value shall indicate authentication for SNMPv3 access conforms to the RFC7860-defined usmHMAC128SHA224AuthProtocol."/>
785 <Annotation Term="Redfish.Revisions">
786 <Collection>
787 <Record>
788 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
789 <PropertyValue Property="Version" String="v1_10_0"/>
790 </Record>
791 </Collection>
792 </Annotation>
793 </Member>
794 <Member Name="HMAC192_SHA256">
795 <Annotation Term="OData.Description" String="HMAC-192-SHA-256 authentication."/>
796 <Annotation Term="OData.LongDescription" String="This value shall indicate authentication for SNMPv3 access conforms to the RFC7860-defined usmHMAC192SHA256AuthProtocol."/>
797 <Annotation Term="Redfish.Revisions">
798 <Collection>
799 <Record>
800 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
801 <PropertyValue Property="Version" String="v1_10_0"/>
802 </Record>
803 </Collection>
804 </Annotation>
805 </Member>
806 <Member Name="HMAC256_SHA384">
807 <Annotation Term="OData.Description" String="HMAC-256-SHA-384 authentication."/>
808 <Annotation Term="OData.LongDescription" String="This value shall indicate authentication for SNMPv3 access conforms to the RFC7860-defined usmHMAC256SHA384AuthProtocol."/>
809 <Annotation Term="Redfish.Revisions">
810 <Collection>
811 <Record>
812 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
813 <PropertyValue Property="Version" String="v1_10_0"/>
814 </Record>
815 </Collection>
816 </Annotation>
817 </Member>
818 <Member Name="HMAC384_SHA512">
819 <Annotation Term="OData.Description" String="HMAC-384-SHA-512 authentication."/>
820 <Annotation Term="OData.LongDescription" String="This value shall indicate authentication for SNMPv3 access conforms to the RFC7860-defined usmHMAC384SHA512AuthProtocol."/>
821 <Annotation Term="Redfish.Revisions">
822 <Collection>
823 <Record>
824 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
825 <PropertyValue Property="Version" String="v1_10_0"/>
826 </Record>
827 </Collection>
828 </Annotation>
829 </Member>
Gunnar Mills6f44b752020-02-06 16:50:51 -0600830 </EnumType>
831
832 <EnumType Name="SNMPEncryptionProtocols">
833 <Member Name="None">
834 <Annotation Term="OData.Description" String="No encryption."/>
835 <Annotation Term="OData.LongDescription" String="This value shall indicate there is no encryption."/>
836 </Member>
837 <Member Name="CBC_DES">
838 <Annotation Term="OData.Description" String="CBC-DES encryption."/>
839 <Annotation Term="OData.LongDescription" String="This value shall indicate encryption conforms to the RFC3414-defined CBC-DES encryption protocol."/>
840 </Member>
841 <Member Name="CFB128_AES128">
842 <Annotation Term="OData.Description" String="CFB128-AES-128 encryption."/>
843 <Annotation Term="OData.LongDescription" String="This value shall indicate encryption conforms to the RFC3414-defined CFB128-AES-128 encryption protocol."/>
844 </Member>
845 </EnumType>
846 </Schema>
Gunnar Mills844b4152020-06-22 12:44:09 -0500847
848 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_7_1">
849 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
850 <Annotation Term="OData.Description" String="This version was created to correct typographic errors in DeliveryRetryPolicy."/>
851 <EntityType Name="EventDestination" BaseType="EventDestination.v1_7_0.EventDestination"/>
852 </Schema>
853
Gunnar Mills262d7d42021-01-20 16:28:41 -0600854 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_7_2">
855 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
856 <Annotation Term="OData.Description" String="This version was created to improve the descriptions for EventFormatType and EventDestinationProtocol. It was also created to correct descriptions and terms for SNMP properties. It was also updated to allow for a service to select its own DeliveryRetryPolicy if not specified by the client."/>
857 <EntityType Name="EventDestination" BaseType="EventDestination.v1_7_1.EventDestination"/>
858 </Schema>
859
Gunnar Mills10f270b2021-05-19 15:34:06 -0500860 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_7_3">
861 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
862 <Annotation Term="OData.Description" String="This version was created to correct various description to use proper normative terminology."/>
863 <EntityType Name="EventDestination" BaseType="EventDestination.v1_7_2.EventDestination"/>
864 </Schema>
865
Gunnar Mills60c922d2021-12-01 09:28:53 -0600866 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_7_4">
867 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
868 <Annotation Term="OData.Description" String="This version was created to clarify the usage of the Destination property with server-sent events."/>
869 <EntityType Name="EventDestination" BaseType="EventDestination.v1_7_3.EventDestination"/>
870 </Schema>
871
Gunnar Millsa778c022020-05-12 12:20:36 -0500872 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_8_0">
873 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
874 <Annotation Term="Redfish.Release" String="2020.1"/>
875 <Annotation Term="OData.Description" String="This version was created to add the IncludeOriginOfCondition property."/>
Gunnar Mills6f44b752020-02-06 16:50:51 -0600876
Gunnar Millsa778c022020-05-12 12:20:36 -0500877 <EntityType Name="EventDestination" BaseType="EventDestination.v1_7_0.EventDestination">
878 <Property Name="IncludeOriginOfCondition" Type="Edm.Boolean">
879 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
880 <Annotation Term="OData.Description" String="An indication of whether the events subscribed to will also include the entire resource or object referenced the OriginOfCondition property in the event payload."/>
881 <Annotation Term="OData.LongDescription" String="This property shall indicate whether the event payload sent to the subscription destination will expand the OriginOfCondition property to include the resource or object referenced by the OriginOfCondition property."/>
882 </Property>
883 </EntityType>
884 </Schema>
Gunnar Mills844b4152020-06-22 12:44:09 -0500885
886 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_8_1">
887 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
888 <Annotation Term="OData.Description" String="This version was created to correct typographic errors in DeliveryRetryPolicy."/>
889 <EntityType Name="EventDestination" BaseType="EventDestination.v1_8_0.EventDestination"/>
890 </Schema>
891
Gunnar Mills262d7d42021-01-20 16:28:41 -0600892 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_8_2">
893 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
894 <Annotation Term="OData.Description" String="This version was created to improve the descriptions for EventFormatType and EventDestinationProtocol. It was also created to correct descriptions and terms for SNMP properties. It was also updated to allow for a service to select its own DeliveryRetryPolicy if not specified by the client."/>
895 <EntityType Name="EventDestination" BaseType="EventDestination.v1_8_1.EventDestination"/>
896 </Schema>
897
Gunnar Mills10f270b2021-05-19 15:34:06 -0500898 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_8_3">
899 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
900 <Annotation Term="OData.Description" String="This version was created to correct various description to use proper normative terminology."/>
901 <EntityType Name="EventDestination" BaseType="EventDestination.v1_8_2.EventDestination"/>
902 </Schema>
903
Gunnar Mills60c922d2021-12-01 09:28:53 -0600904 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_8_4">
905 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
906 <Annotation Term="OData.Description" String="This version was created to clarify the usage of the Destination property with server-sent events."/>
907 <EntityType Name="EventDestination" BaseType="EventDestination.v1_8_3.EventDestination"/>
908 </Schema>
909
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500910 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_9_0">
911 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
912 <Annotation Term="Redfish.Release" String="2020.3"/>
913
914 <EntityType Name="EventDestination" BaseType="EventDestination.v1_8_1.EventDestination">
915 <NavigationProperty Name="Certificates" Type="CertificateCollection.CertificateCollection" ContainsTarget="true" Nullable="false">
916 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
917 <Annotation Term="OData.Description" String="The link to a collection of server certificates for the server referenced by the Destination property."/>
918 <Annotation Term="OData.LongDescription" String="This property shall contain a link to a resource collection of type CertificateCollection that represent the server certificates for the server referenced by the Destination property. If VerifyCertificate is `true`, services shall compare the certificates in this collection with the certificate obtained during handshaking with the event destination in order to verify the identify of the event destination prior to sending an event. If the server cannot be verified, the service shall not send the event. If VerifyCertificate is `false`, the service shall not perform certificate verification."/>
919 <Annotation Term="OData.AutoExpandReferences"/>
920 </NavigationProperty>
921 <Property Name="VerifyCertificate" Type="Edm.Boolean">
922 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
923 <Annotation Term="OData.Description" String="An indication of whether the service will verify the certificate of the server referenced by the Destination property prior to sending the event."/>
Sui Chen141d9432022-02-03 22:01:27 -0800924 <Annotation Term="OData.LongDescription" String="This property shall indicate whether whether the service will verify the certificate of the server referenced by the Destination property prior to sending the event. If this property is not supported by the service or specified by the client in the create request, it shall be assumed to be `false`."/>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500925 </Property>
926 <Property Name="SyslogFilters" Type="Collection(EventDestination.v1_9_0.SyslogFilter)">
Gunnar Mills9d424662021-09-22 21:56:16 -0500927 <Annotation Term="OData.Description" String="A list of filters applied to syslog messages before sending to a remote syslog server. An empty list indicates all syslog messages are sent."/>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500928 <Annotation Term="OData.LongDescription" String="This property shall describe all desired syslog messages to send to a remote syslog server. If this property contains an empty array or is absent, all messages shall be sent."/>
929 </Property>
930 <Property Name="OEMProtocol" Type="Edm.String" Nullable="false">
931 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
932 <Annotation Term="OData.Description" String="The OEM-defined protocol type of the event connection."/>
933 <Annotation Term="OData.LongDescription" String="This property shall contain the protocol type that the event uses to send the event to the destination. This property shall be present if Protocol is `OEM`."/>
934 </Property>
935 <Property Name="OEMSubscriptionType" Type="Edm.String" Nullable="false">
936 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
937 <Annotation Term="OData.Description" String="The OEM-defined subscription type for events."/>
938 <Annotation Term="OData.LongDescription" String="This property shall indicate the OEM-defined type of subscription for events. This property shall be present if SubscriptionType is `OEM`."/>
939 </Property>
940 </EntityType>
941
942 <EnumType Name="SyslogSeverity">
943 <Annotation Term="OData.Description" String="The syslog severity is an application-specific rating used to describe the urgency of the message."/>
944 <Annotation Term="OData.LongDescription" String="This type shall specify the syslog severity levels as an application-specific rating used to describe the urgency of the message. `Emergency` should be reserved for messages indicating the system is unusable and `Debug` should only be used when debugging a program. Severity values are described in RFC5424."/>
945 <Member Name="Emergency">
946 <Annotation Term="OData.Description" String="A panic condition."/>
947 </Member>
948 <Member Name="Alert">
949 <Annotation Term="OData.Description" String="A condition that should be corrected immediately, such as a corrupted system database."/>
950 </Member>
951 <Member Name="Critical">
952 <Annotation Term="OData.Description" String="Hard device errors."/>
953 </Member>
954 <Member Name="Error">
955 <Annotation Term="OData.Description" String="An Error."/>
956 </Member>
957 <Member Name="Warning">
958 <Annotation Term="OData.Description" String="A Warning."/>
959 </Member>
960 <Member Name="Notice">
961 <Annotation Term="OData.Description" String="Conditions that are not error conditions, but that may require special handling."/>
962 </Member>
963 <Member Name="Informational">
964 <Annotation Term="OData.Description" String="Informational only."/>
965 </Member>
966 <Member Name="Debug">
967 <Annotation Term="OData.Description" String="Messages that contain information normally of use only when debugging a program."/>
968 </Member>
969 <Member Name="All">
970 <Annotation Term="OData.Description" String="A message of any severity."/>
971 </Member>
972 </EnumType>
973
974 <EnumType Name="SyslogFacility">
975 <Annotation Term="OData.Description" String="The syslog facility code is an enumeration of program types."/>
976 <Annotation Term="OData.LongDescription" String="This type shall specify the syslog facility codes as program types. Facility values are described in the RFC5424."/>
977 <Member Name="Kern">
978 <Annotation Term="OData.Description" String="Kernel messages."/>
979 </Member>
980 <Member Name="User">
981 <Annotation Term="OData.Description" String="User-level messages."/>
982 </Member>
983 <Member Name="Mail">
984 <Annotation Term="OData.Description" String="Mail system."/>
985 </Member>
986 <Member Name="Daemon">
987 <Annotation Term="OData.Description" String="System daemons."/>
988 </Member>
989 <Member Name="Auth">
990 <Annotation Term="OData.Description" String="Security/authentication messages."/>
991 </Member>
992 <Member Name="Syslog">
993 <Annotation Term="OData.Description" String="Messages generated internally by syslogd."/>
994 </Member>
995 <Member Name="LPR">
996 <Annotation Term="OData.Description" String="Line printer subsystem."/>
997 </Member>
998 <Member Name="News">
999 <Annotation Term="OData.Description" String="Network news subsystem."/>
1000 </Member>
1001 <Member Name="UUCP">
1002 <Annotation Term="OData.Description" String="UUCP subsystem."/>
1003 </Member>
1004 <Member Name="Cron">
1005 <Annotation Term="OData.Description" String="Clock daemon."/>
1006 </Member>
1007 <Member Name="Authpriv">
1008 <Annotation Term="OData.Description" String="Security/authentication messages."/>
1009 </Member>
1010 <Member Name="FTP">
1011 <Annotation Term="OData.Description" String="FTP daemon."/>
1012 </Member>
1013 <Member Name="NTP">
1014 <Annotation Term="OData.Description" String="NTP subsystem."/>
1015 </Member>
1016 <Member Name="Security">
1017 <Annotation Term="OData.Description" String="Log audit."/>
1018 </Member>
1019 <Member Name="Console">
1020 <Annotation Term="OData.Description" String="Log alert."/>
1021 </Member>
1022 <Member Name="SolarisCron">
1023 <Annotation Term="OData.Description" String="Scheduling daemon."/>
1024 </Member>
1025 <Member Name="Local0">
1026 <Annotation Term="OData.Description" String="Locally used facility 0."/>
1027 </Member>
1028 <Member Name="Local1">
1029 <Annotation Term="OData.Description" String="Locally used facility 1."/>
1030 </Member>
1031 <Member Name="Local2">
1032 <Annotation Term="OData.Description" String="Locally used facility 2."/>
1033 </Member>
1034 <Member Name="Local3">
1035 <Annotation Term="OData.Description" String="Locally used facility 3."/>
1036 </Member>
1037 <Member Name="Local4">
1038 <Annotation Term="OData.Description" String="Locally used facility 4."/>
1039 </Member>
1040 <Member Name="Local5">
1041 <Annotation Term="OData.Description" String="Locally used facility 5."/>
1042 </Member>
1043 <Member Name="Local6">
1044 <Annotation Term="OData.Description" String="Locally used facility 6."/>
1045 </Member>
1046 <Member Name="Local7">
1047 <Annotation Term="OData.Description" String="Locally used facility 7."/>
1048 </Member>
1049 </EnumType>
1050
1051 <ComplexType Name="SyslogFilter">
1052 <Annotation Term="OData.AdditionalProperties" Bool="false"/>
1053 <Annotation Term="OData.Description" String="A syslog filter."/>
1054 <Annotation Term="OData.LongDescription" String="This type shall contain the filter for a syslog message. The filter shall describe the desired syslog message to forward to a remote syslog server."/>
1055 <Property Name="LowestSeverity" Type="EventDestination.v1_9_0.SyslogSeverity">
1056 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
1057 <Annotation Term="OData.Description" String="The lowest severity level message that will be forwarded."/>
1058 <Annotation Term="OData.LongDescription" String="This property shall contain the lowest syslog severity level that will be forwarded. The service shall forward all messages equal to or greater than the value in this property. The value `All` shall indicate all severities."/>
1059 </Property>
1060 <Property Name="LogFacilities" Type="Collection(EventDestination.v1_9_0.SyslogFacility)">
1061 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
1062 <Annotation Term="OData.Description" String="The types of programs that can log messages."/>
1063 <Annotation Term="OData.LongDescription" String="This property shall contain the types of programs that can log messages. If this property contains an empty array or is absent, all facilities shall be indicated."/>
1064 </Property>
1065 </ComplexType>
1066 </Schema>
1067
Gunnar Mills262d7d42021-01-20 16:28:41 -06001068 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_9_1">
1069 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1070 <Annotation Term="OData.Description" String="This version was created to improve the descriptions for EventFormatType and EventDestinationProtocol. It was also created to correct descriptions and terms for SNMP properties. It was also updated to allow for a service to select its own DeliveryRetryPolicy if not specified by the client."/>
1071 <EntityType Name="EventDestination" BaseType="EventDestination.v1_9_0.EventDestination"/>
1072 </Schema>
1073
Gunnar Mills10f270b2021-05-19 15:34:06 -05001074 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_9_2">
1075 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1076 <Annotation Term="OData.Description" String="This version was created to correct various description to use proper normative terminology."/>
1077 <EntityType Name="EventDestination" BaseType="EventDestination.v1_9_1.EventDestination"/>
1078 </Schema>
1079
Gunnar Mills9d424662021-09-22 21:56:16 -05001080 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_9_3">
1081 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1082 <Annotation Term="OData.Description" String="This version was created to improve the description of SyslogFilters."/>
1083 <EntityType Name="EventDestination" BaseType="EventDestination.v1_9_2.EventDestination"/>
1084 </Schema>
1085
Gunnar Mills60c922d2021-12-01 09:28:53 -06001086 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_9_4">
1087 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1088 <Annotation Term="OData.Description" String="This version was created to clarify the usage of the Destination property with server-sent events."/>
1089 <EntityType Name="EventDestination" BaseType="EventDestination.v1_9_3.EventDestination"/>
1090 </Schema>
1091
Sui Chen141d9432022-02-03 22:01:27 -08001092 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_9_5">
1093 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1094 <Annotation Term="OData.Description" String="This version was created to clarify the behavior of VerifyCertificate when not supported or specified."/>
1095 <EntityType Name="EventDestination" BaseType="EventDestination.v1_9_4.EventDestination"/>
1096 </Schema>
1097
Gunnar Mills262d7d42021-01-20 16:28:41 -06001098 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_10_0">
1099 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1100 <Annotation Term="OData.Description" String="This version was created to add additional SNMP authentication protocols and to provide better description for the authentication and encryption keys. It also added `RetryForeverWithBackoff` to DeliveryRetryPolicy and long description details to the DeliveryRetryPolicy values."/>
1101 <Annotation Term="Redfish.Release" String="2020.4"/>
1102
1103 <EntityType Name="EventDestination" BaseType="EventDestination.v1_9_1.EventDestination"/>
1104
1105 <ComplexType Name="SNMPSettings" BaseType="EventDestination.v1_7_0.SNMPSettings">
1106 <Property Name="AuthenticationKeySet" Type="Edm.Boolean" Nullable="false">
1107 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1108 <Annotation Term="OData.Description" String="Indicates if the AuthenticationKey property is set."/>
1109 <Annotation Term="OData.LongDescription" String="This property shall contain `true` if a valid value was provided for the AuthenticationKey property. Otherwise, the property shall contain `false`."/>
1110 </Property>
1111 <Property Name="EncryptionKeySet" Type="Edm.Boolean" Nullable="false">
1112 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1113 <Annotation Term="OData.Description" String="Indicates if the EncryptionKey property is set."/>
1114 <Annotation Term="OData.LongDescription" String="This property shall contain `true` if a valid value was provided for the EncryptionKey property. Otherwise, the property shall contain `false`."/>
1115 </Property>
1116 </ComplexType>
1117 </Schema>
1118
Gunnar Mills10f270b2021-05-19 15:34:06 -05001119 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_10_1">
1120 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1121 <Annotation Term="OData.Description" String="This version was created to correct various description to use proper normative terminology."/>
1122 <EntityType Name="EventDestination" BaseType="EventDestination.v1_10_0.EventDestination"/>
1123 </Schema>
1124
Gunnar Mills9d424662021-09-22 21:56:16 -05001125 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_10_2">
1126 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1127 <Annotation Term="OData.Description" String="This version was created to improve the description of SyslogFilters."/>
1128 <EntityType Name="EventDestination" BaseType="EventDestination.v1_10_1.EventDestination"/>
1129 </Schema>
1130
Gunnar Mills60c922d2021-12-01 09:28:53 -06001131 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_10_3">
1132 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1133 <Annotation Term="OData.Description" String="This version was created to clarify the usage of the Destination property with server-sent events."/>
1134 <EntityType Name="EventDestination" BaseType="EventDestination.v1_10_2.EventDestination"/>
1135 </Schema>
1136
Sui Chen141d9432022-02-03 22:01:27 -08001137 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_10_4">
1138 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1139 <Annotation Term="OData.Description" String="This version was created to clarify the behavior of VerifyCertificate when not supported or specified."/>
1140 <EntityType Name="EventDestination" BaseType="EventDestination.v1_10_3.EventDestination"/>
1141 </Schema>
1142
Gunnar Mills9d424662021-09-22 21:56:16 -05001143 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_11_0">
1144 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1145 <Annotation Term="Redfish.Release" String="2021.2"/>
1146
1147 <EntityType Name="EventDestination" BaseType="EventDestination.v1_10_2.EventDestination">
1148 <Property Name="SendHeartbeat" Type="Edm.Boolean">
1149 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1150 <Annotation Term="OData.Description" String="Send a heartbeat event periodically to the destination."/>
1151 <Annotation Term="OData.LongDescription" String="This property shall indicate that the service shall periodically send the `RedfishServiceFunctional` message defined in the Heartbeat Event Message Registry to the subscriber. If this property is not present, no periodic event shall be sent. This property shall not apply to event destinations if the SubscriptionType property contains the value `SSE`."/>
1152 </Property>
1153 <Property Name="HeartbeatIntervalMinutes" Type="Edm.Int64">
1154 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1155 <Annotation Term="OData.Description" String="Interval for sending heartbeat events to the destination in minutes."/>
1156 <Annotation Term="OData.LongDescription" String="This property shall indicate the interval for sending periodic heartbeat events to the subscriber. The value shall be the interval, in minutes, between each periodic event. This property shall not be present if the SendHeartbeat property is not present."/>
1157 <Annotation Term="Validation.Minimum" Int="1"/>
1158 <Annotation Term="Validation.Maximum" Int="65535"/>
1159 </Property>
1160 <NavigationProperty Name="ClientCertificates" Type="CertificateCollection.CertificateCollection" ContainsTarget="true" Nullable="false">
1161 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1162 <Annotation Term="OData.Description" String="The link to a collection of client identity certificates provided to the server referenced by the Destination property."/>
1163 <Annotation Term="OData.LongDescription" String="This property shall contain a link to a resource collection of type CertificateCollection that represents the client identity certificates that are provided to the server referenced by the Destination property as part of TLS handshaking."/>
1164 <Annotation Term="OData.AutoExpandReferences"/>
1165 </NavigationProperty>
1166 </EntityType>
1167 </Schema>
1168
Gunnar Mills60c922d2021-12-01 09:28:53 -06001169 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_11_1">
1170 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1171 <Annotation Term="OData.Description" String="This version was created to clarify the usage of the Destination property with server-sent events."/>
1172 <EntityType Name="EventDestination" BaseType="EventDestination.v1_11_0.EventDestination"/>
1173 </Schema>
1174
Sui Chen141d9432022-02-03 22:01:27 -08001175 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_11_2">
1176 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1177 <Annotation Term="OData.Description" String="This version was created to clarify the behavior of VerifyCertificate when not supported or specified."/>
1178 <EntityType Name="EventDestination" BaseType="EventDestination.v1_11_1.EventDestination"/>
1179 </Schema>
1180
Jason M. Billsea4aa752018-06-05 13:29:11 -07001181 </edmx:DataServices>
1182</edmx:Edmx>