Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ToolNameMatchInput
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ToolNameMatchInput
- 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
Input for tool name match metric.
Instance Attribute Summary collapse
-
#instances ⇒ Array<Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ToolNameMatchInstance>
Required.
-
#metric_spec ⇒ Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ToolNameMatchSpec
Spec for tool name match metric.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1ToolNameMatchInput
constructor
A new instance of GoogleCloudAiplatformV1ToolNameMatchInput.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1ToolNameMatchInput
Returns a new instance of GoogleCloudAiplatformV1ToolNameMatchInput.
32575 32576 32577 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 32575 def initialize(**args) update!(**args) end |
Instance Attribute Details
#instances ⇒ Array<Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ToolNameMatchInstance>
Required. Repeated tool name match instances.
Corresponds to the JSON property instances
32568 32569 32570 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 32568 def instances @instances end |
#metric_spec ⇒ Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ToolNameMatchSpec
Spec for tool name match metric.
Corresponds to the JSON property metricSpec
32573 32574 32575 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 32573 def metric_spec @metric_spec end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
32580 32581 32582 32583 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 32580 def update!(**args) @instances = args[:instances] if args.key?(:instances) @metric_spec = args[:metric_spec] if args.key?(:metric_spec) end |