Class: Google::Apis::TestingV1::DeviceFile
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::TestingV1::DeviceFile
 
- 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
- 
  
    
      #obb_file  ⇒ Google::Apis::TestingV1::ObbFile 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    An opaque binary blob file to install on the device before the test starts Corresponds to the JSON property obbFile.
- 
  
    
      #regular_file  ⇒ Google::Apis::TestingV1::RegularFile 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A file or directory to install on the device before the test starts Corresponds to the JSON property regularFile.
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ DeviceFile 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of DeviceFile. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ DeviceFile
Returns a new instance of DeviceFile
| 838 839 840 | # File 'generated/google/apis/testing_v1/classes.rb', line 838 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#obb_file ⇒ Google::Apis::TestingV1::ObbFile
An opaque binary blob file to install on the device before the test starts
Corresponds to the JSON property obbFile
| 831 832 833 | # File 'generated/google/apis/testing_v1/classes.rb', line 831 def obb_file @obb_file end | 
#regular_file ⇒ Google::Apis::TestingV1::RegularFile
A file or directory to install on the device before the test starts
Corresponds to the JSON property regularFile
| 836 837 838 | # File 'generated/google/apis/testing_v1/classes.rb', line 836 def regular_file @regular_file end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 843 844 845 846 | # File 'generated/google/apis/testing_v1/classes.rb', line 843 def update!(**args) @obb_file = args[:obb_file] if args.key?(:obb_file) @regular_file = args[:regular_file] if args.key?(:regular_file) end |