Class: Google::Apis::ConnectorsV2::ExecuteActionRequest

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

Overview

Request message for ActionService.ExecuteAction

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ExecuteActionRequest

Returns a new instance of ExecuteActionRequest.



498
499
500
# File 'lib/google/apis/connectors_v2/classes.rb', line 498

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

Instance Attribute Details

#execution_configGoogle::Apis::ConnectorsV2::ExecutionConfig

Execution config for the request. Corresponds to the JSON property executionConfig



490
491
492
# File 'lib/google/apis/connectors_v2/classes.rb', line 490

def execution_config
  @execution_config
end

#parametersHash<String,Object>

Parameters for executing the action. The parameters can be key/value pairs or nested structs. Corresponds to the JSON property parameters

Returns:

  • (Hash<String,Object>)


496
497
498
# File 'lib/google/apis/connectors_v2/classes.rb', line 496

def parameters
  @parameters
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



503
504
505
506
# File 'lib/google/apis/connectors_v2/classes.rb', line 503

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