Class: Google::Apis::DataprocV1::SqlPlanMetric
- Inherits:
-
Object
- Object
- Google::Apis::DataprocV1::SqlPlanMetric
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dataproc_v1/classes.rb,
lib/google/apis/dataproc_v1/representations.rb,
lib/google/apis/dataproc_v1/representations.rb
Overview
Metrics related to SQL execution.
Instance Attribute Summary collapse
-
#accumulator_id ⇒ Fixnum
Corresponds to the JSON property
accumulatorId. -
#metric_type ⇒ String
Corresponds to the JSON property
metricType. -
#name ⇒ String
Corresponds to the JSON property
name.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SqlPlanMetric
constructor
A new instance of SqlPlanMetric.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SqlPlanMetric
Returns a new instance of SqlPlanMetric.
9507 9508 9509 |
# File 'lib/google/apis/dataproc_v1/classes.rb', line 9507 def initialize(**args) update!(**args) end |
Instance Attribute Details
#accumulator_id ⇒ Fixnum
Corresponds to the JSON property accumulatorId
9495 9496 9497 |
# File 'lib/google/apis/dataproc_v1/classes.rb', line 9495 def accumulator_id @accumulator_id end |
#metric_type ⇒ String
Corresponds to the JSON property metricType
9500 9501 9502 |
# File 'lib/google/apis/dataproc_v1/classes.rb', line 9500 def metric_type @metric_type end |
#name ⇒ String
Corresponds to the JSON property name
9505 9506 9507 |
# File 'lib/google/apis/dataproc_v1/classes.rb', line 9505 def name @name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
9512 9513 9514 9515 9516 |
# File 'lib/google/apis/dataproc_v1/classes.rb', line 9512 def update!(**args) @accumulator_id = args[:accumulator_id] if args.key?(:accumulator_id) @metric_type = args[:metric_type] if args.key?(:metric_type) @name = args[:name] if args.key?(:name) end |