Struct google_container1::api::Operation[][src]

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

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

cluster_conditions: Option<Vec<StatusCondition>>

Which conditions caused the current cluster state. Deprecated. Use field error instead.

detail: Option<String>

Detailed operation progress, if available.

end_time: Option<String>

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

error: Option<Status>

The error result of the operation in case of failure.

location: Option<String>

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

name: Option<String>

The server-assigned ID for the operation.

nodepool_conditions: Option<Vec<StatusCondition>>

Which conditions caused the current node pool state. Deprecated. Use field error instead.

operation_type: Option<String>

The operation type.

progress: Option<OperationProgress>

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

self_link: Option<String>

Server-defined URL for the resource.

start_time: Option<String>

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

status: Option<String>

The current status of the operation.

status_message: Option<String>

Output only. If an error has occurred, a textual description of the error. Deprecated. Use the field error instead.

target_link: Option<String>

Server-defined URL for the target of 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.

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

impl RefUnwindSafe for Operation[src]

impl Send for Operation[src]

impl Sync for Operation[src]

impl Unpin for Operation[src]

impl UnwindSafe for Operation[src]

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> Instrument 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.