[][src]Struct gcp_client::google::cloud::dataproc::v1beta2::ClusterOperationMetadata

pub struct ClusterOperationMetadata {
    pub cluster_name: String,
    pub cluster_uuid: String,
    pub status: Option<ClusterOperationStatus>,
    pub status_history: Vec<ClusterOperationStatus>,
    pub operation_type: String,
    pub description: String,
    pub labels: HashMap<String, String>,
    pub warnings: Vec<String>,
}

Metadata describing the operation.

Fields

cluster_name: String

Output only. Name of the cluster for the operation.

cluster_uuid: String

Output only. Cluster UUID for the operation.

status: Option<ClusterOperationStatus>

Output only. Current operation status.

status_history: Vec<ClusterOperationStatus>

Output only. The previous operation status.

operation_type: String

Output only. The operation type.

description: String

Output only. Short description of operation.

labels: HashMap<String, String>

Output only. Labels associated with the operation

warnings: Vec<String>

Output only. Errors encountered during operation execution.

Trait Implementations

impl Clone for ClusterOperationMetadata[src]

impl Debug for ClusterOperationMetadata[src]

impl Default for ClusterOperationMetadata[src]

impl Message for ClusterOperationMetadata[src]

impl PartialEq<ClusterOperationMetadata> for ClusterOperationMetadata[src]

impl StructuralPartialEq for ClusterOperationMetadata[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> 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> IntoRequest<T> for 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<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]