Remove the UniqueKeyPolicy from the Subscriptions database

This commit is contained in:
Andrew Denton 2022-09-16 12:19:57 -07:00
Родитель 910607350a
Коммит 706bcb1258
3 изменённых файлов: 0 добавлений и 27 удалений

Просмотреть файл

@ -225,15 +225,6 @@
"/id"
],
"kind": "Hash"
},
"uniqueKeyPolicy": {
"uniqueKeys": [
{
"paths": [
"/key"
]
}
]
}
},
"options": {}

Просмотреть файл

@ -982,15 +982,6 @@
"/id"
],
"kind": "Hash"
},
"uniqueKeyPolicy": {
"uniqueKeys": [
{
"paths": [
"/key"
]
}
]
}
},
"options": {}

Просмотреть файл

@ -1794,15 +1794,6 @@ func (g *generator) database(databaseName string, addDependsOn bool) []*arm.Reso
},
Kind: mgmtdocumentdb.PartitionKindHash,
},
UniqueKeyPolicy: &mgmtdocumentdb.UniqueKeyPolicy{
UniqueKeys: &[]mgmtdocumentdb.UniqueKey{
{
Paths: &[]string{
"/key",
},
},
},
},
},
Options: &mgmtdocumentdb.CreateUpdateOptions{},
},