Class: Google::Apis::DataprocV1::Metric
- Inherits:
-
Object
- Object
- Google::Apis::DataprocV1::Metric
- 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
The metric source to enable, with any optional metrics, to override Dataproc default metrics.
Instance Attribute Summary collapse
-
#metric_overrides ⇒ Array<String>
Optional.
-
#metric_source ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Metric
constructor
A new instance of Metric.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Metric
Returns a new instance of Metric.
2969 2970 2971 |
# File 'lib/google/apis/dataproc_v1/classes.rb', line 2969 def initialize(**args) update!(**args) end |
Instance Attribute Details
#metric_overrides ⇒ Array<String>
Optional. Optional Metrics to override the Dataproc default metrics configured
for the metric source.
Corresponds to the JSON property metricOverrides
2962 2963 2964 |
# File 'lib/google/apis/dataproc_v1/classes.rb', line 2962 def metric_overrides @metric_overrides end |
#metric_source ⇒ String
Required. MetricSource to enable.
Corresponds to the JSON property metricSource
2967 2968 2969 |
# File 'lib/google/apis/dataproc_v1/classes.rb', line 2967 def metric_source @metric_source end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2974 2975 2976 2977 |
# File 'lib/google/apis/dataproc_v1/classes.rb', line 2974 def update!(**args) @metric_overrides = args[:metric_overrides] if args.key?(:metric_overrides) @metric_source = args[:metric_source] if args.key?(:metric_source) end |