Skip to content

Commit

Permalink
support war file deployment (#25312)
Browse files Browse the repository at this point in the history
Co-authored-by: Yi Li <yili7@microsoft.com>
  • Loading branch information
yilims and Yi Li authored Aug 16, 2023
1 parent 74e98c9 commit 307e7bc
Showing 1 changed file with 24 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12311,6 +12311,30 @@
},
"x-ms-discriminator-value": "Jar"
},
"WarUploadedUserSourceInfo": {
"description": "Uploaded War binary for a deployment",
"type": "object",
"allOf": [
{
"$ref": "#/definitions/UploadedUserSourceInfo"
}
],
"properties": {
"runtimeVersion": {
"description": "Runtime version of the war file",
"type": "string"
},
"jvmOptions": {
"description": "JVM parameter",
"type": "string"
},
"serverVersion": {
"description": "Server version, currently only Apache Tomcat is supported",
"type": "string"
}
},
"x-ms-discriminator-value": "War"
},
"SourceUploadedUserSourceInfo": {
"description": "Uploaded Java source code binary for a deployment",
"type": "object",
Expand Down

0 comments on commit 307e7bc

Please sign in to comment.