Skip to main content

accounts_channel_types

Creates, updates, deletes, gets or lists an accounts_channel_types resource.

Overview

Nameaccounts_channel_types
TypeResource
Idazure.engagement_fabric.accounts_channel_types

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
channelDescriptionstringText description for the channel
channelFunctionsarrayAll the available functions for the channel
channelTypestringChannel type

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscriptionId, resourceGroupName, accountName

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
accountNamestringAccount Name
resourceGroupNamestringResource Group Name
subscriptionIdstringSubscription ID

SELECT examples

OK

SELECT
channelDescription,
channelFunctions,
channelType
FROM azure.engagement_fabric.accounts_channel_types
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND accountName = '{{ accountName }}' -- required
;