Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1UploadModelResponse

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

Response message of ModelService.UploadModel operation.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1UploadModelResponse

Returns a new instance of GoogleCloudAiplatformV1UploadModelResponse.



38845
38846
38847
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 38845

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

Instance Attribute Details

#modelString

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

Returns:

  • (String)


38838
38839
38840
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 38838

def model
  @model
end

#model_version_idString

Output only. The version ID of the model that is uploaded. Corresponds to the JSON property modelVersionId

Returns:

  • (String)


38843
38844
38845
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 38843

def model_version_id
  @model_version_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



38850
38851
38852
38853
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 38850

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