workflow_triggers_schema_json
Creates, updates, deletes, gets or lists a workflow_triggers_schema_json
resource.
Overview
Name | workflow_triggers_schema_json |
Type | Resource |
Id | azure.app_service.workflow_triggers_schema_json |
Fields
Name | Datatype | Description |
---|---|---|
content | string | The JSON content. |
title | string | The JSON title. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | name, resourceGroupName, subscriptionId, triggerName, workflowName | Get the trigger schema as JSON. |
SELECT
examples
Get the trigger schema as JSON.
SELECT
content,
title
FROM azure.app_service.workflow_triggers_schema_json
WHERE name = '{{ name }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND triggerName = '{{ triggerName }}'
AND workflowName = '{{ workflowName }}';