pub struct GoogleCloudAiplatformV1Event {
pub type_: Option<String>,
pub artifact: Option<String>,
pub execution: Option<String>,
pub event_time: Option<DateTime<Utc>>,
pub labels: Option<HashMap<String, String>>,
}Expand description
An edge describing the relationship between an Artifact and an Execution in a lineage graph.
This type is not used in any activity, and only used as part of another schema.
Fields§
§type_: Option<String>Required. The type of the Event.
artifact: Option<String>Required. The relative resource name of the Artifact in the Event.
execution: Option<String>Output only. The relative resource name of the Execution in the Event.
event_time: Option<DateTime<Utc>>Output only. Time the Event occurred.
labels: Option<HashMap<String, String>>The labels with user-defined metadata to annotate Events. 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 Event (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.
Trait Implementations§
Source§impl Clone for GoogleCloudAiplatformV1Event
impl Clone for GoogleCloudAiplatformV1Event
Source§fn clone(&self) -> GoogleCloudAiplatformV1Event
fn clone(&self) -> GoogleCloudAiplatformV1Event
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for GoogleCloudAiplatformV1Event
impl Debug for GoogleCloudAiplatformV1Event
Source§impl Default for GoogleCloudAiplatformV1Event
impl Default for GoogleCloudAiplatformV1Event
Source§fn default() -> GoogleCloudAiplatformV1Event
fn default() -> GoogleCloudAiplatformV1Event
Source§impl<'de> Deserialize<'de> for GoogleCloudAiplatformV1Event
impl<'de> Deserialize<'de> for GoogleCloudAiplatformV1Event
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
impl Part for GoogleCloudAiplatformV1Event
Auto Trait Implementations§
impl Freeze for GoogleCloudAiplatformV1Event
impl RefUnwindSafe for GoogleCloudAiplatformV1Event
impl Send for GoogleCloudAiplatformV1Event
impl Sync for GoogleCloudAiplatformV1Event
impl Unpin for GoogleCloudAiplatformV1Event
impl UnwindSafe for GoogleCloudAiplatformV1Event
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more