[][src]Struct google_dlp2::GooglePrivacyDlpV2StoredInfoTypeVersion

pub struct GooglePrivacyDlpV2StoredInfoTypeVersion {
    pub config: Option<GooglePrivacyDlpV2StoredInfoTypeConfig>,
    pub state: Option<String>,
    pub errors: Option<Vec<GooglePrivacyDlpV2Error>>,
    pub stats: Option<GooglePrivacyDlpV2StoredInfoTypeStats>,
    pub create_time: Option<String>,
}

Version of a StoredInfoType, including the configuration used to build it, create timestamp, and current state.

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

Fields

config: Option<GooglePrivacyDlpV2StoredInfoTypeConfig>

StoredInfoType configuration.

state: Option<String>

Stored info type version state. Read-only, updated by the system during dictionary creation.

errors: Option<Vec<GooglePrivacyDlpV2Error>>

Errors that occurred when creating this storedInfoType version, or anomalies detected in the storedInfoType data that render it unusable. Only the five most recent errors will be displayed, with the most recent error appearing first.

For example, some of the data for stored custom dictionaries is put in the user's Google Cloud Storage bucket, and if this data is modified or deleted by the user or another system, the dictionary becomes invalid.

If any errors occur, fix the problem indicated by the error message and use the UpdateStoredInfoType API method to create another version of the storedInfoType to continue using it, reusing the same config if it was not the source of the error.

stats: Option<GooglePrivacyDlpV2StoredInfoTypeStats>

Statistics about this storedInfoType version.

create_time: Option<String>

Create timestamp of the version. Read-only, determined by the system when the version is created.

Trait Implementations

impl Clone for GooglePrivacyDlpV2StoredInfoTypeVersion[src]

impl Debug for GooglePrivacyDlpV2StoredInfoTypeVersion[src]

impl Default for GooglePrivacyDlpV2StoredInfoTypeVersion[src]

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

impl Part for GooglePrivacyDlpV2StoredInfoTypeVersion[src]

impl Serialize for GooglePrivacyDlpV2StoredInfoTypeVersion[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