Class: Google::Apis::AppengineV1beta::CpuUtilization
- Inherits:
-
Object
- Object
- Google::Apis::AppengineV1beta::CpuUtilization
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/appengine_v1beta/classes.rb,
generated/google/apis/appengine_v1beta/representations.rb,
generated/google/apis/appengine_v1beta/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
601 602 603 |
# File 'generated/google/apis/appengine_v1beta/classes.rb', line 601 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
594 595 596 |
# File 'generated/google/apis/appengine_v1beta/classes.rb', line 594 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
599 600 601 |
# File 'generated/google/apis/appengine_v1beta/classes.rb', line 599 def target_utilization @target_utilization end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
606 607 608 609 |
# File 'generated/google/apis/appengine_v1beta/classes.rb', line 606 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 |