Skip to main content

workflows_connections_slots

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

Overview

Nameworkflows_connections_slots
TypeResource
Idazure.app_service.workflows_connections_slots

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, slot

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.
slotstringName of the deployment slot.
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_slots
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND name = '{{ name }}' -- required
AND slot = '{{ slot }}' -- required
;