pub struct GoogleCloudDataplexV1Job {
pub end_time: Option<DateTime<Utc>>,
pub execution_spec: Option<GoogleCloudDataplexV1TaskExecutionSpec>,
pub labels: Option<HashMap<String, String>>,
pub message: Option<String>,
pub name: Option<String>,
pub retry_count: Option<u32>,
pub service: Option<String>,
pub service_job: Option<String>,
pub start_time: Option<DateTime<Utc>>,
pub state: Option<String>,
pub trigger: Option<String>,
pub uid: Option<String>,
}
Expand description
A job represents an instance of a task.
§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 lakes tasks jobs get projects (response)
Fields§
§end_time: Option<DateTime<Utc>>
Output only. The time when the job ended.
execution_spec: Option<GoogleCloudDataplexV1TaskExecutionSpec>
Output only. Spec related to how a task is executed.
labels: Option<HashMap<String, String>>
Output only. User-defined labels for the task.
message: Option<String>
Output only. Additional information about the current state.
name: Option<String>
Output only. The relative resource name of the job, of the form: projects/{project_number}/locations/{location_id}/lakes/{lake_id}/tasks/{task_id}/jobs/{job_id}.
retry_count: Option<u32>
Output only. The number of times the job has been retried (excluding the initial attempt).
service: Option<String>
Output only. The underlying service running a job.
service_job: Option<String>
Output only. The full resource name for the job run under a particular service.
start_time: Option<DateTime<Utc>>
Output only. The time when the job was started.
state: Option<String>
Output only. Execution state for the job.
trigger: Option<String>
Output only. Job execution trigger.
uid: Option<String>
Output only. System generated globally unique ID for the job.
Trait Implementations§
Source§impl Clone for GoogleCloudDataplexV1Job
impl Clone for GoogleCloudDataplexV1Job
Source§fn clone(&self) -> GoogleCloudDataplexV1Job
fn clone(&self) -> GoogleCloudDataplexV1Job
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for GoogleCloudDataplexV1Job
impl Debug for GoogleCloudDataplexV1Job
Source§impl Default for GoogleCloudDataplexV1Job
impl Default for GoogleCloudDataplexV1Job
Source§fn default() -> GoogleCloudDataplexV1Job
fn default() -> GoogleCloudDataplexV1Job
Source§impl<'de> Deserialize<'de> for GoogleCloudDataplexV1Job
impl<'de> Deserialize<'de> for GoogleCloudDataplexV1Job
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>,
Source§impl Serialize for GoogleCloudDataplexV1Job
impl Serialize for GoogleCloudDataplexV1Job
impl ResponseResult for GoogleCloudDataplexV1Job
Auto Trait Implementations§
impl Freeze for GoogleCloudDataplexV1Job
impl RefUnwindSafe for GoogleCloudDataplexV1Job
impl Send for GoogleCloudDataplexV1Job
impl Sync for GoogleCloudDataplexV1Job
impl Unpin for GoogleCloudDataplexV1Job
impl UnwindSafe for GoogleCloudDataplexV1Job
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