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.



872
873
874
# File 'generated/google/apis/testing_v1/classes.rb', line 872

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



865
866
867
# File 'generated/google/apis/testing_v1/classes.rb', line 865

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



870
871
872
# File 'generated/google/apis/testing_v1/classes.rb', line 870

def regular_file
  @regular_file
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



877
878
879
880
# File 'generated/google/apis/testing_v1/classes.rb', line 877

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