Class: Google::Apis::TestingV1::AndroidMatrix

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/testing_v1/classes.rb,
generated/google/apis/testing_v1/representations.rb,
generated/google/apis/testing_v1/representations.rb

Overview

A set of Android device configuration permutations is defined by the the cross- product of the given axes. Internally, the given AndroidMatrix will be expanded into a set of AndroidDevices. Only supported permutations will be instantiated. Invalid permutations (e.g., incompatible models/versions) are ignored.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ AndroidMatrix

Returns a new instance of AndroidMatrix.



258
259
260
# File 'generated/google/apis/testing_v1/classes.rb', line 258

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#android_model_idsArray<String>

Required. The ids of the set of Android device to be used. Use the TestEnvironmentDiscoveryService to get supported options. Corresponds to the JSON property androidModelIds

Returns:

  • (Array<String>)


238
239
240
# File 'generated/google/apis/testing_v1/classes.rb', line 238

def android_model_ids
  @android_model_ids
end

#android_version_idsArray<String>

Required. The ids of the set of Android OS version to be used. Use the TestEnvironmentDiscoveryService to get supported options. Corresponds to the JSON property androidVersionIds

Returns:

  • (Array<String>)


244
245
246
# File 'generated/google/apis/testing_v1/classes.rb', line 244

def android_version_ids
  @android_version_ids
end

#localesArray<String>

Required. The set of locales the test device will enable for testing. Use the TestEnvironmentDiscoveryService to get supported options. Corresponds to the JSON property locales

Returns:

  • (Array<String>)


250
251
252
# File 'generated/google/apis/testing_v1/classes.rb', line 250

def locales
  @locales
end

#orientationsArray<String>

Required. The set of orientations to test with. Use the TestEnvironmentDiscoveryService to get supported options. Corresponds to the JSON property orientations

Returns:

  • (Array<String>)


256
257
258
# File 'generated/google/apis/testing_v1/classes.rb', line 256

def orientations
  @orientations
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



263
264
265
266
267
268
# File 'generated/google/apis/testing_v1/classes.rb', line 263

def update!(**args)
  @android_model_ids = args[:android_model_ids] if args.key?(:android_model_ids)
  @android_version_ids = args[:android_version_ids] if args.key?(:android_version_ids)
  @locales = args[:locales] if args.key?(:locales)
  @orientations = args[:orientations] if args.key?(:orientations)
end