Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Resolve comments for os patching #24872

Merged
merged 6 commits into from
Jul 18, 2023
Merged
Changes from all commits
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 @@ -2189,10 +2189,6 @@
"description": "ComputeInstance version.",
"$ref": "#/definitions/ComputeInstanceVersion",
"readOnly": true
},
"autoRestartAfterUpdates": {
"type": "boolean",
"description": "Indicates whether this compute instance allow auto reboot when reboot is required after os patching."
}
}
},
Expand Down Expand Up @@ -2894,17 +2890,32 @@
"type": "boolean",
"description": "Specifies whether this compute instance is running on the latest operating system image."
},
"rebootPending": {
"type": "boolean",
"description": "Specifies whether this compute instance is pending for reboot to finish os patching."
},
"osPatchingStatus": {
"readOnly": true,
"description": "Metadata about the os patching.",
"$ref": "#/definitions/osPatchingStatus"
}
}
},
"osPatchingStatus": {
chrjia marked this conversation as resolved.
Show resolved Hide resolved
"type": "object",
"description": "Returns metadata about the os patching.",
"properties": {
"patchStatus": {
"type": "string",
"description": "The os patching status."
},
"latestUpdateTime": {
"latestPatchTime": {
"type": "string",
"description": "Time of the lastest os patching."
},
"rebootPending": {
"type": "boolean",
"description": "Specifies whether this compute instance is pending for reboot to finish os patching."
},
"scheduledRebootTime": {
"type": "string",
"description": "Time of scheduled reboot."
}
}
},
Expand Down