Class: Google::Apis::TestingV1::CancelTestMatrixResponse
- Inherits:
-
Object
- Object
- Google::Apis::TestingV1::CancelTestMatrixResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/testing_v1/classes.rb,
lib/google/apis/testing_v1/representations.rb,
lib/google/apis/testing_v1/representations.rb
Overview
Response containing the current state of the specified test matrix.
Instance Attribute Summary collapse
-
#test_state ⇒ String
The current rolled-up state of the test matrix.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CancelTestMatrixResponse
constructor
A new instance of CancelTestMatrixResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ CancelTestMatrixResponse
Returns a new instance of CancelTestMatrixResponse.
798 799 800 |
# File 'lib/google/apis/testing_v1/classes.rb', line 798 def initialize(**args) update!(**args) end |
Instance Attribute Details
#test_state ⇒ String
The current rolled-up state of the test matrix. If this state is already final,
then the cancelation request will have no effect.
Corresponds to the JSON property testState
796 797 798 |
# File 'lib/google/apis/testing_v1/classes.rb', line 796 def test_state @test_state end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
803 804 805 |
# File 'lib/google/apis/testing_v1/classes.rb', line 803 def update!(**args) @test_state = args[:test_state] if args.key?(:test_state) end |