Class: Google::Cloud::Dlp::V2::Container
- Inherits:
-
Object
- Object
- Google::Cloud::Dlp::V2::Container
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/privacy/dlp/v2/dlp.rb
Overview
Represents a container that may contain DLP findings. Examples of a container include a file, table, or database record.
Instance Attribute Summary collapse
-
#full_path ⇒ ::String
A string representation of the full container name.
-
#project_id ⇒ ::String
Project where the finding was found.
-
#relative_path ⇒ ::String
The rest of the path after the root.
-
#root_path ⇒ ::String
The root of the container.
-
#type ⇒ ::String
Container type, for example BigQuery or Cloud Storage.
-
#update_time ⇒ ::Google::Protobuf::Timestamp
Findings container modification timestamp, if applicable.
-
#version ⇒ ::String
Findings container version, if available ("generation" for Cloud Storage).
Instance Attribute Details
#full_path ⇒ ::String
Returns A string representation of the full container name. Examples:
- BigQuery: 'Project:DataSetId.TableId'
- Cloud Storage: 'gs://Bucket/folders/filename.txt'.
629 630 631 632 |
# File 'proto_docs/google/privacy/dlp/v2/dlp.rb', line 629 class Container include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |
#project_id ⇒ ::String
Returns Project where the finding was found. Can be different from the project that owns the finding.
629 630 631 632 |
# File 'proto_docs/google/privacy/dlp/v2/dlp.rb', line 629 class Container include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |
#relative_path ⇒ ::String
Returns The rest of the path after the root. Examples:
- For BigQuery table
project_id:dataset_id.table_id
, the relative path istable_id
- For Cloud Storage file
gs://bucket/folder/filename.txt
, the relative path isfolder/filename.txt
.
629 630 631 632 |
# File 'proto_docs/google/privacy/dlp/v2/dlp.rb', line 629 class Container include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |
#root_path ⇒ ::String
Returns The root of the container. Examples:
- For BigQuery table
project_id:dataset_id.table_id
, the root isdataset_id
- For Cloud Storage file
gs://bucket/folder/filename.txt
, the root isgs://bucket
.
629 630 631 632 |
# File 'proto_docs/google/privacy/dlp/v2/dlp.rb', line 629 class Container include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |
#type ⇒ ::String
Returns Container type, for example BigQuery or Cloud Storage.
629 630 631 632 |
# File 'proto_docs/google/privacy/dlp/v2/dlp.rb', line 629 class Container include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |
#update_time ⇒ ::Google::Protobuf::Timestamp
Returns 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.
629 630 631 632 |
# File 'proto_docs/google/privacy/dlp/v2/dlp.rb', line 629 class Container include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |