[][src]Struct google_dlp2::GooglePrivacyDlpV2Action

pub struct GooglePrivacyDlpV2Action {
    pub save_findings: Option<GooglePrivacyDlpV2SaveFindings>,
    pub job_notification_emails: Option<GooglePrivacyDlpV2JobNotificationEmails>,
    pub publish_summary_to_cscc: Option<GooglePrivacyDlpV2PublishSummaryToCscc>,
    pub publish_to_stackdriver: Option<GooglePrivacyDlpV2PublishToStackdriver>,
    pub publish_findings_to_cloud_data_catalog: Option<GooglePrivacyDlpV2PublishFindingsToCloudDataCatalog>,
    pub pub_sub: Option<GooglePrivacyDlpV2PublishToPubSub>,
}

A task to execute on the completion of a job. See https://cloud.google.com/dlp/docs/concepts-actions to learn more.

This type is not used in any activity, and only used as part of another schema.

Fields

save_findings: Option<GooglePrivacyDlpV2SaveFindings>

Save resulting findings in a provided location.

job_notification_emails: Option<GooglePrivacyDlpV2JobNotificationEmails>

Enable email notification for project owners and editors on job's completion/failure.

publish_summary_to_cscc: Option<GooglePrivacyDlpV2PublishSummaryToCscc>

Publish summary to Cloud Security Command Center (Alpha).

publish_to_stackdriver: Option<GooglePrivacyDlpV2PublishToStackdriver>

Enable Stackdriver metric dlp.googleapis.com/finding_count.

publish_findings_to_cloud_data_catalog: Option<GooglePrivacyDlpV2PublishFindingsToCloudDataCatalog>

Publish findings to Cloud Datahub.

pub_sub: Option<GooglePrivacyDlpV2PublishToPubSub>

Publish a notification to a pubsub topic.

Trait Implementations

impl Clone for GooglePrivacyDlpV2Action[src]

impl Debug for GooglePrivacyDlpV2Action[src]

impl Default for GooglePrivacyDlpV2Action[src]

impl<'de> Deserialize<'de> for GooglePrivacyDlpV2Action[src]

impl Part for GooglePrivacyDlpV2Action[src]

impl Serialize for GooglePrivacyDlpV2Action[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Typeable for T where
    T: Any