Skip to main content

qn_a_maker_endpoint_keys

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

Overview

Nameqn_a_maker_endpoint_keys
TypeResource
Idazure.bot_service.qn_a_maker_endpoint_keys

Fields

The following fields are returned by SELECT queries:

If resource is retrieved successfully, the service should return 200 (OK).

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
getselectsubscriptionIdLists 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
subscriptionIdstringAzure Subscription ID.

SELECT examples

Lists the QnA Maker endpoint keys

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