class Google::Apis::ComputeV1::FixedOrPercent

Encapsulates numeric value that can be either absolute or relative.

Attributes

calculated[RW]
Output Only

Absolute value of VM instances calculated based on the specific

mode. - If the value is fixed, then the calculated 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. Corresponds to the JSON property `calculated` @return [Fixnum]

fixed[RW]

Specifies a fixed number of VM instances. This must be a positive integer. Corresponds to the JSON property `fixed` @return [Fixnum]

percent[RW]

Specifies a percentage of instances between 0 to 100%, inclusive. For example, specify 80 for 80%. Corresponds to the JSON property `percent` @return [Fixnum]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/compute_v1/classes.rb, line 7814
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/compute_v1/classes.rb, line 7819
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