Class: Google::Apis::ComputeAlpha::BackendServiceCloudFunctionBackend

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

Overview

Configuration of a Cloud Function backend.

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) ⇒ BackendServiceCloudFunctionBackend

Returns a new instance of BackendServiceCloudFunctionBackend



3496
3497
3498
# File 'generated/google/apis/compute_alpha/classes.rb', line 3496

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

Instance Attribute Details

#function_nameString

Required. A cloud function name. Special value ?*? represents all cloud functions in the project. Corresponds to the JSON property functionName

Returns:

  • (String)


3489
3490
3491
# File 'generated/google/apis/compute_alpha/classes.rb', line 3489

def function_name
  @function_name
end

#target_projectString

Required. Project ID of the project hosting the cloud function. Corresponds to the JSON property targetProject

Returns:

  • (String)


3494
3495
3496
# File 'generated/google/apis/compute_alpha/classes.rb', line 3494

def target_project
  @target_project
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3501
3502
3503
3504
# File 'generated/google/apis/compute_alpha/classes.rb', line 3501

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