class Google::Apis::TestingV1::ToolResultsExecution
Represents a tool results execution resource. This has the results of a TestMatrix
.
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 execution. Corresponds to the JSON property `projectId` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/testing_v1/classes.rb, line 2475 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 2480 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) end