Class: Google::Apis::TestingV1::ResultStorage

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

Overview

Locations where the results of running the test are stored.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ResultStorage

Returns a new instance of ResultStorage.



1823
1824
1825
# File 'lib/google/apis/testing_v1/classes.rb', line 1823

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

Instance Attribute Details

#google_cloud_storageGoogle::Apis::TestingV1::GoogleCloudStorage

A storage location within Google cloud storage (GCS). Corresponds to the JSON property googleCloudStorage



1805
1806
1807
# File 'lib/google/apis/testing_v1/classes.rb', line 1805

def google_cloud_storage
  @google_cloud_storage
end

#results_urlString

Output only. URL to the results in the Firebase Web Console. Corresponds to the JSON property resultsUrl

Returns:

  • (String)


1810
1811
1812
# File 'lib/google/apis/testing_v1/classes.rb', line 1810

def results_url
  @results_url
end

#tool_results_executionGoogle::Apis::TestingV1::ToolResultsExecution

Represents a tool results execution resource. This has the results of a TestMatrix. Corresponds to the JSON property toolResultsExecution



1816
1817
1818
# File 'lib/google/apis/testing_v1/classes.rb', line 1816

def tool_results_execution
  @tool_results_execution
end

#tool_results_historyGoogle::Apis::TestingV1::ToolResultsHistory

Represents a tool results history resource. Corresponds to the JSON property toolResultsHistory



1821
1822
1823
# File 'lib/google/apis/testing_v1/classes.rb', line 1821

def tool_results_history
  @tool_results_history
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1828
1829
1830
1831
1832
1833
# File 'lib/google/apis/testing_v1/classes.rb', line 1828

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