class Google::Apis::TestingV1::ToolResultsStep
Represents a tool results step resource. This has the results of a TestExecution
.
Attributes
execution_id[RW]
Output only. A tool results execution ID. Corresponds to the JSON property `executionId` @return [String]
history_id[RW]
Output only. A tool results history ID. Corresponds to the JSON property `historyId` @return [String]
project_id[RW]
Output only. The cloud project that owns the tool results step. Corresponds to the JSON property `projectId` @return [String]
step_id[RW]
Output only. A tool results step ID. Corresponds to the JSON property `stepId` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/testing_v1/classes.rb, line 2537 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/testing_v1/classes.rb, line 2542 def update!(**args) @execution_id = args[:execution_id] if args.key?(:execution_id) @history_id = args[:history_id] if args.key?(:history_id) @project_id = args[:project_id] if args.key?(:project_id) @step_id = args[:step_id] if args.key?(:step_id) end