@@ -461,6 +461,12 @@ message ExportAgentRequest {
461461 // URI to export the agent to.
462462 // The format of this URI must be `gs://<bucket-name>/<object-name>`.
463463 // If left unspecified, the serialized agent is returned inline.
464+ //
465+ // Dialogflow performs a write operation for the Cloud Storage object
466+ // on the caller's behalf, so your request authentication must
467+ // have write permissions for the object. For more information, see
468+ // [Dialogflow access
469+ // control](https://cloud.google.com/dialogflow/cx/docs/concept/access-control#storage).
464470 string agent_uri = 2 [(google.api.field_behavior ) = REQUIRED ];
465471}
466472
@@ -492,6 +498,12 @@ message ImportAgentRequest {
492498 oneof agent {
493499 // The URI to a Google Cloud Storage file containing the agent to import.
494500 // Note: The URI must start with "gs://".
501+ //
502+ // Dialogflow performs a read operation for the Cloud Storage object
503+ // on the caller's behalf, so your request authentication must
504+ // have read permissions for the object. For more information, see
505+ // [Dialogflow access
506+ // control](https://cloud.google.com/dialogflow/cx/docs/concept/access-control#storage).
495507 string agent_uri = 2 ;
496508
497509 // Zip compressed raw byte content for agent.
@@ -514,6 +526,12 @@ message RestoreAgentRequest {
514526 oneof agent {
515527 // The URI to a Google Cloud Storage file containing the agent to restore.
516528 // Note: The URI must start with "gs://".
529+ //
530+ // Dialogflow performs a read operation for the Cloud Storage object
531+ // on the caller's behalf, so your request authentication must
532+ // have read permissions for the object. For more information, see
533+ // [Dialogflow access
534+ // control](https://cloud.google.com/dialogflow/cx/docs/concept/access-control#storage).
517535 string agent_uri = 2 ;
518536
519537 // Zip compressed raw byte content for agent.
0 commit comments