Struct gapi_grpc::google::cloud::aiplatform::v1beta1::Execution[][src]

pub struct Execution {
    pub name: String,
    pub display_name: String,
    pub state: i32,
    pub etag: String,
    pub labels: HashMap<String, String>,
    pub create_time: Option<Timestamp>,
    pub update_time: Option<Timestamp>,
    pub schema_title: String,
    pub schema_version: String,
    pub metadata: Option<Struct>,
    pub description: String,
}

Instance of a general execution.

Fields

name: String

Output only. The resource name of the Execution.

display_name: String

User provided display name of the Execution. May be up to 128 Unicode characters.

state: i32

The state of this Execution. This is a property of the Execution, and does not imply or capture any ongoing process. This property is managed by clients (such as Vertex Pipelines) and the system does not prescribe or check the validity of state transitions.

etag: String

An eTag used to perform consistent read-modify-write updates. If not set, a blind “overwrite” update happens.

labels: HashMap<String, String>

The labels with user-defined metadata to organize your Executions.

Label keys and values can be no longer than 64 characters (Unicode codepoints), can only contain lowercase letters, numeric characters, underscores and dashes. International characters are allowed. No more than 64 user labels can be associated with one Execution (System labels are excluded).

create_time: Option<Timestamp>

Output only. Timestamp when this Execution was created.

update_time: Option<Timestamp>

Output only. Timestamp when this Execution was last updated.

schema_title: String

The title of the schema describing the metadata.

Schema title and version is expected to be registered in earlier Create Schema calls. And both are used together as unique identifiers to identify schemas within the local metadata store.

schema_version: String

The version of the schema in schema_title to use.

Schema title and version is expected to be registered in earlier Create Schema calls. And both are used together as unique identifiers to identify schemas within the local metadata store.

metadata: Option<Struct>

Properties of the Execution.

description: String

Description of the Execution

Implementations

impl Execution[src]

pub fn state(&self) -> State[src]

Returns the enum value of state, or the default if the field is set to an invalid enum value.

pub fn set_state(&mut self, value: State)[src]

Sets state to the provided enum value.

Trait Implementations

impl Clone for Execution[src]

impl Debug for Execution[src]

impl Default for Execution[src]

impl Message for Execution[src]

impl PartialEq<Execution> for Execution[src]

impl StructuralPartialEq for Execution[src]

Auto Trait Implementations

impl RefUnwindSafe for Execution

impl Send for Execution

impl Sync for Execution

impl Unpin for Execution

impl UnwindSafe for Execution

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> 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>, 
[src]

impl<T> WithSubscriber for T[src]