Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1MemoryBankCustomizationConfigMemoryTopicCustomMemoryTopic

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/aiplatform_v1beta1/classes.rb,
lib/google/apis/aiplatform_v1beta1/representations.rb,
lib/google/apis/aiplatform_v1beta1/representations.rb

Overview

A custom memory topic defined by the developer.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1MemoryBankCustomizationConfigMemoryTopicCustomMemoryTopic

Returns a new instance of GoogleCloudAiplatformV1beta1MemoryBankCustomizationConfigMemoryTopicCustomMemoryTopic.



30656
30657
30658
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 30656

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#descriptionString

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

Returns:

  • (String)


30649
30650
30651
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 30649

def description
  @description
end

#labelString

Required. Represents the label of the topic. Corresponds to the JSON property label

Returns:

  • (String)


30654
30655
30656
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 30654

def label
  @label
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



30661
30662
30663
30664
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 30661

def update!(**args)
  @description = args[:description] if args.key?(:description)
  @label = args[:label] if args.key?(:label)
end