Class: Google::Apis::AppengineV1::CpuUtilization
- Inherits:
-
Object
- Object
- Google::Apis::AppengineV1::CpuUtilization
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/appengine_v1/classes.rb,
generated/google/apis/appengine_v1/representations.rb,
generated/google/apis/appengine_v1/representations.rb
Overview
Target scaling by CPU usage.
Instance Attribute Summary collapse
-
#aggregation_window_length ⇒ String
Period of time over which CPU utilization is calculated.
-
#target_utilization ⇒ Float
Target CPU utilization ratio to maintain when scaling.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CpuUtilization
constructor
A new instance of CpuUtilization.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ CpuUtilization
Returns a new instance of CpuUtilization
568 569 570 |
# File 'generated/google/apis/appengine_v1/classes.rb', line 568 def initialize(**args) update!(**args) end |
Instance Attribute Details
#aggregation_window_length ⇒ String
Period of time over which CPU utilization is calculated.
Corresponds to the JSON property aggregationWindowLength
561 562 563 |
# File 'generated/google/apis/appengine_v1/classes.rb', line 561 def aggregation_window_length @aggregation_window_length end |
#target_utilization ⇒ Float
Target CPU utilization ratio to maintain when scaling. Must be between 0 and 1.
Corresponds to the JSON property targetUtilization
566 567 568 |
# File 'generated/google/apis/appengine_v1/classes.rb', line 566 def target_utilization @target_utilization end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
573 574 575 576 |
# File 'generated/google/apis/appengine_v1/classes.rb', line 573 def update!(**args) @aggregation_window_length = args[:aggregation_window_length] if args.key?(:aggregation_window_length) @target_utilization = args[:target_utilization] if args.key?(:target_utilization) end |