Skip to content

Commit

Permalink
devcenter: devCenterUri should be a read only field (#26189)
Browse files Browse the repository at this point in the history
* devcenter: `devCenterUri` should be a read only field

This field cannot be updated - therefore it should be marked as readonly

* devcenter: `devCenterUri` within the Project should also be marked as readonly
  • Loading branch information
tombuildsstuff authored and zman-ms committed Jan 9, 2024
1 parent 76a8c97 commit ffebb24
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2757,7 +2757,8 @@
},
"devCenterUri": {
"description": "The URI of the Dev Center.",
"$ref": "#/definitions/DevCenterUri"
"$ref": "#/definitions/DevCenterUri",
"readOnly": true
}
}
},
Expand Down Expand Up @@ -2852,7 +2853,8 @@
},
"devCenterUri": {
"description": "The URI of the Dev Center resource this project is associated with.",
"$ref": "#/definitions/DevCenterUri"
"$ref": "#/definitions/DevCenterUri",
"readOnly": true
}
}
},
Expand Down

0 comments on commit ffebb24

Please sign in to comment.