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.
21749 21750 21751 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 21749 def initialize(**args) update!(**args) end |
Instance Attribute Details
#description ⇒ String
Required. Represents the description of the memory topic. This should explain
what information should be extracted for this topic.
Corresponds to the JSON property description
21742 21743 21744 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 21742 def description @description end |
#label ⇒ String
Required. Represents the label of the topic.
Corresponds to the JSON property label
21747 21748 21749 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 21747 def label @label end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
21754 21755 21756 21757 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 21754 def update!(**args) @description = args[:description] if args.key?(:description) @label = args[:label] if args.key?(:label) end |