Class: Google::Apis::TestingV1::DeviceFile

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 device file description.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ DeviceFile

Returns a new instance of DeviceFile



857
858
859
# File 'generated/google/apis/testing_v1/classes.rb', line 857

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

Instance Attribute Details

#obb_fileGoogle::Apis::TestingV1::ObbFile

An opaque binary blob file to install on the device before the test starts Corresponds to the JSON property obbFile



850
851
852
# File 'generated/google/apis/testing_v1/classes.rb', line 850

def obb_file
  @obb_file
end

#regular_fileGoogle::Apis::TestingV1::RegularFile

A file or directory to install on the device before the test starts Corresponds to the JSON property regularFile



855
856
857
# File 'generated/google/apis/testing_v1/classes.rb', line 855

def regular_file
  @regular_file
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



862
863
864
865
# File 'generated/google/apis/testing_v1/classes.rb', line 862

def update!(**args)
  @obb_file = args[:obb_file] if args.key?(:obb_file)
  @regular_file = args[:regular_file] if args.key?(:regular_file)
end