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.



3358
3359
3360
# File 'lib/google/apis/dlp_v2/classes.rb', line 3358

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)


3340
3341
3342
# File 'lib/google/apis/dlp_v2/classes.rb', line 3340

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



3346
3347
3348
# File 'lib/google/apis/dlp_v2/classes.rb', line 3346

def or_conditions
  @or_conditions
end

#type_collectionString

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

Returns:

  • (String)


3351
3352
3353
# File 'lib/google/apis/dlp_v2/classes.rb', line 3351

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



3356
3357
3358
# File 'lib/google/apis/dlp_v2/classes.rb', line 3356

def types
  @types
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3363
3364
3365
3366
3367
3368
# File 'lib/google/apis/dlp_v2/classes.rb', line 3363

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