Class: Google::Apis::TestingV1::GoogleCloudStorage
- Inherits:
-
Object
- Object
- Google::Apis::TestingV1::GoogleCloudStorage
- 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
A storage location within Google cloud storage (GCS).
Instance Attribute Summary collapse
-
#gcs_path ⇒ String
The path to a directory in GCS that will eventually contain the results for this test.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudStorage
constructor
A new instance of GoogleCloudStorage.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GoogleCloudStorage
Returns a new instance of GoogleCloudStorage
879 880 881 |
# File 'generated/google/apis/testing_v1/classes.rb', line 879 def initialize(**args) update!(**args) end |
Instance Attribute Details
#gcs_path ⇒ String
The path to a directory in GCS that will
eventually contain the results for this test.
The requesting user must have write access on the bucket in the supplied
path.
Required
Corresponds to the JSON property gcsPath
877 878 879 |
# File 'generated/google/apis/testing_v1/classes.rb', line 877 def gcs_path @gcs_path end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
884 885 886 |
# File 'generated/google/apis/testing_v1/classes.rb', line 884 def update!(**args) @gcs_path = args[:gcs_path] if args.key?(:gcs_path) end |