Skip to main content

operations

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

Overview

Nameoperations
TypeResource
Idazure.media_services.operations

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
namestringThe operation name.
actionTypestringIndicates the action type.
displayobjectThe operation display name.
isDataActionbooleanWhether the operation applies to data-plane.
originstringOrigin of the operation.
propertiesobjectOperation properties format.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectapi-versionLists all the Media Services operations.

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
api-versionstringThe version of the API to be used with the client request.

SELECT examples

Lists all the Media Services operations.

SELECT
name,
actionType,
display,
isDataAction,
origin,
properties
FROM azure.media_services.operations
WHERE api-version = '{{ api-version }}'
;