Skip to main content

workflow_triggers_schema_json

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

Overview

Nameworkflow_triggers_schema_json
TypeResource
Idazure.logic_apps.workflow_triggers_schema_json

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
contentstringThe JSON content.
titlestringThe JSON title.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, workflowName, triggerNameapi-versionGet 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.

NameDatatypeDescription
resourceGroupNamestringThe resource group name.
subscriptionIdstringThe subscription id.
triggerNamestringThe workflow trigger name.
workflowNamestringThe workflow name.
api-versionstringThe API version.

SELECT examples

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 }}'
;