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

pub struct TensorboardRun {
    pub name: String,
    pub display_name: String,
    pub description: String,
    pub create_time: Option<Timestamp>,
    pub update_time: Option<Timestamp>,
    pub labels: HashMap<String, String>,
    pub etag: String,
}

TensorboardRun maps to a specific execution of a training job with a given set of hyperparameter values, model definition, dataset, etc

Fields

name: String

Output only. Name of the TensorboardRun. Format: projects/{project}/locations/{location}/tensorboards/{tensorboard}/experiments/{experiment}/runs/{run}

display_name: String

Required. User provided name of this TensorboardRun. This value must be unique among all TensorboardRuns belonging to the same parent TensorboardExperiment.

description: String

Description of this TensorboardRun.

create_time: Option<Timestamp>

Output only. Timestamp when this TensorboardRun was created.

update_time: Option<Timestamp>

Output only. Timestamp when this TensorboardRun was last updated.

labels: HashMap<String, String>etag: String

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

Trait Implementations

impl Clone for TensorboardRun[src]

impl Debug for TensorboardRun[src]

impl Default for TensorboardRun[src]

impl Message for TensorboardRun[src]

impl PartialEq<TensorboardRun> for TensorboardRun[src]

impl StructuralPartialEq for TensorboardRun[src]

Auto Trait Implementations

impl RefUnwindSafe for TensorboardRun

impl Send for TensorboardRun

impl Sync for TensorboardRun

impl Unpin for TensorboardRun

impl UnwindSafe for TensorboardRun

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]