Class: Google::Apis::CloudfunctionsV1beta2::HttpsTrigger

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
generated/google/apis/cloudfunctions_v1beta2/classes.rb,
generated/google/apis/cloudfunctions_v1beta2/representations.rb,
generated/google/apis/cloudfunctions_v1beta2/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



427
428
429
# File 'generated/google/apis/cloudfunctions_v1beta2/classes.rb', line 427

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)


425
426
427
# File 'generated/google/apis/cloudfunctions_v1beta2/classes.rb', line 425

def url
  @url
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



432
433
434
# File 'generated/google/apis/cloudfunctions_v1beta2/classes.rb', line 432

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