Class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3DeploymentResult

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

Overview

Result of the deployment.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowCxV3DeploymentResult

Returns a new instance of GoogleCloudDialogflowCxV3DeploymentResult.



1315
1316
1317
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 1315

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

Instance Attribute Details

#deployment_test_resultsArray<String>

Results of test cases running before the deployment. Format: projects// locations//agents//testCases//results/. Corresponds to the JSON property deploymentTestResults

Returns:

  • (Array<String>)


1307
1308
1309
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 1307

def deployment_test_results
  @deployment_test_results
end

#experimentString

The name of the experiment triggered by this deployment. Format: projects// locations//agents//environments//experiments/. Corresponds to the JSON property experiment

Returns:

  • (String)


1313
1314
1315
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 1313

def experiment
  @experiment
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1320
1321
1322
1323
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 1320

def update!(**args)
  @deployment_test_results = args[:deployment_test_results] if args.key?(:deployment_test_results)
  @experiment = args[:experiment] if args.key?(:experiment)
end