From 236561d3abe070c1ec4b0eeac2e7bdb56f0bd06e Mon Sep 17 00:00:00 2001 From: SDKAuto Date: Fri, 28 May 2021 03:06:07 +0000 Subject: [PATCH] CodeGen from PR 13425 in Azure/azure-rest-api-specs Add storageRedundancy property to Synapse v3 database GET and PUT (#13425) * add storageRedundancy to get and create properties * undo update properties change * add enum storage redundancy type --- .../2020-04-01-preview/Microsoft.Synapse.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/schemas/2020-04-01-preview/Microsoft.Synapse.json b/schemas/2020-04-01-preview/Microsoft.Synapse.json index d3318a2a88..d3fc7099bf 100644 --- a/schemas/2020-04-01-preview/Microsoft.Synapse.json +++ b/schemas/2020-04-01-preview/Microsoft.Synapse.json @@ -169,6 +169,23 @@ } ], "description": "The max size of the database expressed in bytes." + }, + "storageRedundancy": { + "oneOf": [ + { + "type": "string", + "enum": [ + "Geo", + "GeoZone", + "Local", + "Zone" + ] + }, + { + "$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression" + } + ], + "description": "Storage redundancy of the database." } }, "description": "The sql database's properties."