Skip to main content

workflows

Creates, updates, deletes, gets or lists a workflows resource.

Overview

Nameworkflows
TypeResource
Idazure.data_replication.workflows

Fields

NameDatatypeDescription
idtextGets or sets the Id of the resource.
nametextGets or sets the name of the resource.
activity_idtextfield from the properties object
allowed_actionstextfield from the properties object
custom_propertiestextfield from the properties object
display_nametextfield from the properties object
end_timetextfield from the properties object
errorstextfield from the properties object
jobNametextfield from the properties object
object_idtextfield from the properties object
object_internal_idtextfield from the properties object
object_internal_nametextfield from the properties object
object_nametextfield from the properties object
object_typetextfield from the properties object
replication_provider_idtextfield from the properties object
resourceGroupNametextfield from the properties object
source_fabric_provider_idtextfield from the properties object
start_timetextfield from the properties object
statetextfield from the properties object
subscriptionIdtextfield from the properties object
system_datatextfield from the properties object
target_fabric_provider_idtextfield from the properties object
taskstextfield from the properties object
typetextGets or sets the type of the resource.
vaultNametextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTjobName, resourceGroupName, subscriptionId, vaultNameGets the details of the job.
listSELECTresourceGroupName, subscriptionId, vaultNameGets the list of jobs in the given vault.

SELECT examples

Gets the list of jobs in the given vault.

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 }}';