Skip to content

Commit

Permalink
swagger correctness fix (Azure#12101)
Browse files Browse the repository at this point in the history
* swagger correctness fix

* update preview version too
  • Loading branch information
juniwang authored and josuh committed Jan 6, 2021
1 parent 53c2e74 commit ee2e417
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1142,12 +1142,14 @@
"description": "Optional tier of this particular SKU. 'Standard' or 'Free'. \r\n\r\n`Basic` is deprecated, use `Standard` instead."
},
"size": {
"description": "Optional string. For future use.",
"type": "string"
"description": "Not used. Retained for future use.",
"type": "string",
"readOnly": true
},
"family": {
"description": "Optional string. For future use.",
"type": "string"
"description": "Not used. Retained for future use.",
"type": "string",
"readOnly": true
},
"capacity": {
"format": "int32",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
"capacity": 1
},
"properties": {
"hostNamePrefix": null,
"features": [
{
"flag": "ServiceMode",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
"capacity": 1
},
"properties": {
"hostNamePrefix": null,
"features": [
{
"flag": "ServiceMode",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1138,12 +1138,14 @@
"description": "Optional tier of this particular SKU. 'Standard' or 'Free'. \r\n\r\n`Basic` is deprecated, use `Standard` instead."
},
"size": {
"description": "Optional string. For future use.",
"type": "string"
"description": "Not used. Retained for future use.",
"type": "string",
"readOnly": true
},
"family": {
"description": "Optional string. For future use.",
"type": "string"
"description": "Not used. Retained for future use.",
"type": "string",
"readOnly": true
},
"capacity": {
"format": "int32",
Expand Down Expand Up @@ -1242,7 +1244,8 @@
"properties": {
"hostNamePrefix": {
"description": "Prefix for the hostName of the SignalR service. Retained for future use.\r\nThe hostname will be of format: <hostNamePrefix>.service.signalr.net.",
"type": "string"
"type": "string",
"readOnly": true
},
"features": {
"description": "List of SignalR featureFlags. e.g. ServiceMode.\r\n\r\nFeatureFlags that are not included in the parameters for the update operation will not be modified.\r\nAnd the response will only include featureFlags that are explicitly set. \r\nWhen a featureFlag is not explicitly set, SignalR service will use its globally default value. \r\nBut keep in mind, the default value doesn't mean \"false\". It varies in terms of different FeatureFlags.",
Expand Down

0 comments on commit ee2e417

Please sign in to comment.