Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1GcsDestination
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1GcsDestination
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/aiplatform_v1beta1/classes.rb,
lib/google/apis/aiplatform_v1beta1/representations.rb,
lib/google/apis/aiplatform_v1beta1/representations.rb
Overview
The Google Cloud Storage location where the output is to be written to.
Instance Attribute Summary collapse
-
#output_uri_prefix ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1GcsDestination
constructor
A new instance of GoogleCloudAiplatformV1beta1GcsDestination.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1GcsDestination
Returns a new instance of GoogleCloudAiplatformV1beta1GcsDestination.
10938 10939 10940 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 10938 def initialize(**args) update!(**args) end |
Instance Attribute Details
#output_uri_prefix ⇒ String
Required. Google Cloud Storage URI to output directory. If the uri doesn't end
with '/', a '/' will be automatically appended. The directory is created if it
doesn't exist.
Corresponds to the JSON property outputUriPrefix
10936 10937 10938 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 10936 def output_uri_prefix @output_uri_prefix end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
10943 10944 10945 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 10943 def update!(**args) @output_uri_prefix = args[:output_uri_prefix] if args.key?(:output_uri_prefix) end |