Class: Google::Apis::ContainerV1::Metric
- Inherits:
-
Object
- Object
- Google::Apis::ContainerV1::Metric
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/container_v1/classes.rb,
lib/google/apis/container_v1/representations.rb,
lib/google/apis/container_v1/representations.rb
Overview
Progress metric is (string, int|float|string) pair.
Instance Attribute Summary collapse
-
#double_value ⇒ Float
For metrics with floating point value.
-
#int_value ⇒ Fixnum
For metrics with integer value.
-
#name ⇒ String
Required.
-
#string_value ⇒ String
For metrics with custom values (ratios, visual progress, etc.).
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.
3709 3710 3711 |
# File 'lib/google/apis/container_v1/classes.rb', line 3709 def initialize(**args) update!(**args) end |
Instance Attribute Details
#double_value ⇒ Float
For metrics with floating point value.
Corresponds to the JSON property doubleValue
3692 3693 3694 |
# File 'lib/google/apis/container_v1/classes.rb', line 3692 def double_value @double_value end |
#int_value ⇒ Fixnum
For metrics with integer value.
Corresponds to the JSON property intValue
3697 3698 3699 |
# File 'lib/google/apis/container_v1/classes.rb', line 3697 def int_value @int_value end |
#name ⇒ String
Required. Metric name, e.g., "nodes total", "percent done".
Corresponds to the JSON property name
3702 3703 3704 |
# File 'lib/google/apis/container_v1/classes.rb', line 3702 def name @name end |
#string_value ⇒ String
For metrics with custom values (ratios, visual progress, etc.).
Corresponds to the JSON property stringValue
3707 3708 3709 |
# File 'lib/google/apis/container_v1/classes.rb', line 3707 def string_value @string_value end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3714 3715 3716 3717 3718 3719 |
# File 'lib/google/apis/container_v1/classes.rb', line 3714 def update!(**args) @double_value = args[:double_value] if args.key?(:double_value) @int_value = args[:int_value] if args.key?(:int_value) @name = args[:name] if args.key?(:name) @string_value = args[:string_value] if args.key?(:string_value) end |