Skip to main content

media_services_operation_results

Creates, updates, deletes, gets or lists a media_services_operation_results resource.

Overview

Namemedia_services_operation_results
TypeResource
Idazure_extras.media.media_services_operation_results

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringFully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}.
namestringThe name of the resource.
encryptionobjectThe account encryption properties.
identityobjectThe Managed Identity for the Media Services account.
keyDeliveryobjectThe Key Delivery properties for Media Services account.
locationstringThe geo-location where the resource lives. Required.
mediaServiceIdstringThe Media Services account ID.
privateEndpointConnectionsarrayThe Private Endpoint Connections created for the Media Service account.
provisioningStatestringProvisioning state of the Media Services account. Known values are: "Failed", "InProgress", and "Succeeded".
publicNetworkAccessstringWhether or not public network access is allowed for resources under the Media Services account. Known values are: "Enabled" and "Disabled".
storageAccountsarrayThe storage accounts for this resource.
storageAuthenticationstringKnown values are: "System" and "ManagedIdentity".
systemDataobjectThe system metadata relating to this resource.
tagsobjectResource tags.
typestringThe type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts".

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectlocation_name, operation_id, subscription_idGet operation result. 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.

NameDatatypeDescription
location_namestringLocation name. Required.
operation_idstringOperation Id. Required.
subscription_idstring

SELECT examples

Get operation result. Get media service operation result.

SELECT
id,
name,
encryption,
identity,
keyDelivery,
location,
mediaServiceId,
privateEndpointConnections,
provisioningState,
publicNetworkAccess,
storageAccounts,
storageAuthentication,
systemData,
tags,
type
FROM azure_extras.media.media_services_operation_results
WHERE location_name = '{{ location_name }}' -- required
AND operation_id = '{{ operation_id }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;