Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1MemoryBankCustomizationConfigMemoryTopicCustomMemoryTopic
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1::GoogleCloudAiplatformV1MemoryBankCustomizationConfigMemoryTopicCustomMemoryTopic
- 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
A custom memory topic defined by the developer.
Instance Attribute Summary collapse
-
#description ⇒ String
Required.
-
#label ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1MemoryBankCustomizationConfigMemoryTopicCustomMemoryTopic
constructor
A new instance of GoogleCloudAiplatformV1MemoryBankCustomizationConfigMemoryTopicCustomMemoryTopic.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1MemoryBankCustomizationConfigMemoryTopicCustomMemoryTopic
Returns a new instance of GoogleCloudAiplatformV1MemoryBankCustomizationConfigMemoryTopicCustomMemoryTopic.
20676 20677 20678 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 20676 def initialize(**args) update!(**args) end |
Instance Attribute Details
#description ⇒ String
Required. Description of the memory topic. This should explain what
information should be extracted for this topic.
Corresponds to the JSON property description
20669 20670 20671 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 20669 def description @description end |
#label ⇒ String
Required. The label of the topic.
Corresponds to the JSON property label
20674 20675 20676 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 20674 def label @label end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
20681 20682 20683 20684 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 20681 def update!(**args) @description = args[:description] if args.key?(:description) @label = args[:label] if args.key?(:label) end |