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

Os Patching Result property for ComputeInstance #28242

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 @@ -2164,6 +2164,13 @@
"modelAsString": true
}
},
"osPatchingResult": {
"readOnly": true,
"x-nullable": true,
"title": "OsPatching status and errors.",
"description": "The result of os patching operation on this ComputeInstance.",
"$ref": "#/definitions/ComputeInstanceOsPatchingResult"
},
"enableOSPatching": {
"type": "boolean",
"default": false,
Expand Down Expand Up @@ -3995,6 +4002,31 @@
}
}
},
"ComputeInstanceOsPatchingResult": {
"type": "object",
"readOnly": true,
"description": "The result of os patching operation on this ComputeInstance.",
"properties": {
"osPatchingErrors": {
"readOnly": true,
"x-nullable": true,
"description": "Collection of errors encountered when doing os patching.",
"type": "array",
"items": {
"$ref": "../../../../../common-types/resource-management/v3/types.json#/definitions/ErrorResponse"
},
"x-ms-identifiers": [
"/error/code"
]
},
"osPatchingStatus": {
"type": "string",
"readOnly": true,
"x-nullable": true,
"description": "The current status of current os patching operation."
}
}
},
"ComputeInstanceCreatedBy": {
"type": "object",
"readOnly": true,
Expand Down