Class: Google::Apis::DlpV2::GooglePrivacyDlpV2Table
- Inherits:
-
Object
- Object
- Google::Apis::DlpV2::GooglePrivacyDlpV2Table
- 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
Structured content to inspect. Up to 50,000 Value
s per request allowed. See
https://cloud.google.com/sensitive-data-protection/docs/inspecting-structured-
text#inspecting_a_table to learn more.
Instance Attribute Summary collapse
-
#headers ⇒ Array<Google::Apis::DlpV2::GooglePrivacyDlpV2FieldId>
Headers of the table.
-
#rows ⇒ Array<Google::Apis::DlpV2::GooglePrivacyDlpV2Row>
Rows of the table.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GooglePrivacyDlpV2Table
constructor
A new instance of GooglePrivacyDlpV2Table.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GooglePrivacyDlpV2Table
Returns a new instance of GooglePrivacyDlpV2Table.
8998 8999 9000 |
# File 'lib/google/apis/dlp_v2/classes.rb', line 8998 def initialize(**args) update!(**args) end |
Instance Attribute Details
#headers ⇒ Array<Google::Apis::DlpV2::GooglePrivacyDlpV2FieldId>
Headers of the table.
Corresponds to the JSON property headers
8991 8992 8993 |
# File 'lib/google/apis/dlp_v2/classes.rb', line 8991 def headers @headers end |
#rows ⇒ Array<Google::Apis::DlpV2::GooglePrivacyDlpV2Row>
Rows of the table.
Corresponds to the JSON property rows
8996 8997 8998 |
# File 'lib/google/apis/dlp_v2/classes.rb', line 8996 def rows @rows end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
9003 9004 9005 9006 |
# File 'lib/google/apis/dlp_v2/classes.rb', line 9003 def update!(**args) @headers = args[:headers] if args.key?(:headers) @rows = args[:rows] if args.key?(:rows) end |