Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GcsDestination

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/aiplatform_v1/classes.rb,
lib/google/apis/aiplatform_v1/representations.rb,
lib/google/apis/aiplatform_v1/representations.rb

Overview

The Google Cloud Storage location where the output is to be written to.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1GcsDestination

Returns a new instance of GoogleCloudAiplatformV1GcsDestination.



10549
10550
10551
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 10549

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

Instance Attribute Details

#output_uri_prefixString

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

Returns:

  • (String)


10547
10548
10549
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 10547

def output_uri_prefix
  @output_uri_prefix
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



10554
10555
10556
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 10554

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