web_services_keys
Creates, updates, deletes, gets or lists a web_services_keys
resource.
Overview
Name | web_services_keys |
Type | Resource |
Id | azure.machine_learning.web_services_keys |
Fields
Name | Datatype | Description |
---|---|---|
primary | string | The primary access key. |
secondary | string | The secondary access key. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | resourceGroupName, subscriptionId, webServiceName | Gets the access keys for the specified web service. |
SELECT
examples
Gets the access keys for the specified web service.
SELECT
primary,
secondary
FROM azure.machine_learning.web_services_keys
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND webServiceName = '{{ webServiceName }}';