Skip to main content

workflows_connections

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

Overview

Nameworkflows_connections
TypeResource
Idazure.app_service.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, 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.

NameDatatypeDescription
namestringSite name.
resourceGroupNamestringName of the resource group to which the resource belongs.
subscriptionIdstringYour Azure subscription ID. This is a GUID-formatted string (e.g. 00000000-0000-0000-0000-000000000000).

SELECT examples

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
;