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.

GETSaaShttps://{your-environment-id}.live.dynatrace.com/api/v1/deployment/lambda/agent/latest
Environment ActiveGatehttps://{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

CodeTypeDescription
200LatestLambdaLayerNames

Success. The payload contains the available versions.

4XXErrorEnvelope

Client side error.

5XXErrorEnvelope

Server side error.

Response body objects

The LatestLambdaLayerNames object

Latest OneAgent lambda version names available

ElementTypeDescription
collectorstring-
javastring-
java_with_collectorstring-
nodejsstring-
nodejs_with_collectorstring-
pythonstring-
python_with_collectorstring-

Response body JSON model

{
"collector": "string",
"java": "string",
"java_with_collector": "string",
"nodejs": "string",
"nodejs_with_collector": "string",
"python": "string",
"python_with_collector": "string"
}