v1

latestOpenAPI 3.0.0Apache 2.02026-07-17263572.5 KB
Application Management

Update Application parameters

Update an existing, deployed FAST Application with the supplied parameters. Existing parameter values from the deployed Application will be used as defaults for any missing parameter values.

patch/applications/{tenantName}/{appName}

Request body

parametersParametersDefinition required

Object must conform to specified template's schema.

Example request

{
  "parameters": {
    "tenant": "foo",
    "application": "bar",
    "virtualAddress": "192.0.2.11"
  }
}

Response

Template Job Submitted Successfully, check the provided Task ID to get the status of the deployment.

codeinteger required
requestIdinteger

Example response

{
  "_links": {
    "self": "/mgmt/shared/fast/applications",
    "task": "/mgmt/shared/fast/tasks/12345"
  },
  "code": 202,
  "requestId": 3,
  "message": [
    {
      "id": "ff70c2c0-af21-44c8-8fec-18e2d82eabf0",
      "name": "examples/simple_udp_defaults",
      "parameters": {
        "tenant_name": "tenant",
        "application_name": "app"
      }
    }
  ]
}