Skip to content
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

feat(discoveryengine): support import data from Cloud Spanner, BigTable, SQL and Firestore #9708

Merged
merged 3 commits into from
Apr 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
303 changes: 252 additions & 51 deletions discoveryengine/apiv1alpha/discoveryenginepb/chunk.pb.go

Large diffs are not rendered by default.

169 changes: 103 additions & 66 deletions discoveryengine/apiv1alpha/discoveryenginepb/common.pb.go

Large diffs are not rendered by default.

192 changes: 150 additions & 42 deletions discoveryengine/apiv1alpha/discoveryenginepb/document.pb.go

Large diffs are not rendered by default.

717 changes: 510 additions & 207 deletions discoveryengine/apiv1alpha/discoveryenginepb/document_service.pb.go

Large diffs are not rendered by default.

2,475 changes: 1,924 additions & 551 deletions discoveryengine/apiv1alpha/discoveryenginepb/import_config.pb.go

Large diffs are not rendered by default.

546 changes: 546 additions & 0 deletions discoveryengine/apiv1alpha/discoveryenginepb/rank_service.pb.go

Large diffs are not rendered by default.

1,811 changes: 1,200 additions & 611 deletions discoveryengine/apiv1alpha/discoveryenginepb/search_service.pb.go

Large diffs are not rendered by default.

Large diffs are not rendered by default.

132 changes: 123 additions & 9 deletions discoveryengine/apiv1alpha/document_client.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

25 changes: 25 additions & 0 deletions discoveryengine/apiv1alpha/document_client_example_test.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

54 changes: 54 additions & 0 deletions discoveryengine/apiv1alpha/gapic_metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -400,6 +400,11 @@
"GetOperation"
]
},
"GetProcessedDocument": {
"methods": [
"GetProcessedDocument"
]
},
"ImportDocuments": {
"methods": [
"ImportDocuments"
Expand Down Expand Up @@ -450,6 +455,11 @@
"GetOperation"
]
},
"GetProcessedDocument": {
"methods": [
"GetProcessedDocument"
]
},
"ImportDocuments": {
"methods": [
"ImportDocuments"
Expand Down Expand Up @@ -637,6 +647,50 @@
}
}
},
"RankService": {
"clients": {
"grpc": {
"libraryClient": "RankClient",
"rpcs": {
"GetOperation": {
"methods": [
"GetOperation"
]
},
"ListOperations": {
"methods": [
"ListOperations"
]
},
"Rank": {
"methods": [
"Rank"
]
}
}
},
"rest": {
"libraryClient": "RankClient",
"rpcs": {
"GetOperation": {
"methods": [
"GetOperation"
]
},
"ListOperations": {
"methods": [
"ListOperations"
]
},
"Rank": {
"methods": [
"Rank"
]
}
}
}
}
},
"RecommendationService": {
"clients": {
"grpc": {
Expand Down