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.
GET | ManagedDynatrace for Government | 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 `InstallerDownload` (PaaS integration - Installer download)
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 latest versions of OneAgent code modules. |
Response body objects
The LatestLambdaLayerNames
object
Latest OneAgent lambda version names available
Element | Type | Description |
---|---|---|
java | string | The latest version of Java code module for AWS Labmda. |
python | string | The latest version of Python code module for AWS Labmda. |
nodejs | string | The latest version of Node.js code module for AWS Labmda. |
Response body JSON model
{
"java": "string",
"python": "string",
"nodejs": "string"
}