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
The following fields are returned by SELECT
queries:
- list
Success.
Name | Datatype | Description |
---|---|---|
primary | string | The primary access key. |
secondary | string | The secondary access key. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | resourceGroupName , webServiceName , subscriptionId | Gets the access keys for the specified web service. |
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 |
---|---|---|
resourceGroupName | string | Name of the resource group in which the web service is located. |
subscriptionId | string | The Azure subscription ID. |
webServiceName | string | The name of the web service. |
SELECT
examples
- list
Gets the access keys for the specified web service.
SELECT
primary,
secondary
FROM azure.machine_learning.web_services_keys
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND webServiceName = '{{ webServiceName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;