-
Notifications
You must be signed in to change notification settings - Fork 238
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
DiscoveryEngineEngine controller #3400
base: master
Are you sure you want to change the base?
DiscoveryEngineEngine controller #3400
Conversation
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: The full list of commands accepted by this bot can be found here.
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
ba90e2d
to
05dc18f
Compare
We also use the common functions to resolve references (the last commit), cc @yuwenma |
05dc18f
to
71536d5
Compare
It only takes the ID of the data store, not a full reference.
71536d5
to
e084674
Compare
/assign @yuwenma |
@@ -65,7 +68,16 @@ func DiscoveryEngineEngineSpec_FromProto(mapCtx *direct.MapContext, in *pb.Engin | |||
out.DisableAnalytics = direct.LazyPtr(in.GetDisableAnalytics()) | |||
|
|||
for _, dataStoreID := range in.DataStoreIds { | |||
out.DataStoreRefs = append(out.DataStoreRefs, &krm.DiscoveryEngineDataStoreRef{External: dataStoreID}) | |||
tokens := strings.Split(in.Name, "/") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This (and the similar function below) is the trickiest thing in this PR, IMO. The GCP API expects only the data_store_id, and implicitly resolves the project / location / collection because (I guess) we can't go across projects / locations / collections.
e084674
to
85c0f34
Compare
We create the controller, a test and the mocks. I guess we could split out the mocks into their own PR, but this feels like a reasonable "chunk"