workflows_connections
Creates, updates, deletes, gets or lists a workflows_connections
resource.
Overview
Name | workflows_connections |
Type | Resource |
Id | azure.app_service.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 , name |
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 |
---|---|---|
name | string | Site name. |
resourceGroupName | string | Name of the resource group to which the resource belongs. |
subscriptionId | string | Your Azure subscription ID. This is a GUID-formatted string (e.g. 00000000-0000-0000-0000-000000000000). |
SELECT
examples
- list
Connections information returned.
SELECT
id,
name,
kind,
location,
properties,
type
FROM azure.app_service.workflows_connections
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND name = '{{ name }}' -- required
;