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

pub struct Tensorboard {
    pub name: String,
    pub display_name: String,
    pub description: String,
    pub encryption_spec: Option<EncryptionSpec>,
    pub blob_storage_path_prefix: String,
    pub run_count: i32,
    pub create_time: Option<Timestamp>,
    pub update_time: Option<Timestamp>,
    pub labels: HashMap<String, String>,
    pub etag: String,
}
[]

Tensorboard is a physical database that stores users’ training metrics. A default Tensorboard is provided in each region of a GCP project. If needed users can also create extra Tensorboards in their projects.

Fields

name: String
[]

Output only. Name of the Tensorboard. Format: projects/{project}/locations/{location}/tensorboards/{tensorboard}

display_name: String
[]

Required. User provided name of this Tensorboard.

description: String
[]

Description of this Tensorboard.

encryption_spec: Option<EncryptionSpec>
[]

Customer-managed encryption key spec for a Tensorboard. If set, this Tensorboard and all sub-resources of this Tensorboard will be secured by this key.

blob_storage_path_prefix: String
[]

Output only. Consumer project Cloud Storage path prefix used to store blob data, which can either be a bucket or directory. Does not end with a ‘/’.

run_count: i32
[]

Output only. The number of Runs stored in this Tensorboard.

create_time: Option<Timestamp>
[]

Output only. Timestamp when this Tensorboard was created.

update_time: Option<Timestamp>
[]

Output only. Timestamp when this Tensorboard was last updated.

labels: HashMap<String, String>
[]

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

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 Tensorboard (System labels are excluded).

See https://goo.gl/xmQnxf for more information and examples of labels. System reserved label keys are prefixed with “aiplatform.googleapis.com/” and are immutable.

etag: String
[]

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

Trait Implementations

impl Clone for Tensorboard[src][+]

impl Debug for Tensorboard[src][+]

impl Default for Tensorboard[src][+]

impl Message for Tensorboard[src][+]

impl PartialEq<Tensorboard> for Tensorboard[src][+]

impl StructuralPartialEq for Tensorboard[src]

Auto Trait Implementations

impl RefUnwindSafe for Tensorboard

impl Send for Tensorboard

impl Sync for Tensorboard

impl Unpin for Tensorboard

impl UnwindSafe for Tensorboard

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][+]