Class: Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaReplayExecutionResponse
- Inherits:
-
Object
- Object
- Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaReplayExecutionResponse
- 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
-
#execution_id ⇒ String
Next ID: 4 The id of the execution corresponding to this run of the integration.
-
#output_parameters ⇒ Hash<String,Object>
OUTPUT parameters in format of Map.
-
#replayed_execution_id ⇒ String
The execution id which is replayed.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudIntegrationsV1alphaReplayExecutionResponse
constructor
A new instance of GoogleCloudIntegrationsV1alphaReplayExecutionResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
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_id ⇒ String
Next ID: 4 The id of the execution corresponding to this run of the
integration.
Corresponds to the JSON property executionId
9922 9923 9924 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 9922 def execution_id @execution_id end |
#output_parameters ⇒ Hash<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 property
outputParameters`
9930 9931 9932 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 9930 def output_parameters @output_parameters end |
#replayed_execution_id ⇒ String
The execution id which is replayed.
Corresponds to the JSON property replayedExecutionId
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 |