Deployment API - View the latest OneAgent version for AWS Lambda
Get the latest version names of OneAgent code modules for the Java, Node.js, and Python AWS Lambda runtimes, also including names for layers that are combined with the log collector, as well as for the standalone log collector layer.
The request produces an application/json
payload.
GET | SaaS | https://{your-environment-id}.live.dynatrace.com/api/v1/deployment/lambda/agent/latest |
Environment ActiveGate | https://{your-activegate-domain}:9999/e/{your-environment-id}/api/v1/deployment/lambda/agent/latest |
Authentication
To execute this request, you need an access token with InstallerDownload
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 | Latest | Success. The payload contains the available versions. |
4XX | Error | Client side error. |
5XX | Error | Server side error. |
Response body objects
The LatestLambdaLayerNames
object
Latest OneAgent lambda version names available
Element | Type | Description |
---|---|---|
collector | string | - |
java | string | - |
java_with_collector | string | - |
nodejs | string | - |
nodejs_with_collector | string | - |
python | string | - |
python_with_collector | string | - |
Response body JSON model
{"collector": "string","java": "string","java_with_collector": "string","nodejs": "string","nodejs_with_collector": "string","python": "string","python_with_collector": "string"}