Skip to main content

workflows

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

Overview

Nameworkflows
TypeResource
Idazure.data_replication.workflows

Fields

The following fields are returned by SELECT queries:

Returns Workflow Model on success.

NameDatatypeDescription
idstringGets or sets the Id of the resource.
namestringGets or sets the name of the resource.
propertiesobjectWorkflow model properties.
systemDataobjectSystem data required to be defined for Azure resources.
typestringGets or sets the type of the resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, vaultName, jobNameGets the details of the job.
listselectsubscriptionId, resourceGroupName, vaultName$filter, continuationTokenGets the list of jobs in the given vault.

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.

NameDatatypeDescription
jobNamestringThe job (workflow) name.
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.
vaultNamestringThe vault name.
$filterstringFilter string.
continuationTokenstringContinuation token.

SELECT examples

Gets the details of the job.

SELECT
id,
name,
properties,
systemData,
type
FROM azure.data_replication.workflows
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND vaultName = '{{ vaultName }}' -- required
AND jobName = '{{ jobName }}' -- required
;