Class: Google::Apis::CloudfunctionsV1::HttpsTrigger

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
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

Instance Method Summary collapse

Methods included from Google::Apis::Core::JsonObjectSupport

#to_json

Methods included from Google::Apis::Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ HttpsTrigger

Returns a new instance of HttpsTrigger



635
636
637
# File 'generated/google/apis/cloudfunctions_v1/classes.rb', line 635

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#urlString

Output only. The deployed url for the function. Corresponds to the JSON property url

Returns:

  • (String)


633
634
635
# File 'generated/google/apis/cloudfunctions_v1/classes.rb', line 633

def url
  @url
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



640
641
642
# File 'generated/google/apis/cloudfunctions_v1/classes.rb', line 640

def update!(**args)
  @url = args[:url] if args.key?(:url)
end