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

pub struct WriteTensorboardRunDataRequest {
    pub tensorboard_run: String,
    pub time_series_data: Vec<TimeSeriesData>,
}

Request message for [TensorboardService.WriteTensorboardRunData][google.cloud.aiplatform.v1beta1.TensorboardService.WriteTensorboardRunData].

Fields

tensorboard_run: String

Required. The resource name of the TensorboardRun to write data to. Format: projects/{project}/locations/{location}/tensorboards/{tensorboard}/experiments/{experiment}/runs/{run}

time_series_data: Vec<TimeSeriesData>

Required. The TensorboardTimeSeries data to write. Values with in a time series are indexed by their step value. Repeated writes to the same step will overwrite the existing value for that step. The upper limit of data points per write request is 5000.

Trait Implementations

impl Clone for WriteTensorboardRunDataRequest[src]

impl Debug for WriteTensorboardRunDataRequest[src]

impl Default for WriteTensorboardRunDataRequest[src]

impl Message for WriteTensorboardRunDataRequest[src]

impl PartialEq<WriteTensorboardRunDataRequest> for WriteTensorboardRunDataRequest[src]

impl StructuralPartialEq for WriteTensorboardRunDataRequest[src]

Auto Trait Implementations

impl RefUnwindSafe for WriteTensorboardRunDataRequest

impl Send for WriteTensorboardRunDataRequest

impl Sync for WriteTensorboardRunDataRequest

impl Unpin for WriteTensorboardRunDataRequest

impl UnwindSafe for WriteTensorboardRunDataRequest

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]