Class: Google::Apis::TestingV1::AndroidMatrix
- Inherits:
-
Object
- Object
- Google::Apis::TestingV1::AndroidMatrix
- 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
-
#android_model_ids ⇒ Array<String>
Required.
-
#android_version_ids ⇒ Array<String>
Required.
-
#locales ⇒ Array<String>
Required.
-
#orientations ⇒ Array<String>
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ AndroidMatrix
constructor
A new instance of AndroidMatrix.
-
#update!(**args) ⇒ Object
Update properties of this object.
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_ids ⇒ Array<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
238 239 240 |
# File 'generated/google/apis/testing_v1/classes.rb', line 238 def android_model_ids @android_model_ids end |
#android_version_ids ⇒ Array<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
244 245 246 |
# File 'generated/google/apis/testing_v1/classes.rb', line 244 def android_version_ids @android_version_ids end |
#locales ⇒ Array<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
250 251 252 |
# File 'generated/google/apis/testing_v1/classes.rb', line 250 def locales @locales end |
#orientations ⇒ Array<String>
Required. The set of orientations to test with. Use the
TestEnvironmentDiscoveryService to get supported options.
Corresponds to the JSON property orientations
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 |