Skip to main content

email_sign_in_urls

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

Overview

Nameemail_sign_in_urls
TypeResource
Idazure.bot_service.email_sign_in_urls

Fields

The following fields are returned by SELECT queries:

SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
createinsertresourceGroupName, resourceName, subscriptionIdCreates an email channel sign in url for a Bot Service

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
resourceGroupNamestringThe name of the Bot resource group in the user subscription.
resourceNamestringThe name of the Bot resource.
subscriptionIdstringAzure Subscription ID.

INSERT examples

Creates an email channel sign in url for a Bot Service

INSERT INTO azure.bot_service.email_sign_in_urls (
resourceGroupName,
resourceName,
subscriptionId
)
SELECT
'{{ resourceGroupName }}',
'{{ resourceName }}',
'{{ subscriptionId }}'
RETURNING
id,
location,
properties
;