@@ -64,6 +64,10 @@ service EntityTypes {
6464 }
6565
6666 // Creates an entity type in the specified agent.
67+ //
68+ // Note: You should always train an agent prior to sending it queries. See the
69+ // [training
70+ // documentation](https://cloud.google.com/dialogflow/es/docs/training).
6771 rpc CreateEntityType (CreateEntityTypeRequest ) returns (EntityType ) {
6872 option (google.api.http ) = {
6973 post : "/v2/{parent=projects/*/agent}/entityTypes"
@@ -78,6 +82,10 @@ service EntityTypes {
7882 }
7983
8084 // Updates the specified entity type.
85+ //
86+ // Note: You should always train an agent prior to sending it queries. See the
87+ // [training
88+ // documentation](https://cloud.google.com/dialogflow/es/docs/training).
8189 rpc UpdateEntityType (UpdateEntityTypeRequest ) returns (EntityType ) {
8290 option (google.api.http ) = {
8391 patch : "/v2/{entity_type.name=projects/*/agent/entityTypes/*}"
@@ -92,6 +100,10 @@ service EntityTypes {
92100 }
93101
94102 // Deletes the specified entity type.
103+ //
104+ // Note: You should always train an agent prior to sending it queries. See the
105+ // [training
106+ // documentation](https://cloud.google.com/dialogflow/es/docs/training).
95107 rpc DeleteEntityType (DeleteEntityTypeRequest ) returns (google.protobuf.Empty ) {
96108 option (google.api.http ) = {
97109 delete : "/v2/{name=projects/*/agent/entityTypes/*}"
@@ -104,7 +116,10 @@ service EntityTypes {
104116
105117 // Updates/Creates multiple entity types in the specified agent.
106118 //
107- // Operation <response: [BatchUpdateEntityTypesResponse][google.cloud.dialogflow.v2.BatchUpdateEntityTypesResponse]>
119+ //
120+ // Note: You should always train an agent prior to sending it queries. See the
121+ // [training
122+ // documentation](https://cloud.google.com/dialogflow/es/docs/training).
108123 rpc BatchUpdateEntityTypes (BatchUpdateEntityTypesRequest ) returns (google.longrunning.Operation ) {
109124 option (google.api.http ) = {
110125 post : "/v2/{parent=projects/*/agent}/entityTypes:batchUpdate"
@@ -122,7 +137,9 @@ service EntityTypes {
122137
123138 // Deletes entity types in the specified agent.
124139 //
125- // Operation <response: [google.protobuf.Empty][google.protobuf.Empty]>
140+ // Note: You should always train an agent prior to sending it queries. See the
141+ // [training
142+ // documentation](https://cloud.google.com/dialogflow/es/docs/training).
126143 rpc BatchDeleteEntityTypes (BatchDeleteEntityTypesRequest ) returns (google.longrunning.Operation ) {
127144 option (google.api.http ) = {
128145 post : "/v2/{parent=projects/*/agent}/entityTypes:batchDelete"
@@ -141,7 +158,9 @@ service EntityTypes {
141158
142159 // Creates multiple new entities in the specified entity type.
143160 //
144- // Operation <response: [google.protobuf.Empty][google.protobuf.Empty]>
161+ // Note: You should always train an agent prior to sending it queries. See the
162+ // [training
163+ // documentation](https://cloud.google.com/dialogflow/es/docs/training).
145164 rpc BatchCreateEntities (BatchCreateEntitiesRequest ) returns (google.longrunning.Operation ) {
146165 option (google.api.http ) = {
147166 post : "/v2/{parent=projects/*/agent/entityTypes/*}/entities:batchCreate"
@@ -163,8 +182,9 @@ service EntityTypes {
163182 // method does not affect entities in the entity type that aren't explicitly
164183 // specified in the request.
165184 //
166- //
167- // Operation <response: [google.protobuf.Empty][google.protobuf.Empty]>
185+ // Note: You should always train an agent prior to sending it queries. See the
186+ // [training
187+ // documentation](https://cloud.google.com/dialogflow/es/docs/training).
168188 rpc BatchUpdateEntities (BatchUpdateEntitiesRequest ) returns (google.longrunning.Operation ) {
169189 option (google.api.http ) = {
170190 post : "/v2/{parent=projects/*/agent/entityTypes/*}/entities:batchUpdate"
@@ -184,8 +204,9 @@ service EntityTypes {
184204
185205 // Deletes entities in the specified entity type.
186206 //
187- //
188- // Operation <response: [google.protobuf.Empty][google.protobuf.Empty]>
207+ // Note: You should always train an agent prior to sending it queries. See the
208+ // [training
209+ // documentation](https://cloud.google.com/dialogflow/es/docs/training).
189210 rpc BatchDeleteEntities (BatchDeleteEntitiesRequest ) returns (google.longrunning.Operation ) {
190211 option (google.api.http ) = {
191212 post : "/v2/{parent=projects/*/agent/entityTypes/*}/entities:batchDelete"
0 commit comments