Class: Google::Apis::TestingV1::AndroidModel

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 description of an Android device tests may be run on.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ AndroidModel

Returns a new instance of AndroidModel.



360
361
362
# File 'generated/google/apis/testing_v1/classes.rb', line 360

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

Instance Attribute Details

#brandString

The company that this device is branded with. Example: "Google", "Samsung". Corresponds to the JSON property brand

Returns:

  • (String)


278
279
280
# File 'generated/google/apis/testing_v1/classes.rb', line 278

def brand
  @brand
end

#codenameString

The name of the industrial design. This corresponds to android.os.Build.DEVICE. Corresponds to the JSON property codename

Returns:

  • (String)


283
284
285
# File 'generated/google/apis/testing_v1/classes.rb', line 283

def codename
  @codename
end

#formString

Whether this device is virtual or physical. Corresponds to the JSON property form

Returns:

  • (String)


288
289
290
# File 'generated/google/apis/testing_v1/classes.rb', line 288

def form
  @form
end

#form_factorString

Whether this device is a phone, tablet, wearable, etc. Corresponds to the JSON property formFactor

Returns:

  • (String)


293
294
295
# File 'generated/google/apis/testing_v1/classes.rb', line 293

def form_factor
  @form_factor
end

#idString

The unique opaque id for this model. Use this for invoking the TestExecutionService. Corresponds to the JSON property id

Returns:

  • (String)


299
300
301
# File 'generated/google/apis/testing_v1/classes.rb', line 299

def id
  @id
end

#low_fps_video_recordingBoolean Also known as: low_fps_video_recording?

True if and only if tests with this model are recorded by stitching together screenshots. See use_low_spec_video_recording in device config. Corresponds to the JSON property lowFpsVideoRecording

Returns:

  • (Boolean)


305
306
307
# File 'generated/google/apis/testing_v1/classes.rb', line 305

def low_fps_video_recording
  @low_fps_video_recording
end

#manufacturerString

The manufacturer of this device. Corresponds to the JSON property manufacturer

Returns:

  • (String)


311
312
313
# File 'generated/google/apis/testing_v1/classes.rb', line 311

def manufacturer
  @manufacturer
end

#nameString

The human-readable marketing name for this device model. Examples: "Nexus 5", " Galaxy S5". Corresponds to the JSON property name

Returns:

  • (String)


317
318
319
# File 'generated/google/apis/testing_v1/classes.rb', line 317

def name
  @name
end

#screen_densityFixnum

Screen density in DPI. This corresponds to ro.sf.lcd_density Corresponds to the JSON property screenDensity

Returns:

  • (Fixnum)


322
323
324
# File 'generated/google/apis/testing_v1/classes.rb', line 322

def screen_density
  @screen_density
end

#screen_xFixnum

Screen size in the horizontal (X) dimension measured in pixels. Corresponds to the JSON property screenX

Returns:

  • (Fixnum)


327
328
329
# File 'generated/google/apis/testing_v1/classes.rb', line 327

def screen_x
  @screen_x
end

#screen_yFixnum

Screen size in the vertical (Y) dimension measured in pixels. Corresponds to the JSON property screenY

Returns:

  • (Fixnum)


332
333
334
# File 'generated/google/apis/testing_v1/classes.rb', line 332

def screen_y
  @screen_y
end

#supported_abisArray<String>

The list of supported ABIs for this device. This corresponds to either android. os.Build.SUPPORTED_ABIS (for API level 21 and above) or android.os.Build. CPU_ABI/CPU_ABI2. The most preferred ABI is the first element in the list. Elements are optionally prefixed by "version_id:" (where version_id is the id of an AndroidVersion), denoting an ABI that is supported only on a particular version. Corresponds to the JSON property supportedAbis

Returns:

  • (Array<String>)


342
343
344
# File 'generated/google/apis/testing_v1/classes.rb', line 342

def supported_abis
  @supported_abis
end

#supported_version_idsArray<String>

The set of Android versions this device supports. Corresponds to the JSON property supportedVersionIds

Returns:

  • (Array<String>)


347
348
349
# File 'generated/google/apis/testing_v1/classes.rb', line 347

def supported_version_ids
  @supported_version_ids
end

#tagsArray<String>

Tags for this dimension. Examples: "default", "preview", "deprecated". Corresponds to the JSON property tags

Returns:

  • (Array<String>)


352
353
354
# File 'generated/google/apis/testing_v1/classes.rb', line 352

def tags
  @tags
end

#thumbnail_urlString

URL of a thumbnail image (photo) of the device. e.g. https://lh3. googleusercontent.com/90WcauuJiCYABEl8U0lcZeuS5STUbf2yW... Corresponds to the JSON property thumbnailUrl

Returns:

  • (String)


358
359
360
# File 'generated/google/apis/testing_v1/classes.rb', line 358

def thumbnail_url
  @thumbnail_url
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
# File 'generated/google/apis/testing_v1/classes.rb', line 365

def update!(**args)
  @brand = args[:brand] if args.key?(:brand)
  @codename = args[:codename] if args.key?(:codename)
  @form = args[:form] if args.key?(:form)
  @form_factor = args[:form_factor] if args.key?(:form_factor)
  @id = args[:id] if args.key?(:id)
  @low_fps_video_recording = args[:low_fps_video_recording] if args.key?(:low_fps_video_recording)
  @manufacturer = args[:manufacturer] if args.key?(:manufacturer)
  @name = args[:name] if args.key?(:name)
  @screen_density = args[:screen_density] if args.key?(:screen_density)
  @screen_x = args[:screen_x] if args.key?(:screen_x)
  @screen_y = args[:screen_y] if args.key?(:screen_y)
  @supported_abis = args[:supported_abis] if args.key?(:supported_abis)
  @supported_version_ids = args[:supported_version_ids] if args.key?(:supported_version_ids)
  @tags = args[:tags] if args.key?(:tags)
  @thumbnail_url = args[:thumbnail_url] if args.key?(:thumbnail_url)
end