Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1CopyModelResponse

Inherits:
Object
  • Object
show all
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

Response message of ModelService.CopyModel operation.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1CopyModelResponse

Returns a new instance of GoogleCloudAiplatformV1beta1CopyModelResponse.



3443
3444
3445
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 3443

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

Instance Attribute Details

#modelString

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

Returns:

  • (String)


3436
3437
3438
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 3436

def model
  @model
end

#model_version_idString

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

Returns:

  • (String)


3441
3442
3443
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 3441

def model_version_id
  @model_version_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3448
3449
3450
3451
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 3448

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