pub struct CloudDlpInspection {
pub full_scan: Option<bool>,
pub info_type: Option<String>,
pub info_type_count: Option<i64>,
pub inspect_job: Option<String>,
}Expand description
Details about the Cloud Data Loss Prevention (Cloud DLP) inspection job that produced the finding.
This type is not used in any activity, and only used as part of another schema.
Fields§
§full_scan: Option<bool>Whether Cloud DLP scanned the complete resource or a sampled subset.
info_type: Option<String>The type of information (or infoType) found, for example, EMAIL_ADDRESS or STREET_ADDRESS.
info_type_count: Option<i64>The number of times Cloud DLP found this infoType within this job and resource.
inspect_job: Option<String>Name of the inspection job, for example, projects/123/locations/europe/dlpJobs/i-8383929.
Trait Implementations§
Source§impl Clone for CloudDlpInspection
impl Clone for CloudDlpInspection
Source§fn clone(&self) -> CloudDlpInspection
fn clone(&self) -> CloudDlpInspection
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 Debug for CloudDlpInspection
impl Debug for CloudDlpInspection
Source§impl Default for CloudDlpInspection
impl Default for CloudDlpInspection
Source§fn default() -> CloudDlpInspection
fn default() -> CloudDlpInspection
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CloudDlpInspection
impl<'de> Deserialize<'de> for CloudDlpInspection
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
Source§impl Serialize for CloudDlpInspection
impl Serialize for CloudDlpInspection
impl Part for CloudDlpInspection
Auto Trait Implementations§
impl Freeze for CloudDlpInspection
impl RefUnwindSafe for CloudDlpInspection
impl Send for CloudDlpInspection
impl Sync for CloudDlpInspection
impl Unpin for CloudDlpInspection
impl UnwindSafe for CloudDlpInspection
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