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

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/testing_v1/classes.rb,
generated/google/apis/testing_v1/representations.rb,
generated/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

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ ResultStorage

Returns a new instance of ResultStorage



1299
1300
1301
# File 'generated/google/apis/testing_v1/classes.rb', line 1299

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



1286
1287
1288
# File 'generated/google/apis/testing_v1/classes.rb', line 1286

def google_cloud_storage
  @google_cloud_storage
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



1292
1293
1294
# File 'generated/google/apis/testing_v1/classes.rb', line 1292

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



1297
1298
1299
# File 'generated/google/apis/testing_v1/classes.rb', line 1297

def tool_results_history
  @tool_results_history
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1304
1305
1306
1307
1308
# File 'generated/google/apis/testing_v1/classes.rb', line 1304

def update!(**args)
  @google_cloud_storage = args[:google_cloud_storage] if args.key?(:google_cloud_storage)
  @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