pub struct GooglePrivacyDlpV2ContentLocation {
pub container_name: Option<String>,
pub container_timestamp: Option<DateTime<Utc>>,
pub container_version: Option<String>,
pub document_location: Option<GooglePrivacyDlpV2DocumentLocation>,
pub image_location: Option<GooglePrivacyDlpV2ImageLocation>,
pub metadata_location: Option<GooglePrivacyDlpV2MetadataLocation>,
pub record_location: Option<GooglePrivacyDlpV2RecordLocation>,
}Expand description
Precise location of the finding within a document, record, image, or metadata container.
This type is not used in any activity, and only used as part of another schema.
Fields§
§container_name: Option<String>Name of the container where the finding is located. The top level name is the source file name or table name. Names of some common storage containers are formatted as follows: * BigQuery tables: {project_id}:{dataset_id}.{table_id} * Cloud Storage files: gs://{bucket}/{path} * Datastore namespace: {namespace} Nested names could be absent if the embedded object has no string identifier (for example, an image contained within a document).
container_timestamp: Option<DateTime<Utc>>Finding 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.
container_version: Option<String>Finding container version, if available (“generation” for Cloud Storage).
document_location: Option<GooglePrivacyDlpV2DocumentLocation>Location data for document files.
image_location: Option<GooglePrivacyDlpV2ImageLocation>Location within an image’s pixels.
metadata_location: Option<GooglePrivacyDlpV2MetadataLocation>Location within the metadata for inspected content.
record_location: Option<GooglePrivacyDlpV2RecordLocation>Location within a row or record of a database table.
Trait Implementations§
Source§impl Clone for GooglePrivacyDlpV2ContentLocation
impl Clone for GooglePrivacyDlpV2ContentLocation
Source§fn clone(&self) -> GooglePrivacyDlpV2ContentLocation
fn clone(&self) -> GooglePrivacyDlpV2ContentLocation
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more