Skip to main content

open_id_connect_provider_secrets

Creates, updates, deletes, gets or lists an open_id_connect_provider_secrets resource.

Overview

Nameopen_id_connect_provider_secrets
TypeResource
Idazure.api_management.open_id_connect_provider_secrets

Fields

The following fields are returned by SELECT queries:

The response body contains the specified OpenId Connect Provider secrets.

NameDatatypeDescription
clientSecretstringClient or app secret used in IdentityProviders, Aad, OpenID or OAuth.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectresourceGroupName, serviceName, opid, subscriptionIdGets the client secret details of the OpenID Connect Provider.

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
opidstringIdentifier of the OpenID Connect Provider.
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 client secret details of the OpenID Connect Provider.

SELECT
clientSecret
FROM azure.api_management.open_id_connect_provider_secrets
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND serviceName = '{{ serviceName }}' -- required
AND opid = '{{ opid }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;