Class: Google::Apis::ComputeBeta::FixedOrPercent

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

Overview

Encapsulates numeric value that can be either absolute or relative.

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) ⇒ FixedOrPercent

Returns a new instance of FixedOrPercent



6131
6132
6133
# File 'generated/google/apis/compute_beta/classes.rb', line 6131

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

Instance Attribute Details

#calculatedFixnum

[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

Returns:

  • (Fixnum)


6118
6119
6120
# File 'generated/google/apis/compute_beta/classes.rb', line 6118

def calculated
  @calculated
end

#fixedFixnum

Specifies a fixed number of VM instances. This must be a positive integer. Corresponds to the JSON property fixed

Returns:

  • (Fixnum)


6123
6124
6125
# File 'generated/google/apis/compute_beta/classes.rb', line 6123

def fixed
  @fixed
end

#percentFixnum

Specifies a percentage of instances between 0 to 100%, inclusive. For example, specify 80 for 80%. Corresponds to the JSON property percent

Returns:

  • (Fixnum)


6129
6130
6131
# File 'generated/google/apis/compute_beta/classes.rb', line 6129

def percent
  @percent
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6136
6137
6138
6139
6140
# File 'generated/google/apis/compute_beta/classes.rb', line 6136

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