Class: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaUpdateTestCaseRequest
- Inherits:
-
Object
- Object
- Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaUpdateTestCaseRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/firebaseappdistribution_v1alpha/classes.rb,
lib/google/apis/firebaseappdistribution_v1alpha/representations.rb,
lib/google/apis/firebaseappdistribution_v1alpha/representations.rb
Overview
The request message for UpdateTestCase.
Instance Attribute Summary collapse
-
#allow_missing ⇒ Boolean
(also: #allow_missing?)
Optional.
-
#test_case ⇒ Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaTestCase
AI test cases Corresponds to the JSON property
testCase.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleFirebaseAppdistroV1alphaUpdateTestCaseRequest
constructor
A new instance of GoogleFirebaseAppdistroV1alphaUpdateTestCaseRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleFirebaseAppdistroV1alphaUpdateTestCaseRequest
Returns a new instance of GoogleFirebaseAppdistroV1alphaUpdateTestCaseRequest.
1817 1818 1819 |
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 1817 def initialize(**args) update!(**args) end |
Instance Attribute Details
#allow_missing ⇒ Boolean Also known as: allow_missing?
Optional. If set to true, and the test case is not found, a new test case will
be created.
Corresponds to the JSON property allowMissing
1809 1810 1811 |
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 1809 def allow_missing @allow_missing end |
#test_case ⇒ Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaTestCase
AI test cases
Corresponds to the JSON property testCase
1815 1816 1817 |
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 1815 def test_case @test_case end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1822 1823 1824 1825 |
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 1822 def update!(**args) @allow_missing = args[:allow_missing] if args.key?(:allow_missing) @test_case = args[:test_case] if args.key?(:test_case) end |