Deployment API - View process module configuration for OneAgent
The request produces an application/json
payload.
Early Adopter
This request is an Early Adopter release and may be changed in non-compatible way.
GET | Managed | https://{your-domain}/e/{your-environment-id}/api/v1/deployment/installer/agent/processmoduleconfig |
SaaS | https://{your-environment-id}.live.dynatrace.com/api/v1/deployment/installer/agent/processmoduleconfig | |
Environment ActiveGate | https://{your-activegate-domain}/e/{your-environment-id}/api/v1/deployment/installer/agent/processmoduleconfig |
Authentication
To execute this request, you need an access token with PaaS integration - Installer download (InstallerDownload
) scope. To learn how to obtain and use it, see Tokens and authentication.
Parameters
Parameter | Type | Description | In | Required |
---|---|---|---|---|
revision | integer | The previously received revision to compare against. | query | optional |
Response
Response codes
Code | Type | Description |
---|---|---|
200 | Agent | Success |
304 | - | Not modified. |
Response body objects
The AgentProcessModuleConfigResponse
object
The response to a process module config request.
Element | Type | Description |
---|---|---|
revision | integer | The new revision associated with the config. Can be |
properties | Section | The properties and their sections in this response. Can be |
The SectionProperty
object
A single agent property with it's associated section.
Element | Type | Description |
---|---|---|
section | string | The section this property belongs to. Can be |
key | string | The property key. Can be |
value | string | The property value. Can be |
Response body JSON model
{
"revision": 64459404400310540,
"properties": [
{
"section": "general",
"key": "dockerInjection",
"value": "on"
}
]
}