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.



277
278
279
# File 'lib/google/apis/connectors_v2/classes.rb', line 277

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


275
276
277
# File 'lib/google/apis/connectors_v2/classes.rb', line 275

def parameters
  @parameters
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



282
283
284
# File 'lib/google/apis/connectors_v2/classes.rb', line 282

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