Class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ExportTestCasesRequest

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/dialogflow_v3beta1/classes.rb,
lib/google/apis/dialogflow_v3beta1/representations.rb,
lib/google/apis/dialogflow_v3beta1/representations.rb

Overview

The request message for TestCases.ExportTestCases.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1ExportTestCasesRequest

Returns a new instance of GoogleCloudDialogflowCxV3beta1ExportTestCasesRequest.



3600
3601
3602
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 3600

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#data_formatString

The data format of the exported test cases. If not specified, BLOB is assumed. Corresponds to the JSON property dataFormat

Returns:

  • (String)


3583
3584
3585
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 3583

def data_format
  @data_format
end

#filterString

The filter expression used to filter exported test cases, see API Filtering. 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

Returns:

  • (String)


3591
3592
3593
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 3591

def filter
  @filter
end

#gcs_uriString

The Google Cloud Storage 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

Returns:

  • (String)


3598
3599
3600
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 3598

def gcs_uri
  @gcs_uri
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3605
3606
3607
3608
3609
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 3605

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