pub struct GoogleCloudDataplexV1DataProfileSpec {
pub exclude_fields: Option<GoogleCloudDataplexV1DataProfileSpecSelectedFields>,
pub include_fields: Option<GoogleCloudDataplexV1DataProfileSpecSelectedFields>,
pub post_scan_actions: Option<GoogleCloudDataplexV1DataProfileSpecPostScanActions>,
pub row_filter: Option<String>,
pub sampling_percent: Option<f32>,
}
Expand description
DataProfileScan related setting.
This type is not used in any activity, and only used as part of another schema.
Fields§
§exclude_fields: Option<GoogleCloudDataplexV1DataProfileSpecSelectedFields>
Optional. The fields to exclude from data profile.If specified, the fields will be excluded from data profile, regardless of include_fields value.
include_fields: Option<GoogleCloudDataplexV1DataProfileSpecSelectedFields>
Optional. The fields to include in data profile.If not specified, all fields at the time of profile scan job execution are included, except for ones listed in exclude_fields.
post_scan_actions: Option<GoogleCloudDataplexV1DataProfileSpecPostScanActions>
Optional. Actions to take upon job completion..
row_filter: Option<String>
Optional. A filter applied to all rows in a single DataScan job. The filter needs to be a valid SQL expression for a WHERE clause in BigQuery standard SQL syntax. Example: col1 >= 0 AND col2 < 10
sampling_percent: Option<f32>
Optional. The percentage of the records to be selected from the dataset for DataScan. Value can range between 0.0 and 100.0 with up to 3 significant decimal digits. Sampling is not applied if sampling_percent is not specified, 0 or 100.
Trait Implementations§
Source§impl Clone for GoogleCloudDataplexV1DataProfileSpec
impl Clone for GoogleCloudDataplexV1DataProfileSpec
Source§fn clone(&self) -> GoogleCloudDataplexV1DataProfileSpec
fn clone(&self) -> GoogleCloudDataplexV1DataProfileSpec
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Default for GoogleCloudDataplexV1DataProfileSpec
impl Default for GoogleCloudDataplexV1DataProfileSpec
Source§fn default() -> GoogleCloudDataplexV1DataProfileSpec
fn default() -> GoogleCloudDataplexV1DataProfileSpec
Source§impl<'de> Deserialize<'de> for GoogleCloudDataplexV1DataProfileSpec
impl<'de> Deserialize<'de> for GoogleCloudDataplexV1DataProfileSpec
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 GoogleCloudDataplexV1DataProfileSpec
Auto Trait Implementations§
impl Freeze for GoogleCloudDataplexV1DataProfileSpec
impl RefUnwindSafe for GoogleCloudDataplexV1DataProfileSpec
impl Send for GoogleCloudDataplexV1DataProfileSpec
impl Sync for GoogleCloudDataplexV1DataProfileSpec
impl Unpin for GoogleCloudDataplexV1DataProfileSpec
impl UnwindSafe for GoogleCloudDataplexV1DataProfileSpec
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