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

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

Instance of a general artifact.

Fields

name: String

Output only. The resource name of the Artifact.

display_name: String

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

uri: String

The uniform resource identifier of the artifact file. May be empty if there is no actual artifact file.

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 Artifacts.

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

create_time: Option<Timestamp>

Output only. Timestamp when this Artifact was created.

update_time: Option<Timestamp>

Output only. Timestamp when this Artifact was last updated.

state: i32

The state of this Artifact. This is a property of the Artifact, 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.

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_name 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 Artifact.

description: String

Description of the Artifact

Implementations

impl Artifact[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 Artifact[src]

impl Debug for Artifact[src]

impl Default for Artifact[src]

impl Message for Artifact[src]

impl PartialEq<Artifact> for Artifact[src]

impl StructuralPartialEq for Artifact[src]

Auto Trait Implementations

impl RefUnwindSafe for Artifact

impl Send for Artifact

impl Sync for Artifact

impl Unpin for Artifact

impl UnwindSafe for Artifact

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]