Skip to main content

operations

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

Overview

Nameoperations
TypeResource
Idazure_extras.media.operations

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
namestringThe operation name. Required.
actionTypestringIndicates the action type. "Internal"
displayobjectThe operation display name.
isDataActionbooleanWhether the operation applies to data-plane.
originstringOrigin of the operation.
serviceSpecificationobjectThe service specifications.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectList Operations. Lists 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

SELECT examples

List Operations. Lists all the Media Services operations.

SELECT
name,
actionType,
display,
isDataAction,
origin,
serviceSpecification
FROM azure_extras.media.operations
;