workflow_run_action_request_histories
Creates, updates, deletes, gets or lists a workflow_run_action_request_histories
resource.
Overview
Name | workflow_run_action_request_histories |
Type | Resource |
Id | azure.logic_apps.workflow_run_action_request_histories |
Fields
- vw_workflow_run_action_request_histories
- workflow_run_action_request_histories
Name | Datatype | Description |
---|---|---|
id | text | The resource id. |
name | text | Gets the resource name. |
actionName | text | field from the properties object |
end_time | text | field from the properties object |
location | text | The resource location. |
request | text | field from the properties object |
requestHistoryName | text | field from the properties object |
resourceGroupName | text | field from the properties object |
response | text | field from the properties object |
runName | text | field from the properties object |
start_time | text | field from the properties object |
subscriptionId | text | field from the properties object |
tags | text | The resource tags. |
type | text | Gets the resource type. |
workflowName | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
id | string | The resource id. |
name | string | Gets the resource name. |
location | string | The resource location. |
properties | object | The request history. |
tags | object | The resource tags. |
type | string | Gets the resource type. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | actionName, requestHistoryName, resourceGroupName, runName, subscriptionId, workflowName | Gets a workflow run request history. |
list | SELECT | actionName, resourceGroupName, runName, subscriptionId, workflowName | List a workflow run request history. |
SELECT
examples
List a workflow run request history.
- vw_workflow_run_action_request_histories
- workflow_run_action_request_histories
SELECT
id,
name,
actionName,
end_time,
location,
request,
requestHistoryName,
resourceGroupName,
response,
runName,
start_time,
subscriptionId,
tags,
type,
workflowName
FROM azure.logic_apps.vw_workflow_run_action_request_histories
WHERE actionName = '{{ actionName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND runName = '{{ runName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND workflowName = '{{ workflowName }}';
SELECT
id,
name,
location,
properties,
tags,
type
FROM azure.logic_apps.workflow_run_action_request_histories
WHERE actionName = '{{ actionName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND runName = '{{ runName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND workflowName = '{{ workflowName }}';