Skip to content

Commit

Permalink
Add storageRedundancy property to Synapse v3 database GET and PUT (Az…
Browse files Browse the repository at this point in the history
…ure#13425)

* add storageRedundancy to get and create properties

* undo update properties change

* add enum storage redundancy type
  • Loading branch information
chzachar authored and mkarmark committed Jul 20, 2021
1 parent 477d0fa commit ad83ae4
Showing 1 changed file with 18 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -285,6 +285,24 @@
"create"
]
},
"storageRedundancy": {
"description": "Storage redundancy of the database.",
"enum": [
"Geo",
"GeoZone",
"Local",
"Zone"
],
"type": "string",
"x-ms-enum": {
"name": "SqlDatabaseStorageRedundancyType",
"modelAsString": true
},
"x-ms-mutability": [
"read",
"create"
]
},
"maxSizeBytes": {
"format": "int64",
"description": "The max size of the database expressed in bytes.",
Expand Down

0 comments on commit ad83ae4

Please sign in to comment.