Skip to main content

logic_apps_workflows

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

Overview

Namelogic_apps_workflows
TypeResource
Idazure.container_apps.logic_apps_workflows

Fields

The following fields are returned by SELECT queries:

Workflow information returned.

NameDatatypeDescription
idstringThe resource id.
namestringGets the resource name.
kindstringThe resource kind.
locationstringThe resource location.
propertiesobjectAdditional workflow properties.
typestringGets the resource type.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, containerAppName, logicAppName, workflowName
listselectsubscriptionId, resourceGroupName, containerAppName, logicAppName

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
containerAppNamestringName of the Container App.
logicAppNamestringName of the Logic App, the extension resource.
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.
workflowNamestringWorkflow name.

SELECT examples

Workflow information returned.

SELECT
id,
name,
kind,
location,
properties,
type
FROM azure.container_apps.logic_apps_workflows
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND containerAppName = '{{ containerAppName }}' -- required
AND logicAppName = '{{ logicAppName }}' -- required
AND workflowName = '{{ workflowName }}' -- required
;