pub struct GooglePrivacyDlpV2BigQueryDiscoveryTarget {
pub cadence: Option<GooglePrivacyDlpV2DiscoveryGenerationCadence>,
pub conditions: Option<GooglePrivacyDlpV2DiscoveryBigQueryConditions>,
pub disabled: Option<GooglePrivacyDlpV2Disabled>,
pub filter: Option<GooglePrivacyDlpV2DiscoveryBigQueryFilter>,
}Expand description
Target used to match against for discovery with BigQuery tables
This type is not used in any activity, and only used as part of another schema.
Fields§
§cadence: Option<GooglePrivacyDlpV2DiscoveryGenerationCadence>How often and when to update profiles. New tables that match both the filter and conditions are scanned as quickly as possible depending on system capacity.
conditions: Option<GooglePrivacyDlpV2DiscoveryBigQueryConditions>In addition to matching the filter, these conditions must be true before a profile is generated.
disabled: Option<GooglePrivacyDlpV2Disabled>Tables that match this filter will not have profiles created.
filter: Option<GooglePrivacyDlpV2DiscoveryBigQueryFilter>Required. The tables the discovery cadence applies to. The first target with a matching filter will be the one to apply to a table.
Trait Implementations§
Source§impl Clone for GooglePrivacyDlpV2BigQueryDiscoveryTarget
impl Clone for GooglePrivacyDlpV2BigQueryDiscoveryTarget
Source§fn clone(&self) -> GooglePrivacyDlpV2BigQueryDiscoveryTarget
fn clone(&self) -> GooglePrivacyDlpV2BigQueryDiscoveryTarget
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for GooglePrivacyDlpV2BigQueryDiscoveryTarget
impl Default for GooglePrivacyDlpV2BigQueryDiscoveryTarget
Source§fn default() -> GooglePrivacyDlpV2BigQueryDiscoveryTarget
fn default() -> GooglePrivacyDlpV2BigQueryDiscoveryTarget
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GooglePrivacyDlpV2BigQueryDiscoveryTarget
impl<'de> Deserialize<'de> for GooglePrivacyDlpV2BigQueryDiscoveryTarget
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>,
Deserialize this value from the given Serde deserializer. Read more
impl Part for GooglePrivacyDlpV2BigQueryDiscoveryTarget
Auto Trait Implementations§
impl Freeze for GooglePrivacyDlpV2BigQueryDiscoveryTarget
impl RefUnwindSafe for GooglePrivacyDlpV2BigQueryDiscoveryTarget
impl Send for GooglePrivacyDlpV2BigQueryDiscoveryTarget
impl Sync for GooglePrivacyDlpV2BigQueryDiscoveryTarget
impl Unpin for GooglePrivacyDlpV2BigQueryDiscoveryTarget
impl UnwindSafe for GooglePrivacyDlpV2BigQueryDiscoveryTarget
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
Mutably borrows from an owned value. Read more