forked from Azure/azure-rest-api-specs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Channel Archive Heartbeat event (Azure#15885)
* Add Channel Archive Heartbeat event * Removed added "required" field which caused validation errors. * Added examples for the new/updated events. Co-authored-by: Xueping Deng <[email protected]>
- Loading branch information
1 parent
18d056b
commit 3ef78c9
Showing
3 changed files
with
86 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 15 additions & 0 deletions
15
...icrosoft.Media/stable/2018-01-01/examples/MediaLiveEventChannelArchiveHeartbeatEvent.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
[ | ||
{ | ||
"topic": "/subscriptions/<subscription-id>/resourceGroups/<rg-name>/providers/Microsoft.Media/mediaservices/<account-name>", | ||
"subject": "liveEvent/mle1", | ||
"eventType": "Microsoft.Media.LiveEventChannelArchiveHeartbeat", | ||
"eventTime": "2021-05-14T23:50:00.324", | ||
"id": "7f450938-491f-41e1-b06f-c6cd3965d786", | ||
"data": { | ||
"channelLatencyMs": "10", | ||
"latencyResultCode": "S_OK" | ||
}, | ||
"dataVersion": "1.0", | ||
"metadataVersion": "1" | ||
} | ||
] |
29 changes: 29 additions & 0 deletions
29
...-plane/Microsoft.Media/stable/2018-01-01/examples/MediaLiveEventIngestHeartbeatEvent.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
[ | ||
{ | ||
"topic": "/subscriptions/<subscription-id>/resourceGroups/<rg-name>/providers/Microsoft.Media/mediaservices/<account-name>", | ||
"subject": "liveEvent/mle1", | ||
"eventType": "Microsoft.Media.LiveEventIngestHeartbeat", | ||
"eventTime": "2021-05-14T23:50:00.324", | ||
"id": "7f450938-491f-41e1-b06f-c6cd3965d786", | ||
"data": { | ||
"trackType": "video", | ||
"trackName": "video", | ||
"bitrate": 2500000, | ||
"incomingBitrate": 2462597, | ||
"lastTimestamp": "106999", | ||
"timescale": "1000", | ||
"overlapCount": 0, | ||
"discontinuityCount": 0, | ||
"nonincreasingCount": 0, | ||
"unexpectedBitrate": false, | ||
"state": "Running", | ||
"healthy": true, | ||
"lastFragmentArrivalTime": "2021-05-14T23:50:00.00", | ||
"ingestDriftValue": "0", | ||
"transcriptionState": "On", | ||
"transcriptionLanguage": "en-us" | ||
}, | ||
"dataVersion": "2.0", | ||
"metadataVersion": "1" | ||
} | ||
] |