pub struct GooglePrivacyDlpV2Container {
pub full_path: Option<String>,
pub project_id: Option<String>,
pub relative_path: Option<String>,
pub root_path: Option<String>,
pub type_: Option<String>,
pub update_time: Option<DateTime<Utc>>,
pub version: Option<String>,
}Expand description
Represents a container that may contain DLP findings. Examples of a container include a file, table, or database record.
This type is not used in any activity, and only used as part of another schema.
Fields§
§full_path: Option<String>A string representation of the full container name. Examples: - BigQuery: ‘Project:DataSetId.TableId’ - Cloud Storage: ‘gs://Bucket/folders/filename.txt’
project_id: Option<String>Project where the finding was found. Can be different from the project that owns the finding.
relative_path: Option<String>The rest of the path after the root. Examples: - For BigQuery table project_id:dataset_id.table_id, the relative path is table_id - For Cloud Storage file gs://bucket/folder/filename.txt, the relative path is folder/filename.txt
root_path: Option<String>The root of the container. Examples: - For BigQuery table project_id:dataset_id.table_id, the root is dataset_id - For Cloud Storage file gs://bucket/folder/filename.txt, the root is gs://bucket
type_: Option<String>Container type, for example BigQuery or Cloud Storage.
update_time: Option<DateTime<Utc>>Findings container modification timestamp, if applicable. For Cloud Storage, this field contains the last file modification timestamp. For a BigQuery table, this field contains the last_modified_time property. For Datastore, this field isn’t populated.
version: Option<String>Findings container version, if available (“generation” for Cloud Storage).
Trait Implementations§
Source§impl Clone for GooglePrivacyDlpV2Container
impl Clone for GooglePrivacyDlpV2Container
Source§fn clone(&self) -> GooglePrivacyDlpV2Container
fn clone(&self) -> GooglePrivacyDlpV2Container
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more