123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556 |
- syntax = "proto3";
- package google.cloud.enterpriseknowledgegraph.v1;
- import "google/api/annotations.proto";
- import "google/api/client.proto";
- import "google/api/field_behavior.proto";
- import "google/api/resource.proto";
- import "google/cloud/enterpriseknowledgegraph/v1/job_state.proto";
- import "google/cloud/enterpriseknowledgegraph/v1/operation_metadata.proto";
- import "google/protobuf/empty.proto";
- import "google/protobuf/struct.proto";
- import "google/protobuf/timestamp.proto";
- import "google/protobuf/wrappers.proto";
- import "google/rpc/status.proto";
- option csharp_namespace = "Google.Cloud.EnterpriseKnowledgeGraph.V1";
- option go_package = "google.golang.org/genproto/googleapis/cloud/enterpriseknowledgegraph/v1;enterpriseknowledgegraph";
- option java_multiple_files = true;
- option java_outer_classname = "ServiceProto";
- option java_package = "com.google.cloud.enterpriseknowledgegraph.v1";
- option php_namespace = "Google\\Cloud\\EnterpriseKnowledgeGraph\\V1";
- option ruby_package = "Google::Cloud::EnterpriseKnowledgeGraph::V1";
- option (google.api.resource_definition) = {
- type: "bigquery.googleapis.com/Dataset"
- pattern: "projects/{project}/datasets/{dataset}"
- };
- option (google.api.resource_definition) = {
- type: "bigquery.googleapis.com/Table"
- pattern: "projects/{project}/datasets/{dataset}/tables/{table}"
- };
- option (google.api.resource_definition) = {
- type: "enterpriseknowledgegraph.googleapis.com/CloudKnowledgeGraphEntity"
- pattern: "projects/{project}/locations/{location}/cloudKnowledgeGraphEntities/{cloud_knowledge_graph_entity}"
- };
- option (google.api.resource_definition) = {
- type: "enterpriseknowledgegraph.googleapis.com/PublicKnowledgeGraphEntity"
- pattern: "projects/{project}/locations/{location}/publicKnowledgeGraphEntities/{public_knowledge_graph_entity}"
- };
- service EnterpriseKnowledgeGraphService {
- option (google.api.default_host) = "enterpriseknowledgegraph.googleapis.com";
- option (google.api.oauth_scopes) =
- "https://www.googleapis.com/auth/cloud-platform";
-
-
- rpc CreateEntityReconciliationJob(CreateEntityReconciliationJobRequest)
- returns (EntityReconciliationJob) {
- option (google.api.http) = {
- post: "/v1/{parent=projects/*/locations/*}/entityReconciliationJobs"
- body: "entity_reconciliation_job"
- };
- option (google.api.method_signature) = "parent,entity_reconciliation_job";
- }
-
- rpc GetEntityReconciliationJob(GetEntityReconciliationJobRequest)
- returns (EntityReconciliationJob) {
- option (google.api.http) = {
- get: "/v1/{name=projects/*/locations/*/entityReconciliationJobs/*}"
- };
- option (google.api.method_signature) = "name";
- }
-
- rpc ListEntityReconciliationJobs(ListEntityReconciliationJobsRequest)
- returns (ListEntityReconciliationJobsResponse) {
- option (google.api.http) = {
- get: "/v1/{parent=projects/*/locations/*}/entityReconciliationJobs"
- };
- option (google.api.method_signature) = "parent";
- }
-
-
- rpc CancelEntityReconciliationJob(CancelEntityReconciliationJobRequest)
- returns (google.protobuf.Empty) {
- option (google.api.http) = {
- post: "/v1/{name=projects/*/locations/*/entityReconciliationJobs/*}:cancel"
- body: "*"
- };
- option (google.api.method_signature) = "name";
- }
-
-
-
- rpc DeleteEntityReconciliationJob(DeleteEntityReconciliationJobRequest)
- returns (google.protobuf.Empty) {
- option (google.api.http) = {
- delete: "/v1/{name=projects/*/locations/*/entityReconciliationJobs/*}"
- };
- option (google.api.method_signature) = "name";
- }
-
- rpc Lookup(LookupRequest) returns (LookupResponse) {
- option (google.api.http) = {
- get: "/v1/{parent=projects/*/locations/*}/cloudKnowledgeGraphEntities:Lookup"
- };
- option (google.api.method_signature) = "parent,ids";
- }
-
- rpc Search(SearchRequest) returns (SearchResponse) {
- option (google.api.http) = {
- get: "/v1/{parent=projects/*/locations/*}/cloudKnowledgeGraphEntities:Search"
- };
- option (google.api.method_signature) = "parent,query";
- }
-
- rpc LookupPublicKg(LookupPublicKgRequest) returns (LookupPublicKgResponse) {
- option (google.api.http) = {
- get: "/v1/{parent=projects/*/locations/*}/publicKnowledgeGraphEntities:Lookup"
- };
- option (google.api.method_signature) = "parent,ids";
- }
-
- rpc SearchPublicKg(SearchPublicKgRequest) returns (SearchPublicKgResponse) {
- option (google.api.http) = {
- get: "/v1/{parent=projects/*/locations/*}/publicKnowledgeGraphEntities:Search"
- };
- option (google.api.method_signature) = "parent,query";
- }
- }
- message InputConfig {
-
-
-
- enum EntityType {
-
- ENTITY_TYPE_UNSPECIFIED = 0;
-
- PEOPLE = 1 [deprecated = true];
-
- ESTABLISHMENT = 2 [deprecated = true];
-
- PROPERTY = 3 [deprecated = true];
-
- PRODUCT = 4;
-
- ORGANIZATION = 5;
-
- LOCAL_BUSINESS = 6;
-
- PERSON = 7;
- }
-
- repeated BigQueryInputConfig bigquery_input_configs = 1;
-
- EntityType entity_type = 2;
-
-
-
- string previous_result_bigquery_table = 3 [
- (google.api.field_behavior) = OPTIONAL,
- (google.api.resource_reference) = { type: "bigquery.googleapis.com/Table" }
- ];
- }
- message BigQueryInputConfig {
-
- string bigquery_table = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = { type: "bigquery.googleapis.com/Table" }
- ];
-
- string gcs_uri = 2 [(google.api.field_behavior) = REQUIRED];
- }
- message OutputConfig {
-
- string bigquery_dataset = 1 [(google.api.resource_reference) = {
- type: "bigquery.googleapis.com/Dataset"
- }];
- }
- message ReconConfig {
-
- message Options {
-
-
-
-
-
-
-
- bool enable_geocoding_separation = 100;
- }
-
- message ModelConfig {
-
-
- string model_name = 1;
-
-
- string version_tag = 2;
- }
-
- oneof clustering_config {
-
- ConnectedComponentsConfig connected_components_config = 1;
-
- AffinityClusteringConfig affinity_clustering_config = 2;
- }
-
- Options options = 3;
-
- ModelConfig model_config = 4;
- }
- message ConnectedComponentsConfig {
-
- float weight_threshold = 1;
- }
- message AffinityClusteringConfig {
-
- int64 compression_round_count = 1;
- }
- message DeleteOperationMetadata {
-
- CommonOperationMetadata common_metadata = 1;
- }
- message CreateEntityReconciliationJobRequest {
-
-
-
- string parent = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- child_type: "enterpriseknowledgegraph.googleapis.com/EntityReconciliationJob"
- }
- ];
-
- EntityReconciliationJob entity_reconciliation_job = 2
- [(google.api.field_behavior) = REQUIRED];
- }
- message GetEntityReconciliationJobRequest {
-
-
-
- string name = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "enterpriseknowledgegraph.googleapis.com/EntityReconciliationJob"
- }
- ];
- }
- message ListEntityReconciliationJobsRequest {
-
-
- string parent = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- child_type: "enterpriseknowledgegraph.googleapis.com/EntityReconciliationJob"
- }
- ];
-
-
- string filter = 2;
-
- int32 page_size = 3;
-
- string page_token = 4;
- }
- message ListEntityReconciliationJobsResponse {
-
-
- repeated EntityReconciliationJob entity_reconciliation_jobs = 1;
-
- string next_page_token = 2;
- }
- message CancelEntityReconciliationJobRequest {
-
-
-
- string name = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "enterpriseknowledgegraph.googleapis.com/EntityReconciliationJob"
- }
- ];
- }
- message DeleteEntityReconciliationJobRequest {
-
-
-
- string name = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "enterpriseknowledgegraph.googleapis.com/EntityReconciliationJob"
- }
- ];
- }
- message EntityReconciliationJob {
- option (google.api.resource) = {
- type: "enterpriseknowledgegraph.googleapis.com/EntityReconciliationJob"
- pattern: "projects/{project}/locations/{location}/entityReconciliationJobs/{entity_reconciliation_job}"
- };
-
- string name = 1 [(google.api.field_behavior) = OUTPUT_ONLY];
-
- InputConfig input_config = 2 [(google.api.field_behavior) = REQUIRED];
-
- OutputConfig output_config = 3 [(google.api.field_behavior) = REQUIRED];
-
- JobState state = 4 [(google.api.field_behavior) = OUTPUT_ONLY];
-
-
- google.rpc.Status error = 5 [(google.api.field_behavior) = OUTPUT_ONLY];
-
- google.protobuf.Timestamp create_time = 6
- [(google.api.field_behavior) = OUTPUT_ONLY];
-
-
-
- google.protobuf.Timestamp end_time = 7
- [(google.api.field_behavior) = OUTPUT_ONLY];
-
-
- google.protobuf.Timestamp update_time = 8
- [(google.api.field_behavior) = OUTPUT_ONLY];
-
- ReconConfig recon_config = 9 [(google.api.field_behavior) = OPTIONAL];
- }
- message LookupRequest {
-
-
-
- string parent = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- child_type: "enterpriseknowledgegraph.googleapis.com/CloudKnowledgeGraphEntity"
- }
- ];
-
- repeated string ids = 2 [(google.api.field_behavior) = REQUIRED];
-
-
- repeated string languages = 3;
- }
- message LookupResponse {
-
-
- google.protobuf.Value context = 1;
-
- google.protobuf.Value type = 2;
-
- google.protobuf.ListValue item_list_element = 3;
- }
- message SearchRequest {
-
-
-
- string parent = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- child_type: "enterpriseknowledgegraph.googleapis.com/CloudKnowledgeGraphEntity"
- }
- ];
-
- string query = 2 [(google.api.field_behavior) = REQUIRED];
-
-
- repeated string languages = 3;
-
-
-
- repeated string types = 4;
-
- google.protobuf.Int32Value limit = 6;
- }
- message SearchResponse {
-
-
- google.protobuf.Value context = 1;
-
- google.protobuf.Value type = 2;
-
- google.protobuf.ListValue item_list_element = 3;
- }
- message LookupPublicKgRequest {
-
-
-
- string parent = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- child_type: "enterpriseknowledgegraph.googleapis.com/PublicKnowledgeGraphEntity"
- }
- ];
-
- repeated string ids = 2 [(google.api.field_behavior) = REQUIRED];
-
-
- repeated string languages = 3;
- }
- message LookupPublicKgResponse {
-
-
- google.protobuf.Value context = 1;
-
- google.protobuf.Value type = 2;
-
- google.protobuf.ListValue item_list_element = 3;
- }
- message SearchPublicKgRequest {
-
-
-
- string parent = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- child_type: "enterpriseknowledgegraph.googleapis.com/PublicKnowledgeGraphEntity"
- }
- ];
-
- string query = 2 [(google.api.field_behavior) = REQUIRED];
-
-
- repeated string languages = 3;
-
-
-
- repeated string types = 4;
-
- google.protobuf.Int32Value limit = 6;
- }
- message SearchPublicKgResponse {
-
-
- google.protobuf.Value context = 1;
-
- google.protobuf.Value type = 2;
-
- google.protobuf.ListValue item_list_element = 3;
- }
|