Skip to main content

operation_results

Creates, updates, deletes, gets or lists an operation_results resource.

Overview

Nameoperation_results
TypeResource
Idazure.media_services.operation_results

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
identityobjectThe Managed Identity for the Media Services account.
locationstringThe geo-location where the resource lives
propertiesobjectThe resource properties.
systemDataobjectThe system metadata relating to this resource.
tagsobjectResource tags.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, locationName, operationIdapi-versionGet 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.

NameDatatypeDescription
locationNamestringLocation name.
operationIdstringOperation Id.
subscriptionIdstringThe unique identifier for a Microsoft Azure subscription.
api-versionstringThe version of the API to be used with the client request.

SELECT examples

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 }}'
;