media_services_operation_results
Creates, updates, deletes, gets or lists a media_services_operation_results resource.
Overview
| Name | media_services_operation_results |
| Type | Resource |
| Id | azure_extras.media.media_services_operation_results |
Fields
The following fields are returned by SELECT queries:
- get
| Name | Datatype | Description |
|---|---|---|
id | string | Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}. |
name | string | The name of the resource. |
encryption | object | The account encryption properties. |
identity | object | The Managed Identity for the Media Services account. |
keyDelivery | object | The Key Delivery properties for Media Services account. |
location | string | The geo-location where the resource lives. Required. |
mediaServiceId | string | The Media Services account ID. |
privateEndpointConnections | array | The Private Endpoint Connections created for the Media Service account. |
provisioningState | string | Provisioning state of the Media Services account. Known values are: "Failed", "InProgress", and "Succeeded". |
publicNetworkAccess | string | Whether or not public network access is allowed for resources under the Media Services account. Known values are: "Enabled" and "Disabled". |
storageAccounts | array | The storage accounts for this resource. |
storageAuthentication | string | Known values are: "System" and "ManagedIdentity". |
systemData | object | The system metadata relating to this resource. |
tags | object | Resource tags. |
type | string | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts". |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | location_name, operation_id, subscription_id | Get 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.
| Name | Datatype | Description |
|---|---|---|
location_name | string | Location name. Required. |
operation_id | string | Operation Id. Required. |
subscription_id | string |
SELECT examples
- get
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
;