Class: Google::Apis::TestingV1::ProvidedSoftwareCatalog

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

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_versionString

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

Returns:

  • (String)


2142
2143
2144
# File 'lib/google/apis/testing_v1/classes.rb', line 2142

def androidx_orchestrator_version
  @androidx_orchestrator_version
end

#orchestrator_versionString

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

Returns:

  • (String)


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