Some products and features are in the process of being renamed. Generative playbook and flow features are also being migrated to a single consolidated console. See the details.
Imports the test cases from a Cloud Storage bucket or a local file. It always creates new test cases and won't overwrite any existing ones. The provided ID in the imported test case is neglected.
This method is a long-running operation. The returned Operation type has the following method-specific fields:
Required. The agent to import test cases to. Format: projects/<ProjectID>/locations/<LocationID>/agents/<AgentID>.
Authorization requires the following IAM permission on the specified resource parent:
dialogflow.testcases.import
Request body
The request body contains data with the following structure:
JSON representation
{// Union field source can be only one of the following:"gcsUri": string,"content": string// End of list of possible types for union field source.}
Fields
Union field source. Required. The source to import. source can be only one of the following:
gcsUri
string
The Google Cloud Storage URI to import test cases from. The format of this URI must be gs://<bucket-name>/<object-name>.
Dialogflow performs a read operation for the Cloud Storage object on the caller's behalf, so your request authentication must have read permissions for the object. For more information, see Dialogflow access control.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-03-05 UTC."],[[["This process imports test cases from either a Google Cloud Storage bucket or a local file, creating new test cases without overwriting existing ones."],["The method is a long-running operation, returning an `Operation` type with `metadata` and `response` fields containing details about the import."],["The import source can be specified using either a Google Cloud Storage URI (`gcsUri`) or raw byte content (`content`) within the request body."],["To perform this operation, the request requires specific authorization via IAM permissions (`dialogflow.testcases.import`) and one of the specified OAuth scopes."],["The request is made through a POST request to a URL, where the parent path parameter must contain the location of the agent to import test cases to."]]],[]]