live_events_get_status
Creates, updates, deletes, gets or lists a live_events_get_status
resource.
Overview
Name | live_events_get_status |
Type | Resource |
Id | azure.media_services.live_events_get_status |
Fields
The following fields are returned by SELECT
queries:
- list
OK. The request has succeeded.
Name | Datatype | Description |
---|---|---|
healthDescriptions | array | List of strings justifying the health status. |
healthStatus | string | Health status of last 20 seconds. |
ingestion | object | Live event ingestion entry. |
lastUpdatedTime | string (date-time) | Last updated UTC time of this status. |
state | string | Current state of the live event. See https://go.microsoft.com/fwlink/?linkid=2139012 for more information. |
trackStatus | array | Track entry list. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | subscriptionId , resourceGroupName , accountName , liveEventName | api-version | Gets status telemetry of a live event. |
Parameters
Parameters can be passed in the WHERE
clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
Name | Datatype | Description |
---|---|---|
accountName | string | The Media Services account name. |
liveEventName | string | The name of the live event, maximum length is 32. |
resourceGroupName | string | The name of the resource group within the Azure subscription. |
subscriptionId | string | The unique identifier for a Microsoft Azure subscription. |
api-version | string | The version of the API to be used with the client request. |
SELECT
examples
- list
Gets status telemetry of a live event.
SELECT
healthDescriptions,
healthStatus,
ingestion,
lastUpdatedTime,
state,
trackStatus
FROM azure.media_services.live_events_get_status
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND accountName = '{{ accountName }}' -- required
AND liveEventName = '{{ liveEventName }}' -- required
AND api-version = '{{ api-version }}'
;