Class: Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaReplayExecutionResponse

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

Overview

Response for replaying an execution.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudIntegrationsV1alphaReplayExecutionResponse

Returns a new instance of GoogleCloudIntegrationsV1alphaReplayExecutionResponse.



9937
9938
9939
# File 'lib/google/apis/integrations_v1/classes.rb', line 9937

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

Instance Attribute Details

#execution_idString

Next ID: 4 The id of the execution corresponding to this run of the integration. Corresponds to the JSON property executionId

Returns:

  • (String)


9922
9923
9924
# File 'lib/google/apis/integrations_v1/classes.rb', line 9922

def execution_id
  @execution_id
end

#output_parametersHash<String,Object>

OUTPUT parameters in format of Map. Where Key is the name of the parameter. The parameters would only be present in case of synchrounous execution. Note: Name of the system generated parameters are wrapped by backtick() to distinguish them from the user defined parameters. Corresponds to the JSON propertyoutputParameters`

Returns:

  • (Hash<String,Object>)


9930
9931
9932
# File 'lib/google/apis/integrations_v1/classes.rb', line 9930

def output_parameters
  @output_parameters
end

#replayed_execution_idString

The execution id which is replayed. Corresponds to the JSON property replayedExecutionId

Returns:

  • (String)


9935
9936
9937
# File 'lib/google/apis/integrations_v1/classes.rb', line 9935

def replayed_execution_id
  @replayed_execution_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



9942
9943
9944
9945
9946
# File 'lib/google/apis/integrations_v1/classes.rb', line 9942

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