class Google::Apis::ConnectorsV1::RuntimeActionSchema
Schema of a runtime action.
Attributes
action[RW]
Output only. Name of the action. Corresponds to the JSON property ‘action` @return [String]
input_parameters[RW]
Output only. List of input parameter metadata for the action. Corresponds to the JSON property ‘inputParameters` @return [Array<Google::Apis::ConnectorsV1::InputParameter>]
result_metadata[RW]
Output only. List of result field metadata. Corresponds to the JSON property ‘resultMetadata` @return [Array<Google::Apis::ConnectorsV1::ResultMetadata>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/connectors_v1/classes.rb, line 1768 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/connectors_v1/classes.rb, line 1773 def update!(**args) @action = args[:action] if args.key?(:action) @input_parameters = args[:input_parameters] if args.key?(:input_parameters) @result_metadata = args[:result_metadata] if args.key?(:result_metadata) end