pub struct CloudDlpDataProfile {
pub data_profile: Option<String>,
pub info_types: Option<Vec<InfoType>>,
pub parent_type: Option<String>,
}Expand description
The data profile associated with the finding.
This type is not used in any activity, and only used as part of another schema.
Fields§
§data_profile: Option<String>Name of the data profile, for example, projects/123/locations/europe/tableProfiles/8383929.
info_types: Option<Vec<InfoType>>Type of information detected by SDP. Info type includes name, version and sensitivity of the detected information type.
parent_type: Option<String>The resource hierarchy level at which the data profile was generated.
Trait Implementations§
Source§impl Clone for CloudDlpDataProfile
impl Clone for CloudDlpDataProfile
Source§fn clone(&self) -> CloudDlpDataProfile
fn clone(&self) -> CloudDlpDataProfile
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CloudDlpDataProfile
impl Debug for CloudDlpDataProfile
Source§impl Default for CloudDlpDataProfile
impl Default for CloudDlpDataProfile
Source§fn default() -> CloudDlpDataProfile
fn default() -> CloudDlpDataProfile
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CloudDlpDataProfile
impl<'de> Deserialize<'de> for CloudDlpDataProfile
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 CloudDlpDataProfile
Auto Trait Implementations§
impl Freeze for CloudDlpDataProfile
impl RefUnwindSafe for CloudDlpDataProfile
impl Send for CloudDlpDataProfile
impl Sync for CloudDlpDataProfile
impl Unpin for CloudDlpDataProfile
impl UnsafeUnpin for CloudDlpDataProfile
impl UnwindSafe for CloudDlpDataProfile
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