Skip to main content

logic_apps_workflows_connections

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

Overview

Namelogic_apps_workflows_connections
TypeResource
Idazure.container_apps.logic_apps_workflows_connections

Fields

The following fields are returned by SELECT queries:

Connections 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
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.

SELECT examples

Connections information returned.

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