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.
Instance Attribute Summary collapse
- 
  
    
      #headers  ⇒ Array<Google::Apis::DlpV2::GooglePrivacyDlpV2FieldId> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Corresponds to the JSON property headers.
- 
  
    
      #rows  ⇒ Array<Google::Apis::DlpV2::GooglePrivacyDlpV2Row> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Corresponds to the JSON property rows.
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
| 4292 4293 4294 | # File 'generated/google/apis/dlp_v2/classes.rb', line 4292 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#headers ⇒ Array<Google::Apis::DlpV2::GooglePrivacyDlpV2FieldId>
Corresponds to the JSON property headers
| 4285 4286 4287 | # File 'generated/google/apis/dlp_v2/classes.rb', line 4285 def headers @headers end | 
#rows ⇒ Array<Google::Apis::DlpV2::GooglePrivacyDlpV2Row>
Corresponds to the JSON property rows
| 4290 4291 4292 | # File 'generated/google/apis/dlp_v2/classes.rb', line 4290 def rows @rows end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 4297 4298 4299 4300 | # File 'generated/google/apis/dlp_v2/classes.rb', line 4297 def update!(**args) @headers = args[:headers] if args.key?(:headers) @rows = args[:rows] if args.key?(:rows) end |