pub struct GooglePrivacyDlpV2StoredInfoTypeVersion {
pub config: Option<GooglePrivacyDlpV2StoredInfoTypeConfig>,
pub create_time: Option<DateTime<Utc>>,
pub errors: Option<Vec<GooglePrivacyDlpV2Error>>,
pub state: Option<String>,
pub stats: Option<GooglePrivacyDlpV2StoredInfoTypeStats>,
}Expand description
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.
create_time: Option<DateTime<Utc>>Create timestamp of the version. Read-only, determined by the system when the version is created.
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 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.
state: Option<String>Stored info type version state. Read-only, updated by the system during dictionary creation.
stats: Option<GooglePrivacyDlpV2StoredInfoTypeStats>Statistics about this storedInfoType version.
Trait Implementations§
Source§impl Clone for GooglePrivacyDlpV2StoredInfoTypeVersion
impl Clone for GooglePrivacyDlpV2StoredInfoTypeVersion
Source§fn clone(&self) -> GooglePrivacyDlpV2StoredInfoTypeVersion
fn clone(&self) -> GooglePrivacyDlpV2StoredInfoTypeVersion
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more