Class: Google::Apis::ComputeBeta::AutoscalingPolicy
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ComputeBeta::AutoscalingPolicy
 
 
- Defined in:
 - generated/google/apis/compute_beta/classes.rb,
generated/google/apis/compute_beta/representations.rb,
generated/google/apis/compute_beta/representations.rb 
Overview
Cloud Autoscaler policy.
Instance Attribute Summary collapse
- 
  
    
      #cool_down_period_sec  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The number of seconds that the autoscaler should wait before it starts collecting information from a new instance.
 - 
  
    
      #cpu_utilization  ⇒ Google::Apis::ComputeBeta::AutoscalingPolicyCpuUtilization 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
CPU utilization policy.
 - 
  
    
      #custom_metric_utilizations  ⇒ Array<Google::Apis::ComputeBeta::AutoscalingPolicyCustomMetricUtilization> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Configuration parameters of autoscaling based on a custom metric.
 - 
  
    
      #load_balancing_utilization  ⇒ Google::Apis::ComputeBeta::AutoscalingPolicyLoadBalancingUtilization 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Configuration parameters of autoscaling based on load balancing.
 - 
  
    
      #max_num_replicas  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The maximum number of instances that the autoscaler can scale up to.
 - 
  
    
      #min_num_replicas  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The minimum number of replicas that the autoscaler can scale down to.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ AutoscalingPolicy 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of AutoscalingPolicy.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ AutoscalingPolicy
Returns a new instance of AutoscalingPolicy
      1845 1846 1847  | 
    
      # File 'generated/google/apis/compute_beta/classes.rb', line 1845 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#cool_down_period_sec ⇒ Fixnum
The number of seconds that the autoscaler should wait before it starts
collecting information from a new instance. This prevents the autoscaler from
collecting information when the instance is initializing, during which the
collected usage would not be reliable. The default time autoscaler waits is 60
seconds.
Virtual machine initialization times might vary because of numerous factors.
We recommend that you test how long an instance may take to initialize. To do
this, create an instance and time the startup process.
Corresponds to the JSON property coolDownPeriodSec
      1814 1815 1816  | 
    
      # File 'generated/google/apis/compute_beta/classes.rb', line 1814 def cool_down_period_sec @cool_down_period_sec end  | 
  
#cpu_utilization ⇒ Google::Apis::ComputeBeta::AutoscalingPolicyCpuUtilization
CPU utilization policy.
Corresponds to the JSON property cpuUtilization
      1819 1820 1821  | 
    
      # File 'generated/google/apis/compute_beta/classes.rb', line 1819 def cpu_utilization @cpu_utilization end  | 
  
#custom_metric_utilizations ⇒ Array<Google::Apis::ComputeBeta::AutoscalingPolicyCustomMetricUtilization>
Configuration parameters of autoscaling based on a custom metric.
Corresponds to the JSON property customMetricUtilizations
      1824 1825 1826  | 
    
      # File 'generated/google/apis/compute_beta/classes.rb', line 1824 def custom_metric_utilizations @custom_metric_utilizations end  | 
  
#load_balancing_utilization ⇒ Google::Apis::ComputeBeta::AutoscalingPolicyLoadBalancingUtilization
Configuration parameters of autoscaling based on load balancing.
Corresponds to the JSON property loadBalancingUtilization
      1829 1830 1831  | 
    
      # File 'generated/google/apis/compute_beta/classes.rb', line 1829 def load_balancing_utilization @load_balancing_utilization end  | 
  
#max_num_replicas ⇒ Fixnum
The maximum number of instances that the autoscaler can scale up to. This is
required when creating or updating an autoscaler. The maximum number of
replicas should not be lower than minimal number of replicas.
Corresponds to the JSON property maxNumReplicas
      1836 1837 1838  | 
    
      # File 'generated/google/apis/compute_beta/classes.rb', line 1836 def max_num_replicas @max_num_replicas end  | 
  
#min_num_replicas ⇒ Fixnum
The minimum number of replicas that the autoscaler can scale down to. This
cannot be less than 0. If not provided, autoscaler will choose a default value
depending on maximum number of instances allowed.
Corresponds to the JSON property minNumReplicas
      1843 1844 1845  | 
    
      # File 'generated/google/apis/compute_beta/classes.rb', line 1843 def min_num_replicas @min_num_replicas end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      1850 1851 1852 1853 1854 1855 1856 1857  | 
    
      # File 'generated/google/apis/compute_beta/classes.rb', line 1850 def update!(**args) @cool_down_period_sec = args[:cool_down_period_sec] if args.key?(:cool_down_period_sec) @cpu_utilization = args[:cpu_utilization] if args.key?(:cpu_utilization) @custom_metric_utilizations = args[:custom_metric_utilizations] if args.key?(:custom_metric_utilizations) @load_balancing_utilization = args[:load_balancing_utilization] if args.key?(:load_balancing_utilization) @max_num_replicas = args[:max_num_replicas] if args.key?(:max_num_replicas) @min_num_replicas = args[:min_num_replicas] if args.key?(:min_num_replicas) end  |