Class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1DeploymentResult
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1DeploymentResult
- 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
Result of the deployment.
Instance Attribute Summary collapse
-
#deployment_test_results ⇒ Array<String>
Results of test cases running before the deployment.
-
#experiment ⇒ String
The name of the experiment triggered by this deployment.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1DeploymentResult
constructor
A new instance of GoogleCloudDialogflowCxV3beta1DeploymentResult.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1DeploymentResult
Returns a new instance of GoogleCloudDialogflowCxV3beta1DeploymentResult.
3640 3641 3642 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 3640 def initialize(**args) update!(**args) end |
Instance Attribute Details
#deployment_test_results ⇒ Array<String>
Results of test cases running before the deployment. Format: projects//
locations//agents//testCases//results/.
Corresponds to the JSON property deploymentTestResults
3632 3633 3634 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 3632 def deployment_test_results @deployment_test_results end |
#experiment ⇒ String
The name of the experiment triggered by this deployment. Format: projects//
locations//agents//environments//experiments/.
Corresponds to the JSON property experiment
3638 3639 3640 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 3638 def experiment @experiment end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3645 3646 3647 3648 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 3645 def update!(**args) @deployment_test_results = args[:deployment_test_results] if args.key?(:deployment_test_results) @experiment = args[:experiment] if args.key?(:experiment) end |