3
3
4
4
package com .azure .messaging .eventgrid ;
5
5
6
+ import com .azure .messaging .eventgrid .systemevents .AcsCallEndedEventData ;
7
+ import com .azure .messaging .eventgrid .systemevents .AcsCallParticipantAddedEventData ;
8
+ import com .azure .messaging .eventgrid .systemevents .AcsCallParticipantRemovedEventData ;
9
+ import com .azure .messaging .eventgrid .systemevents .AcsCallStartedEventData ;
10
+ import com .azure .messaging .eventgrid .systemevents .AcsChatAzureBotCommandReceivedInThreadEventData ;
6
11
import com .azure .messaging .eventgrid .systemevents .AcsChatMessageDeletedEventData ;
7
12
import com .azure .messaging .eventgrid .systemevents .AcsChatMessageDeletedInThreadEventData ;
8
13
import com .azure .messaging .eventgrid .systemevents .AcsChatMessageEditedEventData ;
19
24
import com .azure .messaging .eventgrid .systemevents .AcsChatThreadPropertiesUpdatedEventData ;
20
25
import com .azure .messaging .eventgrid .systemevents .AcsChatThreadPropertiesUpdatedPerUserEventData ;
21
26
import com .azure .messaging .eventgrid .systemevents .AcsChatThreadWithUserDeletedEventData ;
27
+ import com .azure .messaging .eventgrid .systemevents .AcsChatTypingIndicatorReceivedInThreadEventData ;
22
28
import com .azure .messaging .eventgrid .systemevents .AcsEmailDeliveryReportReceivedEventData ;
23
29
import com .azure .messaging .eventgrid .systemevents .AcsEmailEngagementTrackingReportReceivedEventData ;
24
30
import com .azure .messaging .eventgrid .systemevents .AcsIncomingCallEventData ;
58
64
import com .azure .messaging .eventgrid .systemevents .ApiManagementApiReleaseDeletedEventData ;
59
65
import com .azure .messaging .eventgrid .systemevents .ApiManagementApiReleaseUpdatedEventData ;
60
66
import com .azure .messaging .eventgrid .systemevents .ApiManagementApiUpdatedEventData ;
67
+ import com .azure .messaging .eventgrid .systemevents .ApiManagementCircuitBreakerClosedEventData ;
68
+ import com .azure .messaging .eventgrid .systemevents .ApiManagementCircuitBreakerOpenedEventData ;
61
69
import com .azure .messaging .eventgrid .systemevents .ApiManagementGatewayApiAddedEventData ;
62
70
import com .azure .messaging .eventgrid .systemevents .ApiManagementGatewayApiRemovedEventData ;
63
71
import com .azure .messaging .eventgrid .systemevents .ApiManagementGatewayCertificateAuthorityCreatedEventData ;
68
76
import com .azure .messaging .eventgrid .systemevents .ApiManagementGatewayHostnameConfigurationCreatedEventData ;
69
77
import com .azure .messaging .eventgrid .systemevents .ApiManagementGatewayHostnameConfigurationDeletedEventData ;
70
78
import com .azure .messaging .eventgrid .systemevents .ApiManagementGatewayHostnameConfigurationUpdatedEventData ;
79
+ import com .azure .messaging .eventgrid .systemevents .ApiManagementGatewayTokenExpiredEventData ;
80
+ import com .azure .messaging .eventgrid .systemevents .ApiManagementGatewayTokenNearExpiryEventData ;
71
81
import com .azure .messaging .eventgrid .systemevents .ApiManagementGatewayUpdatedEventData ;
72
82
import com .azure .messaging .eventgrid .systemevents .ApiManagementProductCreatedEventData ;
73
83
import com .azure .messaging .eventgrid .systemevents .ApiManagementProductDeletedEventData ;
107
117
import com .azure .messaging .eventgrid .systemevents .DataBoxCopyCompletedEventData ;
108
118
import com .azure .messaging .eventgrid .systemevents .DataBoxCopyStartedEventData ;
109
119
import com .azure .messaging .eventgrid .systemevents .DataBoxOrderCompletedEventData ;
120
+ import com .azure .messaging .eventgrid .systemevents .EdgeSolutionVersionPublishedEventData ;
110
121
import com .azure .messaging .eventgrid .systemevents .EventGridMqttClientCreatedOrUpdatedEventData ;
111
122
import com .azure .messaging .eventgrid .systemevents .EventGridMqttClientDeletedEventData ;
112
123
import com .azure .messaging .eventgrid .systemevents .EventGridMqttClientSessionConnectedEventData ;
212
223
*/
213
224
public final class SystemEventNames {
214
225
226
+ /**
227
+ * Schema of the Data property of an EventGridEvent for a Microsoft.Communication.CallEnded event.
228
+ */
229
+ public static final String ACS_CALL_ENDED = "Microsoft.Communication.CallEnded" ;
230
+
231
+ /**
232
+ * Schema of the Data property of an EventGridEvent for a Microsoft.Communication.CallParticipantAdded event.
233
+ */
234
+ public static final String ACS_CALL_PARTICIPANT_ADDED = "Microsoft.Communication.CallParticipantAdded" ;
235
+
236
+ /**
237
+ * Schema of the Data property of an EventGridEvent for a Microsoft.Communication.CallParticipantRemoved event.
238
+ */
239
+ public static final String ACS_CALL_PARTICIPANT_REMOVED = "Microsoft.Communication.CallParticipantRemoved" ;
240
+
241
+ /**
242
+ * Schema of the Data property of an EventGridEvent for a Microsoft.Communication.CallStarted event.
243
+ */
244
+ public static final String ACS_CALL_STARTED = "Microsoft.Communication.CallStarted" ;
245
+
246
+ /**
247
+ * Schema of the Data property of an EventGridEvent for a
248
+ * Microsoft.Communication.ChatAzureBotCommandReceivedInThread event.
249
+ */
250
+ public static final String ACS_CHAT_AZURE_BOT_COMMAND_RECEIVED_IN_THREAD
251
+ = "Microsoft.Communication.ChatAzureBotCommandReceivedInThread" ;
252
+
215
253
/**
216
254
* Schema of the Data property of an EventGridEvent for a Microsoft.Communication.ChatMessageDeleted event.
217
255
*/
@@ -304,6 +342,13 @@ public final class SystemEventNames {
304
342
*/
305
343
public static final String ACS_CHAT_THREAD_WITH_USER_DELETED = "Microsoft.Communication.ChatThreadWithUserDeleted" ;
306
344
345
+ /**
346
+ * Schema of the Data property of an EventGridEvent for a
347
+ * Microsoft.Communication.ChatTypingIndicatorReceivedInThread event.
348
+ */
349
+ public static final String ACS_CHAT_TYPING_INDICATOR_RECEIVED_IN_THREAD
350
+ = "Microsoft.Communication.ChatTypingIndicatorReceivedInThread" ;
351
+
307
352
/**
308
353
* Schema of the Data property of an EventGridEvent for a Microsoft.Communication.EmailDeliveryReportReceived event.
309
354
*/
@@ -511,6 +556,16 @@ public final class SystemEventNames {
511
556
*/
512
557
public static final String API_MANAGEMENT_API_UPDATED = "Microsoft.ApiManagement.APIUpdated" ;
513
558
559
+ /**
560
+ * Schema of the Data property of an EventGridEvent for a Microsoft.ApiManagement.CircuitBreaker.Closed event.
561
+ */
562
+ public static final String API_MANAGEMENT_CIRCUIT_BREAKER_CLOSED = "Microsoft.ApiManagement.CircuitBreaker.Closed" ;
563
+
564
+ /**
565
+ * Schema of the Data property of an EventGridEvent for a Microsoft.ApiManagement.CircuitBreaker.Opened event.
566
+ */
567
+ public static final String API_MANAGEMENT_CIRCUIT_BREAKER_OPENED = "Microsoft.ApiManagement.CircuitBreaker.Opened" ;
568
+
514
569
/**
515
570
* Schema of the Data property of an EventGridEvent for a Microsoft.ApiManagement.GatewayAPIAdded event.
516
571
*/
@@ -573,6 +628,17 @@ public final class SystemEventNames {
573
628
public static final String API_MANAGEMENT_GATEWAY_HOSTNAME_CONFIGURATION_UPDATED
574
629
= "Microsoft.ApiManagement.GatewayHostnameConfigurationUpdated" ;
575
630
631
+ /**
632
+ * Schema of the Data property of an EventGridEvent for a Microsoft.ApiManagement.GatewayTokenExpired event.
633
+ */
634
+ public static final String API_MANAGEMENT_GATEWAY_TOKEN_EXPIRED = "Microsoft.ApiManagement.GatewayTokenExpired" ;
635
+
636
+ /**
637
+ * Schema of the Data property of an EventGridEvent for a Microsoft.ApiManagement.GatewayTokenNearExpiry event.
638
+ */
639
+ public static final String API_MANAGEMENT_GATEWAY_TOKEN_NEAR_EXPIRY
640
+ = "Microsoft.ApiManagement.GatewayTokenNearExpiry" ;
641
+
576
642
/**
577
643
* Schema of the Data property of an EventGridEvent for a Microsoft.ApiManagement.GatewayUpdated event.
578
644
*/
@@ -775,6 +841,11 @@ public final class SystemEventNames {
775
841
*/
776
842
public static final String DATA_BOX_ORDER_COMPLETED = "Microsoft.DataBox.OrderCompleted" ;
777
843
844
+ /**
845
+ * Schema of the Data property of an EventGridEvent for a Microsoft.Edge.SolutionVersionPublished event.
846
+ */
847
+ public static final String EDGE_SOLUTION_VERSION_PUBLISHED = "Microsoft.Edge.SolutionVersionPublished" ;
848
+
778
849
/**
779
850
* Event data for Microsoft.EventGrid.MQTTClientCreatedOrUpdated event.
780
851
*/
@@ -1028,6 +1099,8 @@ public final class SystemEventNames {
1028
1099
1029
1100
/**
1030
1101
* Schema of the Data property of an event grid event for a
1102
+ * Microsoft.ResourceNotifications.ContainerServiceEventResources.ScheduledEventEmitted preview event.Schema of the
1103
+ * Data property of an event grid event for a
1031
1104
* Microsoft.ResourceNotifications.ContainerServiceEventResources.ScheduledEventEmitted preview event.
1032
1105
*/
1033
1106
public static final String RESOURCE_NOTIFICATIONS_CONTAINER_SERVICE_EVENT_RESOURCES_SCHEDULED
@@ -1267,6 +1340,11 @@ public final class SystemEventNames {
1267
1340
1268
1341
private static final Map <String , Class <?>> SYSTEM_EVENT_MAPPINGS = new HashMap <String , Class <?>>() {
1269
1342
{
1343
+ put (ACS_CALL_ENDED , AcsCallEndedEventData .class );
1344
+ put (ACS_CALL_PARTICIPANT_ADDED , AcsCallParticipantAddedEventData .class );
1345
+ put (ACS_CALL_PARTICIPANT_REMOVED , AcsCallParticipantRemovedEventData .class );
1346
+ put (ACS_CALL_STARTED , AcsCallStartedEventData .class );
1347
+ put (ACS_CHAT_AZURE_BOT_COMMAND_RECEIVED_IN_THREAD , AcsChatAzureBotCommandReceivedInThreadEventData .class );
1270
1348
put (ACS_CHAT_MESSAGE_DELETED , AcsChatMessageDeletedEventData .class );
1271
1349
put (ACS_CHAT_MESSAGE_DELETED_IN_THREAD , AcsChatMessageDeletedInThreadEventData .class );
1272
1350
put (ACS_CHAT_MESSAGE_EDITED , AcsChatMessageEditedEventData .class );
@@ -1284,6 +1362,7 @@ public final class SystemEventNames {
1284
1362
put (ACS_CHAT_THREAD_PROPERTIES_UPDATED , AcsChatThreadPropertiesUpdatedEventData .class );
1285
1363
put (ACS_CHAT_THREAD_PROPERTIES_UPDATED_PER_USER , AcsChatThreadPropertiesUpdatedPerUserEventData .class );
1286
1364
put (ACS_CHAT_THREAD_WITH_USER_DELETED , AcsChatThreadWithUserDeletedEventData .class );
1365
+ put (ACS_CHAT_TYPING_INDICATOR_RECEIVED_IN_THREAD , AcsChatTypingIndicatorReceivedInThreadEventData .class );
1287
1366
put (ACS_EMAIL_DELIVERY_REPORT_RECEIVED , AcsEmailDeliveryReportReceivedEventData .class );
1288
1367
put (ACS_EMAIL_ENGAGEMENT_TRACKING_REPORT_RECEIVED , AcsEmailEngagementTrackingReportReceivedEventData .class );
1289
1368
put (ACS_INCOMING_CALL , AcsIncomingCallEventData .class );
@@ -1323,6 +1402,8 @@ public final class SystemEventNames {
1323
1402
put (API_MANAGEMENT_API_RELEASE_DELETED , ApiManagementApiReleaseDeletedEventData .class );
1324
1403
put (API_MANAGEMENT_API_RELEASE_UPDATED , ApiManagementApiReleaseUpdatedEventData .class );
1325
1404
put (API_MANAGEMENT_API_UPDATED , ApiManagementApiUpdatedEventData .class );
1405
+ put (API_MANAGEMENT_CIRCUIT_BREAKER_CLOSED , ApiManagementCircuitBreakerClosedEventData .class );
1406
+ put (API_MANAGEMENT_CIRCUIT_BREAKER_OPENED , ApiManagementCircuitBreakerOpenedEventData .class );
1326
1407
put (API_MANAGEMENT_GATEWAY_API_ADDED , ApiManagementGatewayApiAddedEventData .class );
1327
1408
put (API_MANAGEMENT_GATEWAY_API_REMOVED , ApiManagementGatewayApiRemovedEventData .class );
1328
1409
put (API_MANAGEMENT_GATEWAY_CERTIFICATE_AUTHORITY_CREATED ,
@@ -1339,6 +1420,8 @@ public final class SystemEventNames {
1339
1420
ApiManagementGatewayHostnameConfigurationDeletedEventData .class );
1340
1421
put (API_MANAGEMENT_GATEWAY_HOSTNAME_CONFIGURATION_UPDATED ,
1341
1422
ApiManagementGatewayHostnameConfigurationUpdatedEventData .class );
1423
+ put (API_MANAGEMENT_GATEWAY_TOKEN_EXPIRED , ApiManagementGatewayTokenExpiredEventData .class );
1424
+ put (API_MANAGEMENT_GATEWAY_TOKEN_NEAR_EXPIRY , ApiManagementGatewayTokenNearExpiryEventData .class );
1342
1425
put (API_MANAGEMENT_GATEWAY_UPDATED , ApiManagementGatewayUpdatedEventData .class );
1343
1426
put (API_MANAGEMENT_PRODUCT_CREATED , ApiManagementProductCreatedEventData .class );
1344
1427
put (API_MANAGEMENT_PRODUCT_DELETED , ApiManagementProductDeletedEventData .class );
@@ -1379,6 +1462,7 @@ public final class SystemEventNames {
1379
1462
put (DATA_BOX_COPY_COMPLETED , DataBoxCopyCompletedEventData .class );
1380
1463
put (DATA_BOX_COPY_STARTED , DataBoxCopyStartedEventData .class );
1381
1464
put (DATA_BOX_ORDER_COMPLETED , DataBoxOrderCompletedEventData .class );
1465
+ put (EDGE_SOLUTION_VERSION_PUBLISHED , EdgeSolutionVersionPublishedEventData .class );
1382
1466
put (EVENT_GRID_MQTT_CLIENT_CREATED_OR_UPDATED , EventGridMqttClientCreatedOrUpdatedEventData .class );
1383
1467
put (EVENT_GRID_MQTT_CLIENT_DELETED , EventGridMqttClientDeletedEventData .class );
1384
1468
put (EVENT_GRID_MQTT_CLIENT_SESSION_CONNECTED , EventGridMqttClientSessionConnectedEventData .class );
0 commit comments