Class: Google::Apis::TestingV1::AndroidDevice

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 single Android device.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ AndroidDevice

Returns a new instance of AndroidDevice.



77
78
79
# File 'generated/google/apis/testing_v1/classes.rb', line 77

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

Instance Attribute Details

#android_model_idString

Required. The id of the Android device to be used. Use the TestEnvironmentDiscoveryService to get supported options. Corresponds to the JSON property androidModelId

Returns:

  • (String)


57
58
59
# File 'generated/google/apis/testing_v1/classes.rb', line 57

def android_model_id
  @android_model_id
end

#android_version_idString

Required. The id of the Android OS version to be used. Use the TestEnvironmentDiscoveryService to get supported options. Corresponds to the JSON property androidVersionId

Returns:

  • (String)


63
64
65
# File 'generated/google/apis/testing_v1/classes.rb', line 63

def android_version_id
  @android_version_id
end

#localeString

Required. The locale the test device used for testing. Use the TestEnvironmentDiscoveryService to get supported options. Corresponds to the JSON property locale

Returns:

  • (String)


69
70
71
# File 'generated/google/apis/testing_v1/classes.rb', line 69

def locale
  @locale
end

#orientationString

Required. How the device is oriented during the test. Use the TestEnvironmentDiscoveryService to get supported options. Corresponds to the JSON property orientation

Returns:

  • (String)


75
76
77
# File 'generated/google/apis/testing_v1/classes.rb', line 75

def orientation
  @orientation
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



82
83
84
85
86
87
# File 'generated/google/apis/testing_v1/classes.rb', line 82

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