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