class Google::Apis::CloudfunctionsV1::HttpsTrigger

Describes HttpsTrigger, could be used to connect web hooks to function.

Attributes

security_level[RW]

The security level for the function. Corresponds to the JSON property `securityLevel` @return [String]

url[RW]

Output only. The deployed url for the function. Corresponds to the JSON property `url` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/cloudfunctions_v1/classes.rb, line 721
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/cloudfunctions_v1/classes.rb, line 726
def update!(**args)
  @security_level = args[:security_level] if args.key?(:security_level)
  @url = args[:url] if args.key?(:url)
end