Class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3EnvironmentTestCasesConfig

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowCxV3EnvironmentTestCasesConfig

Returns a new instance of GoogleCloudDialogflowCxV3EnvironmentTestCasesConfig.



637
638
639
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 637

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

Instance Attribute Details

#enable_continuous_runBoolean Also known as: enable_continuous_run?

Corresponds to the JSON property enableContinuousRun

Returns:

  • (Boolean)


623
624
625
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 623

def enable_continuous_run
  @enable_continuous_run
end

#enable_predeployment_runBoolean Also known as: enable_predeployment_run?

Corresponds to the JSON property enablePredeploymentRun

Returns:

  • (Boolean)


629
630
631
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 629

def enable_predeployment_run
  @enable_predeployment_run
end

#test_casesArray<String>

Corresponds to the JSON property testCases

Returns:

  • (Array<String>)


635
636
637
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 635

def test_cases
  @test_cases
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



642
643
644
645
646
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 642

def update!(**args)
  @enable_continuous_run = args[:enable_continuous_run] if args.key?(:enable_continuous_run)
  @enable_predeployment_run = args[:enable_predeployment_run] if args.key?(:enable_predeployment_run)
  @test_cases = args[:test_cases] if args.key?(:test_cases)
end