@@ -133,7 +133,8 @@ service Agents {
133133 //
134134 // - `metadata`: An empty [Struct
135135 // message](https://developers.google.com/protocol-buffers/docs/reference/google.protobuf#struct)
136- // - `response`: [ExportAgentResponse][google.cloud.dialogflow.v2beta1.ExportAgentResponse]
136+ // - `response`:
137+ // [ExportAgentResponse][google.cloud.dialogflow.v2beta1.ExportAgentResponse]
137138 rpc ExportAgent (ExportAgentRequest ) returns (google.longrunning.Operation ) {
138139 option (google.api.http ) = {
139140 post : "/v2beta1/{parent=projects/*}/agent:export"
@@ -154,11 +155,13 @@ service Agents {
154155 //
155156 // Uploads new intents and entity types without deleting the existing ones.
156157 // Intents and entity types with the same name are replaced with the new
157- // versions from [ImportAgentRequest][google.cloud.dialogflow.v2beta1.ImportAgentRequest]. After the import, the imported draft
158- // agent will be trained automatically (unless disabled in agent settings).
159- // However, once the import is done, training may not be completed yet. Please
160- // call [TrainAgent][google.cloud.dialogflow.v2beta1.Agents.TrainAgent] and wait for the operation it returns in order to train
161- // explicitly.
158+ // versions from
159+ // [ImportAgentRequest][google.cloud.dialogflow.v2beta1.ImportAgentRequest].
160+ // After the import, the imported draft agent will be trained automatically
161+ // (unless disabled in agent settings). However, once the import is done,
162+ // training may not be completed yet. Please call
163+ // [TrainAgent][google.cloud.dialogflow.v2beta1.Agents.TrainAgent] and wait
164+ // for the operation it returns in order to train explicitly.
162165 //
163166 // This method is a [long-running
164167 // operation](https://cloud.google.com/dialogflow/es/docs/how/long-running-operations).
@@ -196,8 +199,9 @@ service Agents {
196199 // entity types in the older version are deleted. After the restore, the
197200 // restored draft agent will be trained automatically (unless disabled in
198201 // agent settings). However, once the restore is done, training may not be
199- // completed yet. Please call [TrainAgent][google.cloud.dialogflow.v2beta1.Agents.TrainAgent] and wait for the operation it
200- // returns in order to train explicitly.
202+ // completed yet. Please call
203+ // [TrainAgent][google.cloud.dialogflow.v2beta1.Agents.TrainAgent] and wait
204+ // for the operation it returns in order to train explicitly.
201205 //
202206 // This method is a [long-running
203207 // operation](https://cloud.google.com/dialogflow/es/docs/how/long-running-operations).
@@ -231,7 +235,8 @@ service Agents {
231235
232236 // Gets agent validation result. Agent validation is performed during
233237 // training time and is updated automatically when training is completed.
234- rpc GetValidationResult (GetValidationResultRequest ) returns (ValidationResult ) {
238+ rpc GetValidationResult (GetValidationResultRequest )
239+ returns (ValidationResult ) {
235240 option (google.api.http ) = {
236241 get : "/v2beta1/{parent=projects/*}/agent/validationResult"
237242 additional_bindings {
@@ -368,7 +373,8 @@ message Agent {
368373 Tier tier = 15 ;
369374}
370375
371- // The request message for [Agents.GetAgent][google.cloud.dialogflow.v2beta1.Agents.GetAgent].
376+ // The request message for
377+ // [Agents.GetAgent][google.cloud.dialogflow.v2beta1.Agents.GetAgent].
372378message GetAgentRequest {
373379 // Required. The project that the agent to fetch is associated with.
374380 // Format: `projects/<Project ID>` or
@@ -381,7 +387,8 @@ message GetAgentRequest {
381387 ];
382388}
383389
384- // The request message for [Agents.SetAgent][google.cloud.dialogflow.v2beta1.Agents.SetAgent].
390+ // The request message for
391+ // [Agents.SetAgent][google.cloud.dialogflow.v2beta1.Agents.SetAgent].
385392message SetAgentRequest {
386393 // Required. The agent to update.
387394 Agent agent = 1 [(google.api.field_behavior ) = REQUIRED ];
@@ -390,7 +397,8 @@ message SetAgentRequest {
390397 google.protobuf.FieldMask update_mask = 2 ;
391398}
392399
393- // The request message for [Agents.DeleteAgent][google.cloud.dialogflow.v2beta1.Agents.DeleteAgent].
400+ // The request message for
401+ // [Agents.DeleteAgent][google.cloud.dialogflow.v2beta1.Agents.DeleteAgent].
394402message DeleteAgentRequest {
395403 // Required. The project that the agent to delete is associated with.
396404 // Format: `projects/<Project ID>` or
@@ -416,7 +424,8 @@ message SubAgent {
416424 string environment = 2 ;
417425}
418426
419- // The request message for [Agents.SearchAgents][google.cloud.dialogflow.v2beta1.Agents.SearchAgents].
427+ // The request message for
428+ // [Agents.SearchAgents][google.cloud.dialogflow.v2beta1.Agents.SearchAgents].
420429message SearchAgentsRequest {
421430 // Required. The project to list agents from.
422431 // Format: `projects/<Project ID or '-'>` or
@@ -436,7 +445,8 @@ message SearchAgentsRequest {
436445 string page_token = 3 ;
437446}
438447
439- // The response message for [Agents.SearchAgents][google.cloud.dialogflow.v2beta1.Agents.SearchAgents].
448+ // The response message for
449+ // [Agents.SearchAgents][google.cloud.dialogflow.v2beta1.Agents.SearchAgents].
440450message SearchAgentsResponse {
441451 // The list of agents. There will be a maximum number of items returned based
442452 // on the page_size field in the request.
@@ -447,7 +457,8 @@ message SearchAgentsResponse {
447457 string next_page_token = 2 ;
448458}
449459
450- // The request message for [Agents.TrainAgent][google.cloud.dialogflow.v2beta1.Agents.TrainAgent].
460+ // The request message for
461+ // [Agents.TrainAgent][google.cloud.dialogflow.v2beta1.Agents.TrainAgent].
451462message TrainAgentRequest {
452463 // Required. The project that the agent to train is associated with.
453464 // Format: `projects/<Project ID>` or
@@ -460,7 +471,8 @@ message TrainAgentRequest {
460471 ];
461472}
462473
463- // The request message for [Agents.ExportAgent][google.cloud.dialogflow.v2beta1.Agents.ExportAgent].
474+ // The request message for
475+ // [Agents.ExportAgent][google.cloud.dialogflow.v2beta1.Agents.ExportAgent].
464476message ExportAgentRequest {
465477 // Required. The project that the agent to export is associated with.
466478 // Format: `projects/<Project ID>` or
@@ -486,7 +498,8 @@ message ExportAgentRequest {
486498 string agent_uri = 2 ;
487499}
488500
489- // The response message for [Agents.ExportAgent][google.cloud.dialogflow.v2beta1.Agents.ExportAgent].
501+ // The response message for
502+ // [Agents.ExportAgent][google.cloud.dialogflow.v2beta1.Agents.ExportAgent].
490503message ExportAgentResponse {
491504 // The exported agent.
492505 oneof agent {
@@ -499,7 +512,8 @@ message ExportAgentResponse {
499512 }
500513}
501514
502- // The request message for [Agents.ImportAgent][google.cloud.dialogflow.v2beta1.Agents.ImportAgent].
515+ // The request message for
516+ // [Agents.ImportAgent][google.cloud.dialogflow.v2beta1.Agents.ImportAgent].
503517message ImportAgentRequest {
504518 // Required. The project that the agent to import is associated with.
505519 // Format: `projects/<Project ID>` or
@@ -528,7 +542,8 @@ message ImportAgentRequest {
528542 }
529543}
530544
531- // The request message for [Agents.RestoreAgent][google.cloud.dialogflow.v2beta1.Agents.RestoreAgent].
545+ // The request message for
546+ // [Agents.RestoreAgent][google.cloud.dialogflow.v2beta1.Agents.RestoreAgent].
532547message RestoreAgentRequest {
533548 // Required. The project that the agent to restore is associated with.
534549 // Format: `projects/<Project ID>` or
@@ -557,7 +572,8 @@ message RestoreAgentRequest {
557572 }
558573}
559574
560- // The request message for [Agents.GetValidationResult][google.cloud.dialogflow.v2beta1.Agents.GetValidationResult].
575+ // The request message for
576+ // [Agents.GetValidationResult][google.cloud.dialogflow.v2beta1.Agents.GetValidationResult].
561577message GetValidationResultRequest {
562578 // Required. The project that the agent is associated with.
563579 // Format: `projects/<Project ID>` or
0 commit comments