• Home
  • Dynatrace API
  • Environment
  • Deployment
  • OneAgent
  • View the latest version for AWS Lambda

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 runtime.

The request produces an application/json payload.

GETManaged https://{your-domain}/e/{your-environment-id}/api/v1/deployment/lambda/agent/latest
SaaS https://{your-environment-id}.live.dynatrace.com/api/v1/deployment/lambda/agent/latest
Environment ActiveGate https://{your-activegate-domain}/e/{your-environment-id}/api/v1/deployment/lambda/agent/latest

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

The request doesn't provide any configurable parameters.

Response

Response codes

CodeTypeDescription
200LatestLambdaLayerNames

Success. The payload contains the latest versions of OneAgent code modules.

Response body objects

The LatestLambdaLayerNames object

Latest OneAgent lambda version names available

ElementTypeDescription
javastring

The latest version of Java code module for AWS Labmda.

Can be null.

pythonstring

The latest version of Python code module for AWS Labmda.

Can be null.

nodejsstring

The latest version of Node.js code module for AWS Labmda.

Can be null.

Response body JSON model

json
{ "java": "string", "python": "string", "nodejs": "string" }