workflow_task
Creates, updates, deletes, gets or lists a workflow_task resource.
Overview
| Name | workflow_task |
| Type | Resource |
| Id | azure.purview_workflow.workflow_task |
Fields
The following fields are returned by SELECT queries:
SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_raw | exec | task_id, endpoint | Get a workflow task. | |
reassign | exec | task_id, endpoint | Reassign a workflow task. |
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 |
|---|---|---|
endpoint | string | The service endpoint host (no scheme), e.g. myaccount.table.cosmos.azure.com:443 - value of the client endpoint parameter. (default: ) |
task_id | string | The task id. Required. |
Lifecycle Methods
- get_raw
- reassign
Get a workflow task.
EXEC azure.purview_workflow.workflow_task.get_raw
@task_id='{{ task_id }}' --required,
@endpoint='{{ endpoint }}' --required
;
Reassign a workflow task.
EXEC azure.purview_workflow.workflow_task.reassign
@task_id='{{ task_id }}' --required,
@endpoint='{{ endpoint }}' --required
;