Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1MigratableResourceMlEngineModelVersion
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1MigratableResourceMlEngineModelVersion
- 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
Represents one model Version in ml.googleapis.com.
Instance Attribute Summary collapse
-
#endpoint ⇒ String
The ml.googleapis.com endpoint that this model Version currently lives in.
-
#version ⇒ String
Full resource name of ml engine model Version.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1MigratableResourceMlEngineModelVersion
constructor
A new instance of GoogleCloudAiplatformV1beta1MigratableResourceMlEngineModelVersion.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1MigratableResourceMlEngineModelVersion
Returns a new instance of GoogleCloudAiplatformV1beta1MigratableResourceMlEngineModelVersion.
14738 14739 14740 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 14738 def initialize(**args) update!(**args) end |
Instance Attribute Details
#endpoint ⇒ String
The ml.googleapis.com endpoint that this model Version currently lives in.
Example values: * ml.googleapis.com * us-centrall-ml.googleapis.com * europe-
west4-ml.googleapis.com * asia-east1-ml.googleapis.com
Corresponds to the JSON property endpoint
14730 14731 14732 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 14730 def endpoint @endpoint end |
#version ⇒ String
Full resource name of ml engine model Version. Format: projects/project/
models/model/versions/version`.
Corresponds to the JSON propertyversion`
14736 14737 14738 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 14736 def version @version end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
14743 14744 14745 14746 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 14743 def update!(**args) @endpoint = args[:endpoint] if args.key?(:endpoint) @version = args[:version] if args.key?(:version) end |