pub struct GoogleCloudDataplexV1DataScanJob {
pub data_profile_result: Option<GoogleCloudDataplexV1DataProfileResult>,
pub data_profile_spec: Option<GoogleCloudDataplexV1DataProfileSpec>,
pub data_quality_result: Option<GoogleCloudDataplexV1DataQualityResult>,
pub data_quality_spec: Option<GoogleCloudDataplexV1DataQualitySpec>,
pub end_time: Option<DateTime<Utc>>,
pub message: Option<String>,
pub name: Option<String>,
pub start_time: Option<DateTime<Utc>>,
pub state: Option<String>,
pub type_: Option<String>,
pub uid: Option<String>,
}
Expand description
A DataScanJob represents an instance of DataScan execution.
§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 data scans jobs get projects (response)
Fields§
§data_profile_result: Option<GoogleCloudDataplexV1DataProfileResult>
Output only. The result of the data profile scan.
data_profile_spec: Option<GoogleCloudDataplexV1DataProfileSpec>
Output only. DataProfileScan related setting.
data_quality_result: Option<GoogleCloudDataplexV1DataQualityResult>
Output only. The result of the data quality scan.
data_quality_spec: Option<GoogleCloudDataplexV1DataQualitySpec>
Output only. DataQualityScan related setting.
end_time: Option<DateTime<Utc>>
Output only. The time when the DataScanJob ended.
message: Option<String>
Output only. Additional information about the current state.
name: Option<String>
Output only. The relative resource name of the DataScanJob, of the form: projects/{project}/locations/{location_id}/dataScans/{datascan_id}/jobs/{job_id}, where project refers to a project_id or project_number and location_id refers to a GCP region.
start_time: Option<DateTime<Utc>>
Output only. The time when the DataScanJob was started.
state: Option<String>
Output only. Execution state for the DataScanJob.
type_: Option<String>
Output only. The type of the parent DataScan.
uid: Option<String>
Output only. System generated globally unique ID for the DataScanJob.
Trait Implementations§
Source§impl Clone for GoogleCloudDataplexV1DataScanJob
impl Clone for GoogleCloudDataplexV1DataScanJob
Source§fn clone(&self) -> GoogleCloudDataplexV1DataScanJob
fn clone(&self) -> GoogleCloudDataplexV1DataScanJob
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Default for GoogleCloudDataplexV1DataScanJob
impl Default for GoogleCloudDataplexV1DataScanJob
Source§fn default() -> GoogleCloudDataplexV1DataScanJob
fn default() -> GoogleCloudDataplexV1DataScanJob
Source§impl<'de> Deserialize<'de> for GoogleCloudDataplexV1DataScanJob
impl<'de> Deserialize<'de> for GoogleCloudDataplexV1DataScanJob
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 ResponseResult for GoogleCloudDataplexV1DataScanJob
Auto Trait Implementations§
impl Freeze for GoogleCloudDataplexV1DataScanJob
impl RefUnwindSafe for GoogleCloudDataplexV1DataScanJob
impl Send for GoogleCloudDataplexV1DataScanJob
impl Sync for GoogleCloudDataplexV1DataScanJob
impl Unpin for GoogleCloudDataplexV1DataScanJob
impl UnwindSafe for GoogleCloudDataplexV1DataScanJob
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