[][src]Struct google_compute1::Commitment

pub struct Commitment {
    pub status: Option<String>,
    pub kind: Option<String>,
    pub description: Option<String>,
    pub name: Option<String>,
    pub reservations: Option<Vec<Reservation>>,
    pub start_timestamp: Option<String>,
    pub resources: Option<Vec<ResourceCommitment>>,
    pub end_timestamp: Option<String>,
    pub status_message: Option<String>,
    pub region: Option<String>,
    pub creation_timestamp: Option<String>,
    pub id: Option<String>,
    pub self_link: Option<String>,
    pub plan: Option<String>,
}

Represents a regional Commitment resource.

Creating a commitment resource means that you are purchasing a committed use contract with an explicit start and end time. You can create commitments based on vCPUs and memory usage and receive discounted rates. For full details, read Signing Up for Committed Use Discounts. (== resource_for beta.regionCommitments ==) (== resource_for v1.regionCommitments ==)

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

status: Option<String>

[Output Only] Status of the commitment with regards to eventual expiration (each commitment has an end date defined). One of the following values: NOT_YET_ACTIVE, ACTIVE, EXPIRED.

kind: Option<String>

[Output Only] Type of the resource. Always compute#commitment for commitments.

description: Option<String>

An optional description of this resource. Provide this property when you create the resource.

name: Option<String>

Name of the resource. Provided by the client when the resource is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression [a-z]([-a-z0-9]*[a-z0-9])? which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.

reservations: Option<Vec<Reservation>>

List of reservations for this commitment.

start_timestamp: Option<String>

[Output Only] Commitment start time in RFC3339 text format.

resources: Option<Vec<ResourceCommitment>>

A list of commitment amounts for particular resources. Note that VCPU and MEMORY resource commitments must occur together.

end_timestamp: Option<String>

[Output Only] Commitment end time in RFC3339 text format.

status_message: Option<String>

[Output Only] An optional, human-readable explanation of the status.

region: Option<String>

[Output Only] URL of the region where this commitment may be used.

creation_timestamp: Option<String>

[Output Only] Creation timestamp in RFC3339 text format.

id: Option<String>

[Output Only] The unique identifier for the resource. This identifier is defined by the server.

self_link: Option<String>

[Output Only] Server-defined URL for the resource.

plan: Option<String>

The plan for this commitment, which determines duration and discount rate. The currently supported plans are TWELVE_MONTH (1 year), and THIRTY_SIX_MONTH (3 years).

Trait Implementations

impl ResponseResult for Commitment[src]

impl RequestValue for Commitment[src]

impl Default for Commitment[src]

impl Clone for Commitment[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for Commitment[src]

impl Serialize for Commitment[src]

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

Auto Trait Implementations

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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

type Error = Infallible

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> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<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

fn get_type(&self) -> TypeId

Get the TypeId of this object.

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