class Google::Apis::DlpV2::GooglePrivacyDlpV2Table

Structured content to inspect. Up to 50,000 `Value`s per request allowed. See cloud.google.com/dlp/docs/inspecting-structured-text# inspecting_a_table to learn more.

Attributes

headers[RW]

Headers of the table. Corresponds to the JSON property `headers` @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2FieldId>]

rows[RW]

Rows of the table. Corresponds to the JSON property `rows` @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2Row>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/dlp_v2/classes.rb, line 5851
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/dlp_v2/classes.rb, line 5856
def update!(**args)
  @headers = args[:headers] if args.key?(:headers)
  @rows = args[:rows] if args.key?(:rows)
end