Class: Google::Apis::ComputeV1::AutoscalingPolicyCustomMetricUtilization

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
generated/google/apis/compute_v1/classes.rb,
generated/google/apis/compute_v1/representations.rb,
generated/google/apis/compute_v1/representations.rb

Overview

Custom utilization metric policy.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Google::Apis::Core::JsonObjectSupport

#to_json

Methods included from Google::Apis::Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ AutoscalingPolicyCustomMetricUtilization

Returns a new instance of AutoscalingPolicyCustomMetricUtilization.



910
911
912
# File 'generated/google/apis/compute_v1/classes.rb', line 910

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#metricString

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

Returns:

  • (String)


895
896
897
# File 'generated/google/apis/compute_v1/classes.rb', line 895

def metric
  @metric
end

#utilization_targetFloat

Target value of the metric which autoscaler should maintain. Must be a positive value. Corresponds to the JSON property utilizationTarget

Returns:

  • (Float)


901
902
903
# File 'generated/google/apis/compute_v1/classes.rb', line 901

def utilization_target
  @utilization_target
end

#utilization_target_typeString

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

Returns:

  • (String)


908
909
910
# File 'generated/google/apis/compute_v1/classes.rb', line 908

def utilization_target_type
  @utilization_target_type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



915
916
917
918
919
# File 'generated/google/apis/compute_v1/classes.rb', line 915

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