Skip to main content

email_sign_in_urls

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

Overview

Nameemail_sign_in_urls
TypeResource
Idazure.bot_service.email_sign_in_urls

Fields

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

Methods

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

INSERT example

Use the following StackQL query and manifest file to create a new email_sign_in_urls resource.

/*+ create */
INSERT INTO azure.bot_service.email_sign_in_urls (
resourceGroupName,
resourceName,
subscriptionId
)
SELECT
'{{ resourceGroupName }}',
'{{ resourceName }}',
'{{ subscriptionId }}'
;