Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1MigratableResourceMlEngineModelVersion
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1::GoogleCloudAiplatformV1MigratableResourceMlEngineModelVersion
- 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 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) ⇒ GoogleCloudAiplatformV1MigratableResourceMlEngineModelVersion
constructor
A new instance of GoogleCloudAiplatformV1MigratableResourceMlEngineModelVersion.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1MigratableResourceMlEngineModelVersion
Returns a new instance of GoogleCloudAiplatformV1MigratableResourceMlEngineModelVersion.
11782 11783 11784 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 11782 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
11774 11775 11776 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 11774 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`
11780 11781 11782 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 11780 def version @version end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
11787 11788 11789 11790 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 11787 def update!(**args) @endpoint = args[:endpoint] if args.key?(:endpoint) @version = args[:version] if args.key?(:version) end |