class Google::Apis::TestingV1::ResultStorage

Locations where the results of running the test are stored.

Attributes

google_cloud_storage[RW]

A storage location within Google cloud storage (GCS). Corresponds to the JSON property `googleCloudStorage` @return [Google::Apis::TestingV1::GoogleCloudStorage]

results_url[RW]

Output only. URL to the results in the Firebase Web Console. Corresponds to the JSON property `resultsUrl` @return [String]

tool_results_execution[RW]

Represents a tool results execution resource. This has the results of a TestMatrix. Corresponds to the JSON property `toolResultsExecution` @return [Google::Apis::TestingV1::ToolResultsExecution]

tool_results_history[RW]

Represents a tool results history resource. Corresponds to the JSON property `toolResultsHistory` @return [Google::Apis::TestingV1::ToolResultsHistory]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/testing_v1/classes.rb, line 1824
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 1829
def update!(**args)
  @google_cloud_storage = args[:google_cloud_storage] if args.key?(:google_cloud_storage)
  @results_url = args[:results_url] if args.key?(:results_url)
  @tool_results_execution = args[:tool_results_execution] if args.key?(:tool_results_execution)
  @tool_results_history = args[:tool_results_history] if args.key?(:tool_results_history)
end