Add new Identity field to OpenShiftCluster swagger API spec

This commit is contained in:
kimorris27 2024-06-18 11:38:43 -05:00
Родитель 75a681ed6e
Коммит b9aba8ee66
1 изменённых файлов: 2 добавлений и 0 удалений

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

@ -219,6 +219,8 @@ func Run(api, outputDir string) error {
if property.Name == "properties" {
property.Schema.ClientFlatten = true
properties = append(properties, property)
} else if property.Name == "identity" {
properties = append(properties, property)
}
}
s.Definitions[azureResource].Properties = properties