open_id_connect_provider_secrets
Creates, updates, deletes, gets or lists an open_id_connect_provider_secrets
resource.
Overview
Name | open_id_connect_provider_secrets |
Type | Resource |
Id | azure.api_management.open_id_connect_provider_secrets |
Fields
The following fields are returned by SELECT
queries:
- list
The response body contains the specified OpenId Connect Provider secrets.
Name | Datatype | Description |
---|---|---|
clientSecret | string | Client or app secret used in IdentityProviders, Aad, OpenID or OAuth. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | resourceGroupName , serviceName , opid , subscriptionId | Gets 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.
Name | Datatype | Description |
---|---|---|
opid | string | Identifier of the OpenID Connect Provider. |
resourceGroupName | string | The name of the resource group. The name is case insensitive. |
serviceName | string | The name of the API Management service. |
subscriptionId | string | The ID of the target subscription. |
SELECT
examples
- list
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
;