Skip to content

Commit

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

* add storageRedundancy to get and create properties

* undo update properties change

* add enum storage redundancy type
  • Loading branch information
chzachar authored May 28, 2021
1 parent 661f704 commit 4b6aefb
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 4b6aefb

Please sign in to comment.