Class: Google::Apis::OsconfigV1::FixedOrPercent
- Inherits:
-
Object
- Object
- Google::Apis::OsconfigV1::FixedOrPercent
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/osconfig_v1/classes.rb,
lib/google/apis/osconfig_v1/representations.rb,
lib/google/apis/osconfig_v1/representations.rb
Overview
Message encapsulating a value that can be either absolute ("fixed") or relative ("percent") to a value.
Instance Attribute Summary collapse
-
#fixed ⇒ Fixnum
Specifies a fixed value.
-
#percent ⇒ Fixnum
Specifies the relative value defined as a percentage, which will be multiplied by a reference value.
Instance Method Summary collapse
-
#initialize(**args) ⇒ FixedOrPercent
constructor
A new instance of FixedOrPercent.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ FixedOrPercent
Returns a new instance of FixedOrPercent.
378 379 380 |
# File 'lib/google/apis/osconfig_v1/classes.rb', line 378 def initialize(**args) update!(**args) end |
Instance Attribute Details
#fixed ⇒ Fixnum
Specifies a fixed value.
Corresponds to the JSON property fixed
370 371 372 |
# File 'lib/google/apis/osconfig_v1/classes.rb', line 370 def fixed @fixed end |
#percent ⇒ Fixnum
Specifies the relative value defined as a percentage, which will be multiplied
by a reference value.
Corresponds to the JSON property percent
376 377 378 |
# File 'lib/google/apis/osconfig_v1/classes.rb', line 376 def percent @percent end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
383 384 385 386 |
# File 'lib/google/apis/osconfig_v1/classes.rb', line 383 def update!(**args) @fixed = args[:fixed] if args.key?(:fixed) @percent = args[:percent] if args.key?(:percent) end |