blob: 2955f724a509dd225a75285060f2c9e015c9d0c6 [file] [log] [blame]
Jason M. Billsea4aa752018-06-05 13:29:11 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!---->
3<!--################################################################################ -->
Ed Tanoused761212022-09-23 15:03:29 -07004<!--# Redfish Schema: EventDestination v1.12.0 -->
Jason M. Billsea4aa752018-06-05 13:29:11 -07005<!--# -->
6<!--# For a detailed change log, see the README file contained in the DSP8010 bundle, -->
7<!--# available at http://www.dmtf.org/standards/redfish -->
Ed Tanoused761212022-09-23 15:03:29 -07008<!--# Copyright 2014-2022 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 Tanoused761212022-09-23 15:03:29 -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 Tanoused761212022-09-23 15:03:29 -070070 <Action Name="SuspendSubscription" IsBound="true">
71 <Annotation Term="OData.Description" String="This action suspends an event subscription."/>
72 <Annotation Term="OData.LongDescription" String="This action shall suspend an event subscription. No events shall be sent to the event destination until invocation of the ResumeSubscription action. The value of the State property within Status shall contain `Disabled` for a suspended subscription. The service may buffer events while the subscription is suspended."/>
73 <Parameter Name="EventDestination" Type="EventDestination.v1_2_0.Actions"/>
74 <Annotation Term="Redfish.Revisions">
75 <Collection>
76 <Record>
77 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
78 <PropertyValue Property="Version" String="v1_12_0"/>
79 </Record>
80 </Collection>
81 </Annotation>
82 </Action>
83
Ed Tanouscb103132019-10-08 11:34:22 -070084 <Action Name="ResumeSubscription" IsBound="true">
85 <Annotation Term="OData.Description" String="This action resumes a suspended event subscription."/>
Ed Tanoused761212022-09-23 15:03:29 -070086 <Annotation Term="OData.LongDescription" String="This action shall resume a suspended event subscription, which affects the subscription status. The service may deliver buffered events when the subscription is resumed."/>
Ed Tanouscb103132019-10-08 11:34:22 -070087 <Parameter Name="EventDestination" Type="EventDestination.v1_2_0.Actions"/>
Ed Tanoused761212022-09-23 15:03:29 -070088 <Parameter Name="DeliverBufferedEventDuration" Type="Edm.Duration">
89 <Annotation Term="OData.Description" String="The maximum age of buffered events that should be delivered when resuming the subscription."/>
90 <Annotation Term="OData.LongDescription" String="This parameter shall indicate the event age of any buffered or otherwise undelivered events that shall be delivered to this event destination when the subscription is resumed. The service shall deliver any available, previously undelivered event that was created within the duration specified. A value that equates to zero time, such as `PT0S`, shall indicate that no previously undelivered events shall be sent. If undelivered events within the duration may been discarded due to a lack of buffer space, the service should send the EventBufferExceeded message from the Base Message Registry. If the client does not provide this parameter, the service shall apply an implementation specific duration."/>
91 <Annotation Term="Redfish.Revisions">
92 <Collection>
93 <Record>
94 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
95 <PropertyValue Property="Version" String="v1_12_0"/>
96 </Record>
97 </Collection>
98 </Annotation>
99 </Parameter>
Ed Tanouscb103132019-10-08 11:34:22 -0700100 </Action>
101
Ed Tanous530520e2019-01-02 13:41:37 -0800102 <EnumType Name="EventFormatType">
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600103 <Annotation Term="Redfish.Revisions">
104 <Collection>
105 <Record>
106 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
107 <PropertyValue Property="Version" String="v1_4_0"/>
108 </Record>
109 </Collection>
110 </Annotation>
Ed Tanous530520e2019-01-02 13:41:37 -0800111 <Member Name="Event">
Gunnar Mills262d7d42021-01-20 16:28:41 -0600112 <Annotation Term="OData.Description" String="The subscription destination receives an event payload."/>
113 <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 -0800114 </Member>
115 <Member Name="MetricReport">
Gunnar Mills262d7d42021-01-20 16:28:41 -0600116 <Annotation Term="OData.Description" String="The subscription destination receives a metric report."/>
117 <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 -0800118 </Member>
119 </EnumType>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700120 </Schema>
121
122 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_0_0">
123 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600124 <Annotation Term="Redfish.Release" String="1.0"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700125
126 <EntityType Name="EventDestination" BaseType="EventDestination.EventDestination">
127 <Property Name="Destination" Type="Edm.String" Nullable="false">
128 <Annotation Term="Redfish.RequiredOnCreate"/>
129 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700130 <Annotation Term="OData.Description" String="The URI of the destination event receiver."/>
Gunnar Mills60c922d2021-12-01 09:28:53 -0600131 <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 -0700132 <Annotation Term="OData.IsURL"/>
133 </Property>
134 <Property Name="EventTypes" Type="Collection(Event.EventType)" Nullable="false">
Jason M. Billsea4aa752018-06-05 13:29:11 -0700135 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700136 <Annotation Term="OData.Description" String="The types of events that are sent to the destination."/>
Ed Tanoused761212022-09-23 15:03:29 -0700137 <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`."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700138 <Annotation Term="Redfish.Revisions">
139 <Collection>
140 <Record>
141 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
142 <PropertyValue Property="Version" String="v1_5_0"/>
Ed Tanoused761212022-09-23 15:03:29 -0700143 <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`."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700144 </Record>
145 </Collection>
146 </Annotation>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700147 </Property>
148 <Property Name="Context" Type="Edm.String">
149 <Annotation Term="Redfish.Required"/>
150 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
151 <Annotation Term="OData.Description" String="A client-supplied string that is stored with the event destination subscription."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700152 <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 -0700153 </Property>
154 <Property Name="Protocol" Type="EventDestination.v1_0_0.EventDestinationProtocol" Nullable="false">
155 <Annotation Term="Redfish.RequiredOnCreate"/>
156 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
157 <Annotation Term="OData.Description" String="The protocol type of the event connection."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700158 <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 -0700159 </Property>
160 <Property Name="HttpHeaders" Type="Collection(EventDestination.v1_0_0.HttpHeaderProperty)" Nullable="false">
Ed Tanouscb103132019-10-08 11:34:22 -0700161 <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."/>
Ed Tanoused761212022-09-23 15:03:29 -0700162 <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 -0700163 </Property>
164 </EntityType>
165
166 <EnumType Name="EventDestinationProtocol">
167 <Member Name="Redfish">
Ed Tanouscb103132019-10-08 11:34:22 -0700168 <Annotation Term="OData.Description" String="The destination follows the Redfish Specification for event notifications."/>
Gunnar Mills262d7d42021-01-20 16:28:41 -0600169 <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 -0700170 </Member>
Gunnar Mills6f44b752020-02-06 16:50:51 -0600171 <Member Name="SNMPv1">
172 <Annotation Term="OData.Description" String="The destination follows the SNMPv1 protocol for event notifications."/>
173 <Annotation Term="OData.LongDescription" String="This value shall indicate the destination follows the RFC1157-defined SNMPv1 protocol."/>
174 <Annotation Term="Redfish.Revisions">
175 <Collection>
176 <Record>
177 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
178 <PropertyValue Property="Version" String="v1_7_0"/>
179 </Record>
180 </Collection>
181 </Annotation>
182 </Member>
183 <Member Name="SNMPv2c">
184 <Annotation Term="OData.Description" String="The destination follows the SNMPv2c protocol for event notifications."/>
185 <Annotation Term="OData.LongDescription" String="This value shall indicate the destination follows the SNMPv2c protocol as defined by RFC1441 and RFC1452."/>
186 <Annotation Term="Redfish.Revisions">
187 <Collection>
188 <Record>
189 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
190 <PropertyValue Property="Version" String="v1_7_0"/>
191 </Record>
192 </Collection>
193 </Annotation>
194 </Member>
195 <Member Name="SNMPv3">
196 <Annotation Term="OData.Description" String="The destination follows the SNMPv3 protocol for event notifications."/>
197 <Annotation Term="OData.LongDescription" String="This value shall indicate the destination follows the SNMPv3 protocol as defined by RFC3411 and RFC3418."/>
198 <Annotation Term="Redfish.Revisions">
199 <Collection>
200 <Record>
201 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
202 <PropertyValue Property="Version" String="v1_7_0"/>
203 </Record>
204 </Collection>
205 </Annotation>
206 </Member>
207 <Member Name="SMTP">
208 <Annotation Term="OData.Description" String="The destination follows the SMTP specification for event notifications."/>
209 <Annotation Term="OData.LongDescription" String="This value shall indicate the destination follows the RFC5321-defined SMTP specification."/>
210 <Annotation Term="Redfish.Revisions">
211 <Collection>
212 <Record>
213 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
214 <PropertyValue Property="Version" String="v1_7_0"/>
215 </Record>
216 </Collection>
217 </Annotation>
218 </Member>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500219 <Member Name="SyslogTLS">
220 <Annotation Term="OData.Description" String="The destination follows syslog TLS-based for event notifications."/>
221 <Annotation Term="OData.LongDescription" String="This value shall indicate the destination follows the TLS-based transport for syslog as defined in RFC5424."/>
222 <Annotation Term="Redfish.Revisions">
223 <Collection>
224 <Record>
225 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
226 <PropertyValue Property="Version" String="v1_9_0"/>
227 </Record>
228 </Collection>
229 </Annotation>
230 </Member>
231 <Member Name="SyslogTCP">
232 <Annotation Term="OData.Description" String="The destination follows syslog TCP-based for event notifications."/>
233 <Annotation Term="OData.LongDescription" String="This value shall indicate the destination follows the TCP-based transport for syslog as defined in RFC6587."/>
234 <Annotation Term="Redfish.Revisions">
235 <Collection>
236 <Record>
237 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
238 <PropertyValue Property="Version" String="v1_9_0"/>
239 </Record>
240 </Collection>
241 </Annotation>
242 </Member>
243 <Member Name="SyslogUDP">
244 <Annotation Term="OData.Description" String="The destination follows syslog UDP-based for event notifications."/>
245 <Annotation Term="OData.LongDescription" String="This value shall indicate the destination follows the UDP-based transport for syslog as defined in RFC5424."/>
246 <Annotation Term="Redfish.Revisions">
247 <Collection>
248 <Record>
249 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
250 <PropertyValue Property="Version" String="v1_9_0"/>
251 </Record>
252 </Collection>
253 </Annotation>
254 </Member>
255 <Member Name="SyslogRELP">
256 <Annotation Term="OData.Description" String="The destination follows syslog RELP for event notifications."/>
257 <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."/>
258 <Annotation Term="Redfish.Revisions">
259 <Collection>
260 <Record>
261 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
262 <PropertyValue Property="Version" String="v1_9_0"/>
263 </Record>
264 </Collection>
265 </Annotation>
266 </Member>
267 <Member Name="OEM">
268 <Annotation Term="OData.Description" String="The destination follows an OEM protocol for event notifications."/>
269 <Annotation Term="OData.LongDescription" String="This value shall indicate an OEM specific protocol. The OEMProtocol property shall contain the specific OEM event destination protocol."/>
270 <Annotation Term="Redfish.Revisions">
271 <Collection>
272 <Record>
273 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
274 <PropertyValue Property="Version" String="v1_9_0"/>
275 </Record>
276 </Collection>
277 </Annotation>
278 </Member>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700279 </EnumType>
280
281 <ComplexType Name="HttpHeaderProperty">
282 <Annotation Term="OData.AdditionalProperties" Bool="false"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700283 <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 -0600284 <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 -0700285 <Annotation Term="Redfish.DynamicPropertyPatterns">
286 <Collection>
287 <Record>
288 <PropertyValue Property="Pattern" String="^[^:\\s]+$"/>
289 <PropertyValue Property="Type" String="Edm.String"/>
290 </Record>
291 </Collection>
292 </Annotation>
293 </ComplexType>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700294 </Schema>
295
296 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_0_2">
297 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
298 <Annotation Term="OData.Description" String="This version was created to show annotations in previous namespaces were updated."/>
299 <EntityType Name="EventDestination" BaseType="EventDestination.v1_0_0.EventDestination"/>
300 </Schema>
301
302 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_0_3">
303 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanoused761212022-09-23 15:03:29 -0700304 <Annotation Term="OData.Description" String="This version was created to add explicit permissions annotations to all properties for clarity."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700305 <EntityType Name="EventDestination" BaseType="EventDestination.v1_0_2.EventDestination"/>
306 </Schema>
307
308 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_0_4">
309 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
310 <Annotation Term="OData.Description" String="This version was created to show annotations in previous namespaces were updated."/>
311 <EntityType Name="EventDestination" BaseType="EventDestination.v1_0_3.EventDestination"/>
312 </Schema>
313
314 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_0_5">
315 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700316 <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 -0700317 <EntityType Name="EventDestination" BaseType="EventDestination.v1_0_4.EventDestination"/>
318 </Schema>
319
Ed Tanous530520e2019-01-02 13:41:37 -0800320 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_0_6">
321 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
322 <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."/>
323 <EntityType Name="EventDestination" BaseType="EventDestination.v1_0_5.EventDestination"/>
324 </Schema>
325
Ed Tanouscb103132019-10-08 11:34:22 -0700326 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_0_7">
327 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
328 <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."/>
329 <EntityType Name="EventDestination" BaseType="EventDestination.v1_0_6.EventDestination"/>
330 </Schema>
331
332 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_0_8">
333 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
334 <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."/>
335 <EntityType Name="EventDestination" BaseType="EventDestination.v1_0_7.EventDestination"/>
336 </Schema>
337
Gunnar Mills262d7d42021-01-20 16:28:41 -0600338 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_0_9">
339 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
340 <Annotation Term="OData.Description" String="This version was created to improve the descriptions for EventFormatType and EventDestinationProtocol."/>
341 <EntityType Name="EventDestination" BaseType="EventDestination.v1_0_8.EventDestination"/>
342 </Schema>
343
Gunnar Mills60c922d2021-12-01 09:28:53 -0600344 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_0_10">
345 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
346 <Annotation Term="OData.Description" String="This version was created to clarify the usage of the Destination property with server-sent events."/>
347 <EntityType Name="EventDestination" BaseType="EventDestination.v1_0_9.EventDestination"/>
348 </Schema>
349
Ed Tanoused761212022-09-23 15:03:29 -0700350 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_0_11">
351 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
352 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
353 <EntityType Name="EventDestination" BaseType="EventDestination.v1_0_10.EventDestination"/>
354 </Schema>
355
Jason M. Billsea4aa752018-06-05 13:29:11 -0700356 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_1_0">
357 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600358 <Annotation Term="Redfish.Release" String="2016.2"/>
Gunnar Mills60c922d2021-12-01 09:28:53 -0600359
Jason M. Billsea4aa752018-06-05 13:29:11 -0700360 <EntityType Name="EventDestination" BaseType="EventDestination.v1_0_2.EventDestination">
361 <NavigationProperty Name="OriginResources" Type="Collection(Resource.ItemOrCollection)">
362 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanoused761212022-09-23 15:03:29 -0700363 <Annotation Term="OData.Description" String="The array of resources for which the service sends only related events."/>
364 <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 event that the service sends to the subscriber. Events with an OriginOfCondition that is not contained in this array, and is not subordinate to members of this array if SubordinateResources contains the value `true`, shall not be sent to the subscriber. If this property is an empty array or is absent, no filtering based upon the URI of the OriginOfCondition of an event is performed."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700365 </NavigationProperty>
366 <Property Name="MessageIds" Type="Collection(Edm.String)">
367 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanoused761212022-09-23 15:03:29 -0700368 <Annotation Term="OData.Description" String="The list of MessageIds that are sent to this event destination."/>
369 <Annotation Term="OData.LongDescription" String="This property shall contain an array of MessageIds that are the allowable values for the MessageId property within an event sent to the subscriber. The MessageId should be in the `MessageRegistry.MessageId` format. If included, the MessageId major and minor version details should be ignored. Events with a MessageId that is not contained in this array and is not from a message registry contained in RegistryPrefixes shall not be sent to the subscriber. If this property is an empty array or is absent, no inclusive filtering based upon the MessageId of an event is performed."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700370 </Property>
371 </EntityType>
372 </Schema>
373
374 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_1_1">
375 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanoused761212022-09-23 15:03:29 -0700376 <Annotation Term="OData.Description" String="This version was created to add explicit permissions annotations to all properties for clarity."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700377 <EntityType Name="EventDestination" BaseType="EventDestination.v1_1_0.EventDestination"/>
378 </Schema>
379
380 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_1_2">
381 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
382 <Annotation Term="OData.Description" String="This version was created to show annotations in previous namespaces were updated."/>
383 <EntityType Name="EventDestination" BaseType="EventDestination.v1_1_1.EventDestination"/>
384 </Schema>
385
386 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_1_3">
387 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
388 <Annotation Term="OData.Description" String="This version was created to show annotations in previous namespaces were updated."/>
389 <EntityType Name="EventDestination" BaseType="EventDestination.v1_1_2.EventDestination"/>
390 </Schema>
391
392 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_1_4">
393 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700394 <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 -0700395 <EntityType Name="EventDestination" BaseType="EventDestination.v1_1_3.EventDestination"/>
396 </Schema>
397
Ed Tanous530520e2019-01-02 13:41:37 -0800398 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_1_5">
399 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
400 <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."/>
401 <EntityType Name="EventDestination" BaseType="EventDestination.v1_1_4.EventDestination"/>
402 </Schema>
403
Ed Tanouscb103132019-10-08 11:34:22 -0700404 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_1_6">
405 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
406 <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."/>
407 <EntityType Name="EventDestination" BaseType="EventDestination.v1_1_5.EventDestination"/>
408 </Schema>
409
410 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_1_7">
411 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
412 <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."/>
413 <EntityType Name="EventDestination" BaseType="EventDestination.v1_1_6.EventDestination"/>
414 </Schema>
415
Gunnar Mills262d7d42021-01-20 16:28:41 -0600416 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_1_8">
417 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
418 <Annotation Term="OData.Description" String="This version was created to improve the descriptions for EventFormatType and EventDestinationProtocol."/>
419 <EntityType Name="EventDestination" BaseType="EventDestination.v1_1_7.EventDestination"/>
420 </Schema>
421
Gunnar Mills60c922d2021-12-01 09:28:53 -0600422 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_1_9">
423 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
424 <Annotation Term="OData.Description" String="This version was created to clarify the usage of the Destination property with server-sent events."/>
425 <EntityType Name="EventDestination" BaseType="EventDestination.v1_1_8.EventDestination"/>
426 </Schema>
427
Ed Tanoused761212022-09-23 15:03:29 -0700428 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_1_10">
429 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
430 <Annotation Term="OData.Description" String="This version was created to clarify the format of the MessageId in the MessageIds property."/>
431 <EntityType Name="EventDestination" BaseType="EventDestination.v1_1_9.EventDestination"/>
432 </Schema>
433
Jason M. Billsea4aa752018-06-05 13:29:11 -0700434 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_2_0">
435 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600436 <Annotation Term="Redfish.Release" String="2017.1"/>
Gunnar Mills60c922d2021-12-01 09:28:53 -0600437
Jason M. Billsea4aa752018-06-05 13:29:11 -0700438 <EntityType Name="EventDestination" BaseType="EventDestination.v1_1_2.EventDestination">
439 <Property Name="Actions" Type="EventDestination.v1_2_0.Actions" Nullable="false">
Ed Tanoused761212022-09-23 15:03:29 -0700440 <Annotation Term="OData.Description" String="The available actions for this resource."/>
441 <Annotation Term="OData.LongDescription" String="This property shall contain the available actions for this resource."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700442 </Property>
443 </EntityType>
444
445 <ComplexType Name="Actions">
446 <Annotation Term="OData.AdditionalProperties" Bool="false"/>
Ed Tanoused761212022-09-23 15:03:29 -0700447 <Annotation Term="OData.Description" String="The available actions for this resource."/>
448 <Annotation Term="OData.LongDescription" String="This type shall contain the available actions for this resource."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800449 <Property Name="Oem" Type="EventDestination.v1_2_0.OemActions" Nullable="false">
Ed Tanoused761212022-09-23 15:03:29 -0700450 <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/>
451 <Annotation Term="OData.LongDescription" String="This property shall contain the available OEM-specific actions for this resource."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800452 </Property>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700453 </ComplexType>
454
455 <ComplexType Name="OemActions">
456 <Annotation Term="OData.AdditionalProperties" Bool="true"/>
Ed Tanoused761212022-09-23 15:03:29 -0700457 <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/>
458 <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 -0700459 </ComplexType>
460 </Schema>
461
462 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_2_1">
463 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
464 <Annotation Term="OData.Description" String="This version was created to show annotations in previous namespaces were updated."/>
465 <EntityType Name="EventDestination" BaseType="EventDestination.v1_2_0.EventDestination"/>
466 </Schema>
467
468 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_2_2">
469 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700470 <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 -0700471 <EntityType Name="EventDestination" BaseType="EventDestination.v1_2_1.EventDestination"/>
472 </Schema>
473
Ed Tanous530520e2019-01-02 13:41:37 -0800474 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_2_3">
475 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
476 <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."/>
477 <EntityType Name="EventDestination" BaseType="EventDestination.v1_2_2.EventDestination"/>
478 </Schema>
479
Ed Tanouscb103132019-10-08 11:34:22 -0700480 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_2_4">
481 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
482 <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."/>
483 <EntityType Name="EventDestination" BaseType="EventDestination.v1_2_3.EventDestination"/>
484 </Schema>
485
486 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_2_5">
487 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
488 <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."/>
489 <EntityType Name="EventDestination" BaseType="EventDestination.v1_2_4.EventDestination"/>
490 </Schema>
491
Gunnar Mills262d7d42021-01-20 16:28:41 -0600492 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_2_6">
493 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
494 <Annotation Term="OData.Description" String="This version was created to improve the descriptions for EventFormatType and EventDestinationProtocol."/>
495 <EntityType Name="EventDestination" BaseType="EventDestination.v1_2_5.EventDestination"/>
496 </Schema>
497
Gunnar Mills60c922d2021-12-01 09:28:53 -0600498 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_2_7">
499 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
500 <Annotation Term="OData.Description" String="This version was created to clarify the usage of the Destination property with server-sent events."/>
501 <EntityType Name="EventDestination" BaseType="EventDestination.v1_2_6.EventDestination"/>
502 </Schema>
503
Ed Tanoused761212022-09-23 15:03:29 -0700504 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_2_8">
505 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
506 <Annotation Term="OData.Description" String="This version was created to clarify the format of the MessageId in the MessageIds property."/>
507 <EntityType Name="EventDestination" BaseType="EventDestination.v1_2_7.EventDestination"/>
508 </Schema>
509
Jason M. Billsea4aa752018-06-05 13:29:11 -0700510 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_3_0">
511 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600512 <Annotation Term="Redfish.Release" String="2018.1"/>
Gunnar Mills60c922d2021-12-01 09:28:53 -0600513
Jason M. Billsea4aa752018-06-05 13:29:11 -0700514 <EntityType Name="EventDestination" BaseType="EventDestination.v1_2_2.EventDestination">
515 <Property Name="SubscriptionType" Type="EventDestination.v1_3_0.SubscriptionType">
516 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700517 <Annotation Term="OData.Description" String="The subscription type for events."/>
518 <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 -0700519 <Annotation Term="Redfish.Required"/>
520 </Property>
521 </EntityType>
522
523 <EnumType Name="SubscriptionType">
524 <Member Name="RedfishEvent">
Ed Tanouscb103132019-10-08 11:34:22 -0700525 <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 -0700526 </Member>
527 <Member Name="SSE">
Gunnar Mills60c922d2021-12-01 09:28:53 -0600528 <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 -0700529 </Member>
Gunnar Mills6f44b752020-02-06 16:50:51 -0600530 <Member Name="SNMPTrap">
531 <Annotation Term="OData.Description" String="The subscription follows the various versions of SNMP Traps for event notifications."/>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500532 <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 -0600533 <Annotation Term="Redfish.Revisions">
534 <Collection>
535 <Record>
536 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
537 <PropertyValue Property="Version" String="v1_7_0"/>
538 </Record>
539 </Collection>
540 </Annotation>
541 </Member>
542 <Member Name="SNMPInform">
543 <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 -0500544 <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 -0600545 <Annotation Term="Redfish.Revisions">
546 <Collection>
547 <Record>
548 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
549 <PropertyValue Property="Version" String="v1_7_0"/>
550 </Record>
551 </Collection>
552 </Annotation>
553 </Member>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500554 <Member Name="Syslog">
555 <Annotation Term="OData.Description" String="The subscription sends Syslog messages for event notifications."/>
556 <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."/>
557 <Annotation Term="Redfish.Revisions">
558 <Collection>
559 <Record>
560 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
561 <PropertyValue Property="Version" String="v1_9_0"/>
562 </Record>
563 </Collection>
564 </Annotation>
565 </Member>
566 <Member Name="OEM">
567 <Annotation Term="OData.Description" String="The subscription is an OEM subscription."/>
568 <Annotation Term="OData.LongDescription" String="This value shall indicate an OEM subscription type. The OEMSubscriptionType property shall contain the specific OEM subscription type."/>
569 <Annotation Term="Redfish.Revisions">
570 <Collection>
571 <Record>
572 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
573 <PropertyValue Property="Version" String="v1_9_0"/>
574 </Record>
575 </Collection>
576 </Annotation>
577 </Member>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700578 </EnumType>
579 </Schema>
580
Ed Tanous530520e2019-01-02 13:41:37 -0800581 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_3_1">
582 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
583 <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."/>
584 <EntityType Name="EventDestination" BaseType="EventDestination.v1_3_0.EventDestination"/>
585 </Schema>
586
Ed Tanouscb103132019-10-08 11:34:22 -0700587 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_3_2">
588 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
589 <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."/>
590 <EntityType Name="EventDestination" BaseType="EventDestination.v1_3_1.EventDestination"/>
591 </Schema>
592
593 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_3_3">
594 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
595 <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."/>
596 <EntityType Name="EventDestination" BaseType="EventDestination.v1_3_2.EventDestination"/>
597 </Schema>
598
Gunnar Mills262d7d42021-01-20 16:28:41 -0600599 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_3_4">
600 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
601 <Annotation Term="OData.Description" String="This version was created to improve the descriptions for EventFormatType and EventDestinationProtocol."/>
602 <EntityType Name="EventDestination" BaseType="EventDestination.v1_3_3.EventDestination"/>
603 </Schema>
604
Gunnar Mills60c922d2021-12-01 09:28:53 -0600605 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_3_5">
606 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
607 <Annotation Term="OData.Description" String="This version was created to clarify the usage of the Destination property with server-sent events."/>
608 <EntityType Name="EventDestination" BaseType="EventDestination.v1_3_4.EventDestination"/>
609 </Schema>
610
Ed Tanoused761212022-09-23 15:03:29 -0700611 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_3_6">
612 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
613 <Annotation Term="OData.Description" String="This version was created to clarify the format of the MessageId in the MessageIds property."/>
614 <EntityType Name="EventDestination" BaseType="EventDestination.v1_3_5.EventDestination"/>
615 </Schema>
616
Ed Tanous530520e2019-01-02 13:41:37 -0800617 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_4_0">
618 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600619 <Annotation Term="Redfish.Release" String="2018.2"/>
Ed Tanous530520e2019-01-02 13:41:37 -0800620 <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 -0600621
Ed Tanous530520e2019-01-02 13:41:37 -0800622 <EntityType Name="EventDestination" BaseType="EventDestination.v1_3_0.EventDestination">
623 <Property Name="RegistryPrefixes" Type="Collection(Edm.String)">
624 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanoused761212022-09-23 15:03:29 -0700625 <Annotation Term="OData.Description" String="The list of prefixes for the message registries that contain the MessageIds that are sent to this event destination."/>
626 <Annotation Term="OData.LongDescription" String="This property shall contain an array the prefixes of message registries that contain the MessageIds that are the allowable values for the MessageId property within an event sent to the subscriber. Events with a MessageId that is not from a message registry contained in this array and is not contained by MessageIds shall not be sent to the subscriber. If this property is an empty array or is absent, no inclusive filtering based upon message registry of the MessageId of an event is performed."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800627 </Property>
628 <Property Name="ResourceTypes" Type="Collection(Edm.String)">
629 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanoused761212022-09-23 15:03:29 -0700630 <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."/>
631 <Annotation Term="OData.LongDescription" String="This property shall specify an array of resource type values that contain the allowable resource types for the resource referenced by the OriginOfCondition property. Events with the resource type of the resource referenced by the OriginOfCondition property that is not contained in this array shall not be sent to the subscriber. If this property is an empty array or is absent, no filtering based upon the resource type of the OriginOfCondition of an event is performed. 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 -0800632 </Property>
633 <Property Name="SubordinateResources" Type="Edm.Boolean">
634 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanoused761212022-09-23 15:03:29 -0700635 <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."/>
636 <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 -0800637 </Property>
638 <Property Name="EventFormatType" Type="EventDestination.EventFormatType">
639 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700640 <Annotation Term="OData.Description" String="The content types of the message that are sent to the EventDestination."/>
641 <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 -0800642 </Property>
643 </EntityType>
644 </Schema>
645
Ed Tanouscb103132019-10-08 11:34:22 -0700646 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_4_1">
647 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
648 <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."/>
649 <EntityType Name="EventDestination" BaseType="EventDestination.v1_4_0.EventDestination"/>
650 </Schema>
651
652 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_4_2">
653 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
654 <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."/>
655 <EntityType Name="EventDestination" BaseType="EventDestination.v1_4_1.EventDestination"/>
656 </Schema>
657
Gunnar Mills262d7d42021-01-20 16:28:41 -0600658 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_4_3">
659 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
660 <Annotation Term="OData.Description" String="This version was created to improve the descriptions for EventFormatType and EventDestinationProtocol."/>
661 <EntityType Name="EventDestination" BaseType="EventDestination.v1_4_2.EventDestination"/>
662 </Schema>
663
Gunnar Mills60c922d2021-12-01 09:28:53 -0600664 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_4_4">
665 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
666 <Annotation Term="OData.Description" String="This version was created to clarify the usage of the Destination property with server-sent events."/>
667 <EntityType Name="EventDestination" BaseType="EventDestination.v1_4_3.EventDestination"/>
668 </Schema>
669
Ed Tanoused761212022-09-23 15:03:29 -0700670 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_4_5">
671 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
672 <Annotation Term="OData.Description" String="This version was created to clarify the format of the MessageId in the MessageIds property."/>
673 <EntityType Name="EventDestination" BaseType="EventDestination.v1_4_4.EventDestination"/>
674 </Schema>
675
Ed Tanouscb103132019-10-08 11:34:22 -0700676 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_5_0">
677 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
678 <Annotation Term="Redfish.Release" String="2019.1"/>
679 <Annotation Term="OData.Description" String="This version was created to deprecate the EventTypes property."/>
Gunnar Mills60c922d2021-12-01 09:28:53 -0600680
Ed Tanouscb103132019-10-08 11:34:22 -0700681 <EntityType Name="EventDestination" BaseType="EventDestination.v1_4_1.EventDestination"/>
682 </Schema>
683
684 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_5_1">
685 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
686 <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."/>
687 <EntityType Name="EventDestination" BaseType="EventDestination.v1_5_0.EventDestination"/>
688 </Schema>
689
Gunnar Mills262d7d42021-01-20 16:28:41 -0600690 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_5_2">
691 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
692 <Annotation Term="OData.Description" String="This version was created to improve the descriptions for EventFormatType and EventDestinationProtocol."/>
693 <EntityType Name="EventDestination" BaseType="EventDestination.v1_5_1.EventDestination"/>
694 </Schema>
695
Gunnar Mills60c922d2021-12-01 09:28:53 -0600696 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_5_3">
697 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
698 <Annotation Term="OData.Description" String="This version was created to clarify the usage of the Destination property with server-sent events."/>
699 <EntityType Name="EventDestination" BaseType="EventDestination.v1_5_2.EventDestination"/>
700 </Schema>
701
Ed Tanoused761212022-09-23 15:03:29 -0700702 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_5_4">
703 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
704 <Annotation Term="OData.Description" String="This version was created to clarify the format of the MessageId in the MessageIds property."/>
705 <EntityType Name="EventDestination" BaseType="EventDestination.v1_5_3.EventDestination"/>
706 </Schema>
707
Ed Tanouscb103132019-10-08 11:34:22 -0700708 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_6_0">
709 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
710 <Annotation Term="Redfish.Release" String="2019.2"/>
711 <Annotation Term="OData.Description" String="This version was created to add DeliveryRetryPolicy."/>
Gunnar Mills6f44b752020-02-06 16:50:51 -0600712
Ed Tanouscb103132019-10-08 11:34:22 -0700713 <EntityType Name="EventDestination" BaseType="EventDestination.v1_5_0.EventDestination">
714 <Property Name="DeliveryRetryPolicy" Type="EventDestination.v1_6_0.DeliveryRetryPolicy">
715 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
Gunnar Mills262d7d42021-01-20 16:28:41 -0600716 <Annotation Term="OData.Description" String="The subscription delivery retry policy for events, where the subscription type is RedfishEvent."/>
717 <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 -0700718 </Property>
719 <Property Name="Status" Type="Resource.Status" Nullable="false">
720 <Annotation Term="OData.Description" String="This property shall contain the status of the subscription."/>
721 <Annotation Term="OData.LongDescription" String="This property shall contain the status of the subscription."/>
722 </Property>
723 <NavigationProperty Name="MetricReportDefinitions" Type="Collection(MetricReportDefinition.MetricReportDefinition)">
724 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
725 <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."/>
726 <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."/>
727 </NavigationProperty>
728 </EntityType>
729
730 <EnumType Name="DeliveryRetryPolicy">
731 <Member Name="TerminateAfterRetries">
732 <Annotation Term="OData.Description" String="The subscription is terminated after the maximum number of retries is reached."/>
Gunnar Mills10f270b2021-05-19 15:34:06 -0500733 <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 -0700734 </Member>
735 <Member Name="SuspendRetries">
736 <Annotation Term="OData.Description" String="The subscription is suspended after the maximum number of retries is reached."/>
Ed Tanoused761212022-09-23 15:03:29 -0700737 <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. The value of the State property within Status shall contain `Disabled` for a suspended subscription."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700738 </Member>
739 <Member Name="RetryForever">
Gunnar Mills262d7d42021-01-20 16:28:41 -0600740 <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 -0500741 <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 -0600742 </Member>
743 <Member Name="RetryForeverWithBackoff">
744 <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 -0500745 <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 -0600746 <Annotation Term="Redfish.Revisions">
747 <Collection>
748 <Record>
749 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
750 <PropertyValue Property="Version" String="v1_10_0"/>
751 </Record>
752 </Collection>
753 </Annotation>
Ed Tanouscb103132019-10-08 11:34:22 -0700754 </Member>
755 </EnumType>
756 </Schema>
757
Gunnar Mills844b4152020-06-22 12:44:09 -0500758 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_6_1">
759 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
760 <Annotation Term="OData.Description" String="This version was created to correct typographic errors in DeliveryRetryPolicy."/>
761 <EntityType Name="EventDestination" BaseType="EventDestination.v1_6_0.EventDestination"/>
762 </Schema>
763
Gunnar Mills262d7d42021-01-20 16:28:41 -0600764 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_6_2">
765 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
766 <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."/>
767 <EntityType Name="EventDestination" BaseType="EventDestination.v1_6_1.EventDestination"/>
768 </Schema>
769
Gunnar Mills10f270b2021-05-19 15:34:06 -0500770 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_6_3">
771 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
772 <Annotation Term="OData.Description" String="This version was created to correct various description to use proper normative terminology."/>
773 <EntityType Name="EventDestination" BaseType="EventDestination.v1_6_2.EventDestination"/>
774 </Schema>
775
Gunnar Mills60c922d2021-12-01 09:28:53 -0600776 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_6_4">
777 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
778 <Annotation Term="OData.Description" String="This version was created to clarify the usage of the Destination property with server-sent events."/>
779 <EntityType Name="EventDestination" BaseType="EventDestination.v1_6_3.EventDestination"/>
780 </Schema>
781
Ed Tanoused761212022-09-23 15:03:29 -0700782 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_6_5">
783 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
784 <Annotation Term="OData.Description" String="This version was created to clarify the format of the MessageId in the MessageIds property."/>
785 <EntityType Name="EventDestination" BaseType="EventDestination.v1_6_4.EventDestination"/>
786 </Schema>
787
Gunnar Mills6f44b752020-02-06 16:50:51 -0600788 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_7_0">
789 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
790 <Annotation Term="Redfish.Release" String="2019.3"/>
791 <Annotation Term="OData.Description" String="This version was created to add SMTP and SNMP to EventDestinationProtocol, and SNMP to SubscriptionType."/>
792
793 <EntityType Name="EventDestination" BaseType="EventDestination.v1_6_0.EventDestination">
794 <Property Name="SNMP" Type="EventDestination.v1_7_0.SNMPSettings" Nullable="false">
795 <Annotation Term="OData.Description" String="Settings for an SNMP event destination."/>
796 <Annotation Term="OData.LongDescription" String="This property shall contain the settings for an SNMP event destination."/>
797 </Property>
798 </EntityType>
799
800 <ComplexType Name="SNMPSettings">
801 <Annotation Term="OData.AdditionalProperties" Bool="false"/>
802 <Annotation Term="OData.Description" String="Settings for an SNMP event destination."/>
803 <Annotation Term="OData.LongDescription" String="This type shall contain the settings for an SNMP event destination."/>
804 <Property Name="TrapCommunity" Type="Edm.String">
805 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
806 <Annotation Term="OData.Description" String="The SNMP trap community string."/>
807 <Annotation Term="OData.LongDescription" String="This property shall contain the SNMP trap community string. The value shall be `null` in responses."/>
808 </Property>
809 <Property Name="AuthenticationKey" Type="Edm.String">
810 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
811 <Annotation Term="OData.Description" String="The secret authentication key for SNMPv3."/>
Gunnar Mills262d7d42021-01-20 16:28:41 -0600812 <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."/>
813 <Annotation Term="Validation.Pattern" String="(^[ !#-~]+$)|(^Passphrase:[ ^[ !#-~]+$)|(^Hex:[0-9A-Fa-f]{24,96})|(^\*+$)"/>
Gunnar Mills6f44b752020-02-06 16:50:51 -0600814 </Property>
815 <Property Name="AuthenticationProtocol" Type="EventDestination.v1_7_0.SNMPAuthenticationProtocols">
816 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
817 <Annotation Term="OData.Description" String="The authentication protocol for SNMPv3."/>
818 <Annotation Term="OData.LongDescription" String="This property shall contain the SNMPv3 authentication protocol."/>
819 </Property>
820 <Property Name="EncryptionKey" Type="Edm.String">
821 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
822 <Annotation Term="OData.Description" String="The secret authentication key for SNMPv3."/>
Gunnar Mills262d7d42021-01-20 16:28:41 -0600823 <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 -0600824 <Annotation Term="Validation.Pattern" String="(^[A-Za-z0-9]+$)|(^\*+$)"/>
825 </Property>
826 <Property Name="EncryptionProtocol" Type="EventDestination.v1_7_0.SNMPEncryptionProtocols">
827 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
828 <Annotation Term="OData.Description" String="The encryption protocol for SNMPv3."/>
829 <Annotation Term="OData.LongDescription" String="This property shall contain the SNMPv3 encryption protocol."/>
830 </Property>
831 </ComplexType>
832
833 <EnumType Name="SNMPAuthenticationProtocols">
834 <Member Name="None">
835 <Annotation Term="OData.Description" String="No authentication."/>
836 <Annotation Term="OData.LongDescription" String="This value shall indicate authentication is not required."/>
837 </Member>
838 <Member Name="CommunityString">
839 <Annotation Term="OData.Description" String="Trap community string authentication."/>
840 <Annotation Term="OData.LongDescription" String="This value shall indicate authentication using SNMP community strings and the value of TrapCommunity."/>
841 </Member>
842 <Member Name="HMAC_MD5">
843 <Annotation Term="OData.Description" String="HMAC-MD5-96 authentication."/>
844 <Annotation Term="OData.LongDescription" String="This value shall indicate authentication conforms to the RFC3414-defined HMAC-MD5-96 authentication protocol."/>
845 </Member>
846 <Member Name="HMAC_SHA96">
847 <Annotation Term="OData.Description" String="HMAC-SHA-96 authentication."/>
848 <Annotation Term="OData.LongDescription" String="This value shall indicate authentication conforms to the RFC3414-defined HMAC-SHA-96 authentication protocol."/>
849 </Member>
Gunnar Mills262d7d42021-01-20 16:28:41 -0600850 <Member Name="HMAC128_SHA224">
851 <Annotation Term="OData.Description" String="HMAC-128-SHA-224 authentication."/>
852 <Annotation Term="OData.LongDescription" String="This value shall indicate authentication for SNMPv3 access conforms to the RFC7860-defined usmHMAC128SHA224AuthProtocol."/>
853 <Annotation Term="Redfish.Revisions">
854 <Collection>
855 <Record>
856 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
857 <PropertyValue Property="Version" String="v1_10_0"/>
858 </Record>
859 </Collection>
860 </Annotation>
861 </Member>
862 <Member Name="HMAC192_SHA256">
863 <Annotation Term="OData.Description" String="HMAC-192-SHA-256 authentication."/>
864 <Annotation Term="OData.LongDescription" String="This value shall indicate authentication for SNMPv3 access conforms to the RFC7860-defined usmHMAC192SHA256AuthProtocol."/>
865 <Annotation Term="Redfish.Revisions">
866 <Collection>
867 <Record>
868 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
869 <PropertyValue Property="Version" String="v1_10_0"/>
870 </Record>
871 </Collection>
872 </Annotation>
873 </Member>
874 <Member Name="HMAC256_SHA384">
875 <Annotation Term="OData.Description" String="HMAC-256-SHA-384 authentication."/>
876 <Annotation Term="OData.LongDescription" String="This value shall indicate authentication for SNMPv3 access conforms to the RFC7860-defined usmHMAC256SHA384AuthProtocol."/>
877 <Annotation Term="Redfish.Revisions">
878 <Collection>
879 <Record>
880 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
881 <PropertyValue Property="Version" String="v1_10_0"/>
882 </Record>
883 </Collection>
884 </Annotation>
885 </Member>
886 <Member Name="HMAC384_SHA512">
887 <Annotation Term="OData.Description" String="HMAC-384-SHA-512 authentication."/>
888 <Annotation Term="OData.LongDescription" String="This value shall indicate authentication for SNMPv3 access conforms to the RFC7860-defined usmHMAC384SHA512AuthProtocol."/>
889 <Annotation Term="Redfish.Revisions">
890 <Collection>
891 <Record>
892 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
893 <PropertyValue Property="Version" String="v1_10_0"/>
894 </Record>
895 </Collection>
896 </Annotation>
897 </Member>
Gunnar Mills6f44b752020-02-06 16:50:51 -0600898 </EnumType>
899
900 <EnumType Name="SNMPEncryptionProtocols">
901 <Member Name="None">
902 <Annotation Term="OData.Description" String="No encryption."/>
903 <Annotation Term="OData.LongDescription" String="This value shall indicate there is no encryption."/>
904 </Member>
905 <Member Name="CBC_DES">
906 <Annotation Term="OData.Description" String="CBC-DES encryption."/>
907 <Annotation Term="OData.LongDescription" String="This value shall indicate encryption conforms to the RFC3414-defined CBC-DES encryption protocol."/>
908 </Member>
909 <Member Name="CFB128_AES128">
910 <Annotation Term="OData.Description" String="CFB128-AES-128 encryption."/>
911 <Annotation Term="OData.LongDescription" String="This value shall indicate encryption conforms to the RFC3414-defined CFB128-AES-128 encryption protocol."/>
912 </Member>
913 </EnumType>
914 </Schema>
Gunnar Mills844b4152020-06-22 12:44:09 -0500915
916 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_7_1">
917 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
918 <Annotation Term="OData.Description" String="This version was created to correct typographic errors in DeliveryRetryPolicy."/>
919 <EntityType Name="EventDestination" BaseType="EventDestination.v1_7_0.EventDestination"/>
920 </Schema>
921
Gunnar Mills262d7d42021-01-20 16:28:41 -0600922 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_7_2">
923 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
924 <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."/>
925 <EntityType Name="EventDestination" BaseType="EventDestination.v1_7_1.EventDestination"/>
926 </Schema>
927
Gunnar Mills10f270b2021-05-19 15:34:06 -0500928 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_7_3">
929 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
930 <Annotation Term="OData.Description" String="This version was created to correct various description to use proper normative terminology."/>
931 <EntityType Name="EventDestination" BaseType="EventDestination.v1_7_2.EventDestination"/>
932 </Schema>
933
Gunnar Mills60c922d2021-12-01 09:28:53 -0600934 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_7_4">
935 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
936 <Annotation Term="OData.Description" String="This version was created to clarify the usage of the Destination property with server-sent events."/>
937 <EntityType Name="EventDestination" BaseType="EventDestination.v1_7_3.EventDestination"/>
938 </Schema>
939
Ed Tanoused761212022-09-23 15:03:29 -0700940 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_7_5">
941 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
942 <Annotation Term="OData.Description" String="This version was created to clarify the format of the MessageId in the MessageIds property."/>
943 <EntityType Name="EventDestination" BaseType="EventDestination.v1_7_4.EventDestination"/>
944 </Schema>
945
Gunnar Millsa778c022020-05-12 12:20:36 -0500946 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_8_0">
947 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
948 <Annotation Term="Redfish.Release" String="2020.1"/>
949 <Annotation Term="OData.Description" String="This version was created to add the IncludeOriginOfCondition property."/>
Gunnar Mills6f44b752020-02-06 16:50:51 -0600950
Gunnar Millsa778c022020-05-12 12:20:36 -0500951 <EntityType Name="EventDestination" BaseType="EventDestination.v1_7_0.EventDestination">
952 <Property Name="IncludeOriginOfCondition" Type="Edm.Boolean">
953 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
954 <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."/>
955 <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."/>
956 </Property>
957 </EntityType>
958 </Schema>
Gunnar Mills844b4152020-06-22 12:44:09 -0500959
960 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_8_1">
961 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
962 <Annotation Term="OData.Description" String="This version was created to correct typographic errors in DeliveryRetryPolicy."/>
963 <EntityType Name="EventDestination" BaseType="EventDestination.v1_8_0.EventDestination"/>
964 </Schema>
965
Gunnar Mills262d7d42021-01-20 16:28:41 -0600966 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_8_2">
967 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
968 <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."/>
969 <EntityType Name="EventDestination" BaseType="EventDestination.v1_8_1.EventDestination"/>
970 </Schema>
971
Gunnar Mills10f270b2021-05-19 15:34:06 -0500972 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_8_3">
973 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
974 <Annotation Term="OData.Description" String="This version was created to correct various description to use proper normative terminology."/>
975 <EntityType Name="EventDestination" BaseType="EventDestination.v1_8_2.EventDestination"/>
976 </Schema>
977
Gunnar Mills60c922d2021-12-01 09:28:53 -0600978 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_8_4">
979 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
980 <Annotation Term="OData.Description" String="This version was created to clarify the usage of the Destination property with server-sent events."/>
981 <EntityType Name="EventDestination" BaseType="EventDestination.v1_8_3.EventDestination"/>
982 </Schema>
983
Ed Tanoused761212022-09-23 15:03:29 -0700984 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_8_5">
985 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
986 <Annotation Term="OData.Description" String="This version was created to clarify the format of the MessageId in the MessageIds property."/>
987 <EntityType Name="EventDestination" BaseType="EventDestination.v1_8_4.EventDestination"/>
988 </Schema>
989
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500990 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_9_0">
991 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
992 <Annotation Term="Redfish.Release" String="2020.3"/>
993
994 <EntityType Name="EventDestination" BaseType="EventDestination.v1_8_1.EventDestination">
995 <NavigationProperty Name="Certificates" Type="CertificateCollection.CertificateCollection" ContainsTarget="true" Nullable="false">
996 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
997 <Annotation Term="OData.Description" String="The link to a collection of server certificates for the server referenced by the Destination property."/>
998 <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."/>
999 <Annotation Term="OData.AutoExpandReferences"/>
1000 </NavigationProperty>
1001 <Property Name="VerifyCertificate" Type="Edm.Boolean">
1002 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
1003 <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 -08001004 <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 -05001005 </Property>
1006 <Property Name="SyslogFilters" Type="Collection(EventDestination.v1_9_0.SyslogFilter)">
Gunnar Mills9d424662021-09-22 21:56:16 -05001007 <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 -05001008 <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."/>
1009 </Property>
1010 <Property Name="OEMProtocol" Type="Edm.String" Nullable="false">
1011 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1012 <Annotation Term="OData.Description" String="The OEM-defined protocol type of the event connection."/>
1013 <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`."/>
1014 </Property>
1015 <Property Name="OEMSubscriptionType" Type="Edm.String" Nullable="false">
1016 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1017 <Annotation Term="OData.Description" String="The OEM-defined subscription type for events."/>
1018 <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`."/>
1019 </Property>
1020 </EntityType>
1021
1022 <EnumType Name="SyslogSeverity">
1023 <Annotation Term="OData.Description" String="The syslog severity is an application-specific rating used to describe the urgency of the message."/>
1024 <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."/>
1025 <Member Name="Emergency">
1026 <Annotation Term="OData.Description" String="A panic condition."/>
1027 </Member>
1028 <Member Name="Alert">
1029 <Annotation Term="OData.Description" String="A condition that should be corrected immediately, such as a corrupted system database."/>
1030 </Member>
1031 <Member Name="Critical">
1032 <Annotation Term="OData.Description" String="Hard device errors."/>
1033 </Member>
1034 <Member Name="Error">
1035 <Annotation Term="OData.Description" String="An Error."/>
1036 </Member>
1037 <Member Name="Warning">
1038 <Annotation Term="OData.Description" String="A Warning."/>
1039 </Member>
1040 <Member Name="Notice">
1041 <Annotation Term="OData.Description" String="Conditions that are not error conditions, but that may require special handling."/>
1042 </Member>
1043 <Member Name="Informational">
1044 <Annotation Term="OData.Description" String="Informational only."/>
1045 </Member>
1046 <Member Name="Debug">
1047 <Annotation Term="OData.Description" String="Messages that contain information normally of use only when debugging a program."/>
1048 </Member>
1049 <Member Name="All">
1050 <Annotation Term="OData.Description" String="A message of any severity."/>
1051 </Member>
1052 </EnumType>
1053
1054 <EnumType Name="SyslogFacility">
1055 <Annotation Term="OData.Description" String="The syslog facility code is an enumeration of program types."/>
1056 <Annotation Term="OData.LongDescription" String="This type shall specify the syslog facility codes as program types. Facility values are described in the RFC5424."/>
1057 <Member Name="Kern">
1058 <Annotation Term="OData.Description" String="Kernel messages."/>
1059 </Member>
1060 <Member Name="User">
1061 <Annotation Term="OData.Description" String="User-level messages."/>
1062 </Member>
1063 <Member Name="Mail">
1064 <Annotation Term="OData.Description" String="Mail system."/>
1065 </Member>
1066 <Member Name="Daemon">
1067 <Annotation Term="OData.Description" String="System daemons."/>
1068 </Member>
1069 <Member Name="Auth">
1070 <Annotation Term="OData.Description" String="Security/authentication messages."/>
1071 </Member>
1072 <Member Name="Syslog">
1073 <Annotation Term="OData.Description" String="Messages generated internally by syslogd."/>
1074 </Member>
1075 <Member Name="LPR">
1076 <Annotation Term="OData.Description" String="Line printer subsystem."/>
1077 </Member>
1078 <Member Name="News">
1079 <Annotation Term="OData.Description" String="Network news subsystem."/>
1080 </Member>
1081 <Member Name="UUCP">
1082 <Annotation Term="OData.Description" String="UUCP subsystem."/>
1083 </Member>
1084 <Member Name="Cron">
1085 <Annotation Term="OData.Description" String="Clock daemon."/>
1086 </Member>
1087 <Member Name="Authpriv">
1088 <Annotation Term="OData.Description" String="Security/authentication messages."/>
1089 </Member>
1090 <Member Name="FTP">
1091 <Annotation Term="OData.Description" String="FTP daemon."/>
1092 </Member>
1093 <Member Name="NTP">
1094 <Annotation Term="OData.Description" String="NTP subsystem."/>
1095 </Member>
1096 <Member Name="Security">
1097 <Annotation Term="OData.Description" String="Log audit."/>
1098 </Member>
1099 <Member Name="Console">
1100 <Annotation Term="OData.Description" String="Log alert."/>
1101 </Member>
1102 <Member Name="SolarisCron">
1103 <Annotation Term="OData.Description" String="Scheduling daemon."/>
1104 </Member>
1105 <Member Name="Local0">
1106 <Annotation Term="OData.Description" String="Locally used facility 0."/>
1107 </Member>
1108 <Member Name="Local1">
1109 <Annotation Term="OData.Description" String="Locally used facility 1."/>
1110 </Member>
1111 <Member Name="Local2">
1112 <Annotation Term="OData.Description" String="Locally used facility 2."/>
1113 </Member>
1114 <Member Name="Local3">
1115 <Annotation Term="OData.Description" String="Locally used facility 3."/>
1116 </Member>
1117 <Member Name="Local4">
1118 <Annotation Term="OData.Description" String="Locally used facility 4."/>
1119 </Member>
1120 <Member Name="Local5">
1121 <Annotation Term="OData.Description" String="Locally used facility 5."/>
1122 </Member>
1123 <Member Name="Local6">
1124 <Annotation Term="OData.Description" String="Locally used facility 6."/>
1125 </Member>
1126 <Member Name="Local7">
1127 <Annotation Term="OData.Description" String="Locally used facility 7."/>
1128 </Member>
1129 </EnumType>
1130
1131 <ComplexType Name="SyslogFilter">
1132 <Annotation Term="OData.AdditionalProperties" Bool="false"/>
1133 <Annotation Term="OData.Description" String="A syslog filter."/>
1134 <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."/>
1135 <Property Name="LowestSeverity" Type="EventDestination.v1_9_0.SyslogSeverity">
1136 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
1137 <Annotation Term="OData.Description" String="The lowest severity level message that will be forwarded."/>
1138 <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."/>
1139 </Property>
1140 <Property Name="LogFacilities" Type="Collection(EventDestination.v1_9_0.SyslogFacility)">
1141 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
1142 <Annotation Term="OData.Description" String="The types of programs that can log messages."/>
1143 <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."/>
1144 </Property>
1145 </ComplexType>
1146 </Schema>
1147
Gunnar Mills262d7d42021-01-20 16:28:41 -06001148 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_9_1">
1149 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1150 <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."/>
1151 <EntityType Name="EventDestination" BaseType="EventDestination.v1_9_0.EventDestination"/>
1152 </Schema>
1153
Gunnar Mills10f270b2021-05-19 15:34:06 -05001154 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_9_2">
1155 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1156 <Annotation Term="OData.Description" String="This version was created to correct various description to use proper normative terminology."/>
1157 <EntityType Name="EventDestination" BaseType="EventDestination.v1_9_1.EventDestination"/>
1158 </Schema>
1159
Gunnar Mills9d424662021-09-22 21:56:16 -05001160 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_9_3">
1161 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1162 <Annotation Term="OData.Description" String="This version was created to improve the description of SyslogFilters."/>
1163 <EntityType Name="EventDestination" BaseType="EventDestination.v1_9_2.EventDestination"/>
1164 </Schema>
1165
Gunnar Mills60c922d2021-12-01 09:28:53 -06001166 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_9_4">
1167 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1168 <Annotation Term="OData.Description" String="This version was created to clarify the usage of the Destination property with server-sent events."/>
1169 <EntityType Name="EventDestination" BaseType="EventDestination.v1_9_3.EventDestination"/>
1170 </Schema>
1171
Sui Chen141d9432022-02-03 22:01:27 -08001172 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_9_5">
1173 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1174 <Annotation Term="OData.Description" String="This version was created to clarify the behavior of VerifyCertificate when not supported or specified."/>
1175 <EntityType Name="EventDestination" BaseType="EventDestination.v1_9_4.EventDestination"/>
1176 </Schema>
1177
Ed Tanoused761212022-09-23 15:03:29 -07001178 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_9_6">
1179 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1180 <Annotation Term="OData.Description" String="This version was created to clarify the format of the MessageId in the MessageIds property."/>
1181 <EntityType Name="EventDestination" BaseType="EventDestination.v1_9_5.EventDestination"/>
1182 </Schema>
1183
Gunnar Mills262d7d42021-01-20 16:28:41 -06001184 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_10_0">
1185 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1186 <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."/>
1187 <Annotation Term="Redfish.Release" String="2020.4"/>
1188
1189 <EntityType Name="EventDestination" BaseType="EventDestination.v1_9_1.EventDestination"/>
1190
1191 <ComplexType Name="SNMPSettings" BaseType="EventDestination.v1_7_0.SNMPSettings">
1192 <Property Name="AuthenticationKeySet" Type="Edm.Boolean" Nullable="false">
1193 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1194 <Annotation Term="OData.Description" String="Indicates if the AuthenticationKey property is set."/>
1195 <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`."/>
1196 </Property>
1197 <Property Name="EncryptionKeySet" Type="Edm.Boolean" Nullable="false">
1198 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1199 <Annotation Term="OData.Description" String="Indicates if the EncryptionKey property is set."/>
1200 <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`."/>
1201 </Property>
1202 </ComplexType>
1203 </Schema>
1204
Gunnar Mills10f270b2021-05-19 15:34:06 -05001205 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_10_1">
1206 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1207 <Annotation Term="OData.Description" String="This version was created to correct various description to use proper normative terminology."/>
1208 <EntityType Name="EventDestination" BaseType="EventDestination.v1_10_0.EventDestination"/>
1209 </Schema>
1210
Gunnar Mills9d424662021-09-22 21:56:16 -05001211 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_10_2">
1212 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1213 <Annotation Term="OData.Description" String="This version was created to improve the description of SyslogFilters."/>
1214 <EntityType Name="EventDestination" BaseType="EventDestination.v1_10_1.EventDestination"/>
1215 </Schema>
1216
Gunnar Mills60c922d2021-12-01 09:28:53 -06001217 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_10_3">
1218 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1219 <Annotation Term="OData.Description" String="This version was created to clarify the usage of the Destination property with server-sent events."/>
1220 <EntityType Name="EventDestination" BaseType="EventDestination.v1_10_2.EventDestination"/>
1221 </Schema>
1222
Sui Chen141d9432022-02-03 22:01:27 -08001223 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_10_4">
1224 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1225 <Annotation Term="OData.Description" String="This version was created to clarify the behavior of VerifyCertificate when not supported or specified."/>
1226 <EntityType Name="EventDestination" BaseType="EventDestination.v1_10_3.EventDestination"/>
1227 </Schema>
1228
Ed Tanoused761212022-09-23 15:03:29 -07001229 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_10_5">
1230 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1231 <Annotation Term="OData.Description" String="This version was created to clarify the format of the MessageId in the MessageIds property."/>
1232 <EntityType Name="EventDestination" BaseType="EventDestination.v1_10_4.EventDestination"/>
1233 </Schema>
1234
Gunnar Mills9d424662021-09-22 21:56:16 -05001235 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_11_0">
1236 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1237 <Annotation Term="Redfish.Release" String="2021.2"/>
1238
1239 <EntityType Name="EventDestination" BaseType="EventDestination.v1_10_2.EventDestination">
1240 <Property Name="SendHeartbeat" Type="Edm.Boolean">
1241 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1242 <Annotation Term="OData.Description" String="Send a heartbeat event periodically to the destination."/>
1243 <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`."/>
1244 </Property>
1245 <Property Name="HeartbeatIntervalMinutes" Type="Edm.Int64">
1246 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1247 <Annotation Term="OData.Description" String="Interval for sending heartbeat events to the destination in minutes."/>
1248 <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."/>
1249 <Annotation Term="Validation.Minimum" Int="1"/>
1250 <Annotation Term="Validation.Maximum" Int="65535"/>
1251 </Property>
1252 <NavigationProperty Name="ClientCertificates" Type="CertificateCollection.CertificateCollection" ContainsTarget="true" Nullable="false">
1253 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1254 <Annotation Term="OData.Description" String="The link to a collection of client identity certificates provided to the server referenced by the Destination property."/>
1255 <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."/>
1256 <Annotation Term="OData.AutoExpandReferences"/>
1257 </NavigationProperty>
1258 </EntityType>
1259 </Schema>
1260
Gunnar Mills60c922d2021-12-01 09:28:53 -06001261 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_11_1">
1262 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1263 <Annotation Term="OData.Description" String="This version was created to clarify the usage of the Destination property with server-sent events."/>
1264 <EntityType Name="EventDestination" BaseType="EventDestination.v1_11_0.EventDestination"/>
1265 </Schema>
1266
Sui Chen141d9432022-02-03 22:01:27 -08001267 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_11_2">
1268 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1269 <Annotation Term="OData.Description" String="This version was created to clarify the behavior of VerifyCertificate when not supported or specified."/>
1270 <EntityType Name="EventDestination" BaseType="EventDestination.v1_11_1.EventDestination"/>
1271 </Schema>
1272
Ed Tanoused761212022-09-23 15:03:29 -07001273 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_11_3">
1274 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1275 <Annotation Term="OData.Description" String="This version was created to clarify the format of the MessageId in the MessageIds property."/>
1276 <EntityType Name="EventDestination" BaseType="EventDestination.v1_11_2.EventDestination"/>
1277 </Schema>
1278
1279 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_12_0">
1280 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1281 <Annotation Term="Redfish.Release" String="2022.1"/>
1282 <Annotation Term="OData.Description" String="This version was created to add the SuspendSubscription action and to add the DeliverBufferedEvents parameter to the ResumeSubscription action."/>
1283
1284 <EntityType Name="EventDestination" BaseType="EventDestination.v1_11_3.EventDestination">
1285 <Property Name="ExcludeRegistryPrefixes" Type="Collection(Edm.String)">
1286 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1287 <Annotation Term="OData.Description" String="The list of prefixes for the message registries that contain the MessageIds that are not sent to this event destination."/>
1288 <Annotation Term="OData.LongDescription" String="This property shall contain an array of prefixes of excluded message registries that contain the MessageIds that are not allowed values for the MessageId property within an event sent to the subscriber. Events with a MessageId that is from a message registry contained in this array shall not be sent to the subscriber. If this property is an empty array or is absent, no exclusive filtering based upon message registry of the MessageId of an event is performed."/>
1289 </Property>
1290 <Property Name="ExcludeMessageIds" Type="Collection(Edm.String)">
1291 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1292 <Annotation Term="OData.Description" String="The list of MessageIds that are not sent to this event destination."/>
Asmitha Karunanithi009c6452022-09-22 01:07:59 -05001293 <Annotation Term="OData.LongDescription" String="This property shall contain an array of excluded MessageIds that are not allowed values for the MessageId property within an event sent to the subscriber. The MessageId shall be in the `MessageRegistry.MessageId` format. If included, the MessageId major and minor version details should be ignored. Events with a MessageId that is contained in this array shall not be sent to the subscriber. If this property is an empty array or is absent, no exclusive filtering based upon the MessageId of an event is performed."/>
Ed Tanoused761212022-09-23 15:03:29 -07001294 </Property>
1295 </EntityType>
1296 </Schema>
1297
Jason M. Billsea4aa752018-06-05 13:29:11 -07001298 </edmx:DataServices>
1299</edmx:Edmx>