pub struct GooglePrivacyDlpV2VertexDatasetDiscoveryTarget {
pub conditions: Option<GooglePrivacyDlpV2DiscoveryVertexDatasetConditions>,
pub disabled: Option<GooglePrivacyDlpV2Disabled>,
pub filter: Option<GooglePrivacyDlpV2DiscoveryVertexDatasetFilter>,
pub generation_cadence: Option<GooglePrivacyDlpV2DiscoveryVertexDatasetGenerationCadence>,
}Expand description
Target used to match against for discovery with Vertex AI datasets.
This type is not used in any activity, and only used as part of another schema.
Fields§
§conditions: Option<GooglePrivacyDlpV2DiscoveryVertexDatasetConditions>In addition to matching the filter, these conditions must be true before a profile is generated.
disabled: Option<GooglePrivacyDlpV2Disabled>Disable profiling for datasets that match this filter.
filter: Option<GooglePrivacyDlpV2DiscoveryVertexDatasetFilter>Required. The datasets the discovery cadence applies to. The first target with a matching filter will be the one to apply to a dataset.
generation_cadence: Option<GooglePrivacyDlpV2DiscoveryVertexDatasetGenerationCadence>How often and when to update profiles. New datasets that match both the filter and conditions are scanned as quickly as possible depending on system capacity.
Trait Implementations§
Source§impl Clone for GooglePrivacyDlpV2VertexDatasetDiscoveryTarget
impl Clone for GooglePrivacyDlpV2VertexDatasetDiscoveryTarget
Source§fn clone(&self) -> GooglePrivacyDlpV2VertexDatasetDiscoveryTarget
fn clone(&self) -> GooglePrivacyDlpV2VertexDatasetDiscoveryTarget
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 GooglePrivacyDlpV2VertexDatasetDiscoveryTarget
impl Default for GooglePrivacyDlpV2VertexDatasetDiscoveryTarget
Source§fn default() -> GooglePrivacyDlpV2VertexDatasetDiscoveryTarget
fn default() -> GooglePrivacyDlpV2VertexDatasetDiscoveryTarget
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GooglePrivacyDlpV2VertexDatasetDiscoveryTarget
impl<'de> Deserialize<'de> for GooglePrivacyDlpV2VertexDatasetDiscoveryTarget
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 GooglePrivacyDlpV2VertexDatasetDiscoveryTarget
Auto Trait Implementations§
impl Freeze for GooglePrivacyDlpV2VertexDatasetDiscoveryTarget
impl RefUnwindSafe for GooglePrivacyDlpV2VertexDatasetDiscoveryTarget
impl Send for GooglePrivacyDlpV2VertexDatasetDiscoveryTarget
impl Sync for GooglePrivacyDlpV2VertexDatasetDiscoveryTarget
impl Unpin for GooglePrivacyDlpV2VertexDatasetDiscoveryTarget
impl UnwindSafe for GooglePrivacyDlpV2VertexDatasetDiscoveryTarget
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