workflow_triggers_callback_urls
Creates, updates, deletes, gets or lists a workflow_triggers_callback_urls
resource.
Overview
Name | workflow_triggers_callback_urls |
Type | Resource |
Id | azure.app_service.workflow_triggers_callback_urls |
Fields
The following fields are returned by SELECT
queries:
- list
Name | Datatype | Description |
---|---|---|
basePath | string | Gets the workflow trigger callback URL base path. |
method | string | Gets the workflow trigger callback URL HTTP method. |
queries | object | Gets the workflow trigger callback URL query parameters. |
relativePath | string | Gets the workflow trigger callback URL relative path. |
relativePathParameters | array | Gets the workflow trigger callback URL relative path parameters. |
value | string | Gets the workflow trigger callback URL. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | subscriptionId , resourceGroupName , name , workflowName , triggerName | Get the callback URL for a workflow trigger. |
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 |
---|---|---|
name | string | Site name. |
resourceGroupName | string | Name of the resource group to which the resource belongs. |
subscriptionId | string | Your Azure subscription ID. This is a GUID-formatted string (e.g. 00000000-0000-0000-0000-000000000000). |
triggerName | string | The workflow trigger name. |
workflowName | string | The workflow name. |
SELECT
examples
- list
Get the callback URL for a workflow trigger.
SELECT
basePath,
method,
queries,
relativePath,
relativePathParameters,
value
FROM azure.app_service.workflow_triggers_callback_urls
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND name = '{{ name }}' -- required
AND workflowName = '{{ workflowName }}' -- required
AND triggerName = '{{ triggerName }}' -- required
;