host_settings
Creates, updates, deletes, gets or lists a host_settings
resource.
Overview
Name | host_settings |
Type | Resource |
Id | azure.bot_service.host_settings |
Fields
Name | Datatype | Description |
---|---|---|
BotOpenIdMetadata | string | Same as toBotFromChannelOpenIdMetadataUrl, used by SDK < v4.12 |
OAuthUrl | string | For in-conversation bot user authentication |
ToBotFromChannelOpenIdMetadataUrl | string | For verifying incoming tokens from the channels |
ToBotFromChannelTokenIssuer | string | For verifying incoming tokens from the channels |
ToBotFromEmulatorOpenIdMetadataUrl | string | For verifying incoming tokens from bot emulator |
ToChannelFromBotLoginUrl | string | For getting access token to channels from bot host |
ToChannelFromBotOAuthScope | string | For getting access token to channels from bot host |
ValidateAuthority | boolean | Per cloud OAuth setting on whether authority is validated |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | subscriptionId | Get per subscription settings needed to host bot in compute resource such as Azure App Service |
SELECT
examples
Get per subscription settings needed to host bot in compute resource such as Azure App Service
SELECT
BotOpenIdMetadata,
OAuthUrl,
ToBotFromChannelOpenIdMetadataUrl,
ToBotFromChannelTokenIssuer,
ToBotFromEmulatorOpenIdMetadataUrl,
ToChannelFromBotLoginUrl,
ToChannelFromBotOAuthScope,
ValidateAuthority
FROM azure.bot_service.host_settings
WHERE subscriptionId = '{{ subscriptionId }}';