dialogflow: add operation_info annotations to BatchUpdateEntities and BatchDeleteEntities.

PiperOrigin-RevId: 286312673
This commit is contained in:
Google APIs 2019-12-18 19:33:23 -08:00 committed by Copybara-Service
parent f2b25232db
commit d400cb8d45
1 changed files with 8 additions and 0 deletions

View File

@ -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.
@ -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"
};
}
}