edge_action_execution_filters
Creates, updates, deletes, gets or lists an edge_action_execution_filters resource.
Overview
| Name | edge_action_execution_filters |
| Type | Resource |
| Id | azure.edge_actions.edge_action_execution_filters |
Fields
The following fields are returned by SELECT queries:
- get
- list_by_edge_action
| 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. |
executionFilterIdentifierHeaderName | string | Custom Header Key associated with the execution filter. Required. |
executionFilterIdentifierHeaderValue | string | Custom Header Value associated with the execution filter. Required. |
lastUpdateTime | string (date-time) | The last update time in UTC for the execution filter. |
location | string | The geo-location where the resource lives. Required. |
provisioningState | string | The provisioning state. Known values are: "Succeeded", "Failed", "Canceled", "Provisioning", and "Upgrading". (Succeeded, Failed, Canceled, Provisioning, Upgrading) |
systemData | object | Azure Resource Manager metadata containing createdBy and modifiedBy information. |
tags | object | Resource tags. |
type | string | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts". |
versionId | string | The referenced versionId of the edgeaction version. Required. |
| 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. |
executionFilterIdentifierHeaderName | string | Custom Header Key associated with the execution filter. Required. |
executionFilterIdentifierHeaderValue | string | Custom Header Value associated with the execution filter. Required. |
lastUpdateTime | string (date-time) | The last update time in UTC for the execution filter. |
location | string | The geo-location where the resource lives. Required. |
provisioningState | string | The provisioning state. Known values are: "Succeeded", "Failed", "Canceled", "Provisioning", and "Upgrading". (Succeeded, Failed, Canceled, Provisioning, Upgrading) |
systemData | object | Azure Resource Manager metadata containing createdBy and modifiedBy information. |
tags | object | Resource tags. |
type | string | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts". |
versionId | string | The referenced versionId of the edgeaction version. Required. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | resource_group_name, edge_action_name, execution_filter, subscription_id | Get a EdgeActionExecutionFilter. | |
list_by_edge_action | select | resource_group_name, edge_action_name, subscription_id | List EdgeActionExecutionFilter resources by EdgeAction. | |
create | insert | resource_group_name, edge_action_name, execution_filter, subscription_id, location | Create a EdgeActionExecutionFilter. | |
update | update | resource_group_name, edge_action_name, execution_filter, subscription_id | Update a EdgeActionExecutionFilter. | |
delete | delete | resource_group_name, edge_action_name, execution_filter, subscription_id | Delete a EdgeActionExecutionFilter. |
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 |
|---|---|---|
edge_action_name | string | The name of the Edge Action. Required. |
execution_filter | string | The name of the execution filter. Required. |
resource_group_name | string | The name of the resource group. The name is case insensitive. Required. |
subscription_id | string |
SELECT examples
- get
- list_by_edge_action
Get a EdgeActionExecutionFilter.
SELECT
id,
name,
executionFilterIdentifierHeaderName,
executionFilterIdentifierHeaderValue,
lastUpdateTime,
location,
provisioningState,
systemData,
tags,
type,
versionId
FROM azure.edge_actions.edge_action_execution_filters
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND edge_action_name = '{{ edge_action_name }}' -- required
AND execution_filter = '{{ execution_filter }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;
List EdgeActionExecutionFilter resources by EdgeAction.
SELECT
id,
name,
executionFilterIdentifierHeaderName,
executionFilterIdentifierHeaderValue,
lastUpdateTime,
location,
provisioningState,
systemData,
tags,
type,
versionId
FROM azure.edge_actions.edge_action_execution_filters
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND edge_action_name = '{{ edge_action_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;
INSERT examples
- create
- Manifest
Create a EdgeActionExecutionFilter.
INSERT INTO azure.edge_actions.edge_action_execution_filters (
tags,
location,
properties,
resource_group_name,
edge_action_name,
execution_filter,
subscription_id
)
SELECT
'{{ tags }}',
'{{ location }}' /* required */,
'{{ properties }}',
'{{ resource_group_name }}',
'{{ edge_action_name }}',
'{{ execution_filter }}',
'{{ subscription_id }}'
RETURNING
id,
name,
location,
properties,
systemData,
tags,
type
;
# Description fields are for documentation purposes
- name: edge_action_execution_filters
props:
- name: resource_group_name
value: "{{ resource_group_name }}"
description: Required parameter for the edge_action_execution_filters resource.
- name: edge_action_name
value: "{{ edge_action_name }}"
description: Required parameter for the edge_action_execution_filters resource.
- name: execution_filter
value: "{{ execution_filter }}"
description: Required parameter for the edge_action_execution_filters resource.
- name: subscription_id
value: "{{ subscription_id }}"
description: Required parameter for the edge_action_execution_filters resource.
- name: tags
value: "{{ tags }}"
description: |
Resource tags.
- name: location
value: "{{ location }}"
description: |
The geo-location where the resource lives. Required.
- name: properties
description: |
The resource-specific properties for this resource.
value:
versionId: "{{ versionId }}"
lastUpdateTime: "{{ lastUpdateTime }}"
executionFilterIdentifierHeaderName: "{{ executionFilterIdentifierHeaderName }}"
executionFilterIdentifierHeaderValue: "{{ executionFilterIdentifierHeaderValue }}"
provisioningState: "{{ provisioningState }}"
UPDATE examples
- update
Update a EdgeActionExecutionFilter.
UPDATE azure.edge_actions.edge_action_execution_filters
SET
tags = '{{ tags }}',
properties = '{{ properties }}'
WHERE
resource_group_name = '{{ resource_group_name }}' --required
AND edge_action_name = '{{ edge_action_name }}' --required
AND execution_filter = '{{ execution_filter }}' --required
AND subscription_id = '{{ subscription_id }}' --required
RETURNING
id,
name,
location,
properties,
systemData,
tags,
type;
DELETE examples
- delete
Delete a EdgeActionExecutionFilter.
DELETE FROM azure.edge_actions.edge_action_execution_filters
WHERE resource_group_name = '{{ resource_group_name }}' --required
AND edge_action_name = '{{ edge_action_name }}' --required
AND execution_filter = '{{ execution_filter }}' --required
AND subscription_id = '{{ subscription_id }}' --required
;