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 Oct 20, 2023
1 parent 8c49a56 commit 6367dda
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 6367dda

Please sign in to comment.