Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1MigratableResourceAutomlModel

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

Represents one Model in automl.googleapis.com.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1MigratableResourceAutomlModel

Returns a new instance of GoogleCloudAiplatformV1MigratableResourceAutomlModel.



12508
12509
12510
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 12508

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

Instance Attribute Details

#modelString

Full resource name of automl Model. Format: projects/project/locations/ location/models/model`. Corresponds to the JSON propertymodel`

Returns:

  • (String)


12501
12502
12503
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 12501

def model
  @model
end

#model_display_nameString

The Model's display name in automl.googleapis.com. Corresponds to the JSON property modelDisplayName

Returns:

  • (String)


12506
12507
12508
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 12506

def model_display_name
  @model_display_name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



12513
12514
12515
12516
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 12513

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