mediaservices_edge_policies
Creates, updates, deletes, gets or lists a mediaservices_edge_policies resource.
Overview
| Name | mediaservices_edge_policies |
| Type | Resource |
| Id | azure.media_services.mediaservices_edge_policies |
Fields
The following fields are returned by SELECT queries:
- list
| Name | Datatype | Description |
|---|---|---|
usageDataCollectionPolicy | object |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | subscriptionId, resourceGroupName, accountName | api-version | List all the media edge policies associated with the Media Services account. |
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 |
|---|---|---|
accountName | string | The Media Services account name. |
resourceGroupName | string | The name of the resource group within the Azure subscription. |
subscriptionId | string | The unique identifier for a Microsoft Azure subscription. |
api-version | string | The version of the API to be used with the client request. |
SELECT examples
- list
List all the media edge policies associated with the Media Services account.
SELECT
usageDataCollectionPolicy
FROM azure.media_services.mediaservices_edge_policies
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND accountName = '{{ accountName }}' -- required
AND api-version = '{{ api-version }}'
;