logic_apps_workflows_connections
Creates, updates, deletes, gets or lists a logic_apps_workflows_connections
resource.
Overview
Name | logic_apps_workflows_connections |
Type | Resource |
Id | azure.container_apps.logic_apps_workflows_connections |
Fields
The following fields are returned by SELECT
queries:
- list
Connections information returned.
Name | Datatype | Description |
---|---|---|
id | string | The resource id. |
name | string | Gets the resource name. |
kind | string | The resource kind. |
location | string | The resource location. |
properties | object | Additional workflow properties. |
type | string | Gets the resource type. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | subscriptionId , 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.
Name | Datatype | Description |
---|---|---|
containerAppName | string | Name of the Container App. |
logicAppName | string | Name of the Logic App, the extension resource. |
resourceGroupName | string | The name of the resource group. The name is case insensitive. |
subscriptionId | string (uuid) | The ID of the target subscription. The value must be an UUID. |
SELECT
examples
- list
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
;