Class: Google::Apis::DlpV2::GooglePrivacyDlpV2Table
- Inherits:
-
Object
- Object
- Google::Apis::DlpV2::GooglePrivacyDlpV2Table
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dlp_v2/classes.rb,
generated/google/apis/dlp_v2/representations.rb,
generated/google/apis/dlp_v2/representations.rb
Overview
Structured content to inspect. Up to 50,000 Values per request allowed.
See https://cloud.google.com/dlp/docs/inspecting-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.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GooglePrivacyDlpV2Table
Returns a new instance of GooglePrivacyDlpV2Table.
5573 5574 5575 |
# File 'generated/google/apis/dlp_v2/classes.rb', line 5573 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
5566 5567 5568 |
# File 'generated/google/apis/dlp_v2/classes.rb', line 5566 def headers @headers end |
#rows ⇒ Array<Google::Apis::DlpV2::GooglePrivacyDlpV2Row>
Rows of the table.
Corresponds to the JSON property rows
5571 5572 5573 |
# File 'generated/google/apis/dlp_v2/classes.rb', line 5571 def rows @rows end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5578 5579 5580 5581 |
# File 'generated/google/apis/dlp_v2/classes.rb', line 5578 def update!(**args) @headers = args[:headers] if args.key?(:headers) @rows = args[:rows] if args.key?(:rows) end |