We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents dcb9fd6 + 03237a5 commit e04fca8Copy full SHA for e04fca8
pkg/model/model.go
@@ -277,6 +277,13 @@ func (m *Model) GetCRDs() ([]*CRD, error) {
277
)
278
panic(msg)
279
}
280
+ } else if fieldConfig.Type != nil {
281
+ // We have a custom field that has a type override and has not
282
+ // been inferred via the normal Create Input shape or via the
283
+ // SourceFieldConfig. Manually construct the field and its
284
+ // shape reference here.
285
+ typeOverride := *fieldConfig.Type
286
+ memberShapeRef = m.SDKAPI.GetShapeRefFromType(typeOverride)
287
} else {
288
// Status field is not well defined
289
continue
0 commit comments