Lists all Azure supported services available in your environment.
The request produces an application/json payload.
| GET | SaaS | https://{your-environment-id}.live.dynatrace.com/api/config/v1/azure/supportedServices |
| Environment ActiveGate | https://{your-activegate-domain}:9999/e/{your-environment-id}/api/config/v1/azure/supportedServices |
To execute this request, you need an access token with ReadConfig scope.
To learn how to obtain and use it, see Tokens and authentication.
The request doesn't provide any configurable parameters.
| Code | Type | Description |
|---|---|---|
| 200 | Cloud | Success |
CloudSupportedServicesList objectA supported services metadata list
| Element | Type | Description |
|---|---|---|
| services | Cloud | List of supported services metadata |
CloudSupportedService objectA supported service metadata
| Element | Type | Description |
|---|---|---|
| cloudProviderServiceType | string | Name of service used by cloud provider. |
| displayName | string | Display name for service on Dynatrace UI |
| entityType | string | Entity type monitored by this service |
| name | string | Service unique name used by Dynatrace. |
{"services": [{"cloudProviderServiceType": "string","displayName": "string","entityType": "string","name": "string"}]}
In this example, the request lists Azure supported services available for mySampleEnv environment. The result is truncated to three entries.
The API token is passed in the Authorization header.
curl --request GET \--url https://mySampleEnv.live.dynatrace.com/api/config/v1/azure/supportedServices \--header 'Authorization: Api-Token dt0c01.abc123.abcdefjhij1234567890'
https://mySampleEnv.live.dynatrace.com/api/config/v1/azure/supportedServices
{"services": [{"cloudProviderServiceType": "Microsoft.CognitiveServices/accounts","name": "cloud:azure:cognitiveservices:anomalydetector","entityType": "cloud:azure:cognitiveservices:anomalydetector","displayName": "Azure Anomaly Detector"},{"cloudProviderServiceType": "Microsoft.CognitiveServices/accounts","name": "cloud:azure:cognitiveservices:textanalytics","entityType": "cloud:azure:cognitiveservices:textanalytics","displayName": "Azure Text Analytics"},{"cloudProviderServiceType": "Microsoft.CognitiveServices/accounts","name": "cloud:azure:cognitiveservices:translator","entityType": "cloud:azure:cognitiveservices:translator","displayName": "Azure Translator"}]}
200