Class: Google::Apis::TestingV1::ProvidedSoftwareCatalog
- Inherits:
-
Object
- Object
- Google::Apis::TestingV1::ProvidedSoftwareCatalog
- 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
The currently provided software environment on the devices under test.
Instance Attribute Summary collapse
-
#androidx_orchestrator_version ⇒ String
A string representing the current version of AndroidX Test Orchestrator that is used in the environment.
-
#orchestrator_version ⇒ String
Deprecated: Use AndroidX Test Orchestrator going forward.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ProvidedSoftwareCatalog
constructor
A new instance of ProvidedSoftwareCatalog.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ProvidedSoftwareCatalog
Returns a new instance of ProvidedSoftwareCatalog.
2152 2153 2154 |
# File 'lib/google/apis/testing_v1/classes.rb', line 2152 def initialize(**args) update!(**args) end |
Instance Attribute Details
#androidx_orchestrator_version ⇒ String
A string representing the current version of AndroidX Test Orchestrator that
is used in the environment. The package is available at https://maven.google.
com/web/index.html#androidx.test:orchestrator.
Corresponds to the JSON property androidxOrchestratorVersion
2142 2143 2144 |
# File 'lib/google/apis/testing_v1/classes.rb', line 2142 def androidx_orchestrator_version @androidx_orchestrator_version end |
#orchestrator_version ⇒ String
Deprecated: Use AndroidX Test Orchestrator going forward. A string
representing the current version of Android Test Orchestrator that is used in
the environment. The package is available at https://maven.google.com/web/
index.html#com.android.support.test:orchestrator.
Corresponds to the JSON property orchestratorVersion
2150 2151 2152 |
# File 'lib/google/apis/testing_v1/classes.rb', line 2150 def orchestrator_version @orchestrator_version end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2157 2158 2159 2160 |
# File 'lib/google/apis/testing_v1/classes.rb', line 2157 def update!(**args) @androidx_orchestrator_version = args[:androidx_orchestrator_version] if args.key?(:androidx_orchestrator_version) @orchestrator_version = args[:orchestrator_version] if args.key?(:orchestrator_version) end |