Class: Google::Apis::TestingV1::AndroidDevice
- Inherits:
-
Object
- Object
- Google::Apis::TestingV1::AndroidDevice
- 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 single Android device.
Instance Attribute Summary collapse
-
#android_model_id ⇒ String
Required.
-
#android_version_id ⇒ String
Required.
-
#locale ⇒ String
Required.
-
#orientation ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ AndroidDevice
constructor
A new instance of AndroidDevice.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ AndroidDevice
Returns a new instance of AndroidDevice
78 79 80 |
# File 'generated/google/apis/testing_v1/classes.rb', line 78 def initialize(**args) update!(**args) end |
Instance Attribute Details
#android_model_id ⇒ String
Required. The id of the Android device to be used.
Use the EnvironmentDiscoveryService to get supported options.
Corresponds to the JSON property androidModelId
58 59 60 |
# File 'generated/google/apis/testing_v1/classes.rb', line 58 def android_model_id @android_model_id end |
#android_version_id ⇒ String
Required. The id of the Android OS version to be used.
Use the EnvironmentDiscoveryService to get supported options.
Corresponds to the JSON property androidVersionId
64 65 66 |
# File 'generated/google/apis/testing_v1/classes.rb', line 64 def android_version_id @android_version_id end |
#locale ⇒ String
Required. The locale the test device used for testing.
Use the EnvironmentDiscoveryService to get supported options.
Corresponds to the JSON property locale
70 71 72 |
# File 'generated/google/apis/testing_v1/classes.rb', line 70 def locale @locale end |
#orientation ⇒ String
Required. How the device is oriented during the test.
Use the EnvironmentDiscoveryService to get supported options.
Corresponds to the JSON property orientation
76 77 78 |
# File 'generated/google/apis/testing_v1/classes.rb', line 76 def orientation @orientation end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
83 84 85 86 87 88 |
# File 'generated/google/apis/testing_v1/classes.rb', line 83 def update!(**args) @android_model_id = args[:android_model_id] if args.key?(:android_model_id) @android_version_id = args[:android_version_id] if args.key?(:android_version_id) @locale = args[:locale] if args.key?(:locale) @orientation = args[:orientation] if args.key?(:orientation) end |