operation_results
Creates, updates, deletes, gets or lists an operation_results resource.
Overview
| Name | operation_results |
| Type | Resource |
| Id | azure.media_services.operation_results |
Fields
The following fields are returned by SELECT queries:
- get
| Name | Datatype | Description |
|---|---|---|
identity | object | The Managed Identity for the Media Services account. |
location | string | The geo-location where the resource lives |
properties | object | The resource properties. |
systemData | object | The system metadata relating to this resource. |
tags | object | Resource tags. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | subscriptionId, locationName, operationId | api-version | Get media service operation result. |
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 |
|---|---|---|
locationName | string | Location name. |
operationId | string | Operation Id. |
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
- get
Get media service operation result.
SELECT
identity,
location,
properties,
systemData,
tags
FROM azure.media_services.operation_results
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND locationName = '{{ locationName }}' -- required
AND operationId = '{{ operationId }}' -- required
AND api-version = '{{ api-version }}'
;