Class: Google::Apis::ConnectorsV2::ExecuteActionRequest
- Inherits:
-
Object
- Object
- Google::Apis::ConnectorsV2::ExecuteActionRequest
- 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
-
#execution_config ⇒ Google::Apis::ConnectorsV2::ExecutionConfig
Execution config for the request.
-
#parameters ⇒ Hash<String,Object>
Parameters for executing the action.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ExecuteActionRequest
constructor
A new instance of ExecuteActionRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
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_config ⇒ Google::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 |
#parameters ⇒ Hash<String,Object>
Parameters for executing the action. The parameters can be key/value pairs or
nested structs.
Corresponds to the JSON property parameters
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 |