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.
12487 12488 12489 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 12487 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
12485 12486 12487 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 12485 def name @name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
12492 12493 12494 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 12492 def update!(**args) @name = args[:name] if args.key?(:name) end |