-
Notifications
You must be signed in to change notification settings - Fork 5.6k
BugFix: Set readonly flag to false for non-read only properties in Guest Configuration #14999
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
Changes from 5 commits
ee62d41
eb97ace
5a71ad9
150769b
31e74a6
d5a3a6c
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -802,16 +802,28 @@ | |
| "type": "string", | ||
| "description": "Version of the guest configuration." | ||
| }, | ||
| "contentUri": { | ||
| "readOnly": true, | ||
| "contentUri": { | ||
| "type": "string", | ||
| "description": "Uri of the storage where guest configuration package is uploaded." | ||
| }, | ||
| "contentHash": { | ||
| "readOnly": true, | ||
| "contentHash": { | ||
| "type": "string", | ||
| "description": "Combined hash of the guest configuration package and configuration parameters." | ||
| }, | ||
| "assignmentType": { | ||
|
||
| "type": "string", | ||
| "description": "Specifies the assignment type and execution of the configuration. Possible values are Audit, DeployAndAutoCorrect, ApplyAndAutoCorrect and ApplyAndMonitor.", | ||
| "x-ms-enum": { | ||
| "name": "assignmentType", | ||
| "modelAsString": true | ||
| }, | ||
| "enum": [ | ||
aashish1987 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| "Audit", | ||
| "DeployAndAutoCorrect", | ||
| "ApplyAndAutoCorrect", | ||
| "ApplyAndMonitor" | ||
| ] | ||
| }, | ||
| "configurationParameter": { | ||
| "type": "array", | ||
| "items": { | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.