qn_a_maker_endpoint_keys
Creates, updates, deletes, gets or lists a qn_a_maker_endpoint_keys resource.
Overview
| Name | qn_a_maker_endpoint_keys |
| Type | Resource |
| Id | azure.bot_service.qn_a_maker_endpoint_keys |
Fields
The following fields are returned by SELECT queries:
- get
If resource is retrieved successfully, the service should return 200 (OK).
| 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 | subscriptionId | 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 |
|---|---|---|
subscriptionId | string | Azure Subscription ID. |
SELECT examples
- get
Lists the QnA Maker endpoint keys
SELECT
installedVersion,
lastStableVersion,
primaryEndpointKey,
secondaryEndpointKey
FROM azure.bot_service.qn_a_maker_endpoint_keys
WHERE subscriptionId = '{{ subscriptionId }}' -- required
;