@@ -133,7 +133,8 @@ service Agents {
133
133
//
134
134
// - `metadata`: An empty [Struct
135
135
// 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]
137
138
rpc ExportAgent (ExportAgentRequest ) returns (google .longrunning .Operation ) {
138
139
option (google.api.http ) = {
139
140
post : "/v2beta1/{parent=projects/*}/agent:export"
@@ -154,11 +155,13 @@ service Agents {
154
155
//
155
156
// Uploads new intents and entity types without deleting the existing ones.
156
157
// 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.
162
165
//
163
166
// This method is a [long-running
164
167
// operation](https://cloud.google.com/dialogflow/es/docs/how/long-running-operations).
@@ -196,8 +199,9 @@ service Agents {
196
199
// entity types in the older version are deleted. After the restore, the
197
200
// restored draft agent will be trained automatically (unless disabled in
198
201
// 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.
201
205
//
202
206
// This method is a [long-running
203
207
// operation](https://cloud.google.com/dialogflow/es/docs/how/long-running-operations).
@@ -231,7 +235,8 @@ service Agents {
231
235
232
236
// Gets agent validation result. Agent validation is performed during
233
237
// training time and is updated automatically when training is completed.
234
- rpc GetValidationResult (GetValidationResultRequest ) returns (ValidationResult ) {
238
+ rpc GetValidationResult (GetValidationResultRequest )
239
+ returns (ValidationResult ) {
235
240
option (google.api.http ) = {
236
241
get : "/v2beta1/{parent=projects/*}/agent/validationResult"
237
242
additional_bindings {
@@ -368,7 +373,8 @@ message Agent {
368
373
Tier tier = 15 ;
369
374
}
370
375
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].
372
378
message GetAgentRequest {
373
379
// Required. The project that the agent to fetch is associated with.
374
380
// Format: `projects/<Project ID>` or
@@ -381,7 +387,8 @@ message GetAgentRequest {
381
387
];
382
388
}
383
389
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].
385
392
message SetAgentRequest {
386
393
// Required. The agent to update.
387
394
Agent agent = 1 [(google.api.field_behavior ) = REQUIRED ];
@@ -390,7 +397,8 @@ message SetAgentRequest {
390
397
google.protobuf.FieldMask update_mask = 2 ;
391
398
}
392
399
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].
394
402
message DeleteAgentRequest {
395
403
// Required. The project that the agent to delete is associated with.
396
404
// Format: `projects/<Project ID>` or
@@ -416,7 +424,8 @@ message SubAgent {
416
424
string environment = 2 ;
417
425
}
418
426
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].
420
429
message SearchAgentsRequest {
421
430
// Required. The project to list agents from.
422
431
// Format: `projects/<Project ID or '-'>` or
@@ -436,7 +445,8 @@ message SearchAgentsRequest {
436
445
string page_token = 3 ;
437
446
}
438
447
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].
440
450
message SearchAgentsResponse {
441
451
// The list of agents. There will be a maximum number of items returned based
442
452
// on the page_size field in the request.
@@ -447,7 +457,8 @@ message SearchAgentsResponse {
447
457
string next_page_token = 2 ;
448
458
}
449
459
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].
451
462
message TrainAgentRequest {
452
463
// Required. The project that the agent to train is associated with.
453
464
// Format: `projects/<Project ID>` or
@@ -460,7 +471,8 @@ message TrainAgentRequest {
460
471
];
461
472
}
462
473
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].
464
476
message ExportAgentRequest {
465
477
// Required. The project that the agent to export is associated with.
466
478
// Format: `projects/<Project ID>` or
@@ -486,7 +498,8 @@ message ExportAgentRequest {
486
498
string agent_uri = 2 ;
487
499
}
488
500
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].
490
503
message ExportAgentResponse {
491
504
// The exported agent.
492
505
oneof agent {
@@ -499,7 +512,8 @@ message ExportAgentResponse {
499
512
}
500
513
}
501
514
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].
503
517
message ImportAgentRequest {
504
518
// Required. The project that the agent to import is associated with.
505
519
// Format: `projects/<Project ID>` or
@@ -528,7 +542,8 @@ message ImportAgentRequest {
528
542
}
529
543
}
530
544
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].
532
547
message RestoreAgentRequest {
533
548
// Required. The project that the agent to restore is associated with.
534
549
// Format: `projects/<Project ID>` or
@@ -557,7 +572,8 @@ message RestoreAgentRequest {
557
572
}
558
573
}
559
574
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].
561
577
message GetValidationResultRequest {
562
578
// Required. The project that the agent is associated with.
563
579
// Format: `projects/<Project ID>` or
0 commit comments