Skip to content

Commit

Permalink
Adds settings and advancedSettings to gallery application version (#1…
Browse files Browse the repository at this point in the history
…8722)

* adds settings and advancedSettings to gallery application version

* fix spell checker and LintDiff

* added description and ran prettifier again

* fix typo in description

* Addressed PR comments

* updated description to use full name of the VMApp extension, i.e. vm-application-manager
  • Loading branch information
D1v38om83r authored and Sandido committed May 5, 2022
1 parent 6b262d3 commit 612aead
Show file tree
Hide file tree
Showing 3 changed files with 48 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,14 @@
"remove": "del C:\\package "
},
"enableHealthCheck": false,
"settings": {
"packageFileName": "package.zip",
"configFileName": "configuration.cfg"
},
"advancedSettings": {
"timeout": "300",
"user": "root"
},
"targetRegions": [
{
"name": "West US",
Expand Down Expand Up @@ -81,6 +89,14 @@
"remove": "del C:\\package "
},
"enableHealthCheck": false,
"settings": {
"packageFileName": "package.zip",
"configFileName": "configuration.cfg"
},
"advancedSettings": {
"timeout": "300",
"user": "root"
},
"targetRegions": [
{
"name": "West US",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,14 @@
"remove": "del C:\\package "
},
"enableHealthCheck": false,
"settings": {
"packageFileName": "package.zip",
"configFileName": "configuration.cfg"
},
"advancedSettings": {
"timeout": "300",
"user": "root"
},
"targetRegions": [
{
"name": "West US",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2078,6 +2078,16 @@
"manageActions": {
"$ref": "#/definitions/UserArtifactManage"
},
"settings": {
"$ref": "#/definitions/UserArtifactSettings"
},
"advancedSettings": {
"type": "object",
"additionalProperties": {
"type": "string"
},
"description": "Optional. Additional settings to pass to the vm-application-manager extension. For advanced use only."
},
"enableHealthCheck": {
"type": "boolean",
"description": "Optional. Whether or not this application reports health."
Expand Down Expand Up @@ -2129,6 +2139,20 @@
"remove"
]
},
"UserArtifactSettings": {
"type": "object",
"properties": {
"packageFileName": {
"type": "string",
"description": "Optional. The name to assign the downloaded package file on the VM. This is limited to 4096 characters. If not specified, the package file will be named the same as the Gallery Application name."
},
"configFileName": {
"type": "string",
"description": "Optional. The name to assign the downloaded config file on the VM. This is limited to 4096 characters. If not specified, the config file will be named the Gallery Application name appended with \"_config\"."
}
},
"description": "Additional settings for the VM app that contains the target package and config file name when it is deployed to target VM or VM scale set."
},
"GalleryImage": {
"properties": {
"properties": {
Expand Down

0 comments on commit 612aead

Please sign in to comment.