qna_maker_endpoint_keys
Creates, updates, deletes, gets or lists a qna_maker_endpoint_keys resource.
Overview
| Name | qna_maker_endpoint_keys |
| Type | Resource |
| Id | azure.bot_service.qna_maker_endpoint_keys |
Fields
The following fields are returned by SELECT queries:
- get
| Name | Datatype | Description |
|---|---|---|
installedVersion | string | Current version of runtime. |
lastStableVersion | string | Latest version of runtime. |
primaryEndpointKey | string | Primary Access Key. |
secondaryEndpointKey | string | Secondary Access Key. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | subscription_id | Lists 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.
| Name | Datatype | Description |
|---|---|---|
subscription_id | string |
SELECT examples
- get
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
;