[][src]Struct google_compute1::FixedOrPercent

pub struct FixedOrPercent {
    pub calculated: Option<i32>,
    pub fixed: Option<i32>,
    pub percent: Option<i32>,
}

Encapsulates numeric value that can be either absolute or relative.

This type is not used in any activity, and only used as part of another schema.

Fields

calculated: Option<i32>

[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 up.
fixed: Option<i32>

Specifies a fixed number of VM instances. This must be a positive integer.

percent: Option<i32>

Specifies a percentage of instances between 0 to 100%, inclusive. For example, specify 80 for 80%.

Trait Implementations

impl Part for FixedOrPercent[src]

impl Clone for FixedOrPercent[src]

impl Default for FixedOrPercent[src]

impl Debug for FixedOrPercent[src]

impl Serialize for FixedOrPercent[src]

impl<'de> Deserialize<'de> for FixedOrPercent[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = !

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Typeable for T where
    T: Any

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]