Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -12311,6 +12311,22 @@
},
"x-ms-discriminator-value": "Jar"
},
"WarUploadedUserSourceInfo": {
"description": "Uploaded War binary for a deployment",
"type": "object",
"allOf": [
{
"$ref": "#/definitions/JarUploadedUserSourceInfo"

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

UploadedUserSourceInfo?

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

war file deployment has all the properties of JarUploadedUserSourceInfo, ex: runtimeVersion & jvmOptions.

Are you proposing to use UploadedUserSourceInfo and add runtimeVersion & jvmOptions as properties in WarUploadedUserSourceInfo?

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah, please use UploadedUserSourceInfo and add runtimeVersion & jvmOptions as properties in WarUploadedUserSourceInfo

}
],
"properties": {
"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