class Google::Apis::TestingV1::AndroidDeviceCatalog

The currently supported Android devices.

Attributes

models[RW]

The set of supported Android device models. Corresponds to the JSON property `models` @return [Array<Google::Apis::TestingV1::AndroidModel>]

runtime_configuration[RW]

Android configuration that can be selected at the time a test is run. Corresponds to the JSON property `runtimeConfiguration` @return [Google::Apis::TestingV1::AndroidRuntimeConfiguration]

versions[RW]

The set of supported Android OS versions. Corresponds to the JSON property `versions` @return [Array<Google::Apis::TestingV1::AndroidVersion>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/testing_v1/classes.rb, line 109
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/testing_v1/classes.rb, line 114
def update!(**args)
  @models = args[:models] if args.key?(:models)
  @runtime_configuration = args[:runtime_configuration] if args.key?(:runtime_configuration)
  @versions = args[:versions] if args.key?(:versions)
end