create_deployment
Use this REST v2 tool to mark deployments for APM applications by specifying application ID, revision, and optional details like changelog, description, user, and region.
Instructions
Create a deployment marker for an APM application (REST v2).
Input Schema
Name | Required | Description | Default |
---|---|---|---|
application_id | Yes | ||
changelog | No | ||
description | No | ||
region | No | ||
revision | Yes | ||
user | No |
Input Schema (JSON Schema)
{
"properties": {
"application_id": {
"type": "number"
},
"changelog": {
"type": "string"
},
"description": {
"type": "string"
},
"region": {
"enum": [
"US",
"EU"
],
"type": "string"
},
"revision": {
"type": "string"
},
"user": {
"type": "string"
}
},
"required": [
"application_id",
"revision"
],
"type": "object"
}