class Google::Apis::ComputeV1::AutoscalingPolicyCustomMetricUtilization
Custom utilization metric policy.
Attributes
The identifier of the Cloud Monitoring metric. The metric cannot have negative values and should be a utilization metric, which means that the number of virtual machines handling requests should increase or decrease proportionally to the metric. The metric must also have a label of compute.googleapis.com/ resource_id with the value of the instance's unique ID, although this alone does not guarantee that the metric is valid. For example, the following is a valid metric: compute.googleapis.com/instance/network/received_bytes_count The following is not a valid metric because it does not increase or decrease based on usage: compute.googleapis.com/instance/cpu/reserved_cores Corresponds to the JSON property `metric` @return [String]
Target value of the metric which autoscaler should maintain. Must be a positive value. Corresponds to the JSON property `utilizationTarget` @return [Float]
Defines how target utilization value is expressed for a Cloud Monitoring metric. Either GAUGE, DELTA_PER_SECOND, or DELTA_PER_MINUTE. If not specified, the default is GAUGE. Corresponds to the JSON property `utilizationTargetType` @return [String]
Public Class Methods
# File generated/google/apis/compute_v1/classes.rb, line 894 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File generated/google/apis/compute_v1/classes.rb, line 899 def update!(**args) @metric = args[:metric] if args.key?(:metric) @utilization_target = args[:utilization_target] if args.key?(:utilization_target) @utilization_target_type = args[:utilization_target_type] if args.key?(:utilization_target_type) end