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

BugFix: Set readonly flag to false for non-read only properties in Guest Configuration #14999

Merged
merged 6 commits into from
Jul 7, 2021
Merged
Show file tree
Hide file tree
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 @@ -13,6 +13,9 @@
"guestConfiguration": {
"name": "WhitelistedApplication",
"version": "1.*",
"contentUri": "https://thisisfake/pacakge",
"contentHash": "123contenthash",
"assignmentType": "ApplyAndAutoCorrect",
"configurationParameter": [
{
"name": "[InstalledApplication]bwhitelistedapp;Name",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@
"guestConfiguration": {
"name": "WhitelistedApplication",
"version": "1.*",
"contentUri": "https://thisisfake/pacakge",
"contentHash": "123contenthash",
"assignmentType": "ApplyAndAutoCorrect",
"configurationParameter": [
{
"name": "[InstalledApplication]bwhitelistedapp;Name",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -803,15 +803,27 @@
"description": "Version of the guest configuration."
},
"contentUri": {
"readOnly": true,
"type": "string",
"description": "Uri of the storage where guest configuration package is uploaded."
},
"contentHash": {
"readOnly": true,
"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": [
"Audit",
"DeployAndAutoCorrect",
"ApplyAndAutoCorrect",
"ApplyAndMonitor"
]
},
"configurationParameter": {
"type": "array",
"items": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@
"guestConfiguration": {
"name": "WhitelistedApplication",
"version": "1.*",
"contentUri": "https://thisisfake/pacakge",
"contentHash": "123contenthash",
"assignmentType": "ApplyAndAutoCorrect",
"configurationParameter": [
{
"name": "[InstalledApplication]bwhitelistedapp;Name",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@
"guestConfiguration": {
"name": "WhitelistedApplication",
"version": "1.*",
"contentUri": "https://thisisfake/pacakge",
"contentHash": "123contenthash",
"assignmentType": "ApplyAndAutoCorrect",
"configurationParameter": [
{
"name": "[InstalledApplication]bwhitelistedapp;Name",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -803,15 +803,27 @@
"description": "Version of the guest configuration."
},
"contentUri": {
aashish1987 marked this conversation as resolved.
Show resolved Hide resolved
"readOnly": true,
"type": "string",
"description": "Uri of the storage where guest configuration package is uploaded."
},
"contentHash": {
"readOnly": true,
"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": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@
"guestConfiguration": {
"name": "WhitelistedApplication",
"version": "1.*",
"contentUri": "https://thisisfake/pacakge",
"contentHash": "123contenthash",
"assignmentType": "ApplyAndAutoCorrect",
"configurationParameter": [
{
"name": "[InstalledApplication]bwhitelistedapp;Name",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@
"guestConfiguration": {
"name": "WhitelistedApplication",
"version": "1.*",
"contentUri": "https://thisisfake/pacakge",
"contentHash": "123contenthash",
"assignmentType": "ApplyAndAutoCorrect",
"configurationParameter": [
{
"name": "[InstalledApplication]bwhitelistedapp;Name",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1088,15 +1088,27 @@
"description": "Version of the guest configuration."
},
"contentUri": {
"readOnly": true,
"type": "string",
"description": "Uri of the storage where guest configuration package is uploaded."
},
"contentHash": {
"readOnly": true,
"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": [
"Audit",
"DeployAndAutoCorrect",
"ApplyAndAutoCorrect",
"ApplyAndMonitor"
]
},
"configurationParameter": {
"type": "array",
"items": {
Expand Down