ActiveGate auto-update configuration API - GET global
Gets the global auto-update configuration of Environment ActiveGates.
The request produces an application/json
payload.
GET | ManagedDynatrace for Government | https://{your-domain}/e/{your-environment-id}/api/v2/activeGates/autoUpdate |
SaaS | https://{your-environment-id}.live.dynatrace.com/api/v2/activeGates/autoUpdate | |
Environment and Cluster ActiveGate (default port 9999) | https://{your-activegate-domain}:9999/e/{your-environment-id}/api/v2/activeGates/autoUpdate |
Authentication
To execute this request, you need an access token with activeGates.read
scope.
To learn how to obtain and use it, see Tokens and authentication.
Parameters
The request doesn't provide any configurable parameters.
Response
Response codes
Code | Type | Description |
---|---|---|
200 | ActiveGateGlobalAutoUpdateConfig | Success |
Response body objects
The ActiveGateGlobalAutoUpdateConfig
object
Global configuration of ActiveGates auto-update.
Element | Type | Description |
---|---|---|
globalSetting | string | The state of auto-updates for all ActiveGates connected to the environment or Managed cluster. This setting is inherited by all ActiveGates that have the
|
metadata | ConfigurationMetadata | Metadata useful for debugging |
The ConfigurationMetadata
object
Metadata useful for debugging
Element | Type | Description |
---|---|---|
clusterVersion | string | Dynatrace version. |
configurationVersions | integer[] | A sorted list of the version numbers of the configuration. |
currentConfigurationVersions | string[] | A sorted list of version numbers of the configuration. |
Response body JSON model
1{2 "globalSetting": "ENABLED",3 "metadata": {4 "clusterVersion": "1.192.1",5 "configurationVersions": [6 4,7 28 ],9 "currentConfigurationVersions": [10 "1.0.4",11 "1.23"12 ]13 }14}