Class: Google::Apis::AiplatformV1beta1::GenaiVertexV1beta1ToolResultDelta
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1beta1::GenaiVertexV1beta1ToolResultDelta
- 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
Instance Attribute Summary collapse
-
#call_id ⇒ String
Required.
-
#code_execution_result ⇒ Google::Apis::AiplatformV1beta1::GenaiVertexV1beta1CodeExecutionResultDelta
Corresponds to the JSON property
codeExecutionResult. -
#file_search_result ⇒ Google::Apis::AiplatformV1beta1::GenaiVertexV1beta1FileSearchResultDelta
Corresponds to the JSON property
fileSearchResult. -
#function_result ⇒ Google::Apis::AiplatformV1beta1::GenaiVertexV1beta1FunctionResultDelta
Corresponds to the JSON property
functionResult. -
#google_maps_result ⇒ Google::Apis::AiplatformV1beta1::GenaiVertexV1beta1GoogleMapsResultDelta
Corresponds to the JSON property
googleMapsResult. -
#google_search_result ⇒ Google::Apis::AiplatformV1beta1::GenaiVertexV1beta1GoogleSearchResultDelta
Corresponds to the JSON property
googleSearchResult. -
#mcp_server_tool_result ⇒ Google::Apis::AiplatformV1beta1::GenaiVertexV1beta1McpServerToolResultDelta
Corresponds to the JSON property
mcpServerToolResult. -
#signature ⇒ String
A signature hash for backend validation.
-
#url_context_result ⇒ Google::Apis::AiplatformV1beta1::GenaiVertexV1beta1UrlContextResultDelta
Corresponds to the JSON property
urlContextResult.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GenaiVertexV1beta1ToolResultDelta
constructor
A new instance of GenaiVertexV1beta1ToolResultDelta.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GenaiVertexV1beta1ToolResultDelta
Returns a new instance of GenaiVertexV1beta1ToolResultDelta.
5645 5646 5647 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 5645 def initialize(**args) update!(**args) end |
Instance Attribute Details
#call_id ⇒ String
Required. ID to match the ID from the function call block.
Corresponds to the JSON property callId
5602 5603 5604 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 5602 def call_id @call_id end |
#code_execution_result ⇒ Google::Apis::AiplatformV1beta1::GenaiVertexV1beta1CodeExecutionResultDelta
Corresponds to the JSON property codeExecutionResult
5607 5608 5609 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 5607 def code_execution_result @code_execution_result end |
#file_search_result ⇒ Google::Apis::AiplatformV1beta1::GenaiVertexV1beta1FileSearchResultDelta
Corresponds to the JSON property fileSearchResult
5612 5613 5614 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 5612 def file_search_result @file_search_result end |
#function_result ⇒ Google::Apis::AiplatformV1beta1::GenaiVertexV1beta1FunctionResultDelta
Corresponds to the JSON property functionResult
5617 5618 5619 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 5617 def function_result @function_result end |
#google_maps_result ⇒ Google::Apis::AiplatformV1beta1::GenaiVertexV1beta1GoogleMapsResultDelta
Corresponds to the JSON property googleMapsResult
5622 5623 5624 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 5622 def google_maps_result @google_maps_result end |
#google_search_result ⇒ Google::Apis::AiplatformV1beta1::GenaiVertexV1beta1GoogleSearchResultDelta
Corresponds to the JSON property googleSearchResult
5627 5628 5629 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 5627 def google_search_result @google_search_result end |
#mcp_server_tool_result ⇒ Google::Apis::AiplatformV1beta1::GenaiVertexV1beta1McpServerToolResultDelta
Corresponds to the JSON property mcpServerToolResult
5632 5633 5634 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 5632 def mcp_server_tool_result @mcp_server_tool_result end |
#signature ⇒ String
A signature hash for backend validation.
Corresponds to the JSON property signature
NOTE: Values are automatically base64 encoded/decoded in the client library.
5638 5639 5640 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 5638 def signature @signature end |
#url_context_result ⇒ Google::Apis::AiplatformV1beta1::GenaiVertexV1beta1UrlContextResultDelta
Corresponds to the JSON property urlContextResult
5643 5644 5645 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 5643 def url_context_result @url_context_result end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 5650 def update!(**args) @call_id = args[:call_id] if args.key?(:call_id) @code_execution_result = args[:code_execution_result] if args.key?(:code_execution_result) @file_search_result = args[:file_search_result] if args.key?(:file_search_result) @function_result = args[:function_result] if args.key?(:function_result) @google_maps_result = args[:google_maps_result] if args.key?(:google_maps_result) @google_search_result = args[:google_search_result] if args.key?(:google_search_result) @mcp_server_tool_result = args[:mcp_server_tool_result] if args.key?(:mcp_server_tool_result) @signature = args[:signature] if args.key?(:signature) @url_context_result = args[:url_context_result] if args.key?(:url_context_result) end |