pub struct GooglePrivacyDlpV2InspectJobConfig {
pub actions: Option<Vec<GooglePrivacyDlpV2Action>>,
pub inspect_config: Option<GooglePrivacyDlpV2InspectConfig>,
pub inspect_template_name: Option<String>,
pub storage_config: Option<GooglePrivacyDlpV2StorageConfig>,
}Expand description
Controls what and how to inspect for findings.
This type is not used in any activity, and only used as part of another schema.
Fields§
§actions: Option<Vec<GooglePrivacyDlpV2Action>>Actions to execute at the completion of the job.
inspect_config: Option<GooglePrivacyDlpV2InspectConfig>How and what to scan for.
inspect_template_name: Option<String>If provided, will be used as the default for all values in InspectConfig. inspect_config will be merged into the values persisted as part of the template.
storage_config: Option<GooglePrivacyDlpV2StorageConfig>The data to scan.
Trait Implementations§
Source§impl Clone for GooglePrivacyDlpV2InspectJobConfig
impl Clone for GooglePrivacyDlpV2InspectJobConfig
Source§fn clone(&self) -> GooglePrivacyDlpV2InspectJobConfig
fn clone(&self) -> GooglePrivacyDlpV2InspectJobConfig
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 GooglePrivacyDlpV2InspectJobConfig
impl Default for GooglePrivacyDlpV2InspectJobConfig
Source§fn default() -> GooglePrivacyDlpV2InspectJobConfig
fn default() -> GooglePrivacyDlpV2InspectJobConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GooglePrivacyDlpV2InspectJobConfig
impl<'de> Deserialize<'de> for GooglePrivacyDlpV2InspectJobConfig
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 GooglePrivacyDlpV2InspectJobConfig
Auto Trait Implementations§
impl Freeze for GooglePrivacyDlpV2InspectJobConfig
impl RefUnwindSafe for GooglePrivacyDlpV2InspectJobConfig
impl Send for GooglePrivacyDlpV2InspectJobConfig
impl Sync for GooglePrivacyDlpV2InspectJobConfig
impl Unpin for GooglePrivacyDlpV2InspectJobConfig
impl UnwindSafe for GooglePrivacyDlpV2InspectJobConfig
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