ActiveGate auto-update configuration API - GET an ActiveGate
Gets the auto-update configuration of the specified Environment ActiveGate.
The request produces an application/json
payload.
GET | ManagedDynatrace for Government | https://{your-domain}/e/{your-environment-id}/api/v2/activeGates/{agId}/autoUpdate |
SaaS | https://{your-environment-id}.live.dynatrace.com/api/v2/activeGates/{agId}/autoUpdate | |
Environment ActiveGate | https://{your-activegate-domain}/e/{your-environment-id}/api/v2/activeGates/{agId}/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
Parameter | Type | Description | In | Required |
---|---|---|---|---|
agId | string | The ID of the required ActiveGate. | path | required |
Response
Response codes
Code | Type | Description |
---|---|---|
200 | Active | Success |
404 | ErrorEnvelope | Not found. See response body for details. |
Response body objects
The ActiveGateAutoUpdateConfig
object
Configuration of the ActiveGate auto-updates.
Element | Type | Description |
---|---|---|
effectiveSetting | string | The actual state of the ActiveGate auto-update. Applicable only if the setting parameter is set to |
setting | string | The state of the ActiveGate auto-update: enabled, disabled, or inherited. If set to |
Response body JSON model
{
"effectiveSetting": "ENABLED",
"setting": "INHERITED"
}