Class: Google::Apis::TestingV1::ResultStorage
- Inherits:
-
Object
- Object
- Google::Apis::TestingV1::ResultStorage
- 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
-
#google_cloud_storage ⇒ Google::Apis::TestingV1::GoogleCloudStorage
A storage location within Google cloud storage (GCS).
-
#results_url ⇒ String
Output only.
-
#tool_results_execution ⇒ Google::Apis::TestingV1::ToolResultsExecution
Represents a tool results execution resource.
-
#tool_results_history ⇒ Google::Apis::TestingV1::ToolResultsHistory
Represents a tool results history resource.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ResultStorage
constructor
A new instance of ResultStorage.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ResultStorage
Returns a new instance of ResultStorage.
2170 2171 2172 |
# File 'lib/google/apis/testing_v1/classes.rb', line 2170 def initialize(**args) update!(**args) end |
Instance Attribute Details
#google_cloud_storage ⇒ Google::Apis::TestingV1::GoogleCloudStorage
A storage location within Google cloud storage (GCS).
Corresponds to the JSON property googleCloudStorage
2152 2153 2154 |
# File 'lib/google/apis/testing_v1/classes.rb', line 2152 def google_cloud_storage @google_cloud_storage end |
#results_url ⇒ String
Output only. URL to the results in the Firebase Web Console.
Corresponds to the JSON property resultsUrl
2157 2158 2159 |
# File 'lib/google/apis/testing_v1/classes.rb', line 2157 def results_url @results_url end |
#tool_results_execution ⇒ Google::Apis::TestingV1::ToolResultsExecution
Represents a tool results execution resource. This has the results of a
TestMatrix.
Corresponds to the JSON property toolResultsExecution
2163 2164 2165 |
# File 'lib/google/apis/testing_v1/classes.rb', line 2163 def tool_results_execution @tool_results_execution end |
#tool_results_history ⇒ Google::Apis::TestingV1::ToolResultsHistory
Represents a tool results history resource.
Corresponds to the JSON property toolResultsHistory
2168 2169 2170 |
# File 'lib/google/apis/testing_v1/classes.rb', line 2168 def tool_results_history @tool_results_history end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2175 2176 2177 2178 2179 2180 |
# File 'lib/google/apis/testing_v1/classes.rb', line 2175 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 |