Skip to main content

workflow_version_triggers

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

Overview

Nameworkflow_version_triggers
TypeResource
Idazure.logic.workflow_version_triggers

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
basePathstringGets the workflow trigger callback URL base path.
methodstringGets the workflow trigger callback URL HTTP method.
queriesobjectGets the workflow trigger callback URL query parameters.
relativePathstringGets the workflow trigger callback URL relative path.
relativePathParametersarrayGets the workflow trigger callback URL relative path parameters.
valuestringGets the workflow trigger callback URL.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_callback_urlselectresource_group_name, workflow_name, version_id, trigger_name, subscription_idGet the callback url for a trigger of a workflow version.

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
resource_group_namestringThe resource group name. Required.
subscription_idstring
trigger_namestringThe workflow trigger name. Required.
version_idstringThe workflow versionId. Required.
workflow_namestringThe workflow name. Required.

SELECT examples

Get the callback url for a trigger of a workflow version.

SELECT
basePath,
method,
queries,
relativePath,
relativePathParameters,
value
FROM azure.logic.workflow_version_triggers
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND workflow_name = '{{ workflow_name }}' -- required
AND version_id = '{{ version_id }}' -- required
AND trigger_name = '{{ trigger_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;