Class: Google::Apis::AiplatformV1::LearningGenaiRootMetricOutput
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1::LearningGenaiRootMetricOutput
- 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
Instance Attribute Summary collapse
-
#debug ⇒ String
Corresponds to the JSON property
debug. -
#name ⇒ String
Name of the metric.
-
#numeric_value ⇒ Float
Corresponds to the JSON property
numericValue. -
#status ⇒ Google::Apis::AiplatformV1::UtilStatusProto
Wire-format for a Status object Corresponds to the JSON property
status. -
#string_value ⇒ String
Corresponds to the JSON property
stringValue.
Instance Method Summary collapse
-
#initialize(**args) ⇒ LearningGenaiRootMetricOutput
constructor
A new instance of LearningGenaiRootMetricOutput.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ LearningGenaiRootMetricOutput
Returns a new instance of LearningGenaiRootMetricOutput.
30163 30164 30165 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 30163 def initialize(**args) update!(**args) end |
Instance Attribute Details
#debug ⇒ String
Corresponds to the JSON property debug
30141 30142 30143 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 30141 def debug @debug end |
#name ⇒ String
Name of the metric.
Corresponds to the JSON property name
30146 30147 30148 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 30146 def name @name end |
#numeric_value ⇒ Float
Corresponds to the JSON property numericValue
30151 30152 30153 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 30151 def numeric_value @numeric_value end |
#status ⇒ Google::Apis::AiplatformV1::UtilStatusProto
Wire-format for a Status object
Corresponds to the JSON property status
30156 30157 30158 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 30156 def status @status end |
#string_value ⇒ String
Corresponds to the JSON property stringValue
30161 30162 30163 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 30161 def string_value @string_value end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
30168 30169 30170 30171 30172 30173 30174 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 30168 def update!(**args) @debug = args[:debug] if args.key?(:debug) @name = args[:name] if args.key?(:name) @numeric_value = args[:numeric_value] if args.key?(:numeric_value) @status = args[:status] if args.key?(:status) @string_value = args[:string_value] if args.key?(:string_value) end |