Class: Google::Apis::DlpV2::GooglePrivacyDlpV2DataProfileBigQueryRowSchema
- Inherits:
-
Object
- Object
- Google::Apis::DlpV2::GooglePrivacyDlpV2DataProfileBigQueryRowSchema
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dlp_v2/classes.rb,
lib/google/apis/dlp_v2/representations.rb,
lib/google/apis/dlp_v2/representations.rb
Overview
The schema of data to be saved to the BigQuery when the DataProfileAction is
enabled.
Instance Attribute Summary collapse
-
#column_profile ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2ColumnDataProfile
The profile for a scanned column within a table.
-
#table_profile ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2TableDataProfile
The profile for a scanned table.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GooglePrivacyDlpV2DataProfileBigQueryRowSchema
constructor
A new instance of GooglePrivacyDlpV2DataProfileBigQueryRowSchema.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GooglePrivacyDlpV2DataProfileBigQueryRowSchema
Returns a new instance of GooglePrivacyDlpV2DataProfileBigQueryRowSchema.
1824 1825 1826 |
# File 'lib/google/apis/dlp_v2/classes.rb', line 1824 def initialize(**args) update!(**args) end |
Instance Attribute Details
#column_profile ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2ColumnDataProfile
The profile for a scanned column within a table.
Corresponds to the JSON property columnProfile
1817 1818 1819 |
# File 'lib/google/apis/dlp_v2/classes.rb', line 1817 def column_profile @column_profile end |
#table_profile ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2TableDataProfile
The profile for a scanned table.
Corresponds to the JSON property tableProfile
1822 1823 1824 |
# File 'lib/google/apis/dlp_v2/classes.rb', line 1822 def table_profile @table_profile end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1829 1830 1831 1832 |
# File 'lib/google/apis/dlp_v2/classes.rb', line 1829 def update!(**args) @column_profile = args[:column_profile] if args.key?(:column_profile) @table_profile = args[:table_profile] if args.key?(:table_profile) end |