Deployment API - Download the signature of an orchestration tarball

  • Reference
  • Published Jun 29, 2021

Downloads the signature of an OneAgent deployment orchestration tarball.

GETManagedDynatrace for Governmenthttps://{your-domain}/e/{your-environment-id}/api/v1/deployment/orchestration/agent/{orchestrationType}/version/{version}/signature
Environment ActiveGatehttps://{your-activegate-domain}/e/{your-environment-id}/api/v1/deployment/orchestration/agent/{orchestrationType}/version/{version}/signature

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

ParameterTypeDescriptionInRequired
orchestrationTypestring

The Orchestration Type of the orchestration deployment script.

The element can hold these values
  • ansible
  • puppet
pathRequired
versionstring

The requested version of the OneAgent deployment orchestration tarball in 0.1.0.20200925-120822 format.

pathRequired

Response

Response codes

CodeTypeDescription
200string

Success. The payload contains the installer file.

304-

Not modified. You already have the latest version of the installer. The response does not contain a payload.

4XXErrorEnvelope

Client side error.

5XXErrorEnvelope

Server side error.

Response body objects

The ResponseBody object

The ErrorEnvelope object

ElementTypeDescription
errorError-

The Error object

ElementTypeDescription
codeinteger

The HTTP status code

constraintViolationsConstraintViolation[]

A list of constraint violations

messagestring

The error message

The ConstraintViolation object

A list of constraint violations

ElementTypeDescription
locationstring-
messagestring-
parameterLocationstring-
The element can hold these values
  • HEADER
  • PATH
  • PAYLOAD_BODY
  • QUERY
pathstring-

Response body JSON models

{
"error": {
"code": 1,
"constraintViolations": [
{
"location": "string",
"message": "string",
"parameterLocation": "HEADER",
"path": "string"
}
],
"message": "string"
}
}