Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1QueryResponseResponseMetadata
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1QueryResponseResponseMetadata
- 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
Metadata for response
Instance Attribute Summary collapse
-
#checkpoint ⇒ Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1CheckPoint
Placeholder for all checkpoint related data.
-
#execution_plan ⇒ Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ExecutionPlan
Execution plan for a request.
-
#flow_outputs ⇒ Hash<String,Object>
To surface the v2 flow output.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1QueryResponseResponseMetadata
constructor
A new instance of GoogleCloudAiplatformV1beta1QueryResponseResponseMetadata.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1QueryResponseResponseMetadata
Returns a new instance of GoogleCloudAiplatformV1beta1QueryResponseResponseMetadata.
19345 19346 19347 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 19345 def initialize(**args) update!(**args) end |
Instance Attribute Details
#checkpoint ⇒ Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1CheckPoint
Placeholder for all checkpoint related data. Any data needed to restore a
request and more go/vertex-extension-query-operation
Corresponds to the JSON property checkpoint
19333 19334 19335 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 19333 def checkpoint @checkpoint end |
#execution_plan ⇒ Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ExecutionPlan
Execution plan for a request.
Corresponds to the JSON property executionPlan
19338 19339 19340 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 19338 def execution_plan @execution_plan end |
#flow_outputs ⇒ Hash<String,Object>
To surface the v2 flow output.
Corresponds to the JSON property flowOutputs
19343 19344 19345 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 19343 def flow_outputs @flow_outputs end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
19350 19351 19352 19353 19354 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 19350 def update!(**args) @checkpoint = args[:checkpoint] if args.key?(:checkpoint) @execution_plan = args[:execution_plan] if args.key?(:execution_plan) @flow_outputs = args[:flow_outputs] if args.key?(:flow_outputs) end |