Class: Google::Apis::DlpV2::GooglePrivacyDlpV2DiscoveryBigQueryConditions

Inherits:
Object
  • Object
show all
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

Requirements that must be true before a table is scanned in discovery for the first time. There is an AND relationship between the top-level attributes. Additionally, minimum conditions with an OR relationship that must be met before Cloud DLP scans a table can be set (like a minimum row count or a minimum table age).

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GooglePrivacyDlpV2DiscoveryBigQueryConditions

Returns a new instance of GooglePrivacyDlpV2DiscoveryBigQueryConditions.



3535
3536
3537
# File 'lib/google/apis/dlp_v2/classes.rb', line 3535

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#created_afterString

BigQuery table must have been created after this date. Used to avoid backfilling. Corresponds to the JSON property createdAfter

Returns:

  • (String)


3517
3518
3519
# File 'lib/google/apis/dlp_v2/classes.rb', line 3517

def created_after
  @created_after
end

#or_conditionsGoogle::Apis::DlpV2::GooglePrivacyDlpV2OrConditions

There is an OR relationship between these attributes. They are used to determine if a table should be scanned or not in Discovery. Corresponds to the JSON property orConditions



3523
3524
3525
# File 'lib/google/apis/dlp_v2/classes.rb', line 3523

def or_conditions
  @or_conditions
end

#type_collectionString

Restrict discovery to categories of table types. Corresponds to the JSON property typeCollection

Returns:

  • (String)


3528
3529
3530
# File 'lib/google/apis/dlp_v2/classes.rb', line 3528

def type_collection
  @type_collection
end

#typesGoogle::Apis::DlpV2::GooglePrivacyDlpV2BigQueryTableTypes

The types of BigQuery tables supported by Cloud DLP. Corresponds to the JSON property types



3533
3534
3535
# File 'lib/google/apis/dlp_v2/classes.rb', line 3533

def types
  @types
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3540
3541
3542
3543
3544
3545
# File 'lib/google/apis/dlp_v2/classes.rb', line 3540

def update!(**args)
  @created_after = args[:created_after] if args.key?(:created_after)
  @or_conditions = args[:or_conditions] if args.key?(:or_conditions)
  @type_collection = args[:type_collection] if args.key?(:type_collection)
  @types = args[:types] if args.key?(:types)
end