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.logic_apps.workflow_triggers_schema_json |
Fields
The following fields are returned by SELECT queries:
- get
| Name | Datatype | Description |
|---|---|---|
content | string | The JSON content. |
title | string | The JSON title. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | subscriptionId, resourceGroupName, workflowName, triggerName | api-version | Get the trigger schema as JSON. |
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 |
|---|---|---|
resourceGroupName | string | The resource group name. |
subscriptionId | string | The subscription id. |
triggerName | string | The workflow trigger name. |
workflowName | string | The workflow name. |
api-version | string | The API version. |
SELECT examples
- get
Get the trigger schema as JSON.
SELECT
content,
title
FROM azure.logic_apps.workflow_triggers_schema_json
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND workflowName = '{{ workflowName }}' -- required
AND triggerName = '{{ triggerName }}' -- required
AND api-version = '{{ api-version }}'
;