Create one or more Applications from Templates
This is the main method to deploy a templated Application. The parameters posted will be used to render a Template, and that Template will get posted to AS3. The call to AS3 may be async, so this endpoint must also be async. A Task will be returned upon successful parameter submission that can track the progress of the deployment.
Request body
Example request
[
{
"name": "examples/simple_udp_defaults",
"parameters": {},
"allowOverwrite": true
}
]Response
Template Job Submitted Successfully, check the provided Task ID to get the status of the deployment.
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"
}
}
]
}Changes
Changed in 2 of the 50 revisions of this API.534
- ▲
the
coderesponse's property type/format changed frominteger/int32to/for status400response-property-type-changed
- ▲
the
coderesponse's property type/format changed frominteger/int32to/for status500response-property-type-changed
- ●
added the new
400.00enum value to thecoderesponse property for the response status400response-property-enum-value-added
- ●
added the new
500.00enum value to thecoderesponse property for the response status500response-property-enum-value-added
- ○
added the optional property
errorto the response with the500statusresponse-optional-property-added
- ○
added the required property
errorsto the response with the400statusresponse-required-property-added
- ▲
- ▲
the
coderesponse's property type/format changed from/tointeger/int32for status400response-property-type-changed
- ▲
the
coderesponse's property type/format changed from/tointeger/int32for status500response-property-type-changed
- ▲
removed the required property
errorsfrom the response with the400statusresponse-required-property-removed
- ●
removed the optional property
errorfrom the response with the500statusresponse-optional-property-removed
- ○
removed the
400.00enum value from thecoderesponse property for the response status400response-property-enum-value-removed
- ○
removed the
500.00enum value from thecoderesponse property for the response status500response-property-enum-value-removed
This revision also has 2 changes that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog
- ▲