Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1TunedModel
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1TunedModel
- 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
The Model Registry Model and Online Prediction Endpoint assiociated with this TuningJob.
Instance Attribute Summary collapse
-
#endpoint ⇒ String
Output only.
-
#model ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1TunedModel
constructor
A new instance of GoogleCloudAiplatformV1beta1TunedModel.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1TunedModel
Returns a new instance of GoogleCloudAiplatformV1beta1TunedModel.
35082 35083 35084 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 35082 def initialize(**args) update!(**args) end |
Instance Attribute Details
#endpoint ⇒ String
Output only. A resource name of an Endpoint. Format: projects/project/
locations/location/endpoints/endpoint`.
Corresponds to the JSON propertyendpoint`
35074 35075 35076 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 35074 def endpoint @endpoint end |
#model ⇒ String
Output only. The resource name of the TunedModel. Format: projects/project/
locations/location/models/model`.
Corresponds to the JSON propertymodel`
35080 35081 35082 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 35080 def model @model end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
35087 35088 35089 35090 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 35087 def update!(**args) @endpoint = args[:endpoint] if args.key?(:endpoint) @model = args[:model] if args.key?(:model) end |