Class: Google::Apis::TestingV1::GoogleCloudStorage

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

A storage location within Google cloud storage (GCS).

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudStorage

Returns a new instance of GoogleCloudStorage.



1122
1123
1124
# File 'lib/google/apis/testing_v1/classes.rb', line 1122

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

Instance Attribute Details

#gcs_pathString

Required. 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. Corresponds to the JSON property gcsPath

Returns:

  • (String)


1120
1121
1122
# File 'lib/google/apis/testing_v1/classes.rb', line 1120

def gcs_path
  @gcs_path
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1127
1128
1129
# File 'lib/google/apis/testing_v1/classes.rb', line 1127

def update!(**args)
  @gcs_path = args[:gcs_path] if args.key?(:gcs_path)
end