[][src]Struct google_container1::Operation

pub struct Operation {
    pub status: Option<String>,
    pub self_link: Option<String>,
    pub end_time: Option<String>,
    pub name: Option<String>,
    pub zone: Option<String>,
    pub detail: Option<String>,
    pub operation_type: Option<String>,
    pub target_link: Option<String>,
    pub location: Option<String>,
    pub start_time: Option<String>,
    pub progress: Option<OperationProgress>,
    pub nodepool_conditions: Option<Vec<StatusCondition>>,
    pub status_message: Option<String>,
    pub cluster_conditions: Option<Vec<StatusCondition>>,
}

This operation resource represents operations that may have happened or are happening on the cluster. All fields are output only.

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>

The current status of the operation.

self_link: Option<String>

Server-defined URL for the resource.

end_time: Option<String>

[Output only] The time the operation completed, in RFC3339 text format.

name: Option<String>

The server-assigned ID for the operation.

zone: Option<String>

The name of the Google Compute Engine zone in which the operation is taking place. This field is deprecated, use location instead.

detail: Option<String>

Detailed operation progress, if available.

operation_type: Option<String>

The operation type.

target_link: Option<String>

Server-defined URL for the target of the operation.

location: Option<String>

[Output only] The name of the Google Compute Engine zone or region in which the cluster resides.

start_time: Option<String>

[Output only] The time the operation started, in RFC3339 text format.

progress: Option<OperationProgress>

Output only. [Output only] Progress information for an operation.

nodepool_conditions: Option<Vec<StatusCondition>>

Which conditions caused the current node pool state.

status_message: Option<String>

Output only. If an error has occurred, a textual description of the error.

cluster_conditions: Option<Vec<StatusCondition>>

Which conditions caused the current cluster state.

Trait Implementations

impl Clone for Operation[src]

impl Debug for Operation[src]

impl Default for Operation[src]

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

impl ResponseResult for Operation[src]

impl Serialize for Operation[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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 = 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> Typeable for T where
    T: Any