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.



136
137
138
# File 'lib/google/apis/connectors_v2/classes.rb', line 136

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

Instance Attribute Details

#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>)


134
135
136
# File 'lib/google/apis/connectors_v2/classes.rb', line 134

def parameters
  @parameters
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



141
142
143
# File 'lib/google/apis/connectors_v2/classes.rb', line 141

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