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.
12115 12116 12117 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 12115 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
12113 12114 12115 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 12113 def name @name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
12120 12121 12122 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 12120 def update!(**args) @name = args[:name] if args.key?(:name) end |