class Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ExportTestCasesRequest

The request message for TestCases.ExportTestCases.

Attributes

data_format[RW]

The data format of the exported test cases. If not specified, `BLOB` is assumed. Corresponds to the JSON property `dataFormat` @return [String]

filter[RW]

The filter expression used to filter exported test cases, see [API Filtering]( aip.dev/160). The expression is case insensitive and supports the following syntax: name = [OR name = ] … For example: * “name = t1 OR name = t2” matches the test case with the exact resource name “t1” or “t2”. Corresponds to the JSON property `filter` @return [String]

gcs_uri[RW]

The [Google Cloud Storage](cloud.google.com/storage/docs/) URI to export the test cases to. The format of this URI must be `gs:///`. If unspecified, the serialized test cases is returned inline. Corresponds to the JSON property `gcsUri` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/dialogflow_v3/classes.rb, line 1763
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/dialogflow_v3/classes.rb, line 1768
def update!(**args)
  @data_format = args[:data_format] if args.key?(:data_format)
  @filter = args[:filter] if args.key?(:filter)
  @gcs_uri = args[:gcs_uri] if args.key?(:gcs_uri)
end