Skip to main content

web_services_keys

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

Overview

Nameweb_services_keys
TypeResource
Idazure.machine_learning.web_services_keys

Fields

NameDatatypeDescription
primarystringThe primary access key.
secondarystringThe secondary access key.

Methods

NameAccessible byRequired ParamsDescription
listSELECTresourceGroupName, subscriptionId, webServiceNameGets 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 }}';