Class: Google::Apis::CloudfunctionsV2alpha::Function

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/cloudfunctions_v2alpha/classes.rb,
lib/google/apis/cloudfunctions_v2alpha/representations.rb,
lib/google/apis/cloudfunctions_v2alpha/representations.rb

Overview

Describes a Cloud Function that contains user computation executed in response to an event. It encapsulate function and triggers configurations.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Function

Returns a new instance of Function.



457
458
459
# File 'lib/google/apis/cloudfunctions_v2alpha/classes.rb', line 457

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

Instance Attribute Details

#build_configGoogle::Apis::CloudfunctionsV2alpha::BuildConfig

Describes the Build step of the function that builds a container from the given source. Corresponds to the JSON property buildConfig



408
409
410
# File 'lib/google/apis/cloudfunctions_v2alpha/classes.rb', line 408

def build_config
  @build_config
end

#descriptionString

User-provided description of a function. Corresponds to the JSON property description

Returns:

  • (String)


413
414
415
# File 'lib/google/apis/cloudfunctions_v2alpha/classes.rb', line 413

def description
  @description
end

#environmentString

Describe whether the function is gen1 or gen2. Corresponds to the JSON property environment

Returns:

  • (String)


418
419
420
# File 'lib/google/apis/cloudfunctions_v2alpha/classes.rb', line 418

def environment
  @environment
end

#event_triggerGoogle::Apis::CloudfunctionsV2alpha::EventTrigger

Describes EventTrigger, used to request events to be sent from another service. Corresponds to the JSON property eventTrigger



423
424
425
# File 'lib/google/apis/cloudfunctions_v2alpha/classes.rb', line 423

def event_trigger
  @event_trigger
end

#labelsHash<String,String>

Labels associated with this Cloud Function. Corresponds to the JSON property labels

Returns:

  • (Hash<String,String>)


428
429
430
# File 'lib/google/apis/cloudfunctions_v2alpha/classes.rb', line 428

def labels
  @labels
end

#nameString

A user-defined name of the function. Function names must be unique globally and match pattern projects/*/locations/*/functions/* Corresponds to the JSON property name

Returns:

  • (String)


434
435
436
# File 'lib/google/apis/cloudfunctions_v2alpha/classes.rb', line 434

def name
  @name
end

#service_configGoogle::Apis::CloudfunctionsV2alpha::ServiceConfig

Describes the Service being deployed. Currently Supported : Cloud Run (fully managed). Corresponds to the JSON property serviceConfig



440
441
442
# File 'lib/google/apis/cloudfunctions_v2alpha/classes.rb', line 440

def service_config
  @service_config
end

#stateString

Output only. State of the function. Corresponds to the JSON property state

Returns:

  • (String)


445
446
447
# File 'lib/google/apis/cloudfunctions_v2alpha/classes.rb', line 445

def state
  @state
end

#state_messagesArray<Google::Apis::CloudfunctionsV2alpha::GoogleCloudFunctionsV2alphaStateMessage>

Output only. State Messages for this Cloud Function. Corresponds to the JSON property stateMessages



450
451
452
# File 'lib/google/apis/cloudfunctions_v2alpha/classes.rb', line 450

def state_messages
  @state_messages
end

#update_timeString

Output only. The last update timestamp of a Cloud Function. Corresponds to the JSON property updateTime

Returns:

  • (String)


455
456
457
# File 'lib/google/apis/cloudfunctions_v2alpha/classes.rb', line 455

def update_time
  @update_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



462
463
464
465
466
467
468
469
470
471
472
473
# File 'lib/google/apis/cloudfunctions_v2alpha/classes.rb', line 462

def update!(**args)
  @build_config = args[:build_config] if args.key?(:build_config)
  @description = args[:description] if args.key?(:description)
  @environment = args[:environment] if args.key?(:environment)
  @event_trigger = args[:event_trigger] if args.key?(:event_trigger)
  @labels = args[:labels] if args.key?(:labels)
  @name = args[:name] if args.key?(:name)
  @service_config = args[:service_config] if args.key?(:service_config)
  @state = args[:state] if args.key?(:state)
  @state_messages = args[:state_messages] if args.key?(:state_messages)
  @update_time = args[:update_time] if args.key?(:update_time)
end