Class: Google::Apis::TestingV1::FileReference
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::TestingV1::FileReference
 
- 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 reference to a file, used for user inputs.
Instance Attribute Summary collapse
- 
  
    
      #gcs_path  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A path to a file in Google Cloud Storage. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ FileReference 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of FileReference. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ FileReference
Returns a new instance of FileReference
| 960 961 962 | # File 'generated/google/apis/testing_v1/classes.rb', line 960 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#gcs_path ⇒ String
A path to a file in Google Cloud Storage.
Example: gs://build-app-1414623860166/app-debug-unaligned.apk
Corresponds to the JSON property gcsPath
| 958 959 960 | # File 'generated/google/apis/testing_v1/classes.rb', line 958 def gcs_path @gcs_path end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 965 966 967 | # File 'generated/google/apis/testing_v1/classes.rb', line 965 def update!(**args) @gcs_path = args[:gcs_path] if args.key?(:gcs_path) end |