Class: Google::Apis::CloudfunctionsV1::HttpsTrigger
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::CloudfunctionsV1::HttpsTrigger
 
- Defined in:
- generated/google/apis/cloudfunctions_v1/classes.rb,
 generated/google/apis/cloudfunctions_v1/representations.rb,
 generated/google/apis/cloudfunctions_v1/representations.rb
Overview
Describes HttpsTrigger, could be used to connect web hooks to function.
Instance Attribute Summary collapse
- 
  
    
      #url  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Output only. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ HttpsTrigger 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of HttpsTrigger. 
- 
  
    
      #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) ⇒ HttpsTrigger
Returns a new instance of HttpsTrigger
| 377 378 379 | # File 'generated/google/apis/cloudfunctions_v1/classes.rb', line 377 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#url ⇒ String
Output only. The deployed url for the function.
Corresponds to the JSON property url
| 375 376 377 | # File 'generated/google/apis/cloudfunctions_v1/classes.rb', line 375 def url @url end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 382 383 384 | # File 'generated/google/apis/cloudfunctions_v1/classes.rb', line 382 def update!(**args) @url = args[:url] if args.key?(:url) end |