Class: Google::Apis::ComputeAlpha::FixedOrPercent
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::ComputeAlpha::FixedOrPercent
 
- Defined in:
- generated/google/apis/compute_alpha/classes.rb,
 generated/google/apis/compute_alpha/representations.rb,
 generated/google/apis/compute_alpha/representations.rb
Overview
Encapsulates numeric value that can be either absolute or relative.
Instance Attribute Summary collapse
- 
  
    
      #calculated  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    [Output Only] Absolute value of VM instances calculated based on the specific mode. 
- 
  
    
      #fixed  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Specifies a fixed number of VM instances. 
- 
  
    
      #percent  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Specifies a percentage of instances between 0 to 100%, inclusive. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ FixedOrPercent 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of FixedOrPercent. 
- 
  
    
      #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) ⇒ FixedOrPercent
Returns a new instance of FixedOrPercent
| 5622 5623 5624 | # File 'generated/google/apis/compute_alpha/classes.rb', line 5622 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#calculated ⇒ Fixnum
[Output Only] Absolute value of VM instances calculated based on the specific mode.
- If the value is fixed, then the caculated value is equal to the fixed value.
- If the value is a percent, then the calculated value is percent/100 *
targetSize. For example, the calculated value of a 80% of a managed instance
group with 150 instances would be (80/100 * 150) = 120 VM instances. If there
is a remainder, the number is rounded up.
Corresponds to the JSON property calculated
| 5609 5610 5611 | # File 'generated/google/apis/compute_alpha/classes.rb', line 5609 def calculated @calculated end | 
#fixed ⇒ Fixnum
Specifies a fixed number of VM instances. This must be a positive integer.
Corresponds to the JSON property fixed
| 5614 5615 5616 | # File 'generated/google/apis/compute_alpha/classes.rb', line 5614 def fixed @fixed end | 
#percent ⇒ Fixnum
Specifies a percentage of instances between 0 to 100%, inclusive. For example,
specify 80 for 80%.
Corresponds to the JSON property percent
| 5620 5621 5622 | # File 'generated/google/apis/compute_alpha/classes.rb', line 5620 def percent @percent end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 5627 5628 5629 5630 5631 | # File 'generated/google/apis/compute_alpha/classes.rb', line 5627 def update!(**args) @calculated = args[:calculated] if args.key?(:calculated) @fixed = args[:fixed] if args.key?(:fixed) @percent = args[:percent] if args.key?(:percent) end |