Class: Google::Apis::DlpV2::GooglePrivacyDlpV2SchemaModifiedCadence
- Inherits:
-
Object
- Object
- Google::Apis::DlpV2::GooglePrivacyDlpV2SchemaModifiedCadence
- 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
How frequently to modify the profile when the table's schema is modified.
Instance Attribute Summary collapse
-
#frequency ⇒ String
Frequency to regenerate data profiles when the schema is modified.
-
#types ⇒ Array<String>
The types of schema modifications to consider.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GooglePrivacyDlpV2SchemaModifiedCadence
constructor
A new instance of GooglePrivacyDlpV2SchemaModifiedCadence.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GooglePrivacyDlpV2SchemaModifiedCadence
Returns a new instance of GooglePrivacyDlpV2SchemaModifiedCadence.
8523 8524 8525 |
# File 'lib/google/apis/dlp_v2/classes.rb', line 8523 def initialize(**args) update!(**args) end |
Instance Attribute Details
#frequency ⇒ String
Frequency to regenerate data profiles when the schema is modified. Defaults to
monthly.
Corresponds to the JSON property frequency
8516 8517 8518 |
# File 'lib/google/apis/dlp_v2/classes.rb', line 8516 def frequency @frequency end |
#types ⇒ Array<String>
The types of schema modifications to consider. Defaults to NEW_COLUMNS.
Corresponds to the JSON property types
8521 8522 8523 |
# File 'lib/google/apis/dlp_v2/classes.rb', line 8521 def types @types end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
8528 8529 8530 8531 |
# File 'lib/google/apis/dlp_v2/classes.rb', line 8528 def update!(**args) @frequency = args[:frequency] if args.key?(:frequency) @types = args[:types] if args.key?(:types) end |