Skip to main content

qna_maker_endpoint_keys

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

Overview

Nameqna_maker_endpoint_keys
TypeResource
Idazure.bot_service.qna_maker_endpoint_keys

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
installedVersionstringCurrent version of runtime.
lastStableVersionstringLatest version of runtime.
primaryEndpointKeystringPrimary Access Key.
secondaryEndpointKeystringSecondary Access Key.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscription_idLists the QnA Maker endpoint keys.

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
subscription_idstring

SELECT examples

Lists the QnA Maker endpoint keys.

SELECT
installedVersion,
lastStableVersion,
primaryEndpointKey,
secondaryEndpointKey
FROM azure.bot_service.qna_maker_endpoint_keys
WHERE subscription_id = '{{ subscription_id }}' -- required
;