workflows
Creates, updates, deletes, gets or lists a workflows
resource.
Overview
Name | workflows |
Type | Resource |
Id | azure.data_replication.workflows |
Fields
- vw_workflows
- workflows
Name | Datatype | Description |
---|---|---|
id | text | Gets or sets the Id of the resource. |
name | text | Gets or sets the name of the resource. |
activity_id | text | field from the properties object |
allowed_actions | text | field from the properties object |
custom_properties | text | field from the properties object |
display_name | text | field from the properties object |
end_time | text | field from the properties object |
errors | text | field from the properties object |
jobName | text | field from the properties object |
object_id | text | field from the properties object |
object_internal_id | text | field from the properties object |
object_internal_name | text | field from the properties object |
object_name | text | field from the properties object |
object_type | text | field from the properties object |
replication_provider_id | text | field from the properties object |
resourceGroupName | text | field from the properties object |
source_fabric_provider_id | text | field from the properties object |
start_time | text | field from the properties object |
state | text | field from the properties object |
subscriptionId | text | field from the properties object |
system_data | text | field from the properties object |
target_fabric_provider_id | text | field from the properties object |
tasks | text | field from the properties object |
type | text | Gets or sets the type of the resource. |
vaultName | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
id | string | Gets or sets the Id of the resource. |
name | string | Gets or sets the name of the resource. |
properties | object | Workflow model properties. |
systemData | object | System data required to be defined for Azure resources. |
type | string | Gets or sets the type of the resource. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | jobName, resourceGroupName, subscriptionId, vaultName | Gets the details of the job. |
list | SELECT | resourceGroupName, subscriptionId, vaultName | Gets the list of jobs in the given vault. |
SELECT
examples
Gets the list of jobs in the given vault.
- vw_workflows
- workflows
SELECT
id,
name,
activity_id,
allowed_actions,
custom_properties,
display_name,
end_time,
errors,
jobName,
object_id,
object_internal_id,
object_internal_name,
object_name,
object_type,
replication_provider_id,
resourceGroupName,
source_fabric_provider_id,
start_time,
state,
subscriptionId,
system_data,
target_fabric_provider_id,
tasks,
type,
vaultName
FROM azure.data_replication.vw_workflows
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND vaultName = '{{ vaultName }}';
SELECT
id,
name,
properties,
systemData,
type
FROM azure.data_replication.workflows
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND vaultName = '{{ vaultName }}';