@azure/eventgrid 4.14.0 → 4.15.0-alpha.20231013.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +1355 -340
- package/dist/index.js.map +1 -1
- package/dist-esm/src/generated/generatedClientContext.js +1 -1
- package/dist-esm/src/generated/generatedClientContext.js.map +1 -1
- package/dist-esm/src/generated/models/index.js.map +1 -1
- package/dist-esm/src/generated/models/mappers.js +998 -19
- package/dist-esm/src/generated/models/mappers.js.map +1 -1
- package/dist-esm/src/index.js.map +1 -1
- package/dist-esm/src/predicates.js.map +1 -1
- package/dist-esm/src/tracing.js +1 -1
- package/dist-esm/src/tracing.js.map +1 -1
- package/package.json +10 -9
- package/types/eventgrid.d.ts +490 -0
package/types/eventgrid.d.ts
CHANGED
@@ -328,6 +328,370 @@ export declare interface AcsRecordingStorageInfo {
|
|
328
328
|
recordingChunks: AcsRecordingChunkInfo[];
|
329
329
|
}
|
330
330
|
|
331
|
+
/** Router Channel Configuration */
|
332
|
+
export declare interface AcsRouterChannelConfiguration {
|
333
|
+
/** Channel ID for Router Job */
|
334
|
+
channelId: string;
|
335
|
+
/** Capacity Cost Per Job for Router Job */
|
336
|
+
capacityCostPerJob: number;
|
337
|
+
/** Max Number of Jobs for Router Job */
|
338
|
+
maxNumberOfJobs: number;
|
339
|
+
}
|
340
|
+
|
341
|
+
/** Router Communication Error */
|
342
|
+
export declare interface AcsRouterCommunicationError {
|
343
|
+
/** Router Communication Error Code */
|
344
|
+
code: string;
|
345
|
+
/** Router Communication Error Message */
|
346
|
+
message: string;
|
347
|
+
/** Router Communication Error Target */
|
348
|
+
target: string;
|
349
|
+
/** Router Communication Inner Error */
|
350
|
+
innererror: AcsRouterCommunicationError;
|
351
|
+
/** List of Router Communication Errors */
|
352
|
+
details: AcsRouterCommunicationError[];
|
353
|
+
}
|
354
|
+
|
355
|
+
/** Schema of common properties of all Router events */
|
356
|
+
export declare interface AcsRouterEventData {
|
357
|
+
/** Router Event Job ID */
|
358
|
+
jobId: string;
|
359
|
+
/** Router Event Channel Reference */
|
360
|
+
channelReference: string;
|
361
|
+
/** Router Event Channel ID */
|
362
|
+
channelId: string;
|
363
|
+
}
|
364
|
+
|
365
|
+
/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.RouterJobCancelled event */
|
366
|
+
export declare type AcsRouterJobCancelledEventData = AcsRouterJobEventData & {
|
367
|
+
/** Router Job Note */
|
368
|
+
note: string;
|
369
|
+
/** Router Job Disposition Code */
|
370
|
+
dispositionCode: string;
|
371
|
+
};
|
372
|
+
|
373
|
+
/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.RouterJobClassificationFailed event */
|
374
|
+
export declare type AcsRouterJobClassificationFailedEventData = AcsRouterJobEventData & {
|
375
|
+
/** Router Job Classification Policy Id */
|
376
|
+
classificationPolicyId: string;
|
377
|
+
/** Router Job Classification Failed Errors */
|
378
|
+
errors: AcsRouterCommunicationError[];
|
379
|
+
};
|
380
|
+
|
381
|
+
/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.RouterJobClassified event */
|
382
|
+
export declare type AcsRouterJobClassifiedEventData = AcsRouterJobEventData & {
|
383
|
+
/** Router Job Queue Info */
|
384
|
+
queueDetails: AcsRouterQueueDetails;
|
385
|
+
/** Router Job Classification Policy Id */
|
386
|
+
classificationPolicyId: string;
|
387
|
+
/** Router Job Priority */
|
388
|
+
priority: number;
|
389
|
+
/** Router Job Attached Worker Selector */
|
390
|
+
attachedWorkerSelectors: AcsRouterWorkerSelector[];
|
391
|
+
};
|
392
|
+
|
393
|
+
/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.RouterJobClosed event */
|
394
|
+
export declare type AcsRouterJobClosedEventData = AcsRouterJobEventData & {
|
395
|
+
/** Router Job Closed Assignment Id */
|
396
|
+
assignmentId: string;
|
397
|
+
/** Router Job Closed Worker Id */
|
398
|
+
workerId: string;
|
399
|
+
/** Router Job Closed Disposition Code */
|
400
|
+
dispositionCode: string;
|
401
|
+
};
|
402
|
+
|
403
|
+
/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.RouterJobCompleted event */
|
404
|
+
export declare type AcsRouterJobCompletedEventData = AcsRouterJobEventData & {
|
405
|
+
/** Router Job Completed Assignment Id */
|
406
|
+
assignmentId: string;
|
407
|
+
/** Router Job Completed Worker Id */
|
408
|
+
workerId: string;
|
409
|
+
};
|
410
|
+
|
411
|
+
/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.RouterJobDeleted event */
|
412
|
+
export declare type AcsRouterJobDeletedEventData = AcsRouterJobEventData & {};
|
413
|
+
|
414
|
+
/** Schema of common properties of all Router Job events */
|
415
|
+
export declare type AcsRouterJobEventData = AcsRouterEventData & {
|
416
|
+
/** Router Job events Queue Id */
|
417
|
+
queueId: string;
|
418
|
+
/** Router Job events Labels */
|
419
|
+
labels: {
|
420
|
+
[propertyName: string]: string;
|
421
|
+
};
|
422
|
+
/** Router Jobs events Tags */
|
423
|
+
tags: {
|
424
|
+
[propertyName: string]: string;
|
425
|
+
};
|
426
|
+
};
|
427
|
+
|
428
|
+
/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.RouterJobExceptionTriggered event */
|
429
|
+
export declare type AcsRouterJobExceptionTriggeredEventData = AcsRouterJobEventData & {
|
430
|
+
/** Router Job Exception Triggered Rule Key */
|
431
|
+
ruleKey: string;
|
432
|
+
/** Router Job Exception Triggered Rule Id */
|
433
|
+
exceptionRuleId: string;
|
434
|
+
};
|
435
|
+
|
436
|
+
/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.RouterJobQueued event */
|
437
|
+
export declare type AcsRouterJobQueuedEventData = AcsRouterJobEventData & {
|
438
|
+
/** Router Job Priority */
|
439
|
+
priority: number;
|
440
|
+
/** Router Job Queued Attached Worker Selector */
|
441
|
+
attachedWorkerSelectors: AcsRouterWorkerSelector[];
|
442
|
+
/** Router Job Queued Requested Worker Selector */
|
443
|
+
requestedWorkerSelectors: AcsRouterWorkerSelector[];
|
444
|
+
};
|
445
|
+
|
446
|
+
/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.RouterJobReceived event */
|
447
|
+
export declare type AcsRouterJobReceivedEventData = AcsRouterJobEventData & {
|
448
|
+
/** Router Job Received Job Status */
|
449
|
+
jobStatus?: AcsRouterJobStatus;
|
450
|
+
/** Router Job Classification Policy Id */
|
451
|
+
classificationPolicyId?: string;
|
452
|
+
/** Router Job Priority */
|
453
|
+
priority?: number;
|
454
|
+
/** Router Job Received Requested Worker Selectors */
|
455
|
+
requestedWorkerSelectors?: AcsRouterWorkerSelector[];
|
456
|
+
/** Router Job Received Scheduled Time in UTC */
|
457
|
+
scheduledOn?: string;
|
458
|
+
/** Unavailable For Matching for Router Job Received */
|
459
|
+
unavailableForMatching: boolean;
|
460
|
+
};
|
461
|
+
|
462
|
+
/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.RouterJobSchedulingFailed event */
|
463
|
+
export declare type AcsRouterJobSchedulingFailedEventData = AcsRouterJobEventData & {
|
464
|
+
/** Router Job Priority */
|
465
|
+
priority: number;
|
466
|
+
/** Router Job Scheduling Failed Attached Worker Selector Expired */
|
467
|
+
expiredAttachedWorkerSelectors: AcsRouterWorkerSelector[];
|
468
|
+
/** Router Job Scheduling Failed Requested Worker Selector Expired */
|
469
|
+
expiredRequestedWorkerSelectors: AcsRouterWorkerSelector[];
|
470
|
+
/** Router Job Scheduling Failed Scheduled Time in UTC */
|
471
|
+
scheduledOn: string;
|
472
|
+
/** Router Job Scheduling Failed Reason */
|
473
|
+
failureReason: string;
|
474
|
+
};
|
475
|
+
|
476
|
+
/**
|
477
|
+
* Defines values for AcsRouterJobStatus. \
|
478
|
+
* {@link KnownAcsRouterJobStatus} can be used interchangeably with AcsRouterJobStatus,
|
479
|
+
* this enum contains the known values that the service supports.
|
480
|
+
* ### Known values supported by the service
|
481
|
+
* **PendingClassification** \
|
482
|
+
* **Queued** \
|
483
|
+
* **Assigned** \
|
484
|
+
* **Completed** \
|
485
|
+
* **Closed** \
|
486
|
+
* **Cancelled** \
|
487
|
+
* **ClassificationFailed** \
|
488
|
+
* **Created** \
|
489
|
+
* **PendingSchedule** \
|
490
|
+
* **Scheduled** \
|
491
|
+
* **ScheduleFailed** \
|
492
|
+
* **WaitingForActivation**
|
493
|
+
*/
|
494
|
+
export declare type AcsRouterJobStatus = string;
|
495
|
+
|
496
|
+
/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.RouterJobUnassigned event */
|
497
|
+
export declare type AcsRouterJobUnassignedEventData = AcsRouterJobEventData & {
|
498
|
+
/** Router Job Unassigned Assignment Id */
|
499
|
+
assignmentId: string;
|
500
|
+
/** Router Job Unassigned Worker Id */
|
501
|
+
workerId: string;
|
502
|
+
};
|
503
|
+
|
504
|
+
/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.RouterJobWaitingForActivation event */
|
505
|
+
export declare type AcsRouterJobWaitingForActivationEventData = AcsRouterJobEventData & {
|
506
|
+
/** Router Job Waiting For Activation Priority */
|
507
|
+
priority?: number;
|
508
|
+
/** Router Job Waiting For Activation Worker Selector Expired */
|
509
|
+
expiredAttachedWorkerSelectors?: AcsRouterWorkerSelector[];
|
510
|
+
/** Router Job Waiting For Activation Requested Worker Selector Expired */
|
511
|
+
expiredRequestedWorkerSelectors?: AcsRouterWorkerSelector[];
|
512
|
+
/** Router Job Waiting For Activation Scheduled Time in UTC */
|
513
|
+
scheduledOn?: string;
|
514
|
+
/** Router Job Waiting For Activation Unavailable For Matching */
|
515
|
+
unavailableForMatching: boolean;
|
516
|
+
};
|
517
|
+
|
518
|
+
/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.RouterJobWorkerSelectorsExpired event */
|
519
|
+
export declare type AcsRouterJobWorkerSelectorsExpiredEventData = AcsRouterJobEventData & {
|
520
|
+
/** Router Job Worker Selectors Expired Requested Worker Selectors */
|
521
|
+
expiredRequestedWorkerSelectors: AcsRouterWorkerSelector[];
|
522
|
+
/** Router Job Worker Selectors Expired Attached Worker Selectors */
|
523
|
+
expiredAttachedWorkerSelectors: AcsRouterWorkerSelector[];
|
524
|
+
};
|
525
|
+
|
526
|
+
/**
|
527
|
+
* Defines values for AcsRouterLabelOperator. \
|
528
|
+
* {@link KnownAcsRouterLabelOperator} can be used interchangeably with AcsRouterLabelOperator,
|
529
|
+
* this enum contains the known values that the service supports.
|
530
|
+
* ### Known values supported by the service
|
531
|
+
* **Equal**: = \
|
532
|
+
* **NotEqual**: != \
|
533
|
+
* **Greater**: > \
|
534
|
+
* **Less**: < \
|
535
|
+
* **GreaterThanOrEqual**: >= \
|
536
|
+
* **LessThanOrEqual**: <=
|
537
|
+
*/
|
538
|
+
export declare type AcsRouterLabelOperator = string;
|
539
|
+
|
540
|
+
/** Router Queue Details */
|
541
|
+
export declare interface AcsRouterQueueDetails {
|
542
|
+
/** Router Queue Id */
|
543
|
+
id: string;
|
544
|
+
/** Router Queue Name */
|
545
|
+
name: string;
|
546
|
+
/** Router Queue Labels */
|
547
|
+
labels: {
|
548
|
+
[propertyName: string]: string;
|
549
|
+
};
|
550
|
+
}
|
551
|
+
|
552
|
+
/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.RouterWorkerDeleted event */
|
553
|
+
export declare type AcsRouterWorkerDeletedEventData = AcsRouterWorkerEventData & {};
|
554
|
+
|
555
|
+
/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.RouterWorkerDeregistered event */
|
556
|
+
export declare interface AcsRouterWorkerDeregisteredEventData {
|
557
|
+
/** Router Worker Deregistered Worker Id */
|
558
|
+
workerId: string;
|
559
|
+
}
|
560
|
+
|
561
|
+
/** Schema of common properties of all Router Worker events */
|
562
|
+
export declare type AcsRouterWorkerEventData = AcsRouterEventData & {
|
563
|
+
/** Router Worker events Worker Id */
|
564
|
+
workerId: string;
|
565
|
+
};
|
566
|
+
|
567
|
+
/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.RouterWorkerOfferAccepted event */
|
568
|
+
export declare type AcsRouterWorkerOfferAcceptedEventData = AcsRouterWorkerEventData & {
|
569
|
+
/** Router Worker Offer Accepted Queue Id */
|
570
|
+
queueId: string;
|
571
|
+
/** Router Worker Offer Accepted Offer Id */
|
572
|
+
offerId: string;
|
573
|
+
/** Router Worker Offer Accepted Assignment Id */
|
574
|
+
assignmentId: string;
|
575
|
+
/** Router Worker Offer Accepted Job Priority */
|
576
|
+
jobPriority: number;
|
577
|
+
/** Router Worker Offer Accepted Worker Labels */
|
578
|
+
workerLabels: {
|
579
|
+
[propertyName: string]: string;
|
580
|
+
};
|
581
|
+
/** Router Worker Offer Accepted Worker Tags */
|
582
|
+
workerTags: {
|
583
|
+
[propertyName: string]: string;
|
584
|
+
};
|
585
|
+
/** Router Worker Offer Accepted Job Labels */
|
586
|
+
jobLabels: {
|
587
|
+
[propertyName: string]: string;
|
588
|
+
};
|
589
|
+
/** Router Worker Offer Accepted Job Tags */
|
590
|
+
jobTags: {
|
591
|
+
[propertyName: string]: string;
|
592
|
+
};
|
593
|
+
};
|
594
|
+
|
595
|
+
/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.RouterWorkerOfferDeclined event */
|
596
|
+
export declare type AcsRouterWorkerOfferDeclinedEventData = AcsRouterWorkerEventData & {
|
597
|
+
/** Router Worker Offer Declined Queue Id */
|
598
|
+
queueId: string;
|
599
|
+
/** Router Worker Offer Declined Offer Id */
|
600
|
+
offerId: string;
|
601
|
+
};
|
602
|
+
|
603
|
+
/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.RouterWorkerOfferExpired event */
|
604
|
+
export declare type AcsRouterWorkerOfferExpiredEventData = AcsRouterWorkerEventData & {
|
605
|
+
/** Router Worker Offer Expired Queue Id */
|
606
|
+
queueId: string;
|
607
|
+
/** Router Worker Offer Expired Offer Id */
|
608
|
+
offerId: string;
|
609
|
+
};
|
610
|
+
|
611
|
+
/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.RouterWorkerOfferIssued event */
|
612
|
+
export declare type AcsRouterWorkerOfferIssuedEventData = AcsRouterWorkerEventData & {
|
613
|
+
/** Router Worker Offer Issued Queue Id */
|
614
|
+
queueId: string;
|
615
|
+
/** Router Worker Offer Issued Offer Id */
|
616
|
+
offerId: string;
|
617
|
+
/** Router Worker Offer Issued Job Priority */
|
618
|
+
jobPriority: number;
|
619
|
+
/** Router Worker Offer Issued Worker Labels */
|
620
|
+
workerLabels: {
|
621
|
+
[propertyName: string]: string;
|
622
|
+
};
|
623
|
+
/** Router Worker Offer Issued Time in UTC */
|
624
|
+
offeredOn: string;
|
625
|
+
/** Router Worker Offer Issued Expiration Time in UTC */
|
626
|
+
expiresOn: string;
|
627
|
+
/** Router Worker Offer Issued Worker Tags */
|
628
|
+
workerTags: {
|
629
|
+
[propertyName: string]: string;
|
630
|
+
};
|
631
|
+
/** Router Worker Offer Issued Job Labels */
|
632
|
+
jobLabels: {
|
633
|
+
[propertyName: string]: string;
|
634
|
+
};
|
635
|
+
/** Router Worker Offer Issued Job Tags */
|
636
|
+
jobTags: {
|
637
|
+
[propertyName: string]: string;
|
638
|
+
};
|
639
|
+
};
|
640
|
+
|
641
|
+
/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.RouterWorkerOfferRevoked event */
|
642
|
+
export declare type AcsRouterWorkerOfferRevokedEventData = AcsRouterWorkerEventData & {
|
643
|
+
/** Router Worker Offer Revoked Queue Id */
|
644
|
+
queueId: string;
|
645
|
+
/** Router Worker Offer Revoked Offer Id */
|
646
|
+
offerId: string;
|
647
|
+
};
|
648
|
+
|
649
|
+
/** Schema of the Data property of an EventGridEvent for a Microsoft.Communication.RouterWorkerRegistered event */
|
650
|
+
export declare interface AcsRouterWorkerRegisteredEventData {
|
651
|
+
/** Router Worker Registered Worker Id */
|
652
|
+
workerId: string;
|
653
|
+
/** Router Worker Registered Queue Info */
|
654
|
+
queueAssignments: AcsRouterQueueDetails[];
|
655
|
+
/** Router Worker Registered Channel Configuration */
|
656
|
+
channelConfigurations: AcsRouterChannelConfiguration[];
|
657
|
+
/** Router Worker Register Total Capacity */
|
658
|
+
totalCapacity: number;
|
659
|
+
/** Router Worker Registered Labels */
|
660
|
+
labels: {
|
661
|
+
[propertyName: string]: string;
|
662
|
+
};
|
663
|
+
/** Router Worker Registered Tags */
|
664
|
+
tags: {
|
665
|
+
[propertyName: string]: string;
|
666
|
+
};
|
667
|
+
}
|
668
|
+
|
669
|
+
/** Router Job Worker Selector */
|
670
|
+
export declare interface AcsRouterWorkerSelector {
|
671
|
+
/** Router Job Worker Selector Key */
|
672
|
+
key: string;
|
673
|
+
/** Router Job Worker Selector Label Operator */
|
674
|
+
labelOperator: AcsRouterLabelOperator;
|
675
|
+
/** Router Job Worker Selector Value */
|
676
|
+
labelValue: any;
|
677
|
+
/** Router Job Worker Selector Time to Live in Seconds */
|
678
|
+
ttlSeconds: number;
|
679
|
+
/** Router Job Worker Selector State */
|
680
|
+
state: AcsRouterWorkerSelectorState;
|
681
|
+
/** Router Job Worker Selector Expiration Time */
|
682
|
+
expirationTime: string;
|
683
|
+
}
|
684
|
+
|
685
|
+
/**
|
686
|
+
* Defines values for AcsRouterWorkerSelectorState. \
|
687
|
+
* {@link KnownAcsRouterWorkerSelectorState} can be used interchangeably with AcsRouterWorkerSelectorState,
|
688
|
+
* this enum contains the known values that the service supports.
|
689
|
+
* ### Known values supported by the service
|
690
|
+
* **active**: Router Job Worker Selector is Active \
|
691
|
+
* **expired**: Router Job Worker Selector has Expire
|
692
|
+
*/
|
693
|
+
export declare type AcsRouterWorkerSelectorState = string;
|
694
|
+
|
331
695
|
/** Schema for details of a delivery attempt */
|
332
696
|
export declare interface AcsSmsDeliveryAttempt {
|
333
697
|
/** TimeStamp when delivery was attempted */
|
@@ -1767,6 +2131,46 @@ export declare interface KeyVaultSecretNewVersionCreatedEventData {
|
|
1767
2131
|
exp: number;
|
1768
2132
|
}
|
1769
2133
|
|
2134
|
+
/** Known values of {@link AcsRouterJobStatus} that the service accepts. */
|
2135
|
+
export declare const enum KnownAcsRouterJobStatus {
|
2136
|
+
PendingClassification = "PendingClassification",
|
2137
|
+
Queued = "Queued",
|
2138
|
+
Assigned = "Assigned",
|
2139
|
+
Completed = "Completed",
|
2140
|
+
Closed = "Closed",
|
2141
|
+
Cancelled = "Cancelled",
|
2142
|
+
ClassificationFailed = "ClassificationFailed",
|
2143
|
+
Created = "Created",
|
2144
|
+
PendingSchedule = "PendingSchedule",
|
2145
|
+
Scheduled = "Scheduled",
|
2146
|
+
ScheduleFailed = "ScheduleFailed",
|
2147
|
+
WaitingForActivation = "WaitingForActivation"
|
2148
|
+
}
|
2149
|
+
|
2150
|
+
/** Known values of {@link AcsRouterLabelOperator} that the service accepts. */
|
2151
|
+
export declare const enum KnownAcsRouterLabelOperator {
|
2152
|
+
/** = */
|
2153
|
+
Equal = "Equal",
|
2154
|
+
/** != */
|
2155
|
+
NotEqual = "NotEqual",
|
2156
|
+
/** > */
|
2157
|
+
Greater = "Greater",
|
2158
|
+
/** < */
|
2159
|
+
Less = "Less",
|
2160
|
+
/** >= */
|
2161
|
+
GreaterThanOrEqual = "GreaterThanOrEqual",
|
2162
|
+
/** <= */
|
2163
|
+
LessThanOrEqual = "LessThanOrEqual"
|
2164
|
+
}
|
2165
|
+
|
2166
|
+
/** Known values of {@link AcsRouterWorkerSelectorState} that the service accepts. */
|
2167
|
+
export declare const enum KnownAcsRouterWorkerSelectorState {
|
2168
|
+
/** Router Job Worker Selector is Active */
|
2169
|
+
Active = "active",
|
2170
|
+
/** Router Job Worker Selector has Expire */
|
2171
|
+
Expired = "expired"
|
2172
|
+
}
|
2173
|
+
|
1770
2174
|
/** Known values of {@link AppAction} that the service accepts. */
|
1771
2175
|
export declare const enum KnownAppAction {
|
1772
2176
|
/** Web app was restarted. */
|
@@ -2791,6 +3195,46 @@ export declare interface ResourceHttpRequest {
|
|
2791
3195
|
url: string;
|
2792
3196
|
}
|
2793
3197
|
|
3198
|
+
/** Schema of the Data property of an EventGridEvent for a Microsoft.ResourceNotifications.HealthResources.ResourceAnnotated event. */
|
3199
|
+
export declare type ResourceNotificationsHealthResourcesAnnotatedEventData = ResourceNotificationsResourceUpdatedEventData & {};
|
3200
|
+
|
3201
|
+
/** Schema of the Data property of an EventGridEvent for a Microsoft.ResourceNotifications.HealthResources.AvailabilityStatusChanged event. */
|
3202
|
+
export declare type ResourceNotificationsHealthResourcesAvailabilityStatusChangedEventData = ResourceNotificationsResourceUpdatedEventData & {};
|
3203
|
+
|
3204
|
+
/** details of operational info */
|
3205
|
+
export declare interface ResourceNotificationsOperationalDetails {
|
3206
|
+
/** Date and Time when resource was updated */
|
3207
|
+
resourceEventTime: string;
|
3208
|
+
}
|
3209
|
+
|
3210
|
+
/** Describes the schema of the properties under resource info which are common across all ARN system topic events */
|
3211
|
+
export declare interface ResourceNotificationsResourceUpdatedDetails {
|
3212
|
+
/** id of the resource for which the event is being emitted */
|
3213
|
+
id: string;
|
3214
|
+
/** name of the resource for which the event is being emitted */
|
3215
|
+
name: string;
|
3216
|
+
/** the type of the resource for which the event is being emitted */
|
3217
|
+
type: string;
|
3218
|
+
/** the location of the resource for which the event is being emitted */
|
3219
|
+
location: string;
|
3220
|
+
/** the tags on the resource for which the event is being emitted */
|
3221
|
+
tags: string;
|
3222
|
+
/** properties in the payload of the resource for which the event is being emitted */
|
3223
|
+
properties: {
|
3224
|
+
[propertyName: string]: any;
|
3225
|
+
};
|
3226
|
+
}
|
3227
|
+
|
3228
|
+
/** Describes the schema of the common properties across all ARN system topic events */
|
3229
|
+
export declare interface ResourceNotificationsResourceUpdatedEventData {
|
3230
|
+
/** resourceInfo details for update event */
|
3231
|
+
resourceDetails: ResourceNotificationsResourceUpdatedDetails;
|
3232
|
+
/** details about operational info */
|
3233
|
+
operationalDetails: ResourceNotificationsOperationalDetails;
|
3234
|
+
/** api version of the resource properties bag */
|
3235
|
+
apiVersion: string;
|
3236
|
+
}
|
3237
|
+
|
2794
3238
|
/** Schema of the Data property of an EventGridEvent for a Microsoft.Resources.ResourceWriteCancel event. This is raised when a resource create or update operation is canceled. */
|
2795
3239
|
export declare interface ResourceWriteCancelEventData {
|
2796
3240
|
/** The tenant ID of the resource. */
|
@@ -3604,6 +4048,52 @@ export declare interface SystemEventNameToEventData {
|
|
3604
4048
|
"Microsoft.AppConfiguration.SnapshotCreated": AppConfigurationSnapshotCreatedEventData;
|
3605
4049
|
/** An interface for the event data of a "Microsoft.AppConfiguration.SnapshotModified" event. */
|
3606
4050
|
"Microsoft.AppConfiguration.SnapshotModified": AppConfigurationSnapshotModifiedEventData;
|
4051
|
+
/** An interface for the event data of a "Microsoft.ResourceNotifications.HealthResources.AvailabilityStatusChanged" event. */
|
4052
|
+
"Microsoft.ResourceNotifications.HealthResources.AvailabilityStatusChanged": ResourceNotificationsHealthResourcesAvailabilityStatusChangedEventData;
|
4053
|
+
/** An interface for the event data of a "Microsoft.ResourceNotifications.HealthResources.ResourceAnnotated" event. */
|
4054
|
+
"Microsoft.ResourceNotifications.HealthResources.ResourceAnnotated": ResourceNotificationsHealthResourcesAnnotatedEventData;
|
4055
|
+
/** An interface for the event data of a "Microsoft.Communication.RouterWorkerDeregistered" event. */
|
4056
|
+
"Microsoft.Communication.RouterWorkerDeregistered": AcsRouterWorkerDeregisteredEventData;
|
4057
|
+
/** An interface for the event data of a "Microsoft.Communication.RouterWorkerRegistered" event. */
|
4058
|
+
"Microsoft.Communication.RouterWorkerRegistered": AcsRouterWorkerRegisteredEventData;
|
4059
|
+
/** An interface for the event data of a "Microsoft.Communication.RouterJobCancelled" event. */
|
4060
|
+
"Microsoft.Communication.RouterJobCancelled": AcsRouterJobCancelledEventData;
|
4061
|
+
/** An interface for the event data of a "Microsoft.Communication.RouterJobClassificationFailed" event. */
|
4062
|
+
"Microsoft.Communication.RouterJobClassificationFailed": AcsRouterJobClassificationFailedEventData;
|
4063
|
+
/** An interface for the event data of a "Microsoft.Communication.RouterJobClassified" event. */
|
4064
|
+
"Microsoft.Communication.RouterJobClassified": AcsRouterJobClassifiedEventData;
|
4065
|
+
/** An interface for the event data of a "Microsoft.Communication.RouterJobClosed" event. */
|
4066
|
+
"Microsoft.Communication.RouterJobClosed": AcsRouterJobClosedEventData;
|
4067
|
+
/** An interface for the event data of a "Microsoft.Communication.RouterJobCompleted" event. */
|
4068
|
+
"Microsoft.Communication.RouterJobCompleted": AcsRouterJobCompletedEventData;
|
4069
|
+
/** An interface for the event data of a "Microsoft.Communication.RouterJobDeleted" event. */
|
4070
|
+
"Microsoft.Communication.RouterJobDeleted": AcsRouterJobDeletedEventData;
|
4071
|
+
/** An interface for the event data of a "Microsoft.Communication.RouterJobExceptionTriggered" event. */
|
4072
|
+
"Microsoft.Communication.RouterJobExceptionTriggered": AcsRouterJobExceptionTriggeredEventData;
|
4073
|
+
/** An interface for the event data of a "Microsoft.Communication.RouterJobQueued" event. */
|
4074
|
+
"Microsoft.Communication.RouterJobQueued": AcsRouterJobQueuedEventData;
|
4075
|
+
/** An interface for the event data of a "Microsoft.Communication.RouterJobReceived" event. */
|
4076
|
+
"Microsoft.Communication.RouterJobReceived": AcsRouterJobReceivedEventData;
|
4077
|
+
/** An interface for the event data of a "Microsoft.Communication.RouterJobSchedulingFailed" event. */
|
4078
|
+
"Microsoft.Communication.RouterJobSchedulingFailed": AcsRouterJobSchedulingFailedEventData;
|
4079
|
+
/** An interface for the event data of a "Microsoft.Communication.RouterJobUnassigned" event. */
|
4080
|
+
"Microsoft.Communication.RouterJobUnassigned": AcsRouterJobUnassignedEventData;
|
4081
|
+
/** An interface for the event data of a "Microsoft.Communication.RouterJobWaitingForActivation" event. */
|
4082
|
+
"Microsoft.Communication.RouterJobWaitingForActivation": AcsRouterJobWaitingForActivationEventData;
|
4083
|
+
/** An interface for the event data of a "Microsoft.Communication.RouterJobWorkerSelectorsExpire" event. */
|
4084
|
+
"Microsoft.Communication.RouterJobWorkerSelectorsExpire": AcsRouterJobWorkerSelectorsExpiredEventData;
|
4085
|
+
/** An interface for the event data of a "Microsoft.Communication.RouterWorkerDeleted" event. */
|
4086
|
+
"Microsoft.Communication.RouterWorkerDeleted": AcsRouterWorkerDeletedEventData;
|
4087
|
+
/** An interface for the event data of a "Microsoft.Communication.RouterWorkerOfferAccepted" event. */
|
4088
|
+
"Microsoft.Communication.RouterWorkerOfferAccepted": AcsRouterWorkerOfferAcceptedEventData;
|
4089
|
+
/** An interface for the event data of a "Microsoft.Communication.RouterWorkerOfferDeclined" event. */
|
4090
|
+
"Microsoft.Communication.RouterWorkerOfferDeclined": AcsRouterWorkerOfferDeclinedEventData;
|
4091
|
+
/** An interface for the event data of a "Microsoft.Communication.RouterWorkerOfferExpired" event. */
|
4092
|
+
"Microsoft.Communication.RouterWorkerOfferExpired": AcsRouterWorkerOfferExpiredEventData;
|
4093
|
+
/** An interface for the event data of a "Microsoft.Communication.RouterWorkerOfferIssued" event. */
|
4094
|
+
"Microsoft.Communication.RouterWorkerOfferIssued": AcsRouterWorkerOfferIssuedEventData;
|
4095
|
+
/** An interface for the event data of a "Microsoft.Communication.RouterWorkerOfferRevoked" event. */
|
4096
|
+
"Microsoft.Communication.RouterWorkerOfferRevoked": AcsRouterWorkerOfferRevokedEventData;
|
3607
4097
|
}
|
3608
4098
|
|
3609
4099
|
/** Schema of the Data property of an EventGridEvent for a Microsoft.Web.AppServicePlanUpdated event. */
|