pub struct Execution {
pub create_time: Option<DateTime<Utc>>,
pub description: Option<String>,
pub display_name: Option<String>,
pub execution_template: Option<ExecutionTemplate>,
pub job_uri: Option<String>,
pub name: Option<String>,
pub output_notebook_file: Option<String>,
pub state: Option<String>,
pub update_time: Option<DateTime<Utc>>,
}
Expand description
The definition of a single executed notebook.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- locations executions create projects (request)
- locations executions get projects (response)
Fields§
§create_time: Option<DateTime<Utc>>
Output only. Time the Execution was instantiated.
description: Option<String>
A brief description of this execution.
display_name: Option<String>
Output only. Name used for UI purposes. Name can only contain alphanumeric characters and underscores ‘_’.
execution_template: Option<ExecutionTemplate>
execute metadata including name, hardware spec, region, labels, etc.
job_uri: Option<String>
Output only. The URI of the external job used to execute the notebook.
name: Option<String>
Output only. The resource name of the execute. Format: projects/{project_id}/locations/{location}/executions/{execution_id}
output_notebook_file: Option<String>
Output notebook file generated by this execution
state: Option<String>
Output only. State of the underlying AI Platform job.
update_time: Option<DateTime<Utc>>
Output only. Time the Execution was last updated.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Execution
impl<'de> Deserialize<'de> for Execution
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 RequestValue for Execution
impl ResponseResult for Execution
Auto Trait Implementations§
impl Freeze for Execution
impl RefUnwindSafe for Execution
impl Send for Execution
impl Sync for Execution
impl Unpin for Execution
impl UnwindSafe for Execution
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