gateway_debug_credentials
Creates, updates, deletes, gets or lists a gateway_debug_credentials
resource.
Overview
Name | gateway_debug_credentials |
Type | Resource |
Id | azure.api_management.gateway_debug_credentials |
Fields
The following fields are returned by SELECT
queries:
- list
The response body contains debug credentials to use in gateway.
Name | Datatype | Description |
---|---|---|
token | string | Gateway debug token. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | subscriptionId , resourceGroupName , serviceName , gatewayId | Create new debug credentials for gateway. |
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 |
---|---|---|
gatewayId | string | Gateway entity identifier. Must be unique in the current API Management service instance. Must not have value 'managed' |
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
Create new debug credentials for gateway.
SELECT
token
FROM azure.api_management.gateway_debug_credentials
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND serviceName = '{{ serviceName }}' -- required
AND gatewayId = '{{ gatewayId }}' -- required
;