Skip to main content

delegation_settings_secrets

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

Overview

Namedelegation_settings_secrets
TypeResource
Idazure.api_management.delegation_settings_secrets

Fields

The following fields are returned by SELECT queries:

The response body contains the validation key.

NameDatatypeDescription
validationKeystringThis is secret value of the validation key in portal settings.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectresourceGroupName, serviceName, subscriptionIdGets the secret validation key of the DelegationSettings.

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.

NameDatatypeDescription
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
serviceNamestringThe name of the API Management service.
subscriptionIdstringThe ID of the target subscription.

SELECT examples

Gets the secret validation key of the DelegationSettings.

SELECT
validationKey
FROM azure.api_management.delegation_settings_secrets
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND serviceName = '{{ serviceName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;