Skip to content

Commit

Permalink
Add enableOSPatching and address comments (#24849)
Browse files Browse the repository at this point in the history
  • Loading branch information
azuremq authored Jul 17, 2023
1 parent a78e37c commit 6629d0b
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@
"nodeIdleTimeBeforeScaleDown": "PT5M"
},
"remoteLoginPortPublicAccess": "Enabled",
"releaseQuotaOnStop": false,
"allocationState": "Resizing",
"allocationStateTransitionTime": "2017-09-27T22:28:08.998Z",
"errors": null,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@
"sshSettings": {
"sshPublicAccess": "Disabled"
},
"enableOSPatching": true,
"releaseQuotaOnStop": true,
"customServices": [
{
"name": "rstudio-workbench",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@
"nodeIdleTimeBeforeScaleDown": "PT5M"
},
"remoteLoginPortPublicAccess": "Enabled",
"releaseQuotaOnStop": false,
"allocationState": "Resizing",
"allocationStateTransitionTime": "2017-09-27T22:28:08.998Z",
"errors": null,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@
"latestImageVersion": "22.07.22",
"isLatestOsImageVersion": false
},
"enableOSPatching": true,
"releaseQuotaOnStop": true,
"customServices": [
{
"name": "rstudio-workbench",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1906,14 +1906,7 @@
"name": "remoteLoginPortPublicAccess",
"modelAsString": true
}
},
"releaseQuotaOnStop": {
"type": "boolean",
"default": false,
"title": "Release quota if compute instance stopped.",
"description": "Release quota if compute instance stopped. Possible values are: true - release quota if compute instance stopped. false - don't release quota when compute instance stopped.",
"x-nullable": true
},
},
"allocationState": {
"type": "string",
"readOnly": true,
Expand Down Expand Up @@ -2113,11 +2106,20 @@
"modelAsString": true
}
},
"enableOSPatching": {
"type": "boolean",
"default": false,
"title": "Enable Auto OS Patching.",
"description": "Enable Auto OS Patching. Possible values are: true, false.",
"x-nullable": true
},
"releaseQuotaOnStop": {
"type": "boolean",
"default": false,
"title": "Release quota if compute instance stopped.",
"description": "Release quota if compute instance stopped. Possible values are: true - release quota if compute instance stopped. false - don't release quota when compute instance stopped."
},
"description": "Release quota if compute instance stopped. Possible values are: true - release quota if compute instance stopped. false - don't release quota when compute instance stopped.",
"x-nullable": true
},
"personalComputeInstanceSettings": {
"title": "Personal Compute Instance settings.",
"description": "Settings for a personal compute instance.",
Expand Down

0 comments on commit 6629d0b

Please sign in to comment.