Class: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaReleaseTest
- Inherits:
-
Object
- Object
- Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaReleaseTest
- 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 results of running an automated test on a release.
Instance Attribute Summary collapse
-
#ai_instructions ⇒ Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaAiInstructions
Instructions for AI driven test Corresponds to the JSON property
aiInstructions. -
#create_time ⇒ String
Output only.
-
#device_executions ⇒ Array<Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaDeviceExecution>
Required.
-
#login_credential ⇒ Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaLoginCredential
Login credential for automated tests Corresponds to the JSON property
loginCredential. -
#name ⇒ String
The name of the release test resource.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleFirebaseAppdistroV1alphaReleaseTest
constructor
A new instance of GoogleFirebaseAppdistroV1alphaReleaseTest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleFirebaseAppdistroV1alphaReleaseTest
Returns a new instance of GoogleFirebaseAppdistroV1alphaReleaseTest.
808 809 810 |
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 808 def initialize(**args) update!(**args) end |
Instance Attribute Details
#ai_instructions ⇒ Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaAiInstructions
Instructions for AI driven test
Corresponds to the JSON property aiInstructions
785 786 787 |
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 785 def ai_instructions @ai_instructions end |
#create_time ⇒ String
Output only. Timestamp when the test was run.
Corresponds to the JSON property createTime
790 791 792 |
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 790 def create_time @create_time end |
#device_executions ⇒ Array<Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaDeviceExecution>
Required. The results of the test on each device.
Corresponds to the JSON property deviceExecutions
795 796 797 |
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 795 def device_executions @device_executions end |
#login_credential ⇒ Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaLoginCredential
Login credential for automated tests
Corresponds to the JSON property loginCredential
800 801 802 |
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 800 def login_credential @login_credential end |
#name ⇒ String
The name of the release test resource. Format: projects/project_number/apps/
app_id/releases/release_id/tests/test_id`
Corresponds to the JSON propertyname`
806 807 808 |
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 806 def name @name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
813 814 815 816 817 818 819 |
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 813 def update!(**args) @ai_instructions = args[:ai_instructions] if args.key?(:ai_instructions) @create_time = args[:create_time] if args.key?(:create_time) @device_executions = args[:device_executions] if args.key?(:device_executions) @login_credential = args[:login_credential] if args.key?(:login_credential) @name = args[:name] if args.key?(:name) end |