class Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3DeploymentResult
Result of the deployment.
Attributes
deployment_test_results[RW]
Results of test cases running before the deployment. Format: `projects// locations//agents//testCases//results/`. Corresponds to the JSON property `deploymentTestResults` @return [Array<String>]
experiment[RW]
The name of the experiment triggered by this deployment. Format: projects// locations//agents//environments//experiments/. Corresponds to the JSON property `experiment` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/dialogflow_v3/classes.rb, line 871 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 876 def update!(**args) @deployment_test_results = args[:deployment_test_results] if args.key?(:deployment_test_results) @experiment = args[:experiment] if args.key?(:experiment) end