Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1QueryReasoningEngineRequest

Inherits:
Object
  • Object
show all
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

Request message for ReasoningEngineExecutionService.Query.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1QueryReasoningEngineRequest

Returns a new instance of GoogleCloudAiplatformV1QueryReasoningEngineRequest.



23542
23543
23544
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 23542

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

Instance Attribute Details

#class_methodString

Optional. Class method to be used for the query. It is optional and defaults to "query" if unspecified. Corresponds to the JSON property classMethod

Returns:

  • (String)


23534
23535
23536
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 23534

def class_method
  @class_method
end

#inputHash<String,Object>

Optional. Input content provided by users in JSON object format. Examples include text query, function calling parameters, media bytes, etc. Corresponds to the JSON property input

Returns:

  • (Hash<String,Object>)


23540
23541
23542
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 23540

def input
  @input
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



23547
23548
23549
23550
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 23547

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