Class: Google::Apis::CloudfunctionsV1beta2::GenerateDownloadUrlResponse
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::CloudfunctionsV1beta2::GenerateDownloadUrlResponse
 
 
- Defined in:
 - generated/google/apis/cloudfunctions_v1beta2/classes.rb,
generated/google/apis/cloudfunctions_v1beta2/representations.rb,
generated/google/apis/cloudfunctions_v1beta2/representations.rb 
Overview
Response of GenerateDownloadUrl method.
Instance Attribute Summary collapse
- 
  
    
      #download_url  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The generated Google Cloud Storage signed URL that should be used for function source code download.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GenerateDownloadUrlResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of GenerateDownloadUrlResponse.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ GenerateDownloadUrlResponse
Returns a new instance of GenerateDownloadUrlResponse
      359 360 361  | 
    
      # File 'generated/google/apis/cloudfunctions_v1beta2/classes.rb', line 359 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#download_url ⇒ String
The generated Google Cloud Storage signed URL that should be used for
function source code download.
Corresponds to the JSON property downloadUrl
      357 358 359  | 
    
      # File 'generated/google/apis/cloudfunctions_v1beta2/classes.rb', line 357 def download_url @download_url end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      364 365 366  | 
    
      # File 'generated/google/apis/cloudfunctions_v1beta2/classes.rb', line 364 def update!(**args) @download_url = args[:download_url] if args.key?(:download_url) end  |