Skip to content
This repository was archived by the owner on Dec 3, 2023. It is now read-only.
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() {
+ "tityType\022\032\n\rentity_values\030\002 \003(\tB\003\340A\002\022\032\n\r"
+ "language_code\030\003 \001(\tB\003\340A\001\"O\n\017EntityTypeBa"
+ "tch\022<\n\014entity_types\030\001 \003(\0132&.google.cloud"
+ ".dialogflow.v2.EntityType2\377\022\n\013EntityType"
+ ".dialogflow.v2.EntityType2\344\023\n\013EntityType"
+ "s\022\315\001\n\017ListEntityTypes\0222.google.cloud.dia"
+ "logflow.v2.ListEntityTypesRequest\0323.goog"
+ "le.cloud.dialogflow.v2.ListEntityTypesRe"
Expand Down Expand Up @@ -215,26 +215,29 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() {
+ "pes/*}/entities:batchCreate:\001*\332A\017parent,"
+ "entities\332A\035parent,entities,language_code"
+ "\312A/\n\025google.protobuf.Empty\022\026google.proto"
+ "buf.Struct\022\353\001\n\023BatchUpdateEntities\0226.goo"
+ "buf.Struct\022\236\002\n\023BatchUpdateEntities\0226.goo"
+ "gle.cloud.dialogflow.v2.BatchUpdateEntit"
+ "iesRequest\032\035.google.longrunning.Operatio"
+ "n\"}\202\323\344\223\002E\"@/v2/{parent=projects/*/agent/"
+ "entityTypes/*}/entities:batchUpdate:\001*\332A"
+ "\017parent,entities\332A\035parent,entities,langu"
+ "age_code\022\366\001\n\023BatchDeleteEntities\0226.googl"
+ "e.cloud.dialogflow.v2.BatchDeleteEntitie"
+ "sRequest\032\035.google.longrunning.Operation\""
+ "\207\001\202\323\344\223\002E\"@/v2/{parent=projects/*/agent/e"
+ "ntityTypes/*}/entities:batchDelete:\001*\332A\024"
+ "parent,entity_values\332A\"parent,entity_val"
+ "ues,language_code\032x\312A\031dialogflow.googlea"
+ "pis.com\322AYhttps://www.googleapis.com/aut"
+ "h/cloud-platform,https://www.googleapis."
+ "com/auth/dialogflowB\236\001\n\036com.google.cloud"
+ ".dialogflow.v2B\017EntityTypeProtoP\001ZDgoogl"
+ "e.golang.org/genproto/googleapis/cloud/d"
+ "ialogflow/v2;dialogflow\370\001\001\242\002\002DF\252\002\032Google"
+ ".Cloud.Dialogflow.V2b\006proto3"
+ "n\"\257\001\202\323\344\223\002E\"@/v2/{parent=projects/*/agent"
+ "/entityTypes/*}/entities:batchUpdate:\001*\332"
+ "A\017parent,entities\332A\035parent,entities,lang"
+ "uage_code\312A/\n\025google.protobuf.Empty\022\026goo"
+ "gle.protobuf.Struct\022\250\002\n\023BatchDeleteEntit"
+ "ies\0226.google.cloud.dialogflow.v2.BatchDe"
+ "leteEntitiesRequest\032\035.google.longrunning"
+ ".Operation\"\271\001\202\323\344\223\002E\"@/v2/{parent=project"
+ "s/*/agent/entityTypes/*}/entities:batchD"
+ "elete:\001*\332A\024parent,entity_values\332A\"parent"
+ ",entity_values,language_code\312A/\n\025google."
+ "protobuf.Empty\022\026google.protobuf.Struct\032x"
+ "\312A\031dialogflow.googleapis.com\322AYhttps://w"
+ "ww.googleapis.com/auth/cloud-platform,ht"
+ "tps://www.googleapis.com/auth/dialogflow"
+ "B\236\001\n\036com.google.cloud.dialogflow.v2B\017Ent"
+ "ityTypeProtoP\001ZDgoogle.golang.org/genpro"
+ "to/googleapis/cloud/dialogflow/v2;dialog"
+ "flow\370\001\001\242\002\002DF\252\002\032Google.Cloud.Dialogflow.V"
+ "2b\006proto3"
};
descriptor =
com.google.protobuf.Descriptors.FileDescriptor.internalBuildGeneratedFileFrom(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,10 @@ service EntityTypes {
};
option (google.api.method_signature) = "parent,entities";
option (google.api.method_signature) = "parent,entities,language_code";
option (google.longrunning.operation_info) = {
response_type: "google.protobuf.Empty"
metadata_type: "google.protobuf.Struct"
};
}

// Deletes entities in the specified entity type.
Expand All @@ -181,6 +185,10 @@ service EntityTypes {
};
option (google.api.method_signature) = "parent,entity_values";
option (google.api.method_signature) = "parent,entity_values,language_code";
option (google.longrunning.operation_info) = {
response_type: "google.protobuf.Empty"
metadata_type: "google.protobuf.Struct"
};
}
}

Expand Down
Loading