dialogflow: add operation_info annotations to BatchUpdateEntities and BatchDeleteEntities.
PiperOrigin-RevId: 286312673
This commit is contained in:
parent
f2b25232db
commit
d400cb8d45
|
|
@ -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"
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue