Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1LargeModelReference
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1::GoogleCloudAiplatformV1LargeModelReference
- 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
Contains information about the Large Model.
Instance Attribute Summary collapse
-
#name ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1LargeModelReference
constructor
A new instance of GoogleCloudAiplatformV1LargeModelReference.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1LargeModelReference
Returns a new instance of GoogleCloudAiplatformV1LargeModelReference.
14118 14119 14120 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 14118 def initialize(**args) update!(**args) end |
Instance Attribute Details
#name ⇒ String
Required. The unique name of the large Foundation or pre-built model. Like "
chat-bison", "text-bison". Or model name with version ID, like "chat-bison@001"
, "text-bison@005", etc.
Corresponds to the JSON property name
14116 14117 14118 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 14116 def name @name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
14123 14124 14125 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 14123 def update!(**args) @name = args[:name] if args.key?(:name) end |