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
370 371 372 |
# File 'generated/google/apis/cloudfunctions_v1/classes.rb', line 370 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
368 369 370 |
# File 'generated/google/apis/cloudfunctions_v1/classes.rb', line 368 def url @url end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
375 376 377 |
# File 'generated/google/apis/cloudfunctions_v1/classes.rb', line 375 def update!(**args) @url = args[:url] if args.key?(:url) end |