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.
1 parent 87296c5 commit b5cbef5Copy full SHA for b5cbef5
harness/nextgen/model_connector_info_serializer.go
@@ -111,6 +111,8 @@ func (a *ConnectorInfo) UnmarshalJSON(data []byte) error {
111
err = json.Unmarshal(aux.Spec, &a.Pdc)
112
case ConnectorTypes.CustomSecretManager:
113
err = json.Unmarshal(aux.Spec, &a.CustomSecretManager)
114
+ case ConnectorTypes.GcpKms:
115
+ err = json.Unmarshal(aux.Spec, &a.GcpKms)
116
default:
117
panic(fmt.Sprintf("unknown connector type %s", a.Type_))
118
}
0 commit comments