pub struct GooglePrivacyDlpV2DataProfileConfigSnapshot {
pub data_profile_job: Option<GooglePrivacyDlpV2DataProfileJobConfig>,
pub discovery_config: Option<GooglePrivacyDlpV2DiscoveryConfig>,
pub inspect_config: Option<GooglePrivacyDlpV2InspectConfig>,
pub inspect_template_modified_time: Option<DateTime<Utc>>,
pub inspect_template_name: Option<String>,
}Expand description
Snapshot of the configurations used to generate the profile.
This type is not used in any activity, and only used as part of another schema.
Fields§
§data_profile_job: Option<GooglePrivacyDlpV2DataProfileJobConfig>A copy of the configuration used to generate this profile. This is deprecated, and the DiscoveryConfig field is preferred moving forward. DataProfileJobConfig will still be written here for Discovery in BigQuery for backwards compatibility, but will not be updated with new fields, while DiscoveryConfig will.
discovery_config: Option<GooglePrivacyDlpV2DiscoveryConfig>A copy of the configuration used to generate this profile.
inspect_config: Option<GooglePrivacyDlpV2InspectConfig>A copy of the inspection config used to generate this profile. This is a copy of the inspect_template specified in DataProfileJobConfig.
inspect_template_modified_time: Option<DateTime<Utc>>Timestamp when the template was modified
inspect_template_name: Option<String>Name of the inspection template used to generate this profile
Trait Implementations§
Source§impl Clone for GooglePrivacyDlpV2DataProfileConfigSnapshot
impl Clone for GooglePrivacyDlpV2DataProfileConfigSnapshot
Source§fn clone(&self) -> GooglePrivacyDlpV2DataProfileConfigSnapshot
fn clone(&self) -> GooglePrivacyDlpV2DataProfileConfigSnapshot
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 GooglePrivacyDlpV2DataProfileConfigSnapshot
impl Default for GooglePrivacyDlpV2DataProfileConfigSnapshot
Source§fn default() -> GooglePrivacyDlpV2DataProfileConfigSnapshot
fn default() -> GooglePrivacyDlpV2DataProfileConfigSnapshot
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GooglePrivacyDlpV2DataProfileConfigSnapshot
impl<'de> Deserialize<'de> for GooglePrivacyDlpV2DataProfileConfigSnapshot
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 GooglePrivacyDlpV2DataProfileConfigSnapshot
Auto Trait Implementations§
impl Freeze for GooglePrivacyDlpV2DataProfileConfigSnapshot
impl RefUnwindSafe for GooglePrivacyDlpV2DataProfileConfigSnapshot
impl Send for GooglePrivacyDlpV2DataProfileConfigSnapshot
impl Sync for GooglePrivacyDlpV2DataProfileConfigSnapshot
impl Unpin for GooglePrivacyDlpV2DataProfileConfigSnapshot
impl UnwindSafe for GooglePrivacyDlpV2DataProfileConfigSnapshot
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